@font-face {
  font-family: "DM Serif Display Regular";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/DMSerifDisplay-Regular.woff") format("woff");
}
:root {
  --fontUbuntu: "Ubuntu", Arial, sans-serif;
  --fontNunito: "Nunito", Arial, sans-serif;
  --fontDM: "DM Serif Display Regular";
  --primaryColor: #40494e;
  --secondaryColor: #222b48;
  --whiteColor: #fff;
  --blackColor: #000;
  --blueColor: #0050b6;
}

body {
  font-family: var(--fontNunito);
  color: var(--primaryColor);
  font-size: 14px;
}

img {
  max-width: inherit;
  width: 100%;
  height: auto;
  display: block;
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

button {background: transparent;}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.title {
  margin-bottom: 20px;
}
.title span {
  display: block;
  font-weight: 500;
}
.title h2 {
  font-size: 24px;
  font-family: var(--fontUbuntu);
  font-weight: 500;
  color: var(--secondaryColor);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 43, 72, 0.3);
  font-family: var(--fontUbuntu);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100rem;
  position: relative;
  text-transform: capitalize;
  width: fit-content;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.cta:hover {
  color: var(--whiteColor);
  border-color: var(--secondaryColor);
}
.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondaryColor);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out;
  border-radius: 100rem;
}
.cta:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.cta:after {
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  background-image: url("../images/icons/black/rightArw.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s ease-in-out;
  background-position: center;
}
.cta:hover:after {
  background-image: url("../images/icons/white/rightArw.svg");
}
.whiteCta {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--whiteColor);
}
.whiteCta:after {
  background-image: url("../images/icons/white/rightArw.svg");
}
.whiteCta::before {
  background: var(--whiteColor);
}
.whiteCta:hover {
  color: var(--secondaryColor);
  border-color: var(--whiteColor);
}
.whiteCta:hover:after {
  background-image: url("../images/icons/black/rightArw.svg");
}

.whiteFillcta {
  background: var(--whiteColor);
}

section {
  margin-bottom: 50px;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: var(--whiteColor);
  border-radius: 100%;
  border: 1px solid var(--secondaryColor);
  width: 40px;
  aspect-ratio: 1/1;
  height: auto;
  z-index: 1;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  /* opacity: 1 !important; */
}

