@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .banner::before {
    background: linear-gradient(360deg, rgb(0, 0, 0) 22%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%) !important;
  }
}
@media only screen and (max-width: 420px) {
  .banner::before {
    background: linear-gradient(360deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%) !important;
  }
}
.banner.home-banner .bg {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .banner.home-banner .bg {
    height: 75vh !important;
  }
}
@media only screen and (max-width: 540px) {
  .banner.home-banner .bg {
    height: 52vh !important;
  }
}
.banner.home-banner .figure-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.banner.home-banner .figure-wrap > div {
  position: absolute;
  inset: 0;
}
.banner.home-banner .figure-wrap > div figure {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  transition: transform 1.5s ease;
  pointer-events: none;
}
.banner.home-banner .figure-wrap > div figure.active {
  transform: translateY(0);
  pointer-events: auto;
}
.banner.home-banner .figure-wrap > div figure.exiting {
  transform: translateY(100%);
}
.banner.home-banner .figure-wrap > div figure img {
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 100%;
  z-index: -1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 1650px) {
  .banner.home-banner .figure-wrap > div figure img {
    bottom: -10%;
  }
}
@media only screen and (max-width: 768px) {
  .banner.home-banner .figure-wrap > div figure img {
    bottom: 20%;
  }
}
@media only screen and (max-width: 540px) {
  .banner.home-banner .figure-wrap > div figure img {
    bottom: 13%;
  }
}
@media only screen and (max-width: 420px) {
  .banner.home-banner .figure-wrap > div figure img {
    bottom: 33%;
  }
}
.banner.home-banner .figure-wrap > div .figure-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 93%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 4;
}
@media only screen and (max-width: 540px) {
  .banner.home-banner .figure-wrap > div .figure-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}
@media only screen and (max-width: 420px) {
  .banner.home-banner .figure-wrap > div .figure-content {
    gap: 10px;
  }
}
.banner.home-banner .figure-wrap > div .figure-content .figure-content-wrap {
  transform: translateX(-150%);
  transition: transform 1s ease;
  pointer-events: none;
}
.banner.home-banner .figure-wrap > div .figure-content .figure-content-wrap h1 {
  margin: 0;
  color: var(--white);
  font-family: "a Astro Space";
}
.banner.home-banner .figure-wrap > div .figure-content .figure-content-wrap h4 {
  color: var(--white);
  font-family: "Optima";
  text-transform: capitalize;
  font-size: 30px;
}
@media only screen and (max-width: 1024px) {
  .banner.home-banner .figure-wrap > div .figure-content .figure-content-wrap h4 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .banner.home-banner .figure-wrap > div .figure-content .figure-content-wrap h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 420px) {
  .banner.home-banner .figure-wrap > div .figure-content .figure-content-wrap h4 {
    font-size: 16px;
    width: 90%;
    margin: 0 auto;
    margin-top: 6px;
  }
}
.banner.home-banner .figure-wrap > div .figure-content a {
  transform: translateX(300%);
  transition: transform 1s ease;
  padding: 0.6rem 0;
  border-bottom: 2px solid var(--white);
  color: var(--white);
  font-weight: 200;
  display: flex;
  gap: 15px;
  letter-spacing: 2px;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
}
.banner.home-banner .figure-wrap > div .figure-content a svg {
  width: 24px;
  height: 24px;
}
.banner.home-banner .figure-wrap > div .figure-content.content-active .figure-content-wrap {
  transform: translateX(0);
  transition-delay: 0.3s;
  pointer-events: auto;
}
.banner.home-banner .figure-wrap > div .figure-content.content-active a {
  transform: translateX(0);
  transition-delay: 0.5s;
  pointer-events: auto;
}
.banner.home-banner .figure-wrap > div .figure-content.content-exit .figure-content-wrap {
  transform: translateX(-150%);
  transition-delay: 0s;
  pointer-events: none;
}
.banner.home-banner .figure-wrap > div .figure-content.content-exit a {
  transform: translateX(300%);
  transition-delay: 0s;
  pointer-events: none;
}
.banner.home-banner .figure-wrap .figure-pagination {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 10px;
  z-index: 2;
  position: absolute;
  left: 96%;
  top: 45%;
}
.banner.home-banner .figure-wrap .figure-pagination .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6117647059);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.banner.home-banner .figure-wrap .figure-pagination .dot.active {
  background: white;
}
.banner .container {
  max-width: 90%;
}

