@font-face {
  font-family: "DysonFutura-Book";
  src: url("../fonts/DysonFutura-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "DysonFutura-Medium";
  src: url("../fonts/DysonFutura-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "DysonFutura-Book";
  font-weight: 400;
}

strong {
  font-family: "DysonFutura-Medium";
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  scroll-behavior: smooth;
}

body.stopScroll {
  overflow: hidden;
}

.container {
  max-width: 1280px !important;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
}

sup {
  font-size: 65%;
}

.non_active_nav {
  background-color: none;
}

.w100 {
  width: 100%;
}

.video-wrapper .w100:before {
  display: none;
}

.video-wrapper.playing .w100:before {
  content: "";
  background: black;
  opacity: 0.4;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
}

/* Navbar CSS Starts */

.navbar {
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: black;
  padding: 11px 78px 11px 25px;
  transition: all 0.35s ease;
  height: 50px;
  width: 100%;
}

.navbar ul {
  list-style: none;
}

.logo {
  margin-right: 50px;
  width: 74px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 75px;
}

.nav-links a {
  color: #ffffff;
  font: 400 14px "DysonFutura-Book";
  transition: all 0.36s ease;
}

.nav-links .active_nav {
  background-color: #555;
  padding: 20px 24px;
}

.menu-btn {
  position: absolute;
  top: 9px;
  left: 20px;
  width: 30px;
  cursor: pointer;
  background: aliceblue;
  display: none;
}

/* Navbar CSS Ends */

/* hero CSS Starts */

.hero-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  padding: 48px 0 0 78px;
  gap: 20px;
  color: #ffffff;
  position: absolute;
  z-index: 3;
}

.hero-text h1 {
  font: 400 36px / 44px "DysonFutura-Book";
}

.hero-text h3 {
  font: 400 18px / 28px "DysonFutura-Book";
}

.hero-text .txt1 {
  border: 2px solid #fff;
  padding: 6px 12px;
  width: 125px;
  height: 30px;
  background-color: #fff;
  font: 500 14px / 14px "DysonFutura-Book";
  text-align: center;
  border-radius: 4px;
  color: #000;
}

.title-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 650px;
}

.hero-text .btn::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0%;
  right: 0%;
  bottom: 0;
  background: #000;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.video-wrapper {
  position: relative;
  display: flex;
  min-width: 0;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 500;
  object-fit: cover;
  object-position: top center;
}

.video-wrapper.home-first-video video {
  aspect-ratio: 1280 / 500;
}
.video-wrapper.beauty-first-video video {
  aspect-ratio: 1280 / 550;
}

.video-wrapper1 video {
  width: 100%;
  height: 510px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.video-wrapper .w100 {
  position: relative;
}

.video-wrapper .play-video {
  background: url("../images/Homepage/hero_banner/icon-play.svg") center;
  width: 22px;
  height: 22px;
  display: flex;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper .play-video {
  background: url("../images/Homepage/hero_banner/icon-pause.svg") center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper:not(.playing) .play-video:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: #bfbebd;
  border-radius: 50px;
  z-index: 1;
}
.video-wrapper:not(.playing) .play-video:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #000;
  transform: rotate(-90deg);
  z-index: 2;
  position: relative;
  left: 1px;
}

.video-wrapper:not(.playing) .video-placeholder {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  opacity: 1;
  transition: all ease 1s;
}
.video-wrapper .video-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  transition: all ease 1s;
  opacity: 0;
}

