@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.home-banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  background: #0d0d0d;
}
@media only screen and (max-width: 991px) {
  .home-banner {
    height: calc(100vh - 64px);
  }
}
@media only screen and (max-width: 540px) {
  .home-banner {
    height: calc(100vh - 64px);
  }
}
.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.1) 20% 20%), linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 35%);
}
@media only screen and (max-width: 540px) {
  .home-banner::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0) 30%), linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 32%);
  }
}
.home-banner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.55;
}
.home-banner .bg-wrapper {
  width: 100%;
  position: absolute;
  z-index: 2;
  bottom: 18%;
  text-align: center;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .home-banner .bg-wrapper {
    bottom: 20%;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper {
    bottom: 7%;
  }
}
.home-banner .bg-wrapper .content h1 {
  color: rgba(255, 255, 255, 0.73);
  font-size: 18px;
  font-family: "Sweet Sans Pro";
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.home-banner .bg-wrapper .content h2 {
  color: var(--white);
  font-size: 48px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 auto 15px;
  font-family: "Louize trial";
  max-width: 800px;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-wrapper .content h2 {
    font-size: 28px;
    max-width: 80%;
    line-height: 1.2;
  }
}

.home-secA {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .home-secA {
    height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .home-secA {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA {
    height: 60vh;
  }
}
.home-secA::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(268deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
@media only screen and (max-width: 768px) {
  .home-secA::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  }
}
.home-secA .banner {
  height: 100%;
}
.home-secA .bg {
  height: 100%;
}
.home-secA .bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .home-secA .bg .container {
    padding: 0;
  }
}
.home-secA .bg .container .bg-wrapper {
  position: absolute;
  z-index: 1;
  width: 90%;
  left: 50%;
  bottom: 14%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .home-secA .bg .container .bg-wrapper {
    text-align: center;
    bottom: -10%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .bg .container .bg-wrapper {
    bottom: 0%;
    width: 100%;
  }
}
.home-secA .bg .container .bg-wrapper h2 {
  font-family: "Louize trial";
  font-weight: 500;
  font-size: 36px;
  line-height: 45px;
  color: var(--white);
  max-width: 559px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .home-secA .bg .container .bg-wrapper h2 {
    margin: auto;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .bg .container .bg-wrapper h2 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
    max-width: 262px;
  }
}
.home-secA .bg .container .bg-wrapper p {
  font-family: "Sweet Sans Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  max-width: 523px;
}
@media only screen and (max-width: 991px) {
  .home-secA .bg .container .bg-wrapper p {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.8784313725);
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .bg .container .bg-wrapper p {
    max-width: 85%;
    margin: auto;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8588235294);
  }
}

.home-secB {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .home-secB {
    height: 80vh;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB {
    height: 70vh;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB {
    height: 70vh;
  }
}
.home-secB .banner {
  height: 100%;
}
.home-secB .bg {
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .home-secB .bg {
    height: 100% !important;
  }
}
.home-secB .bg .bg-wrapper {
  height: 100%;
}
.home-secB .bg .bg-wrapper .circle {
  cursor: pointer;
}
.home-secB .bg .bg-wrapper .circle figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 213px;
  height: 213px;
  background: rgba(255, 255, 255, 0.2117647059);
  border-radius: 50%;
  padding: 10px;
}
.home-secB .bg .bg-wrapper .circle figure img {
  width: 100%;
  height: 100%;
  animation: spin 16s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.home-secB .bg .bg-wrapper .circle figure .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-secB .bg .bg-wrapper .circle figure .play-button .play-btn {
  --btnsize: 80px !important;
}

.home-secC .heading, .home-secD .heading, .home-secE .heading {
  padding: 50px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 540px) {
  .home-secC .heading, .home-secD .heading, .home-secE .heading {
    padding: 20px 0;
  }
}
.home-secC .heading figure, .home-secD .heading figure, .home-secE .heading figure {
  text-align: center;
  margin-bottom: 25px;
  width: 50px;
  margin: 0 auto 10px;
}
.home-secC .heading h2, .home-secD .heading h2, .home-secE .heading h2 {
  color: #000000;
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 540px) {
  .home-secC .heading h2, .home-secD .heading h2, .home-secE .heading h2 {
    font-size: 28px;
  }
}
.home-secC .banner, .home-secD .banner, .home-secE .banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
}
@media only screen and (max-width: 1024px) {
  .home-secC .banner, .home-secD .banner, .home-secE .banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 768px) {
  .home-secC .banner, .home-secD .banner, .home-secE .banner {
    height: 70vh;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .banner, .home-secD .banner, .home-secE .banner {
    height: 70vh;
  }
}
.home-secC .banner::before, .home-secD .banner::before, .home-secE .banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.45) 65.87%), linear-gradient(180deg, rgba(0, 0, 0, 0) 54.81%, rgba(0, 0, 0, 0.65) 100%);
}
@media only screen and (max-width: 768px) {
  .home-secC .banner::before, .home-secD .banner::before, .home-secE .banner::before {
    background: linear-gradient(359deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 65.87%), linear-gradient(180deg, rgba(0, 0, 0, 0) 54.81%, rgba(0, 0, 0, 0.65) 100%);
  }
}
.home-secC .banner .bg, .home-secD .banner .bg, .home-secE .banner .bg {
  height: 100%;
}
.home-secC .banner .bg video, .home-secD .banner .bg video, .home-secE .banner .bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .home-secC .banner .bg .container, .home-secD .banner .bg .container, .home-secE .banner .bg .container {
    padding: 0;
  }
}
.home-secC .banner .bg .container .bg-wrapper, .home-secD .banner .bg .container .bg-wrapper, .home-secE .banner .bg .container .bg-wrapper {
  position: absolute;
  width: 90%;
  left: 50%;
  bottom: 7%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media only screen and (max-width: 991px) {
  .home-secC .banner .bg .container .bg-wrapper, .home-secD .banner .bg .container .bg-wrapper, .home-secE .banner .bg .container .bg-wrapper {
    bottom: 10%;
    align-items: center;
    bottom: -10%;
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .banner .bg .container .bg-wrapper, .home-secD .banner .bg .container .bg-wrapper, .home-secE .banner .bg .container .bg-wrapper {
    bottom: 0%;
    gap: 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .banner .bg .container .bg-wrapper .left-content, .home-secD .banner .bg .container .bg-wrapper .left-content, .home-secE .banner .bg .container .bg-wrapper .left-content {
    margin: auto;
  }
}
.home-secC .banner .bg .container .bg-wrapper .left-content h2, .home-secD .banner .bg .container .bg-wrapper .left-content h2, .home-secE .banner .bg .container .bg-wrapper .left-content h2 {
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 15px;
}
@media only screen and (max-width: 540px) {
  .home-secC .banner .bg .container .bg-wrapper .left-content h2, .home-secD .banner .bg .container .bg-wrapper .left-content h2, .home-secE .banner .bg .container .bg-wrapper .left-content h2 {
    font-size: 28px;
    margin-bottom: 0;
  }
}
.home-secC .banner .bg .container .bg-wrapper .left-content p, .home-secD .banner .bg .container .bg-wrapper .left-content p, .home-secE .banner .bg .container .bg-wrapper .left-content p {
  font-family: "Sweet Sans Pro";
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  max-width: 60%;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .home-secC .banner .bg .container .bg-wrapper .left-content p, .home-secD .banner .bg .container .bg-wrapper .left-content p, .home-secE .banner .bg .container .bg-wrapper .left-content p {
    margin: auto;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .banner .bg .container .bg-wrapper .left-content p, .home-secD .banner .bg .container .bg-wrapper .left-content p, .home-secE .banner .bg .container .bg-wrapper .left-content p {
    max-width: 100%;
  }
}
.home-secC .banner .bg .container .bg-wrapper .left-content .bottom-btn, .home-secD .banner .bg .container .bg-wrapper .left-content .bottom-btn, .home-secE .banner .bg .container .bg-wrapper .left-content .bottom-btn {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 0;
  margin-top: 20px;
  position: relative;
  transition: 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .home-secC .banner .bg .container .bg-wrapper .left-content .bottom-btn, .home-secD .banner .bg .container .bg-wrapper .left-content .bottom-btn, .home-secE .banner .bg .container .bg-wrapper .left-content .bottom-btn {
    margin: auto;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .banner .bg .container .bg-wrapper .left-content .bottom-btn, .home-secD .banner .bg .container .bg-wrapper .left-content .bottom-btn, .home-secE .banner .bg .container .bg-wrapper .left-content .bottom-btn {
    margin-top: 0;
  }
}
.home-secC .banner .bg .container .bg-wrapper .left-content .bottom-btn::before, .home-secD .banner .bg .container .bg-wrapper .left-content .bottom-btn::before, .home-secE .banner .bg .container .bg-wrapper .left-content .bottom-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D8AF56;
  transition: 0.5s ease;
  z-index: -1;
}
.home-secC .banner .bg .container .bg-wrapper .left-content .bottom-btn span, .home-secD .banner .bg .container .bg-wrapper .left-content .bottom-btn span, .home-secE .banner .bg .container .bg-wrapper .left-content .bottom-btn span {
  font-family: "Sweet Sans Pro";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: var(--white);
  transition: 0.5s ease;
}
.home-secC .banner .bg .container .bg-wrapper .left-content .bottom-btn:hover, .home-secD .banner .bg .container .bg-wrapper .left-content .bottom-btn:hover, .home-secE .banner .bg .container .bg-wrapper .left-content .bottom-btn:hover {
  padding: 10px 14px;
}
.home-secC .banner .bg .container .bg-wrapper .left-content .bottom-btn:hover::before, .home-secD .banner .bg .container .bg-wrapper .left-content .bottom-btn:hover::before, .home-secE .banner .bg .container .bg-wrapper .left-content .bottom-btn:hover::before {
  height: 100%;
}
.home-secC .banner .bg .container .bg-wrapper .left-content .bottom-btn figure, .home-secD .banner .bg .container .bg-wrapper .left-content .bottom-btn figure, .home-secE .banner .bg .container .bg-wrapper .left-content .bottom-btn figure {
  width: 20px;
}
.home-secC .banner .bg .container .bg-wrapper .left-content .bottom-btn figure img, .home-secD .banner .bg .container .bg-wrapper .left-content .bottom-btn figure img, .home-secE .banner .bg .container .bg-wrapper .left-content .bottom-btn figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-secC .banner .bg .container .bg-wrapper .left-content .bottom-btn figure svg path, .home-secD .banner .bg .container .bg-wrapper .left-content .bottom-btn figure svg path, .home-secE .banner .bg .container .bg-wrapper .left-content .bottom-btn figure svg path {
  stroke: var(--white);
  transition: 0.5s ease;
}
.home-secC .banner .bg .container .bg-wrapper .right-content, .home-secD .banner .bg .container .bg-wrapper .right-content, .home-secE .banner .bg .container .bg-wrapper .right-content {
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .home-secC .banner .bg .container .bg-wrapper .right-content, .home-secD .banner .bg .container .bg-wrapper .right-content, .home-secE .banner .bg .container .bg-wrapper .right-content {
    margin: auto;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .banner .bg .container .bg-wrapper .right-content, .home-secD .banner .bg .container .bg-wrapper .right-content, .home-secE .banner .bg .container .bg-wrapper .right-content {
    display: none;
  }
}
.home-secC .banner .bg .container .bg-wrapper .right-content .grid-box, .home-secD .banner .bg .container .bg-wrapper .right-content .grid-box, .home-secE .banner .bg .container .bg-wrapper .right-content .grid-box {
  display: flex;
  gap: 20px;
}
.home-secC .banner .bg .container .bg-wrapper .right-content .grid-box .col, .home-secD .banner .bg .container .bg-wrapper .right-content .grid-box .col, .home-secE .banner .bg .container .bg-wrapper .right-content .grid-box .col {
  border-radius: 5px;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 164px;
  height: 125px;
}
@media only screen and (max-width: 540px) {
  .home-secC .banner .bg .container .bg-wrapper .right-content .grid-box .col, .home-secD .banner .bg .container .bg-wrapper .right-content .grid-box .col, .home-secE .banner .bg .container .bg-wrapper .right-content .grid-box .col {
    width: auto;
  }
}
.home-secC .banner .bg .container .bg-wrapper .right-content .grid-box .col figure, .home-secD .banner .bg .container .bg-wrapper .right-content .grid-box .col figure, .home-secE .banner .bg .container .bg-wrapper .right-content .grid-box .col figure {
  width: 24px;
}
.home-secC .banner .bg .container .bg-wrapper .right-content .grid-box .col figure img, .home-secD .banner .bg .container .bg-wrapper .right-content .grid-box .col figure img, .home-secE .banner .bg .container .bg-wrapper .right-content .grid-box .col figure img {
  width: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-secC .banner .bg .container .bg-wrapper .right-content .grid-box .col h6, .home-secD .banner .bg .container .bg-wrapper .right-content .grid-box .col h6, .home-secE .banner .bg .container .bg-wrapper .right-content .grid-box .col h6 {
  font-family: "Sweet Sans Pro";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  text-transform: capitalize;
}
.home-secC .banner .bg .container .bg-wrapper .right-content .grid-box .col p, .home-secD .banner .bg .container .bg-wrapper .right-content .grid-box .col p, .home-secE .banner .bg .container .bg-wrapper .right-content .grid-box .col p {
  font-family: "Sweet Sans Pro";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #666666;
  color: var(--white);
  opacity: 0.8;
}
@media only screen and (max-width: 540px) {
  .home-secC .banner .bg .container .bg-wrapper .right-content .grid-box .col p, .home-secD .banner .bg .container .bg-wrapper .right-content .grid-box .col p, .home-secE .banner .bg .container .bg-wrapper .right-content .grid-box .col p {
    line-height: 1.3;
  }
}
.home-secC .banner .bg .container .bg-wrapper .right-content .grid-box .col img, .home-secD .banner .bg .container .bg-wrapper .right-content .grid-box .col img, .home-secE .banner .bg .container .bg-wrapper .right-content .grid-box .col img {
  filter: brightness(0) invert(1);
}

.home-secF {
  background: var(--white);
  position: relative;
  z-index: 1;
  height: auto;
  padding: 70px 0 50px 0;
}
@media only screen and (max-width: 768px) {
  .home-secF {
    height: auto;
    padding: 70px 0 0 0;
  }
}
.home-secF h2 {
  text-align: center;
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--black);
}
@media only screen and (max-width: 540px) {
  .home-secF h2 {
    font-size: 34px;
  }
}
.home-secF .tab-section .tab-nav {
  margin-top: 15px;
  position: relative;
  padding-bottom: 30px;
}
@media only screen and (max-width: 540px) {
  .home-secF .tab-section .tab-nav {
    width: 100%;
    padding-bottom: 30px;
  }
}
.home-secF .tab-section .tab-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 540px) {
  .home-secF .tab-section .tab-nav ul {
    width: 100%;
    overflow-x: auto;
    gap: 20px;
  }
}
.home-secF .tab-section .tab-nav ul li {
  font-family: "Sweet Sans Pro";
  font-weight: 500;
  font-size: 16px;
  color: #7f7f7f;
  transition: 0.5s ease;
  position: relative;
  padding: 0 0 10px 0;
}
@media only screen and (max-width: 540px) {
  .home-secF .tab-section .tab-nav ul li {
    white-space: nowrap;
  }
}
.home-secF .tab-section .tab-nav ul li.active {
  font-weight: 400;
  color: var(--black);
}
@media only screen and (max-width: 540px) {
  .home-secF .tab-section .tab-nav ul li.active {
    font-size: 16px;
  }
}
.home-secF .tab-section .tab-nav ul li.active::before {
  width: 100%;
}
.home-secF .tab-section .tab-nav ul li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: black;
  transition: 0.5s ease;
}
.home-secF .tab-section .tab-nav .swiper-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 25px;
  display: none;
}
@media only screen and (max-width: 540px) {
  .home-secF .tab-section .tab-nav .swiper-nav {
    display: none;
  }
}
.home-secF .tab-section .tab-nav .swiper-nav button.swiper-button-disabled {
  opacity: 0.5;
  cursor: no-drop;
}
.home-secF .tab-section .tab-nav-content .tabs {
  padding: 0 0 30px 0;
  transition: 0.7s ease;
  opacity: 0;
  transform: translateY(20%);
}
.home-secF .tab-section .tab-nav-content .tabs.active {
  transform: translateY(0%);
  opacity: 1;
}
.home-secF .tab-section .tab-nav-content .tabs .swiper .swiper-slide:hover figure img {
  scale: 1.1;
  z-index: -1;
}
.home-secF .tab-section .tab-nav-content .tabs .swiper .swiper-slide figure {
  position: relative;
  line-height: 0;
  overflow: hidden;
  width: 100%;
  height: 404px;
  border-radius: 10px;
}
@media only screen and (max-width: 540px) {
  .home-secF .tab-section .tab-nav-content .tabs .swiper .swiper-slide figure {
    height: 310px;
  }
}
.home-secF .tab-section .tab-nav-content .tabs .swiper .swiper-slide figure::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24.52%, rgba(0, 0, 0, 0.75) 87.02%);
  z-index: 1;
}
.home-secF .tab-section .tab-nav-content .tabs .swiper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.home-secF .tab-section .tab-nav-content .tabs .swiper .swiper-slide figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  z-index: 2;
}
.home-secF .tab-section .tab-nav-content .tabs .swiper .swiper-slide figure figcaption h5 {
  font-family: "Louize trial";
  font-size: 24px;
  color: var(--white);
  padding-bottom: 8px;
}
.home-secF .tab-section .tab-nav-content .tabs .swiper .swiper-slide figure figcaption p {
  font-family: "Sweet Sans Pro";
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
}
.home-secF .bottom-btn {
  text-align: center;
}
.home-secF .bottom-btn .view-all-btn {
  background: black;
  color: white;
  padding: 6px 23px;
  padding: 6px 23px;
  font-family: "Circular Pro Book";
  font-weight: 450;
  font-size: 16px;
  text-align: center;
  border-radius: 25px;
  transition: 0.7s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  border: 1px solid var(--white);
}
.home-secF .bottom-btn .view-all-btn::before {
  content: "";
  position: absolute;
  background: #D8AF56;
  width: 100%;
  height: 100%;
  bottom: -100%;
  left: 0;
  transition: 0.5s ease;
  z-index: -1;
}
.home-secF .bottom-btn .view-all-btn:hover {
  color: white;
  border: 1px solid #D8AF56;
}
.home-secF .bottom-btn .view-all-btn:hover::before {
  bottom: 0;
}

.home-secG {
  background: white;
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.home-secG .heading {
  margin-bottom: 40px;
}
.home-secG .heading h2 {
  text-align: center;
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 38px;
  margin: auto;
  text-transform: capitalize;
  color: var(--black);
}
@media only screen and (max-width: 540px) {
  .home-secG .heading h2 {
    font-size: 25px;
    max-width: 100%;
  }
}
.home-secG .grid-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 880px;
  margin: auto;
}
@media only screen and (max-width: 540px) {
  .home-secG .grid-box {
    gap: 12px;
  }
}
.home-secG .grid-box .col {
  height: 150px;
  max-width: 150px;
  line-height: 0;
}
@media only screen and (max-width: 540px) {
  .home-secG .grid-box .col {
    height: 115px;
    max-width: 115px;
  }
}
.home-secG .grid-box .col img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=home.css.map */