.swiper-button-prev {
  left: 2% !important;
  background-image: url("../images/icons/black/leftArw.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30% 30%;
}
.swiper-button-next {
  right: 2% !important;
  background-image: url("../images/icons/black/rightArw.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30% 30%;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--secondaryColor);
}
.swiper-button-prev:hover {
  background-image: url("../images/icons/white/leftArw.svg");
}
.swiper-button-next:hover {
  background-image: url("../images/icons/white/rightArw.svg");
}
.swiper-button-prev svg,
.swiper-button-next svg {
  display: none;
}
.swiper .swiper-button-disabled {
  opacity: 1 !important;
  /* transform: scale(0); */
}

.swiper-pagination {
  width: auto !important;
  bottom: 0 !important;
}
.swiper-pagination-bullet {
  background: none;
  width: 15px;
  height: auto !important;
  aspect-ratio: 1/1;
  position: relative;
  opacity: 1;
  border: 1px solid var(--secondaryColor);
}
.swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  margin: auto;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  transform-origin: center;
  opacity: 0;
  background: var(--secondaryColor);
}
.swiper-pagination-bullet-active::before {
  opacity: 1;
}
.whitePagination .swiper-pagination-bullet {
  border: 1px solid var(--whiteColor);
}
.whitePagination .swiper-pagination-bullet:before {
  background: var(--whiteColor);
}

/* Header Starts */

header {
  position: fixed;
  top: 0;
  padding: 10px 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.staticHeader header {
  position: sticky;
}

header.sticky,
.staticHeader header {
  background: var(--whiteColor);
  border-bottom: 1px solid #dedede;
}

.logo {
  display: block;
  width: 125px;
  transition: all 0.3s ease-in-out;
}

.blackLogo {
  display: none;
}

header.sticky .whiteLogo,
.staticHeader .whiteLogo {
  display: none;
}
header.sticky .blackLogo,
.staticHeader .blackLogo {
  display: block;
}

@media (width > 1200.99px) {
  header {
    padding: 0.781vw 0;
  }
  .logo {
    width: 11.25vw;
  }
  header.sticky .logo {
    width: 8vw;
  }
}

/* Header Endss */

/* MENU STYLE start */
.menuList > li > a {
  font-family: var(--fontUbuntu);
  font-weight: 500;
}
.megamenuContainer {
  background: var(--whiteColor);
  border-radius: 1.042vw;
  position: relative;
  overflow: hidden;
}

.megamenuContainer > ul > li > button {
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--fontUbuntu);
  color: var(--secondaryColor);
  position: relative;
}

.megamenuContainer > ul > li > button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 10px;
  aspect-ratio: 1/1;
  background-image: url("../images/icons/black/rightArw.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.menuProductWrp {
  height: 100%;
  background: #e0f5ff;
}
.menuProductInfo {
  border-bottom: 1px solid rgba(45, 51, 68, 0.1);
}
.menuProductInfo h4 {
  font-family: var(--fontUbuntu);
  color: var(--secondaryColor);
  font-weight: 500;
}

@media (width < 991.99px) {
  .menuBtn {
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    background: var(--whiteColor);
    border: 0;
    border-radius: 100rem;
  }

  .menuBtn span {
    display: block;
    background: #2d3344;
    width: 70%;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
    border-radius: 100rem;
  }

  .menuBtn span:first-child {
    top: 30%;
    width: 50%;
  }

  .menuBtn span:last-child {
    top: 70%;
    width: 50%;
  }

  .menuBtn.active span:nth-child(1) {
    top: 50%;
    width: 70%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menuBtn.active span:nth-child(2) {
    opacity: 0;
  }

  .menuBtn.active span:nth-child(3) {
    top: 50%;
    width: 70%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .menuWrp {
    background: var(--whiteColor);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    max-width: 350px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
  }

  .menuWrp.active {
    left: 0;
  }

  .menuList > li {
    border-bottom: 1px solid #ddd;
  }
  .menuList > li > a {
    padding: 15px 0;
    display: block;
    position: relative;
  }

  .menuList > li > a.plusMins::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 18px;
    aspect-ratio: 1/1;
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2' clip-rule='evenodd'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .menuList > li > a.active::after {
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8' clip-rule='evenodd'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .megamenuWrp {
    display: none;
  }

  .menuProductWrp {
    /* padding: 15px;
    border-radius: 10px; */
    background: none;
    display: none;
  }
  .megamenuContainer > ul {
    background: #e0f5ff;
    padding: 0 15px;
    margin-bottom: 15px;
  }
  .megamenuContainer > ul > li > button {
    padding: 10px 0;
  }
  .menuProductInfo {
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .menuProductWrp .productCard {
    margin-bottom: 10px;
  }
  .menuProductInfo h4 {
    display: none;
  }
}

@media (width < 575.99px) {
  .menuWrp {
    max-width: 280px;
  }
}

@media (width > 991.99px) {
  .menuList {
    display: flex;
    gap: 0 12px;
  }
  .menuList > li > a {
    color: var(--whiteColor);
    font-size: 14px;
  }
  header.sticky .menuList > li > a,
  .staticHeader .menuList > li > a {
    color: var(--secondaryColor);
  }

  .menuList > li {
    position: relative;
  }
  .menuList > li:after {
    content: "";
    position: absolute;
    top: 3vw;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 1.5vw;
    aspect-ratio: 1/1;
    opacity: 0;
  }
  .menuList > li:hover.active:after {
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z' clip-rule='evenodd'/></svg>");
    background-repeat: no-repeat;
    background-size: 100%;
    transform: scale(1) translateX(-50%);
    opacity: 1;
    top: 2.2vw;
    transition: all 0.5s 0.3s ease-in-out;
  }
  .megamenuWrp {
    position: fixed;
    left: 5%;
    width: 100%;
    padding: 1.7vw 0 0 0;
    transform: translate(-50%, 200px);
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(200px);
    transition: all 0.3s ease-in-out;
  }
  .menuList > li.active .megamenuWrp {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
  }
  .megamenuContainer {
    min-height: 38vw;
  }

  .megamenuContainer > ul {
    padding-top: 1vw;
  }
  .megamenuContainer > ul > li {
    width: 25%;
    padding: 0 2vw;
    cursor: pointer;
  }

  .megamenuContainer > ul > li > button {
    padding: 0.8vw 0;
    border-bottom: 1px solid rgba(45, 51, 68, 0.1) !important;
    transition: all 0.3s ease-in-out;
  }
  .megamenuContainer > ul > li > button:after {
    width: 0.7vw;
  }

  .megamenuContainer > ul > li.active button {
    color: var(--blueColor);
    font-weight: 700;
    border-color: rgba(0, 80, 182, 1) !important;
  }
  .menuProductWrp {
    position: absolute;
    left: 25%;
    right: 0;
    top: 0;
    padding: 2vw;
    display: none;
  }

  .megamenuContainer > ul > li.active .menuProductWrp {
    display: block;
  }

  .menuProductInfo {
    margin-bottom: 2vw;
    padding-bottom: 1vw;
  }
  .menuProductInfo h4 {
    font-size: 1.25vw;
  }
  .menuProductInfo p {
    font-size: 0.833vw;
  }
}

@media (width > 1200.99px) {
  .menuList {
    gap: 0 2.604vw;
  }
  .menuList > li > a {
    font-size: 0.938vw;
  }
}
/* MENU STYLE end */

/* Product CARD */
/* Product CARD */
.productCard {
  position: relative;
  color: var(--whiteColor);
  padding: 30px 15px 90% 15px;
  z-index: 2;
  text-align: center;
}
.productColor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 93%;
  border-radius: 10px;
  z-index: -1;
  overflow: hidden;
}

.productInfo > * {
  margin-bottom: 20px;
}

.productInfo h4 {
  font-family: var(--fontUbuntu);
  font-size: 28px;
  font-weight: 500;
}
.productInfo h4 span {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}
.productInfo ul li {
  font-size: 12px;
  text-align: center;
}
.productInfo ul li span {
  width: 40px;
  aspect-ratio: 1/1;
  border: 1px solid var(--whiteColor);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100rem;
  margin: 0 auto 5px auto;
}
.productInfo ul li span img {
  width: 50%;
}
.productCard .cta {
  margin: 0 auto;
}
.productImg {
  /* margin-top: 20px; */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 10%;
}
.pulseAnim {
  position: absolute;
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 100rem;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: multiply;
}
.pulseAnim span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px;
  border-radius: 50%;
  animation: ripple 10s infinite linear;
  mix-blend-mode: multiply;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.pulseAnim span:nth-child(1) {
  animation-delay: 0s;
}
.pulseAnim span:nth-child(2) {
  animation-delay: 0.5s;
}
.pulseAnim span:nth-child(3) {
  animation-delay: 1s;
}
.pulseAnim span:nth-child(4) {
  animation-delay: 1.5s;
}

@media (width > 400.99px) {
  .pulseAnim {
    bottom: 5%;
  }
}
@media (width > 400.99px) {
  .productInfo h4 {
    font-size: 22px;
  }
  .productInfo .cta {
    font-size: 12px;
  }
}

/* @media (width < 575.9px) {
  .productImg {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
} */

@media (min-width: 991.99px) {
  .productCardHRZ {
    text-align: left;
    padding-bottom: 15%;
  }

  .productCardHRZ .cta {
    margin-left: 0;
  }
  .productCardHRZ .pulseAnim {
    left: 72%;
    bottom: 10%;
  }
  .productCardHRZ .productImg {
    left: auto;
    right: 0;
    width: 50%;
    padding: 0 5% 0 0;
  }
}

@media (width > 1200.99px) {
  .productCard {
    padding: 2vw 1vw 19vw 1vw;
    z-index: 1;
  }
  .productCard .productColor {
    border-radius: 0.521vw;
  }
  .productInfo > * {
    margin-bottom: 2vw;
  }
  .productInfo h4 {
    font-size: 1.771vw;
  }

  .listingProduct h4 {
    font-size: 1.6vw;
  }
  .productInfo h4 span {
    font-size: 1.042vw;
  }
  .productInfo ul li {
    font-size: 0.833vw;
  }
  .productInfo ul li span {
    width: 2.865vw;
    margin-bottom: 0.5vw;
  }
  .productInfo .cta {
    font-size: 0.833vw;
  }
  /* .productImg {
    margin-top: 2vw;
  } */

  /* .productImg img {
    aspect-ratio: 5/6;
    object-fit: contain;
    object-position: bottom;
  } */
  .pulseAnim {
    bottom: 20%;
  }
  .productCardHRZ {
    padding: 3.125vw 3.125vw 5vw 3.125vw;
  }
}

/* @media (width < 768.99px) {
  .productCard {
    padding: 30px 15px 220px 15px;
  }
} */
/* PRODUCT CARD */

.rcPos {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.swiperBtnWrp {
  display: flex;
  gap: 5px;
  align-items: center;
}
.swiperBtnWrp > * {
  position: relative !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  margin: 0 !important;
}

.swiper .swiper-scrollbar {
  position: relative;
  width: 100%;
  height: 1px;
  left: auto;
  background: rgba(34, 43, 72, 0.3);
  margin-top: 30px;
}

.swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--blueColor);
  height: 4px;
  position: absolute;
  left: 0;
  top: -1.5px;
}

.proDetails {
  color: var(--whiteColor);
}
.proDetails h4 {
  font-family: var(--fontUbuntu);
  font-weight: 500;
}
.proDetails h4 span {
  display: block;
}
.proFeat {
  text-align: center;
  font-size: 10px;
}
.proFeat span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  margin: 0 auto 10px auto;
  border: 1px solid var(--whiteColor);
}
.proFeat span img {
  width: 50%;
}