.video-placeholder img {
  aspect-ratio: 1280 / 510;
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.styling-vids-height video {
  width: 100%;
  height: 510px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.d-block {
  display: none !important;
}

.d-none {
  display: block !important;
}

.button {
  border: none;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  background: #79b928;
  color: #333333;
  font: 500 16px / 24px "DysonFutura-Book";
  line-height: 1;
  width: max-content;
  height: 64px;
  cursor: pointer;
}

.button1:hover {
  background-color: #000;
  color: white;
}

.homecta {
  min-width: 260px;
}

/* hero CSS Ends */

/* RTB CSS Starts */

.rtb {
  background-color: #333333;
  padding: 24px 53px 56px 78px;
  color: #ffffff;
  /* height: 300px; */
}

.rtb h2 {
  font: 400 36px / 44px "DysonFutura-Book";
  margin-bottom: 16px;
}

.rtb p {
  font: 400 16px / 24px "DysonFutura-Book";
  padding-bottom: 16px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 18px;
  margin-top: 16px;
}

.icon {
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.icon span {
  font: 400 16px / 24px "DysonFutura-Book";
}

.icon img {
  /* max-width: 64px; */
  max-height: 60px;
}

.icon h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.icon p {
  font-size: 0.9rem;
  color: #666;
}

/* RTB CSS Ends */

/* Card CSS Starts */

.card-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 28px;
  padding: 20px 40px;
}

.card {
  width: 30%;
  margin-bottom: 30px;
  background-color: #fff;
  border: 1px solid #ebebeb;
}

.card-head h3 {
  padding: 44px 78px 48px 78px;
  font: 400 32px "DysonFutura-Book";
  color: #333333;
}

.card img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 30px 16px 30px 24px;
}

.card-content h5 {
  font: 400 24px/1 "DysonFutura-Book";
  margin-bottom: 10px;
  color: #333333;
}

.card-content p {
  font: 400 18px/1.3 "DysonFutura-Book";
  color: #555555;
  margin-bottom: 20px;
}

.card-content button {
  padding: 20px 24px;
  font: 500 16px "DysonFutura-Book";
  width: 100%;
  height: 60px;
  background-color: #333333;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-content button:hover {
  background-color: #79b928;
}

/* CARDS STYLES */
.container-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 82px;
  row-gap: 90px;
  padding: 0 140px 28px;
  margin-bottom: 78px;
}

.col-3 {
  column-gap: 28px;
  row-gap: 32px;
  padding-left: 78px;
  padding-right: 78px;
}

.card-s {
  background-color: white;
  border: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  max-width: calc(50% - 41px);
}
.col-3 .card-s {
  max-width: 356px;
  flex: 1 1 calc(33.333% - 56px);
}

.card-image {
  max-width: 100%;
  aspect-ratio: 457 / 257;
  object-fit: cover;
  display: block; /* Prevents inline space below the image */
}

.card-contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  flex-grow: 1; /* Allow the contents to grow and fill available space */
  overflow: auto;
  padding: 32px 21px;
}
.card-contents .card-title-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-contents h5,
.card-contents h6 {
  font: 400 24px / 32px "DysonFutura-Book";
}
.card-contents h6.fs-18 {
  font: 500 18px / 1.4 "DysonFutura-Book";
}
.card-contents p {
  font: 400 18px / 28px "DysonFutura-Book";
  color: #555555;
  line-height: 28px;
}

.card-contents .button {
  width: 100%;
  background-color: #333;
  color: #fff;
}
.card-contents .button:hover {
  background-color: #79b928;
}

.card-header {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.card-list-items {
  padding: 0px 0px 0px 22px;
}
.card-flex-grow {
  display: flex;
  flex-grow: 1;
}
.card-list-items li {
  font: 500 16px / 1.4 "DysonFutura-Book" !important;
  color: #555555;
  line-height: 22px;
  padding-bottom: 5px;
}

.explore-button {
  border: none;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.4s;
  cursor: pointer;
  display: inline-block;
  padding: 20px 24px;
  background: #333333;
  color: #ffffff;
  font: 500 16px "DysonFutura-Book";
  line-height: 1;
  width: 100%;
  cursor: pointer;
  margin-top: 20px;
}

.explore-button:hover {
  background-color: #79b928;
  color: #fff;
}

.shopnow-button {
  border: none;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.4s;
  cursor: pointer;
  display: inline-block;
  padding: 20px 24px;
  background: #79b928;
  color: #333333;
  font: 500 16px "DysonFutura-Book";
  line-height: 1;
  width: 100%;
  cursor: pointer;
  margin-top: 20px;
}

.shopnow-button:hover {
  background-color: #333;
  color: #fff;
}

.card-motif {
  width: 220px;
}

/* Card CSS ends */

/* carousel CSS Starts */

.carousel-container {
  position: relative;
}

.carousel {
  display: flex;
  overflow: hidden;
}

.carousel-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  position: relative;
  width: 100%;
  height: 510px;
  transition: transform 0.5s ease;
}

.carousel-item .image-wrapper {
  display: flex;
  width: 100%;
}

.carousel-item .image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 510px;
  aspect-ratio: 1280 / 510;
  object-fit: cover;
  object-position: right top;
}

/* .carousel-container.beauty-first-carousel .carousel-item {
  max-height: 480px;
}
.carousel-container.beauty-first-carousel img {
  max-height: 480px;
  aspect-ratio: 1280 / 480;
} */

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

