@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.banner::before {
  background: var(--gradient-a) !important;
}
@media only screen and (max-width: 1024px) {
  .banner .bg {
    height: 60vh !important;
  }
}
@media only screen and (max-width: 991px) {
  .banner .bg {
    height: 80vh !important;
  }
}
@media only screen and (max-width: 768px) {
  .banner .bg {
    height: 58vh !important;
  }
}
.banner .bg .circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: rgb(253, 208, 134);
  z-index: 5;
}
@media only screen and (max-width: 1366px) {
  .banner .bg .circle {
    width: 500px;
    height: 500px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner .bg .circle {
    display: none;
  }
}
.banner .bg .banner-wrapper {
  bottom: 0% !important;
  left: 50% !important;
  transform: translate(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .banner .bg .banner-wrapper {
    top: 60% !important;
    transform: translate(-50%, -50%);
  }
}
.banner .bg .banner-wrapper .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: calc(100vh - 120px);
}
@media only screen and (max-width: 540px) {
  .banner .bg .banner-wrapper .banner-content {
    padding: 0;
    height: 100%;
  }
}
.banner .bg .banner-wrapper .banner-content img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.home-secA {
  background: var(--gradient-d);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .home-secA {
    padding: 3rem 0;
  }
}
.home-secA .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 3rem;
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 95%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1024px) {
  .home-secA .grid {
    gap: 4rem;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 540px) {
  .home-secA .grid {
    gap: 2rem;
  }
}
.home-secA .grid .item-content {
  max-width: 520px;
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .item-content {
    padding-right: 0;
    text-align: center;
    max-width: 100%;
  }
}
.home-secA .grid .item-content p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.4;
}
.home-secA .grid .item-content .btn-fill {
  margin-top: 30px;
}
.home-secA .item-img {
  position: relative;
  width: 100%;
  max-width: 565px;
  aspect-ratio: 1/1;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .home-secA .item-img {
    margin: 0 auto;
  }
}
.home-secA .item-img img,
.home-secA .item-img video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.home-secA .item-img .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.home-secB {
  padding: 70px 0;
  background: var(--fourth);
}
@media only screen and (max-width: 540px) {
  .home-secB {
    padding: 45px 0 100px;
  }
}
.home-secB .container {
  padding-right: 0;
}
.home-secB .heading {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 540px) {
  .home-secB .heading {
    margin-bottom: 1rem;
  }
}
.home-secB .commanSlider .swiper-wrapper {
  padding: 10px;
}
.home-secB .commanSlider .swiper-wrapper .card {
  width: 274px;
  height: 274px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  display: block;
  transition: transform 0.35s ease;
}
@media only screen and (max-width: 540px) {
  .home-secB .commanSlider .swiper-wrapper .card {
    width: 254px;
    height: 254px;
  }
}
.home-secB .commanSlider .swiper-wrapper .card::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(177.37deg, rgba(4, 4, 4, 0) 62.82%, #0A0A0A 126.3%);
  transition: opacity 0.35s ease;
}
.home-secB .commanSlider .swiper-wrapper .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease;
}
.home-secB .commanSlider .swiper-wrapper .card h6 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.home-secB .commanSlider .swiper-wrapper .card:hover {
  transform: scale(1.04);
}
.home-secB .commanSlider .swiper-wrapper .card:hover img {
  transform: scale(1.12);
}
.home-secB .commanSlider .swiper-wrapper .card:hover h6 {
  transform: translateX(-50%) translateY(-8px);
  opacity: 1;
}