.pulse {
  position: absolute;
  width: 250px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: multiply;
}

.pulse span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  /* border: 1px solid rgba(179, 179, 179, 0.5); */
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 25px;
  border-radius: 50%;
  animation: ripple 5s infinite linear;
  mix-blend-mode: multiply;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
.pulse span:nth-child(1) {
  animation-delay: 0s;
}
.pulse span:nth-child(2) {
  animation-delay: 0.5s;
}
.pulse span:nth-child(3) {
  animation-delay: 1s;
}
.pulse span:nth-child(4) {
  animation-delay: 1.5s;
}
@media (width > 991.99px) {
  section {
    margin-bottom: 80px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
  }
}

@media (width > 1200.99px) {
  body {
    font-size: 1.042vw;
  }

  section {
    margin-bottom: 5.208vw;
  }

  .container {
    max-width: inherit;
    padding: 0 6.25vw;
  }

  /* .row {
    --bs-gutter-x: 1.563vw;
  } */

  .title {
    margin-bottom: 1.042vw;
  }
  .title h2 {
    font-size: 1.771vw;
  }

  .cta {
    padding: 0.8vw 1.5vw;
    gap: 0.3vw;
    font-size: 0.833vw;
  }
  .cta:after {
    width: 0.7vw;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 2.76vw;
  }

  .swiper .swiper-scrollbar {
    margin-top: 3.646vw !important;
  }

  .swiper-pagination-bullet {
    width: 0.938vw;
  }

  .proDetails h4 {
    font-size: 1.771vw;
  }
  .proDetails h4 span {
    font-size: 1.042vw;
  }
  .proFeat {
    font-size: 0.833vw;
  }
  .proFeat span {
    width: 3.014vw;
    margin-bottom: 0.521vw;
  }
}