.carousel-navigation {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.nav-btn {
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  margin: 0 5px;
  cursor: pointer;
  opacity: 60%;
  transition: background-color 0.3s ease;
}

.nav-btn.active {
  background-color: #fff;
  width: 12px;
  height: 12px;
  top: 0px;
}

.carousel-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  gap: 16px;
  width: 50%;
  max-width: 650px;
  position: absolute;
  top: 48px;
  left: 78px;
  right: 0;
}

.carousel-text .txt1 {
  padding: 8px 12px;
  width: 125px;
  height: 30px;
  background-color: #fff;
  color: #000;
  font: 500 14px / 14px "DysonFutura-Book";
  text-align: center;
  border-radius: 2px;
}

.carousel-text h2 {
  font: 400 44px / 52px "DysonFutura-Book";
  color: #ffffff;
}

.carousel-text p {
  font: 400 18px / 36px "DysonFutura-Book";
  color: #ffffff;
}

.carousel-text.homepage-carousel-text-item-2 h2,
.carousel-text.homepage-carousel-text-item-3 h2 {
  font: 500 36px / 44px "DysonFutura-Book";
}

.carousel-text.homepage-carousel-text-item-4 {
  /* left: auto;
  right: 103px;
  top: 50%;
  transform: translateY(-50%); */
  color: #000;
  gap: 10px;
}

.carousel-text.homepage-carousel-text-item-4 p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}


.carousel-text.homepage-carousel-text-item-2 *,
.carousel-text.homepage-carousel-text-item-3 *,
.carousel-text.homepage-carousel-text-item-4 * {
  color: #000;
}

.beauty-carousel .carousel-text p {
  font: 400 18px/ 28px "DysonFutura-Book";
}

.beauty-carousel .beautypage-carousel-text-item-1 p {
  font: 400 16px/ 24px "DysonFutura-Book";
}

.beauty-carousel .carousel-text {
  gap: 0;
}
.carousel-text.beautypage-carousel-text-item-1 .logo-1 {
  margin-bottom: 13px;
}

.carousel-text.beautypage-carousel-text-item-1 h2 {
  font: 400 36px / 44px "DysonFutura-Book";
  margin-bottom: 12px;
}

.carousel-text.beautypage-carousel-text-item-1 p {
  margin-bottom: 40px;
}

.carousel-text.beautypage-carousel-text-item-2 .logo-2 {
  margin-bottom: 20px;
}
.carousel-text.beautypage-carousel-text-item-2 h2 {
  margin-bottom: 12px;
}
.carousel-text.beautypage-carousel-text-item-2 p {
  margin-bottom: 34px;
}

.carousel-text.beautypage-carousel-text-item-3 .logo-3 {
  margin-bottom: 5px;
}
.carousel-text.beautypage-carousel-text-item-3 h2 {
  margin-bottom: 12px;
}
.carousel-text.beautypage-carousel-text-item-3 p {
  margin-bottom: 20px;
}

.carousel-text.beautypage-carousel-text-item-4 .logo-4 {
  margin-bottom: 24px;
}
.carousel-text.beautypage-carousel-text-item-4 h2 {
  margin-bottom: 12px;
}
.carousel-text.beautypage-carousel-text-item-4 p {
  margin-bottom: 20px;
}

.carousel-text .button {
  border: none;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.4s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  background: #79b928;
  color: #333333;
  font: 500 16px "DysonFutura-Book";
  line-height: 1;
  width: max-content;
  height: 64px;
  cursor: pointer;
}

.carousel-text .button:hover {
  background-color: #fff;
  color: #000;
}

/* carousel CSS Ends */

/* myDyson_section CSS starts */

.mydyson_section {
  background-color: #f9f7fa;
  padding: 50px 78px 50px 78px;
  color: #ffffff;
}

.mydyson_section-text {
  text-align: center;
}

.mydyson_section h2 {
  font: 400 24px "DysonFutura-Book";
  color: #333333;
  padding: 20px 0px 10px 0px;
}

.mydyson_section p {
  font: 400 16px "DysonFutura-Book";
  color: #555555;
  padding-bottom: 10px;
}

.mydyson_section .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  margin: 0;
}
.mydyson_section .middle-row {
  display: flex;
  flex-direction: column;
  max-width: 770px;
  margin: 0 auto;
}
.mydyson_section .middle-row .row {
  align-items: stretch;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
  row-gap: 20px;
  column-gap: 130px;
}

.mydyson_section .row h3 {
  color: #222222;
}

.mydyson_section .row p {
  color: #555555;
}