.home-secC {
  background: rgb(120, 143, 115);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .home-secC {
    padding: 20px 0;
  }
}
.home-secC .saveUpTo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 540px) {
  .home-secC .saveUpTo {
    right: 12px;
    top: 12px;
    transform: 0;
    width: 140px;
  }
}
.home-secC .saveUpTo img {
  display: block;
}
.home-secC .grid-wrap {
  position: relative;
  overflow: hidden;
}
.home-secC .grid-wrap .leafs {
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
  transform: rotate(270deg);
  filter: blur(3px);
}
.home-secC .grid-wrap .leafs img {
  width: 250px;
  display: block;
}
.home-secC .grid-wrap .grid {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  .home-secC .grid-wrap .grid {
    gap: 20rem;
  }
}
@media only screen and (max-width: 768px) {
  .home-secC .grid-wrap .grid {
    gap: 16rem;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .grid-wrap .grid {
    grid-template-columns: 1fr;
    height: 30vh;
    gap: 0;
  }
}
.home-secC .grid-wrap .grid .item-left img {
  width: 300px;
  display: block;
}
@media only screen and (max-width: 540px) {
  .home-secC .grid-wrap .grid .item-left img {
    display: none;
  }
}
.home-secC .grid-wrap .grid .item-right {
  width: 100%;
  max-width: 450px;
  margin-left: auto;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .home-secC .grid-wrap .grid .item-right {
    text-align: center;
    margin: 0 auto;
    max-width: 225px;
  }
}
.home-secC .grid-wrap .grid .item-right h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.home-secC .grid-wrap .grid .item-right p {
  color: rgb(255, 255, 255);
  font-weight: 400;
}

.home-secD, .home-secG {
  padding: 70px 0;
}
@media only screen and (max-width: 540px) {
  .home-secD, .home-secG {
    padding: 45px 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-secD .container, .home-secG .container {
    padding-right: 0;
  }
}
.home-secD .heading, .home-secG .heading {
  text-align: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 540px) {
  .home-secD .heading, .home-secG .heading {
    margin-bottom: 1rem;
  }
}
.home-secD .heading h3, .home-secG .heading h3 {
  color: var(--thirdy);
  width: 100%;
  text-align: center;
}
.home-secD .heading .swiper-group, .home-secG .heading .swiper-group {
  display: flex;
  align-items: center;
  gap: 5px;
}
.home-secD .heading .swiper-group button svg, .home-secG .heading .swiper-group button svg {
  display: block;
  width: 35px;
  height: 35px;
}
.home-secD .heading .swiper-group button svg path, .home-secG .heading .swiper-group button svg path {
  fill: var(--primary);
}
.home-secD .heading .swiper-group button:last-child, .home-secG .heading .swiper-group button:last-child {
  transform: rotate(180deg);
}
.home-secD .commanSlider .swiper-wrapper, .home-secD .commanSlider1 .swiper-wrapper, .home-secG .commanSlider .swiper-wrapper, .home-secG .commanSlider1 .swiper-wrapper {
  padding: 10px 0;
  display: flex;
  align-items: stretch;
}
.home-secD .commanSlider .swiper-wrapper .swiper-slide, .home-secD .commanSlider1 .swiper-wrapper .swiper-slide, .home-secG .commanSlider .swiper-wrapper .swiper-slide, .home-secG .commanSlider1 .swiper-wrapper .swiper-slide {
  height: auto;
  display: flex;
}
.home-secD .commanSlider .swiper-wrapper .viral-card, .home-secD .commanSlider1 .swiper-wrapper .viral-card, .home-secG .commanSlider .swiper-wrapper .viral-card, .home-secG .commanSlider1 .swiper-wrapper .viral-card {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  flex: 1;
  overflow: hidden;
}
.home-secD .commanSlider .swiper-wrapper .viral-card .img-box, .home-secD .commanSlider1 .swiper-wrapper .viral-card .img-box, .home-secG .commanSlider .swiper-wrapper .viral-card .img-box, .home-secG .commanSlider1 .swiper-wrapper .viral-card .img-box {
  width: 100%;
  display: flex;
  justify-content: center;
}
.home-secD .commanSlider .swiper-wrapper .viral-card .img-box img, .home-secD .commanSlider1 .swiper-wrapper .viral-card .img-box img, .home-secG .commanSlider .swiper-wrapper .viral-card .img-box img, .home-secG .commanSlider1 .swiper-wrapper .viral-card .img-box img {
  width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-secD .commanSlider .swiper-wrapper .viral-card .card-content, .home-secD .commanSlider1 .swiper-wrapper .viral-card .card-content, .home-secG .commanSlider .swiper-wrapper .viral-card .card-content, .home-secG .commanSlider1 .swiper-wrapper .viral-card .card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media only screen and (max-width: 540px) {
  .home-secD .commanSlider .swiper-wrapper .viral-card .card-content, .home-secD .commanSlider1 .swiper-wrapper .viral-card .card-content, .home-secG .commanSlider .swiper-wrapper .viral-card .card-content, .home-secG .commanSlider1 .swiper-wrapper .viral-card .card-content {
    padding: 15px;
  }
}
.home-secD .commanSlider .swiper-wrapper .viral-card .card-content .rating, .home-secD .commanSlider1 .swiper-wrapper .viral-card .card-content .rating, .home-secG .commanSlider .swiper-wrapper .viral-card .card-content .rating, .home-secG .commanSlider1 .swiper-wrapper .viral-card .card-content .rating {
  display: flex;
  gap: 3px;
  margin-bottom: 5px;
}
.home-secD .commanSlider .swiper-wrapper .viral-card .card-content .rating img, .home-secD .commanSlider1 .swiper-wrapper .viral-card .card-content .rating img, .home-secG .commanSlider .swiper-wrapper .viral-card .card-content .rating img, .home-secG .commanSlider1 .swiper-wrapper .viral-card .card-content .rating img {
  width: 15px;
}
.home-secD .commanSlider .swiper-wrapper .viral-card .card-content .rating span, .home-secD .commanSlider1 .swiper-wrapper .viral-card .card-content .rating span, .home-secG .commanSlider .swiper-wrapper .viral-card .card-content .rating span, .home-secG .commanSlider1 .swiper-wrapper .viral-card .card-content .rating span {
  font-size: 12px;
  margin-left: 6px;
  color: var(--black);
}
.home-secD .commanSlider .swiper-wrapper .viral-card .card-content .title, .home-secD .commanSlider1 .swiper-wrapper .viral-card .card-content .title, .home-secG .commanSlider .swiper-wrapper .viral-card .card-content .title, .home-secG .commanSlider1 .swiper-wrapper .viral-card .card-content .title {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.home-secD .commanSlider .swiper-wrapper .viral-card .card-content .sub, .home-secD .commanSlider1 .swiper-wrapper .viral-card .card-content .sub, .home-secG .commanSlider .swiper-wrapper .viral-card .card-content .sub, .home-secG .commanSlider1 .swiper-wrapper .viral-card .card-content .sub {
  font-size: 12px;
  color: var(--text);
  line-height: 1.3;
  margin: 5px 0 6px;
}
.home-secD .commanSlider .swiper-wrapper .viral-card .card-content .size, .home-secD .commanSlider1 .swiper-wrapper .viral-card .card-content .size, .home-secG .commanSlider .swiper-wrapper .viral-card .card-content .size, .home-secG .commanSlider1 .swiper-wrapper .viral-card .card-content .size {
  font-size: 12px;
  color: var(--black);
}
.home-secD .commanSlider .swiper-wrapper .viral-card .card-content .price, .home-secD .commanSlider1 .swiper-wrapper .viral-card .card-content .price, .home-secG .commanSlider .swiper-wrapper .viral-card .card-content .price, .home-secG .commanSlider1 .swiper-wrapper .viral-card .card-content .price {
  margin: 10px 0 15px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.home-secD .commanSlider .swiper-wrapper .viral-card .card-content .btn, .home-secD .commanSlider1 .swiper-wrapper .viral-card .card-content .btn, .home-secG .commanSlider .swiper-wrapper .viral-card .card-content .btn, .home-secG .commanSlider1 .swiper-wrapper .viral-card .card-content .btn {
  margin-top: auto;
}

.home-secG {
  padding: 0;
}
.home-secG .heading {
  justify-content: flex-end;
}

.home-secE {
  padding: 70px 0;
}
.home-secE .view-btn {
  text-align: center;
}
.home-secE .heading {
  text-align: center;
  position: relative;
}
.home-secE .heading .swiper-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.home-secE .heading .swiper-group button svg {
  display: block;
  width: 20px;
  height: 20px;
}
.home-secE .heading .swiper-group button svg path {
  fill: var(--primary);
  transition: fill 0.3s ease;
}
.home-secE .heading .swiper-group button:last-child {
  transform: rotate(180deg);
}
.home-secE .heading div {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.home-secE .heading div h3 {
  color: var(--thirdy);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.home-secE .heading div p {
  color: var(--text);
  font-size: 1rem;
  font-weight: 300;
}
.home-secE .concernBy-slide {
  padding: 0 20px;
  overflow: hidden;
}
.home-secE .concernBy-slide .swiper-wrapper {
  align-items: center;
}
.home-secE .concernBy-slide .swiper-wrapper .swiper-slide {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), margin 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(0.75);
  margin-top: 8rem;
  will-change: transform, opacity, margin;
}
.home-secE .concernBy-slide .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(0.75);
  opacity: 1;
  margin-top: 8rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), margin 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-secE .concernBy-slide .swiper-wrapper .swiper-slide.swiper-slide-next + .swiper-slide {
  transform: scale(1);
  opacity: 1;
  margin-bottom: 12rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), margin 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-secE .concernBy-slide .swiper-wrapper .swiper-slide.swiper-slide-prev {
  transform: scale(0.85);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), margin 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-secE .concernBy-slide .swiper-wrapper .swiper-slide.swiper-slide-prev ~ .swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) {
  transform: scale(0.75);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-secE .concernBy-slide .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
  margin-bottom: 12rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), margin 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-secE .concernBy-slide .swiper-wrapper .swiper-slide.swiper-slide-active .card img {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.home-secE .concernBy-slide .swiper-wrapper .card {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-secE .concernBy-slide .swiper-wrapper .card:hover {
  transform: translateY(-3px);
}
.home-secE .concernBy-slide .swiper-wrapper .card img {
  display: block;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-secE .concernBy-slide .swiper-wrapper .card p {
  padding: 15px 0;
  text-align: center;
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 500;
}

.home-secF {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .home-secF {
    min-height: 60vh;
  }
}
.home-secF::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 75, 56, 0.75);
  z-index: 1;
}
.home-secF video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.home-secF .content-wrapper {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  padding: 80px 20px;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .home-secF .content-wrapper {
    padding: 50px 0;
  }
}
.home-secF .content-wrapper img {
  display: block;
  margin: 0 auto 20px;
  width: 200px;
  height: auto;
}
.home-secF .content-wrapper h3 {
  color: white;
  font-weight: 400;
  margin: 2rem 0 1.5rem;
  letter-spacing: 1px;
}
.home-secF .content-wrapper p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}
.home-secF .content-wrapper p:last-child {
  margin-bottom: 0;
}

.home-secI {
  padding: 70px 0;
  background: rgb(219, 228, 226);
}
@media only screen and (max-width: 540px) {
  .home-secI {
    padding: 45px 0;
  }
}
.home-secI .container {
  padding-right: 0;
  margin-right: 0;
}
.home-secI .heading {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 540px) {
  .home-secI .heading {
    margin-bottom: 1rem;
  }
}
.home-secI .heading h3 {
  color: var(--thirdy);
}
.home-secI .loveLatter-slider .swiper-wrapper .grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-radius: 15px;
  overflow: hidden;
}
.home-secI .loveLatter-slider .swiper-wrapper .grid .item-content {
  background: var(--white);
  padding: 30px;
}
@media only screen and (max-width: 540px) {
  .home-secI .loveLatter-slider .swiper-wrapper .grid .item-content {
    padding: 15px;
  }
}
.home-secI .loveLatter-slider .swiper-wrapper .grid .item-content p:not(:last-child) {
  margin: 15px 0 20px;
  font-size: 14px;
  line-height: 1.3;
  color: #666;
}
@media only screen and (max-width: 540px) {
  .home-secI .loveLatter-slider .swiper-wrapper .grid .item-content p:not(:last-child) {
    margin: 4px 0 12px;
  }
}
.home-secI .loveLatter-slider .swiper-wrapper .grid .item-img img {
  border-radius: 0 15px 15px 0;
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-secJ {
  padding: 70px 0;
  background: var(--white);
}
@media only screen and (max-width: 991px) {
  .home-secJ {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-secJ {
    padding: 40px 0;
  }
}
.home-secJ .heading {
  text-align: center;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.home-secJ .heading p {
  opacity: 0.7;
}
.home-secJ .row {
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  .home-secJ .row {
    margin-top: 50px;
  }
}
.home-secJ .row .swiperD .swiper-wrapper {
  transition-timing-function: linear;
}/*# sourceMappingURL=home.css.map */