.home-secA {
  padding: 80px 0 90px;
}
@media only screen and (max-width: 991px) {
  .home-secA {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA {
    padding: 40px 0;
  }
}
.home-secA .item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 768px) {
  .home-secA .item-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0 auto;
    width: 85%;
  }
}
@media only screen and (max-width: 420px) {
  .home-secA .item-grid {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .home-secA .item-grid .item {
    text-align: center;
  }
}
.home-secA .item-grid .item .heading h3 {
  margin: 0 0 12px;
}
.home-secA .item-grid .item .heading h6 {
  font-family: "Poppins", serif;
}
@media only screen and (max-width: 768px) {
  .home-secA .item-grid .item:last-child {
    text-align: center;
  }
}
.home-secA .item-grid .item:last-child p {
  margin: 15px 0 30px;
}
.home-secA .item-grid .item:last-child a {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .home-secA .item-grid .item:last-child a {
    justify-content: center;
  }
}
.home-secA .item-grid .item:last-child a svg {
  fill: var(--primary);
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}
.home-secA .item-grid .item:last-child a:hover svg {
  transform: translateX(-8px);
}

.home-secB, .about-secB {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 300px 0;
}
@media only screen and (max-width: 1450px) {
  .home-secB, .about-secB {
    padding: 200px 0;
  }
}
@media only screen and (max-width: 991px) {
  .home-secB, .about-secB {
    padding: 130px 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB, .about-secB {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB, .about-secB {
    padding: 50px 0;
  }
}
.home-secB::after, .about-secB::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.home-secB video, .about-secB video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  z-index: 0;
  display: block;
}
.home-secB::before, .about-secB::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.33) 0.48%, rgba(0, 0, 0, 0.9) 75.48%);
  z-index: 1;
  pointer-events: none;
}
.home-secB .slider-year, .about-secB .slider-year {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 991px) {
  .home-secB .slider-year, .about-secB .slider-year {
    top: 38%;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .slider-year, .about-secB .slider-year {
    display: none;
  }
}
.home-secB .slider-year .year-wrap, .about-secB .slider-year .year-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  position: relative;
  padding-left: 150px;
}
@media only screen and (max-width: 1520px) {
  .home-secB .slider-year .year-wrap, .about-secB .slider-year .year-wrap {
    padding-left: 140px;
  }
}
@media only screen and (max-width: 1450px) {
  .home-secB .slider-year .year-wrap, .about-secB .slider-year .year-wrap {
    padding-left: 120px;
  }
}
@media only screen and (max-width: 1180px) {
  .home-secB .slider-year .year-wrap, .about-secB .slider-year .year-wrap {
    padding-left: 115px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secB .slider-year .year-wrap, .about-secB .slider-year .year-wrap {
    padding-left: 92px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .slider-year .year-wrap, .about-secB .slider-year .year-wrap {
    padding-left: 100px;
  }
}
.home-secB .slider-year .year-wrap h6, .about-secB .slider-year .year-wrap h6 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-family: "Poppins", serif;
  transition: all 0.3s ease;
  pointer-events: none;
  margin: 0;
}
.home-secB .slider-year .year-wrap h6 span, .about-secB .slider-year .year-wrap h6 span {
  opacity: 0;
  transition: opacity 0.3s ease;
  display: inline-block;
  position: relative;
  left: 20px;
}
@media only screen and (max-width: 1024px) {
  .home-secB .slider-year .year-wrap h6 span, .about-secB .slider-year .year-wrap h6 span {
    left: 15px;
  }
}
.home-secB .slider-year .year-wrap::before, .about-secB .slider-year .year-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  width: 50px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1450px) {
  .home-secB .slider-year .year-wrap::before, .about-secB .slider-year .year-wrap::before {
    width: 45px;
  }
}
@media only screen and (max-width: 1180px) {
  .home-secB .slider-year .year-wrap::before, .about-secB .slider-year .year-wrap::before {
    width: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secB .slider-year .year-wrap::before, .about-secB .slider-year .year-wrap::before {
    width: 40px;
  }
}
.home-secB .slider-year .year-wrap.active h6, .about-secB .slider-year .year-wrap.active h6 {
  color: var(--white);
  pointer-events: auto;
}
.home-secB .slider-year .year-wrap.active h6 span, .about-secB .slider-year .year-wrap.active h6 span {
  opacity: 1;
  color: var(--white);
}
.home-secB .slider-year .year-wrap.active::before, .about-secB .slider-year .year-wrap.active::before {
  background: var(--white);
  width: 120px;
}
@media only screen and (max-width: 1450px) {
  .home-secB .slider-year .year-wrap.active::before, .about-secB .slider-year .year-wrap.active::before {
    width: 110px;
  }
}
@media only screen and (max-width: 1180px) {
  .home-secB .slider-year .year-wrap.active::before, .about-secB .slider-year .year-wrap.active::before {
    width: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secB .slider-year .year-wrap.active::before, .about-secB .slider-year .year-wrap.active::before {
    width: 80px;
  }
}
.home-secB .content, .about-secB .content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin: 0 auto;
}
@media only screen and (max-width: 1780px) {
  .home-secB .content, .about-secB .content {
    max-width: 1220px;
    left: 7%;
  }
}
@media only screen and (max-width: 1520px) {
  .home-secB .content, .about-secB .content {
    max-width: 1080px;
    left: 4%;
  }
}
@media only screen and (max-width: 1366px) {
  .home-secB .content, .about-secB .content {
    left: 8%;
  }
}
@media only screen and (max-width: 1280px) {
  .home-secB .content, .about-secB .content {
    max-width: 960px;
  }
}
@media only screen and (max-width: 1180px) {
  .home-secB .content, .about-secB .content {
    max-width: 840px;
    left: 6%;
  }
}
@media only screen and (max-width: 991px) {
  .home-secB .content, .about-secB .content {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .content, .about-secB .content {
    max-width: 500px;
    gap: 2rem;
    left: 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .content, .about-secB .content {
    grid-template-columns: 1fr;
    max-width: 90%;
    left: 0;
    gap: 2rem;
  }
}
.home-secB .content .year-slider-parent, .about-secB .content .year-slider-parent {
  grid-column: span 2;
  position: relative;
}
.home-secB .content .year-slider-parent, .about-secB .content .year-slider-parent {
  grid-column: span 2;
  position: relative;
}
.home-secB .content .year-slider-parent .swiper-group, .about-secB .content .year-slider-parent .swiper-group {
  z-index: 2;
  left: 40px;
  bottom: 40px;
  display: flex;
  gap: 10px;
  margin-top: 30px;
  position: absolute;
  left: 45%;
  bottom: 20%;
}
@media only screen and (max-width: 1650px) {
  .home-secB .content .year-slider-parent .swiper-group, .about-secB .content .year-slider-parent .swiper-group {
    left: 45%;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secB .content .year-slider-parent .swiper-group, .about-secB .content .year-slider-parent .swiper-group {
    bottom: 18%;
  }
}
@media only screen and (max-width: 991px) {
  .home-secB .content .year-slider-parent .swiper-group, .about-secB .content .year-slider-parent .swiper-group {
    display: none;
  }
}
.home-secB .content .year-slider-parent .swiper-group button, .about-secB .content .year-slider-parent .swiper-group button {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--white);
  transition: all 0.3s ease-in-out;
}
.home-secB .content .year-slider-parent .swiper-group button:hover, .about-secB .content .year-slider-parent .swiper-group button:hover {
  background: var(--white);
}
.home-secB .content .year-slider-parent .swiper-group button:hover svg, .about-secB .content .year-slider-parent .swiper-group button:hover svg {
  stroke: var(--black);
}
.home-secB .content .year-slider-parent .swiper-group button svg, .about-secB .content .year-slider-parent .swiper-group button svg {
  stroke: var(--white);
}
.home-secB .content .year-slider-parent .swiper-group button:first-child, .about-secB .content .year-slider-parent .swiper-group button:first-child {
  transform: rotate(180deg);
}
.home-secB .content .year-slider-parent .year-card, .about-secB .content .year-slider-parent .year-card {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 1024px) {
  .home-secB .content .year-slider-parent .year-card, .about-secB .content .year-slider-parent .year-card {
    gap: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .content .year-slider-parent .year-card, .about-secB .content .year-slider-parent .year-card {
    flex-direction: column;
  }
}
.home-secB .content .year-slider-parent .year-card .yearImg, .about-secB .content .year-slider-parent .year-card .yearImg {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .home-secB .content .year-slider-parent .year-card .yearImg, .about-secB .content .year-slider-parent .year-card .yearImg {
    width: 100%;
  }
}
.home-secB .content .year-slider-parent .year-card .yearImg img, .about-secB .content .year-slider-parent .year-card .yearImg img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secB .content .year-slider-parent .year-card .card-content, .about-secB .content .year-slider-parent .year-card .card-content {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .home-secB .content .year-slider-parent .year-card .card-content, .about-secB .content .year-slider-parent .year-card .card-content {
    margin: 0 0 15%;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 420px) {
  .home-secB .content .year-slider-parent .year-card .card-content, .about-secB .content .year-slider-parent .year-card .card-content {
    margin: 0 0 20%;
  }
}
.home-secB .content .year-slider-parent .year-card .card-content h5, .about-secB .content .year-slider-parent .year-card .card-content h5 {
  font-family: "Poppins", serif;
  color: var(--white);
  margin-bottom: 10px;
}
.home-secB .content .year-slider-parent .year-card .card-content p, .about-secB .content .year-slider-parent .year-card .card-content p {
  color: var(--white);
}
.home-secB .content .year-slider-parent .year-card .swiper-group, .about-secB .content .year-slider-parent .year-card .swiper-group {
  z-index: 2;
  left: 40px;
  bottom: 40px;
  display: flex;
  gap: 10px;
  margin-top: 30px;
  position: absolute;
  left: 45%;
  bottom: 35%;
}
@media only screen and (max-width: 1650px) {
  .home-secB .content .year-slider-parent .year-card .swiper-group, .about-secB .content .year-slider-parent .year-card .swiper-group {
    bottom: 0;
    left: 40%;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .content .year-slider-parent .year-card .swiper-group, .about-secB .content .year-slider-parent .year-card .swiper-group {
    justify-content: center;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .content .year-slider-parent .year-card .swiper-group, .about-secB .content .year-slider-parent .year-card .swiper-group {
    display: none;
  }
}
.home-secB .content .year-slider-parent .year-card .swiper-group button, .about-secB .content .year-slider-parent .year-card .swiper-group button {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--white);
  transition: all 0.3s ease-in-out;
}
.home-secB .content .year-slider-parent .year-card .swiper-group button:hover, .about-secB .content .year-slider-parent .year-card .swiper-group button:hover {
  background: var(--white);
}
.home-secB .content .year-slider-parent .year-card .swiper-group button:hover svg, .about-secB .content .year-slider-parent .year-card .swiper-group button:hover svg {
  stroke: var(--black);
}
.home-secB .content .year-slider-parent .year-card .swiper-group button svg, .about-secB .content .year-slider-parent .year-card .swiper-group button svg {
  stroke: var(--white);
}
.home-secB .content .year-slider-parent .year-card .swiper-group button:first-child, .about-secB .content .year-slider-parent .year-card .swiper-group button:first-child {
  transform: rotate(180deg);
}
.home-secB .content .yearAll, .about-secB .content .yearAll {
  margin-left: 65px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media only screen and (max-width: 1180px) {
  .home-secB .content .yearAll, .about-secB .content .yearAll {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secB .content .yearAll, .about-secB .content .yearAll {
    grid-column: span 2;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .content .yearAll, .about-secB .content .yearAll {
    align-items: center;
  }
}
.home-secB .content .yearAll .text, .about-secB .content .yearAll .text {
  position: relative;
  height: 150px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .home-secB .content .yearAll .text, .about-secB .content .yearAll .text {
    height: 130px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secB .content .yearAll .text, .about-secB .content .yearAll .text {
    width: 40%;
    height: 110px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .content .yearAll .text, .about-secB .content .yearAll .text {
    height: 100px;
  }
}
@media only screen and (max-width: 420px) {
  .home-secB .content .yearAll .text, .about-secB .content .yearAll .text {
    width: 62%;
  }
}
.home-secB .content .yearAll .text p, .about-secB .content .yearAll .text p {
  font-size: 10rem;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-65%);
  background: linear-gradient(180deg, #FFE29F 0%, #AE8625 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "Optima";
  z-index: 2;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
}
@media only screen and (max-width: 1680px) {
  .home-secB .content .yearAll .text p, .about-secB .content .yearAll .text p {
    right: -3px;
  }
}
@media only screen and (max-width: 1366px) {
  .home-secB .content .yearAll .text p, .about-secB .content .yearAll .text p {
    right: 4px;
  }
}
@media only screen and (max-width: 1280px) {
  .home-secB .content .yearAll .text p, .about-secB .content .yearAll .text p {
    right: -14px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secB .content .yearAll .text p, .about-secB .content .yearAll .text p {
    font-size: 120px;
    right: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secB .content .yearAll .text p, .about-secB .content .yearAll .text p {
    font-size: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .content .yearAll .text p, .about-secB .content .yearAll .text p {
    font-size: 85px;
    transform: translateY(-78%);
  }
}
.home-secB .content .yearAll .text h1, .about-secB .content .yearAll .text h1 {
  background: linear-gradient(180deg, #FFE29F 0%, #AE8625 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: absolute;
  top: 0;
  left: -38px;
  width: 100%;
  text-align: center;
  transform: translateY(100%);
  animation: slideUp 10s ease-in-out infinite;
  animation-fill-mode: both;
  height: 100%;
  opacity: 0;
}
@media only screen and (max-width: 1024px) {
  .home-secB .content .yearAll .text h1, .about-secB .content .yearAll .text h1 {
    font-size: 120px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secB .content .yearAll .text h1, .about-secB .content .yearAll .text h1 {
    font-size: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .content .yearAll .text h1, .about-secB .content .yearAll .text h1 {
    font-size: 85px;
  }
}
.home-secB .content .yearAll .text h1:nth-child(1), .about-secB .content .yearAll .text h1:nth-child(1) {
  animation-delay: 0s;
}
.home-secB .content .yearAll .text h1:nth-child(2), .about-secB .content .yearAll .text h1:nth-child(2) {
  animation-delay: 2s;
}
.home-secB .content .yearAll .text h1:nth-child(3), .about-secB .content .yearAll .text h1:nth-child(3) {
  animation-delay: 4s;
}
.home-secB .content .yearAll .text h1:nth-child(4), .about-secB .content .yearAll .text h1:nth-child(4) {
  animation-delay: 6s;
}
.home-secB .content .yearAll .text h1:nth-child(5), .about-secB .content .yearAll .text h1:nth-child(5) {
  animation-delay: 8s;
}
.home-secB .content .yearAll .year-logo, .about-secB .content .yearAll .year-logo {
  width: 265px;
}
@media only screen and (max-width: 991px) {
  .home-secB .content .yearAll .year-logo, .about-secB .content .yearAll .year-logo {
    width: 200px;
  }
}
.home-secB .content .yearAll .year-logo img, .about-secB .content .yearAll .year-logo img {
  width: 100%;
  height: auto;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  5% {
    transform: translateY(0%);
    opacity: 1;
  }
  20% {
    transform: translateY(0%);
    opacity: 1;
  }
  25% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.home-secC {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
@media only screen and (max-width: 540px) {
  .home-secC {
    padding: 40px 0;
  }
}
.home-secC video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  z-index: -1;
}
.home-secC::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.83));
  z-index: 1;
  pointer-events: none;
}
.home-secC .home-secC-content {
  position: relative;
  width: 100%;
  z-index: 4;
}
.home-secC .home-secC-content .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 540px) {
  .home-secC .home-secC-content .heading {
    flex-direction: column;
    margin-bottom: 35px;
    gap: 20px;
  }
}
.home-secC .home-secC-content .heading .tab-parent {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media only screen and (max-width: 991px) {
  .home-secC .home-secC-content .heading .tab-parent {
    gap: 24px;
  }
}
@media only screen and (max-width: 420px) {
  .home-secC .home-secC-content .heading .tab-parent {
    gap: 20px;
    width: 300px;
    overflow-x: scroll;
  }
}
.home-secC .home-secC-content .heading .tab-parent .tab-nav {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media only screen and (max-width: 420px) {
  .home-secC .home-secC-content .heading .tab-parent .tab-nav {
    gap: 20px;
  }
}
.home-secC .home-secC-content .heading .tab-parent .tab-nav li {
  position: relative;
  font-size: 1rem;
  color: #3f3f3f;
  padding: 8px 0;
}
.home-secC .home-secC-content .heading .tab-parent .tab-nav li::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.4s ease-in-out;
}
.home-secC .home-secC-content .heading .tab-parent .tab-nav li.active {
  color: var(--primary);
}
.home-secC .home-secC-content .heading .tab-parent .tab-nav li.active::before {
  width: 100%;
}
.home-secC .home-secC-content .heading .tab-parent .tab-nav li:hover {
  cursor: pointer;
  color: var(--primary);
}
.home-secC .home-secC-content .heading .tab-parent .tab-nav li:hover::before {
  width: 100%;
}
.home-secC .home-secC-content .heading .tab-parent .swiper-group {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .home-secC .home-secC-content .heading .tab-parent .swiper-group {
    gap: 15px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .home-secC-content .heading .tab-parent .swiper-group {
    display: none !important;
  }
}
.home-secC .home-secC-content .heading .tab-parent .swiper-group button svg {
  width: 35px;
  height: 35px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .home-secC .home-secC-content .heading .tab-parent .swiper-group button svg {
    width: 25px;
    height: 25px;
  }
}
@media only screen and (max-width: 420px) {
  .home-secC .home-secC-content .heading .tab-parent .swiper-group button svg {
    width: 20px;
    height: 20px;
  }
}
.home-secC .home-secC-content .heading .tab-parent .swiper-group button svg path {
  stroke: var(--black);
}
.home-secC .home-secC-content .heading .tab-parent .swiper-group button:first-child {
  transform: rotate(180deg);
}
.home-secC .home-secC-content .tab-swiper {
  max-width: 68%;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  display: flex;
  cursor: pointer;
  padding: 0 1rem;
}
@media only screen and (max-width: 1366px) {
  .home-secC .home-secC-content .tab-swiper {
    max-width: 1280px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secC .home-secC-content .tab-swiper {
    max-width: 800px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secC .home-secC-content .tab-swiper {
    max-width: 650px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .home-secC-content .tab-swiper {
    max-width: 100%;
    padding: 0 0.5rem;
  }
}
.home-secC .home-secC-content .tab-swiper .swiper-wrapper {
  display: flex;
  justify-content: center;
}
.home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card {
  border-radius: 15px;
  overflow: hidden;
  display: block;
}
.home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card .image-container {
  overflow: hidden;
  height: 310px;
}
@media only screen and (max-width: 768px) {
  .home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card .image-container {
    height: 220px;
  }
}
.home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card .image-container img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card .image-container img:hover {
  transform: scale(1.02);
}
.home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card .tab-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: var(--white);
  transition: background 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card .tab-card-content {
    padding: 18px;
    justify-content: center;
  }
}
@media only screen and (max-width: 420px) {
  .home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card .tab-card-content {
    padding: 10px;
  }
}
.home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card:hover .tab-card-content {
  background: var(--primary);
}
.home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card:hover div h4,
.home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card:hover div p {
  color: var(--white);
}
@media only screen and (max-width: 420px) {
  .home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card:hover div h4,
  .home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card:hover div p {
    font-size: 13px;
  }
}
.home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card:hover .price {
  color: var(--white);
}
@media only screen and (max-width: 420px) {
  .home-secC .home-secC-content .tab-swiper .swiper-wrapper .swiper-slide .tab-swiper-card:hover .price {
    font-size: 13px;
  }
}

.home-secD {
  padding: 80px 0 0;
}
@media only screen and (max-width: 1024px) {
  .home-secD {
    padding: 50px 0 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD {
    padding: 40px 0 0;
  }
}
.home-secD .heading {
  text-align: center;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .home-secD .heading {
    padding-bottom: 40px;
  }
}
.home-secD .cart-parent {
  overflow: hidden;
}
.home-secD .cart-parent .card-wrap {
  display: flex;
  width: 100%;
  overflow-x: hidden;
  transition: all 2s ease;
  gap: 2px;
  height: 570px;
}
@media only screen and (max-width: 991px) {
  .home-secD .cart-parent .card-wrap {
    height: 450px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .cart-parent .card-wrap {
    height: 350px;
  }
}
.home-secD .cart-parent .card-wrap .card {
  flex-shrink: 0;
  width: 26%;
  position: relative;
  opacity: 0.7;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media only screen and (max-width: 540px) {
  .home-secD .cart-parent .card-wrap .card {
    width: 15%;
  }
}
@media only screen and (max-width: 420px) {
  .home-secD .cart-parent .card-wrap .card {
    width: 12%;
  }
}
.home-secD .cart-parent .card-wrap .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%), linear-gradient(360deg, rgba(0, 0, 0, 0) 67%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}
.home-secD .cart-parent .card-wrap .card video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.home-secD .cart-parent .card-wrap .card .card-content {
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  color: #fff;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .home-secD .cart-parent .card-wrap .card .card-content {
    padding: 25px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .cart-parent .card-wrap .card .card-content {
    opacity: 0;
    text-align: left;
    padding: 20px;
  }
}
@media only screen and (max-width: 420px) {
  .home-secD .cart-parent .card-wrap .card .card-content {
    padding: 15px;
  }
}
.home-secD .cart-parent .card-wrap .card .card-content h6 {
  font-size: 22px;
  margin: 0 0 20px;
  pointer-events: auto;
}
@media only screen and (max-width: 540px) {
  .home-secD .cart-parent .card-wrap .card .card-content h6 {
    font-size: 18px;
  }
}
.home-secD .cart-parent .card-wrap .card .card-content .card-inner {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s;
  pointer-events: none;
  width: 42%;
}
@media only screen and (max-width: 1450px) {
  .home-secD .cart-parent .card-wrap .card .card-content .card-inner {
    width: 75%;
  }
}
@media only screen and (max-width: 991px) {
  .home-secD .cart-parent .card-wrap .card .card-content .card-inner {
    width: 90%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .cart-parent .card-wrap .card .card-content .card-inner {
    width: 100%;
  }
}
.home-secD .cart-parent .card-wrap .card .card-content .card-inner p {
  color: var(--white);
  margin-bottom: 30px;
}
@media only screen and (max-width: 540px) {
  .home-secD .cart-parent .card-wrap .card .card-content .card-inner p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.home-secD .cart-parent .card-wrap .card:hover::before {
  opacity: 0.9;
}
.home-secD .cart-parent .card-wrap .card:hover video {
  transform: scale(1.05);
}
.home-secD .cart-parent .card-wrap .card.middle {
  width: 48%;
  opacity: 1;
}
@media only screen and (max-width: 540px) {
  .home-secD .cart-parent .card-wrap .card.middle {
    width: 74%;
  }
}
.home-secD .cart-parent .card-wrap .card.middle .card-content {
  pointer-events: auto;
  opacity: 1;
}
.home-secD .cart-parent .card-wrap .card.middle .card-content .card-inner {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.home-secG {
  padding: 80px 0;
}
@media only screen and (max-width: 1024px) {
  .home-secG {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secG {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secG .container {
    max-width: 100%;
    padding-left: 12px;
  }
}
.home-secG .sub-heading {
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  padding: 0 0 80px;
  line-height: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (max-width: 1024px) {
  .home-secG .sub-heading {
    padding: 0 0 50px;
  }
}
@media only screen and (max-width: 420px) {
  .home-secG .sub-heading {
    padding: 0 0 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
}
.home-secG .sub-heading h3 {
  width: 30%;
  margin: 0 auto;
  text-transform: uppercase;
}
@media only screen and (max-width: 1670px) {
  .home-secG .sub-heading h3 {
    width: 36%;
  }
}
@media only screen and (max-width: 1390px) {
  .home-secG .sub-heading h3 {
    width: 45%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secG .sub-heading h3 {
    width: 65%;
  }
}
@media only screen and (max-width: 420px) {
  .home-secG .sub-heading h3 {
    width: 100%;
  }
}
.home-secG .sub-heading .swiper-group {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 540px) {
  .home-secG .sub-heading .swiper-group {
    display: none;
  }
}
.home-secG .sub-heading .swiper-group button svg {
  width: 35px;
  height: 35px;
  display: block;
}
.home-secG .sub-heading .swiper-group button svg path {
  stroke: var(--black);
}
.home-secG .sub-heading .swiper-group button:first-child {
  transform: rotate(180deg);
}
.home-secG .testimonial {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 410px;
  margin: 3px;
}
@media only screen and (max-width: 540px) {
  .home-secG .testimonial {
    height: auto;
    padding: 30px 10px;
  }
}
.home-secG .testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 540px) {
  .home-secG .testimonial img {
    width: 80px;
    height: 80px;
  }
}
.home-secG .testimonial .name {
  font-size: 20px;
  text-transform: uppercase;
  margin: 20px 0;
  color: var(--black);
}
@media only screen and (max-width: 540px) {
  .home-secG .testimonial .name {
    margin: 10px 0;
  }
}
.home-secG .testimonial .stars {
  color: #f0932b;
}
.home-secG .testimonial .stars img {
  width: 25px;
  height: 25px;
}
.home-secG .testimonial p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-top: 10px;
}/*# sourceMappingURL=home.css.map */