.mydyson_section .icon {
  padding: 0;
  align-items: center;
  text-align: center;
  gap: 0;
}

.mydyson_section .icon img {
  max-width: 50px;
  margin-bottom: 15px;
}

.mydyson_section .icon h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.mydyson_section .icon p {
  font-size: 0.9rem;
  color: #666;
}

.mydyson-appstore {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.mydyson-appstore a {
  display: flex;
}

/* myDyson_section CSS Ends */

/* brand_section CSS starts */

#brand-section {
  min-height: 600px;
  width: 100%;
  background-size: cover;
  background-image: url("../images/Homepage/brand_section/Image-11.jpg");
  color: #333333;
  border-bottom: 2px solid #ebebeb;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.brand-section-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  margin: 150px 78px 0px 78px;
  max-width: 360px;
  gap: 8px;
}

.brand-section-text h4 {
  font: 400 28px / 36px "DysonFutura-Book";
}

.brand-section-text p {
  font: 400 18px / 28px "DysonFutura-Book";
  margin-bottom: 20px;
}

.play-icon {
  background: #fff;
  margin-left: 78px;
  height: 98px;
  cursor: pointer;
  border: 2px solid #ebebeb;
  max-width: 356px;
}

.play-icon-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 13px;
}

.play-icon-text span {
  font: 500 16px/24px "DysonFutura-Book";
}

.brand-section .brand-section-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 32px 78px 68px 78px;
}

.brand-section-image img {
  width: 546px;
}

.brand-section-image h6 {
  font: 500 18px/21px "DysonFutura-Book";
  color: #333333;
  margin: 20px 0px 10px 0px;
}

.brand-section-image p {
  font: 400 14px/17px "DysonFutura-Book";
  color: #555555;
}

.video-container {
  display: flex;
  position: relative;
  text-align: center;
}

.video-btn {
  cursor: pointer;
}

.video-btn:hover {
  background-color: #2980b9;
}

.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
}

.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#video-wh {
  width: 1098px;
  height: 618px;
}