/* Footer */
footer {
  background: var(--blueColor);
}

.rainbowLines > * {
  width: 100%;
  height: 2px;
}
.rainbowLines > *:nth-child(1) {
  background: #e70000;
}
.rainbowLines > *:nth-child(2) {
  background: #ff9119;
}
.rainbowLines > *:nth-child(3) {
  background: #f5e847;
}
.rainbowLines > *:nth-child(4) {
  background: #00ae44;
}
.rainbowLines > *:nth-child(5) {
  background: #07bfdc;
}
.footContainer {
  padding: 50px 0;
}
.footLogoCol {
  width: 200px;
}
.footCol {
  color: var(--whiteColor);
  /* font-size: 0.833vw; */
}
.footCol h6 {
  font-weight: 700;
  font-family: var(--fontUbuntu);
  margin-bottom: 15px;
}
.footCol ul li {
  margin-bottom: 5px;
}
.footCol ul li:last-child {
  margin-bottom: 0;
}
.footCol ul li a {
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.footCol ul li a:hover {
  opacity: 1;
}

.copyRight {
  border-top: 1px solid rgb(255 255 255 / 30%);
  color: #eeeded;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 12px;
  text-align: center;
}

@media (width > 1200.99px) {
  .rainbowLines > * {
    height: 0.521vw;
  }
  .footLogoCol {
    width: 20.573vw;
  }
  .footContainer {
    padding: 3.125vw 0;
  }
  .footCol {
    font-size: 0.9vw;
  }
  .footCol h6 {
    font-size: 0.833vw;
    margin-bottom: 2vw;
  }
  .footCol ul li {
    margin-bottom: 2vw;
  }
  .copyRight {
    margin-top: 3vw;
    padding-top: 2vw;
    font-size: 0.729vw;
  }
}

/* Dots */
.BLdots {
  position: relative;
}

.BLdots::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  aspect-ratio: 1/1;
  background: url(.../images/BLdots.png);
  background-size: 100%;
}