.video-content iframe {
  width: 80vw;
  max-width: 800px;
  height: 60vh;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.2em;
  background-color: #333333;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* brand_section CSS Ends */

/* Footer CSS Ends */

.footer {
  padding: 32px 78px;
  font: 400 14px / 20px "DysonFutura-Book";
  color: #555555;
}
.footer p {
  margin-bottom: 10px;
}
.footer p:last-child {
  margin-bottom: 0;
}
/* Footer CSS Ends */

.brand-section-text {
  width: 50% !important;
}

.grid-container {
  display: flex;
  gap: 32px; /* Adjust spacing between items */
  justify-items: center; /* Center items in the available space */
  margin: 0 auto; /* Center the container */
  padding: 32px 78px 32px 78px;
}

.grid-item img {
  max-width: 100%;
  aspect-ratio: 546 / 307;
  height: auto;
  display: block;
  margin: 0 auto; /* Center image and add space below */
}

.grid-item h6 {
  font: 500 18px / 28px "DysonFutura-Book";
  color: #333333;
}

.grid-item .content-block {
  display: flex;
  flex-direction: column;
  padding: 16px 0 32px;
  gap: 8px;
}

.grid-item p {
  font: 400 14px / 20px "DysonFutura-Book";
  color: #555555;
  padding: 0;
}
.brand-section-text {
  width: 50% !important;
}

@media screen and (max-device-width: 576px) {
  .card-contents h5 {
    font: 500 20px / 1 "DysonFutura-Book" !important;
  }
}
@media screen and (max-device-width: 768px) {
  .container-cards {
    padding: 20px;
  }

  .card-contents h5 {
    font: 500 20px / 1 "DysonFutura-Book" !important;
  }
  .grid-container {
    padding: 25px;
  }
  .brand-section-text {
    width: 100% !important;
    padding: 20px;
    margin: 0 auto;
    max-width: 100%;
  }
  .grid-container {
    padding: 30px 25px 0px 25px;
  }
}

/* Responsive CSS Starts */
@media (min-device-width: 561px) and (max-device-width: 1200px) {
  .video-content {
    width: 80%;
  }
  .video-content #video-wh {
    width: 100%;
    height: auto;
  }
}
@media (max-device-width: 767px) {
  .right-border {
    border-right: 1px solid #dcdcdc;
    position: absolute;
    height: 78px;
    right: 40px;
    top: 20px;
  }

  .close-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .menu-btn {
    display: block;
  }
  .navbar {
    padding: 0;
  }
  .logo {
    position: absolute;
    left: 70px;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 50px;
    background: #333333;
    margin-left: -900px;
    transition: all 0.5s ease;
    z-index: 1010;
    gap: 0;
  }
  .mobile-menu {
    margin-left: 0px;
  }
  .nav-links li {
    margin: 30px auto;
  }
  .hero-text .txt1 {
    border: 2px solid #000;
    padding: 5px 8px;
    width: 103px;
    height: 28px;
    background-color: #000000;
    font: 500 12px / 14px "DysonFutura-Book";
    text-align: center;
    border-radius: 4px;
    color: #ffffff;
  }
  .hero-text {
    padding: 24px;
    gap: 14px;
    color: #000000;
  }
  .mob-fs-32 {
    font: 400 32px / 1.2 "DysonFutura-Book" !important;
  }
  .mob-fs-28 {
    font: 400 28px / 1.2 "DysonFutura-Book" !important;
  }
  .mob-fs-27 {
    font: 400 27px / 1.2 "DysonFutura-Book" !important;
  }
  .mob-fs-26 {
    font: 400 26px / 1.2 "DysonFutura-Book" !important;
  }
  .mob-fs-20 {
    font: 500 20px / 1.4 "DysonFutura-Book" !important;
  }
  .mob-fs-18 {
    font: 500 18px / 1.4 "DysonFutura-Book" !important;
  }
  .mob-fs-16 {
    font: 500 16px / 1.4 "DysonFutura-Book" !important;
  }
  .mob-fs-15 {
    font: 400 15px / 1.3 "DysonFutura-Book" !important;
  }
  .mob-fs-14 {
    font: 400 14px / 1.2 "DysonFutura-Book" !important;
  }
  .mob-fs-24 {
    font: 400 24px / 1.2 "DysonFutura-Book" !important;
  }
  .mob-fs-20 {
    font: 400 20px / 1.4 "DysonFutura-Book" !important;
  }
  .button {
    width: 312px;
    height: 56px;
  }
  .icon {
    flex-basis: 50%;
    padding: 30px 0px 0px 0px;
    align-items: center;
    text-align: center;
    flex: auto;
  }
  .rtb {
    height: auto;
    padding: 30px 24px 50px 24px;
    text-align: center;
  }
  .card-container {
    padding: 24px;
    width: 100%;
  }
  .card {
    width: calc(100%);
  }
  .card-head h3 {
    padding: 30px 20px 0px 20px;
  }
  .card-content button {
    width: 272px;
    height: 56px;
    padding: 16px;
  }
  .card-content h5 {
    font: 400 20px / 1 "DysonFutura-Book";
  }
  .card-content p {
    font: 400 16px / 1.3 "DysonFutura-Book";
  }
  .carousel-text button {
    width: 312px !important;
    height: 56px !important;
    padding: 12px !important;
  }
  .carousel-navigation {
    bottom: 20px;
  }
  .carousel-text {
    padding: 24px;
    gap: 15px;
  }

  .carousel-control {
    font-size: 23px;
    cursor: pointer;
    z-index: 2;
    width: 40px;
    height: 40px;
  }

  .mydyson_section {
    height: auto;
    padding: 24px;
  }
  .mydyson_section p {
    padding-bottom: 0px;
  }
  .mydyson-appstore img {
    padding-left: 5px;
  }
  .mydyson_section .icon img {
    width: 40px;
  }
  .mydyson_section .icon h3 {
    font-size: 16px;
  }
  .mydyson_section .icon p {
    font-size: 10px;
  }

  .brand-section-text {
    padding: 24px 24px 0px 24px;
    gap: 14px;
  }
  .brand-section-image {
    flex-basis: 100%;
    padding: 24px;
  }
  .play-icon {
    margin-left: 25px;
    width: 312px;
    height: 78px;
  }
  .play-icon img {
    height: 76px;
  }

  .brand-section-image p {
    font: 500 14px / 17px "DysonFutura-Book";
  }
  .brand-section-image img {
    width: 312px;
  }
  .brand-section .brand-section-row {
    padding: 0px;
  }
  .footer {
    padding: 24px 13px 14px 17px;
    width: 80%;
    line-height: 18px;
  }
  .footer p {
    position: relative;
  }
  .footer span {
    position: absolute;
    left: -7px;
    top: -3px;
  }
  .video-wrapper video {
    width: 100%;
    height: 370px;
    aspect-ratio: 9 / 16 !important;
    object-fit: cover;
  }
  .robot-video-height video {
    height: 400px;
  }

  .navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .prev,
  .next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  .card-head1 h3 {
    padding: 0px 24px 10px 24px;
  }
  .card-head1 article {
    padding: 0px 24px 10px 24px;
  }

  .logo-width {
    width: 140px;
  }
  .fans-heaters_logo {
    width: 260px;
  }

  #video-wh {
    width: 328px;
    height: 196px;
  }

  .video-wrapper {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-text {
    position: relative;
    padding-top: 30px !important;
  }
  .carousel-item {
    justify-content: center;
    flex-direction: column-reverse;
    height: auto;
  }
  .carousel-text {
    position: relative;
    max-width: 100%;
    width: 100% !important;
    left: inherit !important;
    top: inherit !important;
    right: inherit !important;
    bottom: inherit !important;
    transform: none !important;
    background-color: #f0f0f0;
    min-height: 350px;
    justify-content: center;
  }
  .carousel-text * {
    color: #333 !important;
  }
  .header-flex-col {
    position: initial;
  }

  .card-container {
    flex-wrap: wrap !important;
  }
  .card-content p {
    min-height: auto;
  }
  .card-content button {
    width: 100% !important;
  }

  #brand-section {
    background: url("../images/Homepage/brand_section/mob_Image-11.jpg")
      no-repeat;
    background-position: bottom;
    background-size: contain;
  }

  .grid-container {
    flex-wrap: wrap;
  }

  .carousel-item .image-wrapper img {
    height: 400px;
    max-height: 400px;
    object-position: top;
  }

  .prev,
  .next {
    top: inherit;
    transform: none;
    bottom: 187px;
  }

  .beautypage-carousel-text-item-1 {
    background-color: #f8f8f8;
  }
  .beautypage-carousel-text-item-2 {
    background-color: #ffffff;
  }
  .beautypage-carousel-text-item-3 {
    background-color: #cdaeab;
  }
  .beautypage-carousel-text-item-4 {
    background-color: #c5cdd5;
  }

  .carousel-text h2 {
    font: 400 26px / 31px "DysonFutura-Book" !important;
  }

  .rtb .icon {
    flex-basis: 35%;
  }
  .hero-text {
    background-color: #333333;
  }
  .hero-text * {
    color: #FFFFFF;
  }
}
@media (min-device-width: 768px) and (max-device-width: 1200px) {
  #brand-section {
    background-size: 95%;
  }
}
@media (max-device-width: 1279px) {
  .carousel-item {
    display: flex;
  }
}
@media (min-device-width: 768px) and (max-device-width: 1024px) {
  .carousel br {
    display: none;
  }

  .carousel-text h2 {
    font: 400 26px / 31px "DysonFutura-Book" !important;
  }
  .carousel-item {
    height: auto;
  }

  .container-cards,
  .grid-container {
    padding: 20px;
  }
  .carousel-item .image-wrapper img {
    height: auto;
  }
  .icon span {
    font: 400 14px / 24px "DysonFutura-Book";
  }
}
@media (max-device-width: 1024px) {
  .rtb .row {
    gap: 10px;
    row-gap: 40px;
  }
  .icon {
    align-items: center;
  }
  .container-cards,
  .grid-container {
    gap: 20px;
  }
  .card-s,
  .grid-container .grid-item,
  .col-3 .card-s {
    max-width: calc(50% - 10px);
  }
  .carousel-text {
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    gap: 0 !important;
  }
  .carousel-text > :not(button) {
    margin-bottom: 12px !important;
  }
  .carousel-text.homepage-carousel-text-item-4 {
    right: 30px;
  }
  .rtb {
    padding: 24px 40px 56px;
  }
  .mydyson_section .middle-row .row {
    gap: 20px;
  }

}
@media (max-device-width: 992px) {
  .hero-text {
    gap: 10px;
    padding: 35px 0 24px 35px;
  }
  .hero-text h1 {
    font-size: 28px;
  }
  .mydyson_section .row {
    grid-template-columns: repeat(2, 1fr);
  }
  br {
    display: none;
  }
  .col-3 .card-s {
    flex: 1 1 50%;
  }
}
@media (max-device-width: 560px) {
  .icon {
    flex-basis: 50%;
  }
  .card-s,
  .grid-container .grid-item,
  .col-3 .card-s {
    max-width: 100%;
  }
  .mydyson_section .icon {
    max-width: 100%;
  }
}