@media (width > 991.99px) {
  .BLdots::before {
    width: 8.854vw;
  }
}

/* Animation */

.animateThis {
  position: relative;
  will-change: opacity transform;
}

.slideLeft {
  opacity: 0;
  transition: all 0.5s ease;
  transform: translate3d(50px, 0px, 0px);
}

.slideLeft.in-view {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.slideRight {
  opacity: 0;
  transition: all 0.5s ease;
  transform: translate3d(-50px, 0px, 0px);
}

.slideRight.in-view {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.slideTop {
  opacity: 0;
  transition: all 0.5s ease;
  transform: translate3d(0px, 50px, 0px);
}

.slideTop.in-view {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.fadeGrow {
  opacity: 0;
  transition: all 0.7s ease;
  transform: scale(0.5);
}

.fadeGrow.in-view {
  opacity: 1;
  transform: scale(1);
}

.fadeIn {
  opacity: 0;
  transition: all 0.5s ease;
}

.fadeIn.in-view {
  opacity: 1;
}

.blackOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 1;
  display: none;
}

.scrollTopBtn {
  background: var(--blueColor);
  aspect-ratio: 1/1;
  width: 40px;
  position: fixed;
  bottom: 5%;
  right: 5%;
  border: 1px solid var(--whiteColor);
  border-radius: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.scrollTopBtn.active {
  transform: scale(1);
}
.scrollTopBtn img {
  width: 50%;
}
@media (min-width > 1200.99px) {
  .scrollTopBtn {
    width: 2.604vw;
  }
}

.bredcrumbList {
  display: flex;
}
.bredcrumbList li {
  position: relative;
  font-family: var(--fontUbuntu);
  font-size: 14px;
  padding-right: 10px;
  margin-right: 10px;
}
.bredcrumbList li:after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  aspect-ratio: 1/1;
  background: url(../images/icons/white/rightArw.svg) no-repeat center;
  background-size: 100% 100%;
  opacity: 0.5;
}
.bredcrumbList li:last-child {
  padding: 0;
  margin: 0;
}
.bredcrumbList li:last-child:after {
  display: none;
}
.bredcrumbList li a {
  opacity: 0.5;
}
@media (width > 1200.99px) {
  .bredcrumbList li {
    padding-right: 1.1vw;
    margin-right: 0.5vw;
  }
  .bredcrumbList li:after {
    width: 0.8vw;
    right: -0.1vw;
  }
}

/* Inner Banner */
.innerBanner {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.bannerGradient .innerBanner:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 17.27%,
    rgba(102, 102, 102, 0) 100%
  );
}
.innerBannerTxt {
  position: absolute;
  /* top: 6%; */
  bottom: 0;
  left: 0;
  width: 100%;
height: 100%;
  color: var(--whiteColor);
  padding-bottom: 30px;
  display: flex;
  align-items: end;
}

.innerBannerTxt h1,
.innerBannerTxt h6 {
  font-family: var(--fontUbuntu);
}
.innerBannerTxt h1 {
  font-size: 25px;
}
.innerBannerTxt h6 {
  font-weight: 500;
  font-size: 18px;
}
@media (width > 1200.99px) {
  .innerBannerTxt {
    padding: 0 0 3.646vw 0;
  }
  .innerBannerTxt h1 {
    font-size: 3.021vw;
  }
  .innerBannerTxt h6 {
    font-size: 1.771vw;
  }
}