@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");
@import "bootstrap/dist/css/bootstrap.min.html";
@font-face {
  font-family: "bebas";
  src: url("../fonts/BebasNeue-Regular.ttf");
  font-weight: 700;
  font-style: normal;
}
* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 4px;
}
body::-webkit-scrollbar-thumb {
  background-color: #ffd13b;
}
body::-webkit-scrollbar-track {
  background-color: transparent;
}

.scroll-container {
  justify-content: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.content {
  width: 60%;
  padding-top: 50px;
}

.wave {
  -webkit-animation-name: wave;
  animation-name: wave;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes wave {
  0% {
    -webkit-box-shadow: 0 0 0px 0px rgba(227, 189, 74, 0.5019607843);
    box-shadow: 0 0 0px 0px rgba(227, 189, 74, 0.5019607843);
  }
  100% {
    -webkit-box-shadow: 0 0 0px 50% rgba(227, 189, 74, 0);
    box-shadow: 0 0 0px 15% rgba(227, 189, 74, 0);
  }
}
@keyframes horizontal-shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes wave {
  0% {
    -webkit-box-shadow: 0 0 0px 0px rgba(227, 189, 74, 0.5019607843);
    box-shadow: 0 0 0px 0px rgba(227, 189, 74, 0.5019607843);
  }
  100% {
    -webkit-box-shadow: 0 0 0px 1vh rgba(227, 189, 74, 0);
    box-shadow: 0 0 0px 2vh rgba(227, 189, 74, 0);
  }
}
@keyframes border-dance {
  0% {
    background-position: 0px 0px, 100% 100%, 0px 100%, 100% 0px;
  }
  100% {
    background-position: 100% 0px, 0px 100%, 0px 0px, 100% 100%;
  }
}
@keyframes back-forth {
  0% {
    transform: rotate(290deg) scale(2.5);
  }
  50% {
    transform: rotate(305deg) scale(2.5);
  }
  100% {
    transform: rotate(290deg) scale(2.5);
  }
}
div:has(svg) svg,
span:has(svg) svg {
  width: 100%;
  height: 100%;
}

figure:has(img) {
  margin-bottom: 0;
}
figure:has(img) img {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

b,
strong {
  font-weight: 600;
}

section {
  padding: 45px 0;
}
@media (min-width: 576px) {
  section {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  section {
    padding: 80px 0;
  }
}
section:not(:has(.banner)) {
  position: relative;
  z-index: 10;
}

.custom-btn {
  background: transparent;
  border-radius: 0;
  border: 2px solid rgba(255, 209, 59, 0.7);
  font-size: 14px;
  transition: 0.3s;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 14px;
  width: max-content;
  white-space: nowrap;
  color: #556f74;
  position: relative;
  overflow: hidden;
}
@media (min-width: 576px) {
  .custom-btn {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .custom-btn {
    font-size: 16px;
    padding: 13px 36px;
  }
}
.custom-btn._filled {
  color: #556f74;
}
.custom-btn._filled:hover {
  color: #fff;
}
.custom-btn._filled:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
.custom-btn._filled:hover::after {
  right: 0;
  left: auto;
  width: 100%;
}
.custom-btn._filled::before {
  content: "";
  height: 50%;
  position: absolute;
  width: 0;
  background-color: rgba(255, 209, 59, 0.7);
  top: 0;
  right: 0;
  transition: 0.4s;
  z-index: -1;
}
.custom-btn._filled::after {
  content: "";
  height: 50%;
  position: absolute;
  width: 0;
  background-color: rgba(255, 209, 59, 0.7);
  bottom: 0;
  left: 0;
  transition: 0.4s;
  z-index: -1;
}
.custom-btn.bg-filled {
  background-color: #ffd13b;
}
.custom-btn.bg-filled span {
  position: relative;
  z-index: 2;
  color: #fff;
  transition: 0.4s;
}
.custom-btn.bg-filled:hover span {
  color: #556f74;
}
.custom-btn.bg-filled:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
.custom-btn.bg-filled:hover::after {
  right: 0;
  left: auto;
  width: 100%;
}
.custom-btn.bg-filled::before {
  content: "";
  height: 50%;
  position: absolute;
  width: 0;
  background-color: #fff;
  top: 0;
  right: 0;
  transition: 0.4s;
  z-index: 1;
}
.custom-btn.bg-filled::after {
  content: "";
  height: 50%;
  position: absolute;
  width: 0;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transition: 0.4s;
  z-index: 1;
}

.word {
  overflow: hidden;
}

.parallax-bg {
  overflow: hidden;
  position: relative;
}

.blob {
  position: absolute;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  filter: blur(84px);
  z-index: 0;
}
@media (min-width: 992px) {
  .blob {
    height: 550px;
    width: 550px;
  }
}

.bg-figure {
  position: absolute;
  width: 100%;
  height: 106%;
  z-index: -1;
  top: 0;
  left: 0;
}
@media (min-width: 576px) {
  .bg-figure {
    height: 120%;
    top: -10%;
  }
}
@media (min-width: 992px) {
  .bg-figure {
    height: 110%;
    top: -3%;
  }
}
.bg-figure img {
  object-fit: cover;
}

.heading h3 {
  text-transform: uppercase;
  font-size: 13px;
  position: relative;
  width: max-content;
  text-align: center;
  margin-block-end: 0 auto;
  font-weight: 500;
  margin-bottom: 0;
  color: #ffd13b;
  padding-left: 17px;
  padding-right: 17px;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .heading h3 {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .heading h3 {
    font-size: 16px;
  }
}
@media (min-width: 576px) {
  .heading h3 {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 768px) {
  .heading h3 {
    margin-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.heading h3:before, .heading h3::after {
  content: "";
  width: 7px;
  aspect-ratio: 1/1;
  position: absolute;
  display: block;
  top: 48%;
  left: 0px;
  background-color: #ffd13b;
  transform: translate(0%, -50%);
}
@media (min-width: 576px) {
  .heading h3:before, .heading h3::after {
    width: 9px;
  }
}
@media (min-width: 992px) {
  .heading h3:before, .heading h3::after {
    top: 40%;
  }
}
.heading h3::after {
  right: 0px;
  left: unset;
}
@media (min-width: 768px) {
  .heading h3::after {
    right: 0px;
  }
}
.heading h2 {
  font-size: 24px;
  color: #2a5962;
  font-weight: 400;
}
@media (min-width: 576px) {
  .heading h2 {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .heading h2 {
    font-size: 36px;
    margin-top: 16px;
  }
}
@media (min-width: 1200px) {
  .heading h2 {
    font-size: 38px;
  }
}
.heading p {
  color: #556f74;
  font-size: 14px;
  font-weight: 400;
  margin-top: 18px;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .heading p {
    font-size: 16px;
    line-height: 1.5;
  }
}

.moving-border {
  background: linear-gradient(90deg, #ffd13b 70%, transparent 70%), linear-gradient(90deg, #ffd13b 70%, transparent 70%), linear-gradient(0deg, #ffd13b 70%, transparent 70%), linear-gradient(0deg, #ffd13b 70%, transparent 70%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 15px 4px, 15px 4px, 4px 15px, 4px 15px;
  background-position: 0px 0px, 200px 100px, 0px 100px, 200px 0px;
  padding: 10px;
  animation: border-dance 4s infinite linear;
}

.reveal-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.reveal-image img {
  width: 100%;
  object-fit: cover;
  opacity: 0;
}
.reveal-image::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #2a5962;
}

.reveal-image-from-bottom {
  overflow: hidden;
  display: none;
}
@media (min-width: 576px) {
  .reveal-image-from-bottom {
    display: block;
  }
}
.reveal-image-from-bottom img {
  height: 100%;
  opacity: 0;
}
.reveal-image-from-bottom span {
  position: absolute;
  width: 100%;
  height: 0%;
  top: 0;
  left: 0;
  background-color: #f1f8fa;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  z-index: 50;
}
header .nav-wrap .container {
  border-right: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-left: 1px solid rgba(255, 255, 255, 0.3019607843);
}
header .nav-wrap .side-nav-btn {
  width: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  outline: 0;
  background-color: transparent;
  width: 30px;
  left: 25px;
}
@media (min-width: 376px) {
  header .nav-wrap .side-nav-btn {
    left: 30px;
  }
}
@media (min-width: 768px) {
  header .nav-wrap .side-nav-btn {
    left: 90px;
    width: 36px;
  }
}
@media (min-width: 992px) {
  header .nav-wrap .side-nav-btn {
    left: calc((100vw - 960px) / 1);
  }
}
@media (min-width: 1200px) {
  header .nav-wrap .side-nav-btn {
    left: calc((100vw - 1140px) / 7);
  }
}
@media (min-width: 1400px) {
  header .nav-wrap .side-nav-btn {
    left: 8px;
  }
}
@media (min-width: 1450px) {
  header .nav-wrap .side-nav-btn {
    left: calc((100vw - 1320px) / 7);
    width: 50px;
  }
}
@media (min-width: 1700px) {
  header .nav-wrap .side-nav-btn {
    left: calc((100vw - 1320px) / 4.5);
  }
}
header .nav-wrap .side-nav-btn img {
  width: 100%;
}
header .nav-wrap .side-nav-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  aspect-ratio: 1/1;
}
header .nav-wrap .side-nav-call {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 35px;
  height: 35px;
  aspect-ratio: 1;
  background-color: #ffd13b;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  header .nav-wrap .side-nav-call {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 768px) {
  header .nav-wrap .side-nav-call {
    right: 75px;
  }
}
@media (min-width: 992px) {
  header .nav-wrap .side-nav-call {
    right: calc((100vw - 960px) / 8);
    display: none;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1200px) {
  header .nav-wrap .side-nav-call {
    right: calc((100vw - 1140px) / 15);
    display: flex;
  }
}
@media (min-width: 1400px) {
  header .nav-wrap .side-nav-call {
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1450px) {
  header .nav-wrap .side-nav-call {
    right: calc((100vw - 1320px) / 6);
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1700px) {
  header .nav-wrap .side-nav-call {
    right: calc((100vw - 1320px) / 4);
  }
}
header .nav-wrap .side-nav-call img {
  width: 90%;
}
header .nav-wrap .side-nav-call span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  aspect-ratio: 1/1;
}
header .nav-wrap .main-wrap {
  display: flex;
  justify-content: space-between;
}
header .nav-wrap .main-wrap ul.primary {
  display: none;
  pointer-events: all;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
}
@media (min-width: 1200px) {
  header .nav-wrap .main-wrap ul.primary {
    display: grid;
    width: 100%;
  }
}
header .nav-wrap .main-wrap ul.primary li {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .nav-wrap .main-wrap ul.primary li a {
  text-decoration: none;
  text-align: center;
  color: #fff;
  height: 100%;
  width: 100%;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .nav-wrap .main-wrap ul.primary li a:hover {
  color: #ffd13b;
}
header .nav-wrap .main-wrap ul.primary li a.active {
  color: #ffd13b;
}
header .nav-wrap .main-wrap .right-nav {
  width: 40%;
  pointer-events: none;
  display: flex;
}
@media (min-width: 1200px) {
  header .nav-wrap .main-wrap .right-nav {
    width: 37.5%;
  }
}
header .nav-wrap .main-wrap .right-nav ul {
  display: none;
  pointer-events: all;
  grid-template-columns: repeat(3, 1fr) !important;
  height: 100%;
}
@media (min-width: 1200px) {
  header .nav-wrap .main-wrap .right-nav ul {
    display: grid;
    width: 100%;
  }
}
header .nav-wrap .main-wrap .right-nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .nav-wrap .main-wrap .right-nav ul li a {
  text-decoration: none;
  text-align: center;
  color: #fff;
  height: 100%;
  width: 100%;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .nav-wrap .main-wrap .right-nav ul li a:hover {
  color: #ffd13b;
}
header .nav-wrap .main-wrap .right-nav ul li a.active {
  color: #ffd13b;
}
header .nav-wrap .main-wrap .middle-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  width: 100%;
}
.middle-nav img{
  width: 90px;
  height: 90px;
  border-radius: 15px;
  position: relative;
  bottom: 0px;
}
.figure-wrapper img {
  width: 70%;
  height: 60%;
  position: relative;
  left: 55px;
}
@media (min-width: 992px) {
  header .nav-wrap .main-wrap .middle-nav {
    width: 20%;
  }
}
@media (min-width: 1450px) {
  header .nav-wrap .main-wrap .middle-nav {
    width: 25%;
    border-inline: unset;
  }
}
header .nav-wrap .main-wrap .middle-nav a figure {
  height: 47px;
}
@media (min-width: 768px) {
  header .nav-wrap .main-wrap .middle-nav a figure {
    height: 50px;
  }
}
@media (min-width: 1200px) {
  header .nav-wrap .main-wrap .middle-nav a figure {
    height: 61px;
  }
}
header .nav-wrap .main-wrap .middle-nav a figure img {
  width: 100%;
}
header .nav-wrap .main-wrap .left-nav {
  width: 37.5%;
  position: relative;
  pointer-events: none;
  display: flex;
}
@media (min-width: 322px) {
  header .nav-wrap .main-wrap .left-nav {
    pointer-events: none;
  }
}
@media (min-width: 1200px) {
  header .nav-wrap .main-wrap .left-nav {
    pointer-events: all;
  }
}
header .nav-wrap .main-wrap .left-nav .nav-call {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  background-color: #ffd13b;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 80px;
  display: none;
}
@media (min-width: 992px) {
  header .nav-wrap .main-wrap .left-nav .nav-call {
    display: flex;
  }
}
@media (min-width: 1200px) {
  header .nav-wrap .main-wrap .left-nav .nav-call {
    display: none;
  }
}
header .nav-wrap .main-wrap .right-nav {
  pointer-events: all;
  position: relative;
}
header .nav-wrap .main-wrap .right-nav .nav-social-links {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
@media (min-width: 992px) {
  header .nav-wrap .main-wrap .right-nav .nav-social-links {
    display: block;
  }
}
@media (min-width: 1200px) {
  header .nav-wrap .main-wrap .right-nav .nav-social-links {
    display: none;
  }
}
header .nav-wrap .main-wrap .right-nav .nav-social-links ul {
  display: flex;
  align-items: center;
}
header .nav-wrap .main-wrap .right-nav .nav-social-links ul li {
  position: relative;
  margin-inline: 5px;
  z-index: 1;
}
header .nav-wrap .main-wrap .right-nav .nav-social-links ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
header .nav-wrap .main-wrap .right-nav .nav-social-links ul li:nth-child(2) a svg {
  width: 18px;
}
header .nav-wrap .main-wrap .right-nav .nav-social-links ul li:nth-child(3) a svg {
  margin-bottom: 3px;
}
header .nav-wrap .main-wrap .right-nav .nav-social-links ul li a {
  aspect-ratio: 1;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .nav-wrap .main-wrap .right-nav .nav-social-links ul li a svg {
  width: 20px;
  fill: #fff;
}

.scroll-cursor {
  height: 50px;
  width: 50px;
  padding: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  opacity: 0;
  top: 0px;
  left: 0px;
  z-index: 15;
  background-color: #000;
  transition: 0.3s;
}

section.banner,
section.page-header-wrapper {
  padding: 0;
  z-index: 2;
  position: relative;
  height: 95vh;
  width: 100%;
  top: -2px;
  left: 0;
}
@media (min-width: 576px) {
  section.banner,
  section.page-header-wrapper {
    height: 100vh;
  }
}
@media (min-width: 1450px) {
  section.banner,
  section.page-header-wrapper {
    height: 95vh;
  }
}
section.banner .banner-slider,
section.page-header-wrapper .banner-slider {
  height: 100%;
}
section.banner .banner-slider .splide__track,
section.page-header-wrapper .banner-slider .splide__track {
  height: 100%;
}
section.banner .banner-slider .splide__track .splide__list .splide__slide,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide {
  position: relative;
}
section.banner .banner-slider .splide__track .splide__list .splide__slide figure,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
section.banner .banner-slider .splide__track .splide__list .splide__slide figure::before,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 15, 7, 0.4901960784);
  pointer-events: none;
}
section.banner .banner-slider .splide__track .splide__list .splide__slide figure img,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content {
  position: absolute;
  left: 0;
  top: 300px;
  z-index: 2;
  width: 98%;
  padding: 20px;
}
@media (min-width: 376px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content {
    top: 350px;
  }
}
@media (min-width: 576px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content {
    width: 470px;
    padding: 30px;
  }
}
@media (min-width: 768px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content {
    top: 50%;
    transform: translate(0, -50%) !important;
    width: 610px;
    padding: 30px;
  }
}
@media (min-width: 992px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content {
    background-color: #004743;
    padding: 35px;
    width: 680px;
    top: 50%;
    transform: translate(0, -50%) !important;
  }
}
@media (min-width: 1200px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content {
    padding: 40px;
  }
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content::before,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  z-index: -1;
  pointer-events: none;
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading span.tag,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading span.tag {
  text-transform: uppercase;
  font-weight: 600;
  color: #ffd13b;
  display: block;
  font-size: 13px;
  max-width: 80%;
  margin-bottom: 8px;
  opacity: 0;
}
@media (min-width: 576px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading span.tag,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading span.tag {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading span.tag,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading span.tag {
    margin-bottom: 15px;
  }
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading h1,
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_h2,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading h1,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_h2 {
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1.4;
  font-size: 23px;
  margin: 0px;
  opacity: 0;
}
@media (min-width: 576px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading h1,
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_h2,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading h1,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_h2 {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading h1,
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_h2,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading h1,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_h2 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading h1,
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_h2,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading h1,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_h2 {
    font-size: 36px;
  }
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading h1 span,
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_h2 span,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading h1 span,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_h2 span {
  font-weight: 600;
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_p p,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_p p {
  color: white;
  font-size: 14px;
  margin-top: 8px;
  opacity: 0;
}
@media (min-width: 768px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_p p,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_p p {
    margin-top: 25px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_p p,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_p p {
    margin-top: 15px;
  }
}
@media (min-width: 1200px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_p p,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .first_slide_p p {
    font-size: 16px;
  }
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading p.first_slide_p,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading p.first_slide_p {
  color: white;
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .btn-wrap,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .btn-wrap {
  display: none;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .btn-wrap,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .btn-wrap {
    display: flex;
  }
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .btn-wrap button,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .btn-wrap button {
  opacity: 0;
}
@media (min-width: 768px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .btn-wrap button,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .banner-heading .btn-wrap button {
    margin-top: -20px;
  }
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .slide-count,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .slide-count {
  position: absolute;
  top: 2%;
  right: 4%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .slide-count span,
section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .slide-count span {
  color: transparent;
  font-weight: 700;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffd13b;
  font-size: 36px;
}
@media (min-width: 576px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content .slide-count span,
  section.page-header-wrapper .banner-slider .splide__track .splide__list .splide__slide .banner-content .slide-count span {
    font-size: 50px;
  }
}
section.banner .banner-slider .splide__pagination,
section.page-header-wrapper .banner-slider .splide__pagination {
  left: 20%;
  right: 90% !important;
  width: min-content;
  rotate: 270deg;
  bottom: 30%;
  top: -50%;
  flex-direction: column;
  flex-wrap: unset;
  bottom: calc((100vw - 960px) / 1);
}
@media (min-width: 768px) {
  section.banner .banner-slider .splide__pagination,
  section.page-header-wrapper .banner-slider .splide__pagination {
    top: 50%;
    transform: translateY(-50%);
    left: 90%;
    width: min-content;
    rotate: 0deg;
    flex-direction: column;
  }
}
section.banner .banner-slider .splide__pagination li button,
section.page-header-wrapper .banner-slider .splide__pagination li button {
  background-color: rgba(255, 255, 255, 0.5);
  margin-block: 10px;
}
@media (min-width: 768px) {
  section.banner .banner-slider .splide__pagination li button,
  section.page-header-wrapper .banner-slider .splide__pagination li button {
    margin-block: 20px;
  }
}
section.banner .banner-slider .splide__pagination li button.is-active,
section.page-header-wrapper .banner-slider .splide__pagination li button.is-active {
  transform: unset;
  -webkit-animation-name: wave;
  animation-name: wave;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-color: #fff;
}
section.banner .banner-fixed-content,
section.page-header-wrapper .banner-fixed-content {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
section.banner .banner-fixed-content > .container,
section.page-header-wrapper .banner-fixed-content > .container {
  height: 100%;
}
section.banner .banner-fixed-content .bottom-arrows,
section.page-header-wrapper .banner-fixed-content .bottom-arrows {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  pointer-events: all;
}
@media (min-width: 576px) {
  section.banner .banner-fixed-content .bottom-arrows,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows {
    height: 80px;
  }
}
@media (min-width: 768px) {
  section.banner .banner-fixed-content .bottom-arrows,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows {
    height: 100px;
  }
}
@media (min-width: 1450px) {
  section.banner .banner-fixed-content .bottom-arrows,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows {
    height: 120px;
  }
}
section.banner .banner-fixed-content .bottom-arrows button,
section.page-header-wrapper .banner-fixed-content .bottom-arrows button {
  border: 0;
  outline: 0;
  background-color: transparent;
  height: 70px;
  width: 70px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  section.banner .banner-fixed-content .bottom-arrows button,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows button {
    height: 80px;
    width: 80px;
  }
}
@media (min-width: 768px) {
  section.banner .banner-fixed-content .bottom-arrows button,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows button {
    height: 100px;
    width: 100px;
  }
}
@media (min-width: 1450px) {
  section.banner .banner-fixed-content .bottom-arrows button,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows button {
    height: 120px;
    width: 120px;
  }
}
section.banner .banner-fixed-content .bottom-arrows button span,
section.page-header-wrapper .banner-fixed-content .bottom-arrows button span {
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  section.banner .banner-fixed-content .bottom-arrows button span,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows button span {
    width: 30px;
  }
}
section.banner .banner-fixed-content .bottom-arrows button:nth-child(1),
section.page-header-wrapper .banner-fixed-content .bottom-arrows button:nth-child(1) {
  left: 0;
}
section.banner .banner-fixed-content .bottom-arrows button:nth-child(2),
section.page-header-wrapper .banner-fixed-content .bottom-arrows button:nth-child(2) {
  right: 0;
}
section.banner .banner-fixed-content .bottom-arrows._small,
section.page-header-wrapper .banner-fixed-content .bottom-arrows._small {
  height: 40px;
}
@media (min-width: 576px) {
  section.banner .banner-fixed-content .bottom-arrows._small,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows._small {
    height: 80px;
  }
}
section.banner .banner-fixed-content .bottom-arrows .scroll-down,
section.page-header-wrapper .banner-fixed-content .bottom-arrows .scroll-down {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.banner .banner-fixed-content .bottom-arrows .scroll-down a,
section.page-header-wrapper .banner-fixed-content .bottom-arrows .scroll-down a {
  text-decoration: none;
  color: #fff;
  position: relative;
  font-size: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2px;
}
@media (min-width: 576px) {
  section.banner .banner-fixed-content .bottom-arrows .scroll-down a,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows .scroll-down a {
    font-size: 18px;
    row-gap: 5px;
  }
}
@media (min-width: 768px) {
  section.banner .banner-fixed-content .bottom-arrows .scroll-down a,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows .scroll-down a {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  section.banner .banner-fixed-content .bottom-arrows .scroll-down a,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows .scroll-down a {
    font-size: 22px;
  }
}
section.banner .banner-fixed-content .bottom-arrows .scroll-down a::before,
section.page-header-wrapper .banner-fixed-content .bottom-arrows .scroll-down a::before {
  content: "";
  display: block;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #ffd13b;
  width: 14px;
  height: 8px;
}
@media (min-width: 768px) {
  section.banner .banner-fixed-content .bottom-arrows .scroll-down a::before,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows .scroll-down a::before {
    top: -10px;
    width: 18px;
    height: 10px;
  }
}
@media (min-width: 992px) {
  section.banner .banner-fixed-content .bottom-arrows .scroll-down a::before,
  section.page-header-wrapper .banner-fixed-content .bottom-arrows .scroll-down a::before {
    top: -20px;
    width: 20px;
    height: 12px;
  }
}
section.banner .social-media-links,
section.page-header-wrapper .social-media-links {
  position: absolute;
  bottom: 80px;
  display: none;
}
@media (min-width: 576px) {
  section.banner .social-media-links,
  section.page-header-wrapper .social-media-links {
    display: block;
  }
}
@media (min-width: 768px) {
  section.banner .social-media-links,
  section.page-header-wrapper .social-media-links {
    bottom: 120px;
    left: calc((100vw - 720px) / 1.5);
  }
}
@media (min-width: 992px) {
  section.banner .social-media-links,
  section.page-header-wrapper .social-media-links {
    display: none;
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
  }
}
@media (min-width: 1200px) {
  section.banner .social-media-links,
  section.page-header-wrapper .social-media-links {
    display: block;
    left: 11px;
  }
}
@media (min-width: 1450px) {
  section.banner .social-media-links,
  section.page-header-wrapper .social-media-links {
    left: calc((100vw - 1320px) / 6);
  }
}
@media (min-width: 1700px) {
  section.banner .social-media-links,
  section.page-header-wrapper .social-media-links {
    left: calc((100vw - 1320px) / 4.5);
  }
}
section.banner .social-media-links ul,
section.page-header-wrapper .social-media-links ul {
  display: flex;
}
@media (min-width: 992px) {
  section.banner .social-media-links ul,
  section.page-header-wrapper .social-media-links ul {
    flex-direction: column;
  }
}
section.banner .social-media-links ul li,
section.page-header-wrapper .social-media-links ul li {
  position: relative;
  margin-inline: 5px;
  z-index: 1;
}
@media (min-width: 992px) {
  section.banner .social-media-links ul li,
  section.page-header-wrapper .social-media-links ul li {
    margin-block: 20px;
    margin-inline: 0px;
  }
}
section.banner .social-media-links ul li:nth-child(2) a svg,
section.page-header-wrapper .social-media-links ul li:nth-child(2) a svg {
  width: 18px;
}
@media (min-width: 992px) {
  section.banner .social-media-links ul li:nth-child(2) a svg,
  section.page-header-wrapper .social-media-links ul li:nth-child(2) a svg {
    width: 20px;
  }
}
section.banner .social-media-links ul li:nth-child(3) a svg,
section.page-header-wrapper .social-media-links ul li:nth-child(3) a svg {
  margin-bottom: 3px;
}
@media (min-width: 992px) {
  section.banner .social-media-links ul li:nth-child(3) a svg,
  section.page-header-wrapper .social-media-links ul li:nth-child(3) a svg {
    margin-bottom: 0;
  }
}
section.banner .social-media-links ul li::before,
section.page-header-wrapper .social-media-links ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
@media (min-width: 992px) {
  section.banner .social-media-links ul li::before,
  section.page-header-wrapper .social-media-links ul li::before {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
}
section.banner .social-media-links ul li a,
section.page-header-wrapper .social-media-links ul li a {
  border: 1px solid rgba(255, 209, 59, 0.3);
  aspect-ratio: 1;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 576px) {
  section.banner .social-media-links ul li a,
  section.page-header-wrapper .social-media-links ul li a {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1450px) {
  section.banner .social-media-links ul li a,
  section.page-header-wrapper .social-media-links ul li a {
    width: 48px;
    height: 48px;
  }
}
section.banner .social-media-links ul li a svg,
section.page-header-wrapper .social-media-links ul li a svg {
  fill: #fff;
  width: 20px;
}
@media (min-width: 576px) {
  section.banner .social-media-links ul li a svg,
  section.page-header-wrapper .social-media-links ul li a svg {
    width: 20px;
  }
}
@media (min-width: 992px) {
  section.banner .social-media-links ul li a svg,
  section.page-header-wrapper .social-media-links ul li a svg {
    width: 24px;
  }
}
section.banner .social-media-links ul li a:hover,
section.page-header-wrapper .social-media-links ul li a:hover {
  color: #fff;
}
section.banner .social-media-links ul li a:hover svg,
section.page-header-wrapper .social-media-links ul li a:hover svg {
  fill: #fff;
}
section.banner .social-media-links ul li a:hover::before,
section.page-header-wrapper .social-media-links ul li a:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
section.banner .social-media-links ul li a:hover::after,
section.page-header-wrapper .social-media-links ul li a:hover::after {
  right: 0;
  left: auto;
  width: 100%;
}
section.banner .social-media-links ul li a::before,
section.page-header-wrapper .social-media-links ul li a::before {
  content: "";
  height: 50%;
  position: absolute;
  width: 0;
  background-color: rgba(255, 209, 59, 0.7);
  top: 0;
  right: 0;
  transition: 0.4s;
  z-index: -1;
}
section.banner .social-media-links ul li a::after,
section.page-header-wrapper .social-media-links ul li a::after {
  content: "";
  height: 50%;
  position: absolute;
  width: 0;
  background-color: rgba(255, 209, 59, 0.7);
  bottom: 0;
  left: 0;
  transition: 0.4s;
  z-index: -1;
}
section.banner .arrow-icon,
section.page-header-wrapper .arrow-icon {
  width: 50px;
  animation: back-forth 2s infinite;
  transform-origin: left;
  display: none;
  position: absolute;
  left: -35px;
  top: -5px;
}
@media (min-width: 1200px) {
  section.banner .arrow-icon,
  section.page-header-wrapper .arrow-icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
section.banner .arrow-icon svg,
section.page-header-wrapper .arrow-icon svg {
  fill: #fff;
}

section.page-header-wrapper {
  padding: 0;
  height: unset;
}
section.page-header-wrapper .page-header {
  position: relative;
  width: 100%;
  height: 100%;
}
section.page-header-wrapper .page-header .page-header-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
section.page-header-wrapper .page-header .page-header-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 15, 7, 0.4901960784);
  pointer-events: none;
}
section.page-header-wrapper .page-header .page-header-bg img {
  object-fit: cover;
}
section.page-header-wrapper .page-header .heading {
  padding: 115px 0 80px 0;
}
@media (min-width: 576px) {
  section.page-header-wrapper .page-header .heading {
    padding: 130px 0;
  }
}
@media (min-width: 768px) {
  section.page-header-wrapper .page-header .heading {
    padding: 140px 0;
  }
}
@media (min-width: 992px) {
  section.page-header-wrapper .page-header .heading {
    padding: 160px 0;
  }
}
@media (min-width: 1450px) {
  section.page-header-wrapper .page-header .heading {
    padding: 200px 0;
  }
}
section.page-header-wrapper .page-header .heading p {
  margin-top: 6px;
}
@media (min-width: 768px) {
  section.page-header-wrapper .page-header .heading p {
    margin-top: 12px;
  }
}
section.page-header-wrapper .page-header .heading .title-wrapper {
  position: relative;
}
section.page-header-wrapper .page-header .heading .title-wrapper::before {
  content: "";
  height: 1px;
  background-color: #e3bd4a;
  position: absolute;
  top: 27%;
  width: 22px;
  left: -15px;
}
@media (min-width: 992px) {
  section.page-header-wrapper .page-header .heading .title-wrapper::before {
    top: 23%;
    width: 48px;
    left: -48px;
  }
}

section.our-production {
  background-color: #fff;
  padding: 45px 0;
  height: max-content;
}
@media (min-width: 576px) {
  section.our-production {
    padding: 60px 0 100px;
  }
}
@media (min-width: 992px) {
  section.our-production {
    padding: 80px 0;
  }
}
section.our-production .scroll-text {
  overflow: hidden;
  margin: 10px 0 0 0;
  position: relative;
  height: unset;
}
@media (min-width: 576px) {
  section.our-production .scroll-text {
    height: 145px;
    margin: 30px 0 30px 0;
  }
}
section.our-production .scroll-text h2 {
  font-size: 27px;
  position: unset;
  text-align: center;
  color: #e9e9e9;
  white-space: nowrap;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  section.our-production .scroll-text h2 {
    font-size: 50px;
    text-align: unset;
    right: -200px;
    position: absolute;
  }
}
@media (min-width: 768px) {
  section.our-production .scroll-text h2 {
    font-size: 60px;
  }
}
@media (min-width: 992px) {
  section.our-production .scroll-text h2 {
    right: -600px;
  }
}
@media (min-width: 1200px) {
  section.our-production .scroll-text h2 {
    right: -200px;
  }
}
section.our-production .production-slider-wrap {
  margin-top: 50px;
  position: relative;
}
@media (min-width: 576px) {
  section.our-production .production-slider-wrap .production-slider .splide__track {
    overflow: visible;
  }
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide {
  position: relative;
  height: 400px;
  overflow: hidden;
  transition: 0.4s;
}
@media (min-width: 576px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide {
    height: 566px;
  }
}
@media (min-width: 1450px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide {
    height: 640px;
  }
}
@media (min-width: 576px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide:nth-child(odd) {
    margin-top: 80px;
  }
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transition: 0.4s;
  background: linear-gradient(0deg, rgba(54, 92, 99, 0.8) 50%, rgba(54, 92, 99, 0) 100%);
  top: 50%;
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide > figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide > figure img {
  width: 100%;
  object-fit: cover;
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  overflow: hidden;
  padding: 30px;
}
@media (min-width: 576px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content {
    padding: 40px;
  }
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content h4 {
  color: #fff;
  font-weight: 700;
  opacity: 0;
  transition: 0.4s;
  font-size: 30px;
}
@media (min-width: 576px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content h4 {
    font-size: 36px;
  }
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content .card-icon {
  width: 60px;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content .card-icon {
    width: 80px;
  }
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content .card-icon span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  transform: rotateY(180deg);
  transition: 0.4s;
  opacity: 0;
}
@media (min-width: 576px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content .card-icon span {
    width: 80px;
    height: 80px;
  }
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content .card-title {
  position: relative;
  height: 80px;
  transition: 0.4s;
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content .card-title h2 {
  color: #fff;
  font-weight: 400;
  top: 20%;
  text-transform: capitalize;
  font-size: 24px;
}
@media (min-width: 576px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content .card-title h2 {
    font-size: 24px;
  }
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content .card-title h2 span {
  font-weight: 600;
  display: block;
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content .card-title p {
  color: #fff;
  margin-top: 20px;
  font-weight: 500;
  bottom: -100%;
  transition: 0.4s;
  pointer-events: none;
  opacity: 0;
  font-size: 16px;
}
@media (min-width: 576px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide .card-content .card-title p {
    font-size: 16px;
  }
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide:hover::before {
  top: 0%;
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide:hover .card-content h4 {
  opacity: 1;
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide:hover .card-content .card-title {
  height: 210px;
}
@media (min-width: 576px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide:hover .card-content .card-title {
    height: 180px;
  }
}
@media (min-width: 992px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide:hover .card-content .card-title {
    height: 200px;
  }
}
@media (min-width: 1200px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide:hover .card-content .card-title {
    height: 215px;
  }
}
@media (min-width: 1450px) {
  section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide:hover .card-content .card-title {
    height: 180px;
  }
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide:hover .card-content .card-title p {
  bottom: 0%;
  pointer-events: all;
  opacity: 1;
}
section.our-production .production-slider-wrap .production-slider .splide__track .splide__list .splide__slide:hover .card-icon span {
  transform: rotateY(0deg);
  opacity: 1;
}

.about-mobile-image {
  height: auto;
  aspect-ratio: 1/1;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .about-mobile-image {
    aspect-ratio: unset;
    height: 450px;
    width: 100%;
  }
}
.about-mobile-image img {
  object-fit: cover;
  object-position: 0 25%;
}

section.about {
  background-color: #f1f8fa;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 992px) {
  section.about {
    padding-top: 80px;
  }
}
section.about .heading p {
  font-size: 16px;
  padding: 0;
  color: #556f74;
  font-weight: 500;
}
@media (min-width: 768px) {
  section.about .heading p {
    padding-left: 100px;
  }
}
@media (min-width: 1200px) {
  section.about .heading p {
    padding-left: 120px;
  }
}
@media (min-width: 1450px) {
  section.about .heading p {
    padding-left: 150px;
  }
}
section.about .about-us-features {
  background-color: #004743;
  color: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: normal;
  flex-direction: column;
  padding: 35px 10px;
  row-gap: 30px;
}
@media (min-width: 576px) {
  section.about .about-us-features {
    padding: 30px 30px;
  }
}
@media (min-width: 768px) {
  section.about .about-us-features {
    padding: 45px 45px;
  }
}
@media (min-width: 992px) {
  section.about .about-us-features {
    row-gap: 30px;
    padding: 30px 30px;
  }
}
@media (min-width: 1200px) {
  section.about .about-us-features {
    row-gap: 45px;
    padding: 40px 40px;
  }
}
section.about .about-us-features h4 {
  font-size: 18px;
}
@media (min-width: 1200px) {
  section.about .about-us-features h4 {
    font-size: 22px;
  }
}
section.about .about-us-features p {
  font-size: 15px;
}
section.about .about-bg-right {
  position: absolute;
  top: -3%;
  right: 0;
  display: none;
  height: 105%;
  width: 33.33333%;
}
@media (min-width: 992px) {
  section.about .about-bg-right {
    display: block;
  }
}
section.about .about-bg-right img {
  object-fit: cover;
  object-position: right;
}
section.about .about-left-figure {
  background: url("../images/homepage/about/about-2.jpg");
  background-size: cover;
  height: 150%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -20%;
}
section.about .about-parallax-left {
  position: relative;
  overflow: hidden;
  height: 100%;
}
section.about .about-bg-left {
  position: absolute;
  top: -20%;
  left: 0;
  height: 150%;
  width: 100%;
}
section.about .about-bg-left img {
  object-fit: cover;
}

section.what-we-do {
  background-color: #f1f8fa;
  padding-bottom: 0;
}
section.what-we-do .what-we-do-card-wrap {
  overflow: hidden;
  margin-top: 40px;
}
@media (min-width: 992px) {
  section.what-we-do .what-we-do-card-wrap {
    margin-top: 100px;
  }
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .img-box {
  height: 350px;
}
@media (min-width: 1200px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .img-box {
    height: 480px;
  }
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .img-box figure {
  width: 100%;
  height: 100%;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .img-box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .content-box {
  position: relative;
  background-color: #2a5962;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
}
@media (min-width: 1200px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .content-box {
    height: 480px;
  }
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/homepage/what-we-do/content-bg.html");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .content-box h4 {
  width: 80%;
  position: relative;
  font-weight: 600;
  text-shadow: 3px 0 rgba(255, 255, 255, 0.462745098);
  color: #fff;
  font-size: 36px;
}
@media (min-width: 992px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .content-box h4 {
    font-size: 420x;
  }
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  padding: 30px;
}
@media (min-width: 992px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap {
    padding: 40px;
  }
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #2a5962;
  pointer-events: none;
  transition: 0.4s;
  transition-delay: 0.4s;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap .hover-content {
  margin-left: auto;
  position: relative;
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
  width: 100%;
  translate: 100px 0;
  transition-delay: 0s;
}
@media (min-width: 1200px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap .hover-content {
    width: 80%;
  }
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap .hover-content h4 {
  color: #fff;
  font-size: 24px;
}
@media (min-width: 1200px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap .hover-content h4 {
    font-size: 28px;
  }
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap .hover-content h4 span {
  display: block;
  font-weight: 700;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap .hover-content p {
  margin-block: 30px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap._show-details {
  pointer-events: all;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap._show-details::before {
  left: 0%;
  transition-delay: 0s;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap._show-details .hover-content {
  opacity: 1;
  pointer-events: all;
  translate: 0px 0;
  transition-delay: 0.4s;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap._show-details.from-right::before {
  right: 0%;
  left: unset;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap.from-right::before {
  left: unset;
  right: -100%;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .hover-content-wrap.from-right .hover-content {
  margin-left: unset;
  margin-right: auto;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box {
  background-color: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  min-height: 300px;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box .service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  aspect-ratio: 1/1;
  width: 50px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box .service-icon {
    height: 70px;
    width: 70px;
    margin-bottom: 20px;
  }
}
@media (min-width: 576px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box {
    height: 350px;
  }
}
@media (min-width: 1200px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box {
    padding: 0;
    height: 480px;
  }
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box > div {
  width: 85%;
}
@media (min-width: 1200px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box > div {
    width: 75%;
  }
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box > div h4 {
  color: #2a5962;
  font-size: 22px;
}
@media (min-width: 992px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box > div h4 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box > div h4 {
    font-size: 32px;
  }
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box > div h4 span {
  display: block;
  font-weight: 700;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box > div p {
  font-weight: 600;
  color: #556f74;
  font-size: 15px;
  margin-block: 20px;
  line-height: 1.3;
}
@media (min-width: 576px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box > div p {
    line-height: 1.5;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box > div p {
    margin-block: 24px;
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box > div p {
    margin-block: 30px;
    font-size: 20px;
  }
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box figure.wwd-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
section.what-we-do .what-we-do-card-wrap .crafting-card-wrap .main-content-box figure.wwd-img img {
  object-fit: cover;
}

section.work,
section.work-gallery {
  background-color: #f1f8fa;
  margin-top: -5px;
}
section.work .heading,
section.work-gallery .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
section.work .heading h3,
section.work-gallery .heading h3 {
  color: #ffd13b;
}
section.work .heading h2,
section.work-gallery .heading h2 {
  color: #2a5962;
}
section.work .heading p,
section.work-gallery .heading p {
  color: #556f74;
  min-height: unset !important;
}
section.work .work-slider-wrapper,
section.work-gallery .work-slider-wrapper {
  background-color: #004743;
  padding: 10px;
  margin-top: 30px;
}
@media (min-width: 576px) {
  section.work .work-slider-wrapper,
  section.work-gallery .work-slider-wrapper {
    padding: 20px;
  }
}
@media (min-width: 576px) {
  section.work .work-slider-wrapper,
  section.work-gallery .work-slider-wrapper {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  section.work .work-slider-wrapper,
  section.work-gallery .work-slider-wrapper {
    margin-top: 70px;
  }
}
section.work .thumbnail-wrapper,
section.work-gallery .thumbnail-wrapper {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  section.work .thumbnail-wrapper,
  section.work-gallery .thumbnail-wrapper {
    min-width: 19%;
  }
}
@media (min-width: 992px) {
  section.work .thumbnail-wrapper,
  section.work-gallery .thumbnail-wrapper {
    margin-bottom: 0;
    height: 550px;
  }
}
@media (min-width: 992px) {
  section.work .main-slider-wrapper,
  section.work-gallery .main-slider-wrapper {
    width: 79%;
  }
}
section.work .thumbnail-slider,
section.work-gallery .thumbnail-slider {
  background-color: #f0ede4;
  width: 100%;
  height: 100%;
  padding: 10px;
}
@media (min-width: 992px) {
  section.work .thumbnail-slider,
  section.work-gallery .thumbnail-slider {
    padding: 20px 20px;
  }
}
@media (min-width: 1200px) {
  section.work .thumbnail-slider,
  section.work-gallery .thumbnail-slider {
    padding: 35px 35px;
  }
}
section.work .thumbnail-slider .splide__slide,
section.work-gallery .thumbnail-slider .splide__slide {
  border: unset;
}
@media (min-width: 1200px) {
  section.work .thumbnail-slider .splide__slide,
  section.work-gallery .thumbnail-slider .splide__slide {
    min-height: 84px;
  }
}
section.work .thumbnail-slider .splide__slide._video,
section.work-gallery .thumbnail-slider .splide__slide._video {
  position: relative;
}
section.work .thumbnail-slider .splide__slide._video::before,
section.work-gallery .thumbnail-slider .splide__slide._video::before {
  content: "";
  background: url("../icons/video-play.svg");
  height: 100%;
  width: 100%;
  background-attachment: scroll;
  background-position: center;
  background-size: 25%;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}
section.work .thumbnail-slider .splide__slide.is-active,
section.work-gallery .thumbnail-slider .splide__slide.is-active {
  border: 4px solid #6f644c;
  position: relative;
}
@media (min-width: 576px) {
  section.work .thumbnail-slider .splide__slide.is-active,
  section.work-gallery .thumbnail-slider .splide__slide.is-active {
    border: 8px solid #6f644c;
  }
}
section.work .thumbnail-slider .splide__slide.is-active::before,
section.work-gallery .thumbnail-slider .splide__slide.is-active::before {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  border: 1px solid #ffd13b;
}
section.work .thumbnail-slider img,
section.work-gallery .thumbnail-slider img {
  object-fit: cover;
}
section.work .main-slider,
section.work-gallery .main-slider {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 320px;
}
@media (min-width: 576px) {
  section.work .main-slider,
  section.work-gallery .main-slider {
    height: unset;
  }
}
@media (min-width: 992px) {
  section.work .main-slider,
  section.work-gallery .main-slider {
    margin: 15px;
  }
}
@media (min-width: 1200px) {
  section.work .main-slider,
  section.work-gallery .main-slider {
    margin: 25px;
  }
}
section.work .main-slider .splide__track,
section.work-gallery .main-slider .splide__track {
  height: 100%;
}
section.work .main-slider .splide__slide,
section.work-gallery .main-slider .splide__slide {
  aspect-ratio: 8/5;
}
section.work .main-slider .splide__slide figure,
section.work .main-slider .splide__slide iframe,
section.work-gallery .main-slider .splide__slide figure,
section.work-gallery .main-slider .splide__slide iframe {
  height: 65%;
}
@media (min-width: 768px) {
  section.work .main-slider .splide__slide figure,
  section.work .main-slider .splide__slide iframe,
  section.work-gallery .main-slider .splide__slide figure,
  section.work-gallery .main-slider .splide__slide iframe {
    height: 90%;
  }
}
@media (min-width: 992px) {
  section.work .main-slider .splide__slide figure,
  section.work .main-slider .splide__slide iframe,
  section.work-gallery .main-slider .splide__slide figure,
  section.work-gallery .main-slider .splide__slide iframe {
    height: 330px;
  }
}
@media (min-width: 1200px) {
  section.work .main-slider .splide__slide figure,
  section.work .main-slider .splide__slide iframe,
  section.work-gallery .main-slider .splide__slide figure,
  section.work-gallery .main-slider .splide__slide iframe {
    height: 400px;
  }
}
@media (min-width: 1400px) {
  section.work .main-slider .splide__slide figure,
  section.work .main-slider .splide__slide iframe,
  section.work-gallery .main-slider .splide__slide figure,
  section.work-gallery .main-slider .splide__slide iframe {
    height: 480px;
  }
}
section.work .main-slider .splide__slide.is-active video,
section.work .main-slider .splide__slide.is-active .video,
section.work-gallery .main-slider .splide__slide.is-active video,
section.work-gallery .main-slider .splide__slide.is-active .video {
  position: relative;
}
section.work .main-slider .splide__slide.is-active video::before,
section.work .main-slider .splide__slide.is-active .video::before,
section.work-gallery .main-slider .splide__slide.is-active video::before,
section.work-gallery .main-slider .splide__slide.is-active .video::before {
  content: "";
  background: url("../icons/video-play.svg");
  height: 100%;
  width: 100%;
  background-attachment: scroll;
  background-position: center;
  background-size: 15%;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}
section.work .main-slider .text-wrapper,
section.work-gallery .main-slider .text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0 10px 0;
  height: 24%;
}
@media (min-width: 576px) {
  section.work .main-slider .text-wrapper,
  section.work-gallery .main-slider .text-wrapper {
    padding: 40px 0 20px 0;
    height: unset;
  }
}
section.work .main-slider .text-wrapper h5,
section.work-gallery .main-slider .text-wrapper h5 {
  color: #ffd13b;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 4px;
}
@media (min-width: 576px) {
  section.work .main-slider .text-wrapper h5,
  section.work-gallery .main-slider .text-wrapper h5 {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
@media (min-width: 992px) {
  section.work .main-slider .text-wrapper h5,
  section.work-gallery .main-slider .text-wrapper h5 {
    font-size: 16px;
  }
}
section.work .main-slider .text-wrapper p,
section.work-gallery .main-slider .text-wrapper p {
  text-transform: capitalize;
  color: #fff !important;
  font-size: 17px;
  font-weight: 600;
  max-width: 65%;
  text-align: center;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  section.work .main-slider .text-wrapper p,
  section.work-gallery .main-slider .text-wrapper p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  section.work .main-slider .text-wrapper p,
  section.work-gallery .main-slider .text-wrapper p {
    font-size: 20px;
  }
}
section.work .main-slider .buttons-wrapper,
section.work-gallery .main-slider .buttons-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 4%;
}
@media (min-width: 576px) {
  section.work .main-slider .buttons-wrapper,
  section.work-gallery .main-slider .buttons-wrapper {
    bottom: 10px;
  }
}
@media (min-width: 1200px) {
  section.work .main-slider .buttons-wrapper,
  section.work-gallery .main-slider .buttons-wrapper {
    bottom: 30px;
  }
}
@media (min-width: 1200px) {
  section.work .main-slider .buttons-wrapper._safari,
  section.work-gallery .main-slider .buttons-wrapper._safari {
    bottom: 0px;
  }
}
section.work .main-slider .buttons-wrapper .slider-button,
section.work-gallery .main-slider .buttons-wrapper .slider-button {
  background: transparent;
  height: 40px;
  width: 40px;
  padding: 8px;
  border: 1px solid rgba(255, 209, 59, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
section.work .main-slider .buttons-wrapper .slider-button:hover,
section.work-gallery .main-slider .buttons-wrapper .slider-button:hover {
  background: #ffd13b;
}
@media (min-width: 576px) {
  section.work .main-slider .buttons-wrapper .slider-button,
  section.work-gallery .main-slider .buttons-wrapper .slider-button {
    height: 80px;
    width: 80px;
    padding: 20px;
  }
}
section.work .main-slider .buttons-wrapper .slider-button span,
section.work-gallery .main-slider .buttons-wrapper .slider-button span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
section.work .work-gallery-navs,
section.work-gallery .work-gallery-navs {
  margin-top: 45px;
}
@media (min-width: 576px) {
  section.work .work-gallery-navs,
  section.work-gallery .work-gallery-navs {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  section.work .work-gallery-navs,
  section.work-gallery .work-gallery-navs {
    margin-top: 70px;
  }
}
section.work .work-gallery-navs .splide,
section.work-gallery .work-gallery-navs .splide {
  position: relative;
}
section.work .work-gallery-navs .splide .gallery-nav-btn,
section.work-gallery .work-gallery-navs .splide .gallery-nav-btn {
  height: 30px;
  width: 30px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 209, 59, 0.6);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  display: inline-block;
}
@media (min-width: 1200px) {
  section.work .work-gallery-navs .splide .gallery-nav-btn,
  section.work-gallery .work-gallery-navs .splide .gallery-nav-btn {
    display: none;
  }
}
section.work .work-gallery-navs .splide .gallery-nav-btn span,
section.work-gallery .work-gallery-navs .splide .gallery-nav-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
section.work .work-gallery-navs .splide .gallery-nav-btn.left,
section.work-gallery .work-gallery-navs .splide .gallery-nav-btn.left {
  left: 0;
}
section.work .work-gallery-navs .splide .gallery-nav-btn.right,
section.work-gallery .work-gallery-navs .splide .gallery-nav-btn.right {
  right: 0;
}
section.work .work-gallery-navs .gallery-navs-slider .splide__slide,
section.work-gallery .work-gallery-navs .gallery-navs-slider .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.work .work-gallery-navs .gallery-navs-slider .splide__slide .custom-btn,
section.work-gallery .work-gallery-navs .gallery-navs-slider .splide__slide .custom-btn {
  width: max-content;
  margin: auto;
}
section.work .work-gallery-navs .nav-pills .custom-btn.active,
section.work-gallery .work-gallery-navs .nav-pills .custom-btn.active {
  background-color: #ffd13b;
  color: #fff;
}
section.work .work-gallery-navs .nav-pills .custom-btn.active:hover,
section.work-gallery .work-gallery-navs .nav-pills .custom-btn.active:hover {
  background-color: transparent;
  color: #ffd13b;
}

section.stats {
  background-color: #fff;
  padding: 0;
  margin-top: -5px;
}
section.stats .heading p {
  font-size: 16px;
  color: #556f74;
  font-weight: 500;
}
@media (min-width: 1450px) {
  section.stats .heading p {
    padding: 0 50px;
  }
}
section.stats .stats-mobile-image-left,
section.stats .stats-mobile-image-right {
  height: auto;
  aspect-ratio: 1/1;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  section.stats .stats-mobile-image-left,
  section.stats .stats-mobile-image-right {
    aspect-ratio: unset;
    height: 350px;
    width: 100%;
  }
}
section.stats .stats-mobile-image-left img,
section.stats .stats-mobile-image-right img {
  object-fit: cover;
  height: 160%;
  top: -22%;
}
section.stats .stats-count .count-wrapper,
section.stats .stats-count2 .count-wrapper {
  text-align: center;
  padding: 30px 0;
  height: 100%;
  position: relative;
}
@media (min-width: 1200px) {
  section.stats .stats-count .count-wrapper,
  section.stats .stats-count2 .count-wrapper {
    padding: 50px 0;
  }
}
@media (min-width: 1450px) {
  section.stats .stats-count .count-wrapper,
  section.stats .stats-count2 .count-wrapper {
    padding: 70px 0;
  }
}
section.stats .stats-count .count-wrapper .counter-content,
section.stats .stats-count .count-wrapper .counter-content-mobile,
section.stats .stats-count2 .count-wrapper .counter-content,
section.stats .stats-count2 .count-wrapper .counter-content-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
section.stats .stats-count .count-wrapper h4,
section.stats .stats-count2 .count-wrapper h4 {
  font-size: 45px;
  margin-bottom: 0;
  color: #ffd13b;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 576px) {
  section.stats .stats-count .count-wrapper h4,
  section.stats .stats-count2 .count-wrapper h4 {
    margin-bottom: 8px;
  }
}
@media (min-width: 1200px) {
  section.stats .stats-count .count-wrapper h4,
  section.stats .stats-count2 .count-wrapper h4 {
    font-size: 45px;
  }
}
@media (min-width: 1450px) {
  section.stats .stats-count .count-wrapper h4,
  section.stats .stats-count2 .count-wrapper h4 {
    font-size: 62px;
  }
}
@media (min-width: 1700px) {
  section.stats .stats-count .count-wrapper h4,
  section.stats .stats-count2 .count-wrapper h4 {
    font-size: 80px;
  }
}
section.stats .stats-count .count-wrapper h4 span,
section.stats .stats-count2 .count-wrapper h4 span {
  font-size: 25px;
}
@media (min-width: 1200px) {
  section.stats .stats-count .count-wrapper h4 span,
  section.stats .stats-count2 .count-wrapper h4 span {
    font-size: 25px;
  }
}
@media (min-width: 1450px) {
  section.stats .stats-count .count-wrapper h4 span,
  section.stats .stats-count2 .count-wrapper h4 span {
    font-size: 45px;
  }
}
section.stats .stats-count .count-wrapper p,
section.stats .stats-count2 .count-wrapper p {
  font-size: 16px;
  font-weight: 700;
  color: #556f74;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  section.stats .stats-count .count-wrapper p,
  section.stats .stats-count2 .count-wrapper p {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  section.stats .stats-count .count-wrapper p,
  section.stats .stats-count2 .count-wrapper p {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  section.stats .stats-count .count-wrapper p,
  section.stats .stats-count2 .count-wrapper p {
    font-size: 22px;
  }
}
@media (min-width: 1450px) {
  section.stats .stats-count .count-wrapper p,
  section.stats .stats-count2 .count-wrapper p {
    font-size: 24px;
  }
}
@media (min-width: 1700px) {
  section.stats .stats-count .count-wrapper p,
  section.stats .stats-count2 .count-wrapper p {
    font-size: 26px;
  }
}
section.stats .stats-count .count-wrapper._first::before,
section.stats .stats-count2 .count-wrapper._first::before {
  content: "";
  background-color: rgba(50, 51, 51, 0.3);
  position: absolute;
  right: 0;
  top: 50%;
  height: 70%;
  width: 1px;
  transform: translate(0, -50%);
}
section.stats .stats-count .count-wrapper._first::after,
section.stats .stats-count2 .count-wrapper._first::after {
  content: "";
  background-color: rgba(50, 51, 51, 0.3);
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 1px;
  width: 85%;
  transform: translate(-50%, 0);
}
section.stats .stats-count .count-wrapper._second::after,
section.stats .stats-count2 .count-wrapper._second::after {
  content: "";
  background-color: rgba(50, 51, 51, 0.3);
  position: absolute;
  bottom: 0;
  right: 50%;
  height: 1px;
  width: 85%;
  transform: translate(50%, 0);
}
section.stats .stats-count .count-wrapper._third::before,
section.stats .stats-count2 .count-wrapper._third::before {
  content: "";
  background-color: rgba(50, 51, 51, 0.3);
  position: absolute;
  right: 0;
  top: 50%;
  height: 70%;
  width: 1px;
  transform: translate(0, -50%);
}

section.iconic-locations {
  background-color: #fff;
}
section.iconic-locations .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
section.iconic-locations .masonry-wrapper {
  margin-top: 35px;
}
@media (min-width: 576px) {
  section.iconic-locations .masonry-wrapper {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  section.iconic-locations .masonry-wrapper {
    margin-top: 60px;
  }
  section.iconic-locations .masonry-wrapper .h-100 {
    height: 100% !important;
  }
}
section.iconic-locations .masonry-wrapper .figure-wrapper {
  position: relative;
  overflow-y: hidden;
}
section.iconic-locations .masonry-wrapper .figure-wrapper .overlay {
  position: absolute;
  min-height: 95%;
  width: 95%;
  bottom: -40%;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: rgba(42, 89, 98, 0.75);
  z-index: 10;
  padding: 15px 20px;
  opacity: 0;
  transition: 0.4s ease-in-out;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  flex-direction: column;
}
section.iconic-locations .masonry-wrapper .figure-wrapper .overlay .overlay-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}
section.iconic-locations .masonry-wrapper .figure-wrapper .overlay .text-wrapper {
  padding: 0 0 2% 2%;
}
section.iconic-locations .masonry-wrapper .figure-wrapper .overlay .plus-icon {
  height: auto;
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
section.iconic-locations .masonry-wrapper .figure-wrapper .overlay .plus-icon svg {
  fill: #fff;
  opacity: 0.3;
}
section.iconic-locations .masonry-wrapper .figure-wrapper .overlay p {
  margin-bottom: 0px;
  color: #ffd13b;
  font-weight: 600;
  text-transform: uppercase;
}
section.iconic-locations .masonry-wrapper .figure-wrapper .overlay h4 {
  text-transform: capitalize;
  margin-bottom: 0;
  color: #fff;
}
section.iconic-locations .masonry-wrapper .figure-wrapper .custom-position img {
  object-position: 76%;
}
section.iconic-locations .masonry-wrapper .figure-wrapper figure {
  position: relative;
}
section.iconic-locations .masonry-wrapper .figure-wrapper figure::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.4s ease-in-out;
}
section.iconic-locations .masonry-wrapper .figure-wrapper:hover figure::after {
  opacity: 1;
}
section.iconic-locations .masonry-wrapper .figure-wrapper:hover .overlay {
  opacity: 1;
  bottom: 50%;
}
section.iconic-locations .masonry-wrapper .mobile-figure {
  aspect-ratio: 1/1;
}
@media (min-width: 992px) {
  section.iconic-locations .masonry-wrapper .mobile-figure {
    aspect-ratio: unset;
  }
}
section.iconic-locations .masonry-wrapper .location {
  padding: 25px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 1200px) {
  section.iconic-locations .masonry-wrapper .location {
    padding: 25px 30px;
  }
}
@media (min-width: 1450px) {
  section.iconic-locations .masonry-wrapper .location {
    padding: 30px 40px;
  }
}
section.iconic-locations .masonry-wrapper .location.bordered {
  background: linear-gradient(90deg, #ffd13b 70%, transparent 70%), linear-gradient(90deg, #ffd13b 70%, transparent 70%), linear-gradient(0deg, #ffd13b 70%, transparent 70%), linear-gradient(0deg, #ffd13b 70%, transparent 70%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 15px 4px, 15px 4px, 4px 15px, 4px 15px;
  background-position: 0px 0px, 100% 100%, 0px 100%, 100% 0px;
}
section.iconic-locations .masonry-wrapper .location h4 {
  font-size: 22px;
  font-weight: 400;
  color: #2a5962;
}
@media (min-width: 1200px) {
  section.iconic-locations .masonry-wrapper .location h4 {
    font-size: 24px;
  }
}
@media (min-width: 1450px) {
  section.iconic-locations .masonry-wrapper .location h4 {
    font-size: 26px;
  }
}
section.iconic-locations .masonry-wrapper .location p {
  font-size: 14px;
  margin-top: 5px;
  color: #556f74;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.iconic-locations .masonry-wrapper .location p {
    font-size: 16px;
  }
}
@media (min-width: 1450px) {
  section.iconic-locations .masonry-wrapper .location p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  section.iconic-locations .masonry-wrapper .custom-height {
    height: 100%;
  }
}
@media (min-width: 992px) {
  section.iconic-locations .masonry-wrapper .custom-long-ratio {
    aspect-ratio: 9/16;
  }
}
@media (min-width: 992px) {
  section.iconic-locations .masonry-wrapper .custom-equal-ratio {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 992px) {
  section.iconic-locations .masonry-wrapper .custom-wide-ratio {
    aspect-ratio: 16/9;
  }
}

@media (min-width: 992px) {
  section.gallery-safari .masonry-wrapper .figure-wrapper {
    aspect-ratio: 1/1;
  }
}

section.clients {
  background-color: #004743;
  padding-bottom: 0;
}
section.clients .custom-btn {
  color: #fff;
}
section.clients .brands-slider .splide__track,
section.clients .brands-slider-bottom .splide__track {
  overflow: hidden;
}
@media (min-width: 576px) {
  section.clients .brands-slider .splide__track,
  section.clients .brands-slider-bottom .splide__track {
    overflow: visible;
  }
}
section.clients .brand-card {
  background-color: #2d656e;
  height: 100%;
  cursor: pointer;
  margin-right: 16px;
  aspect-ratio: 1/1;
  width: 100%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 13px;
}
@media (min-width: 576px) {
  section.clients .brand-card {
    padding: 40px 40px;
  }
}
@media (min-width: 768px) {
  section.clients .brand-card {
    padding: 60px 60px;
    margin-right: 20px;
  }
}
section.clients .brand-card figure {
  filter: brightness(0) invert(1);
  transition: all 0.3s;
}
section.clients .brand-card:hover {
  background-color: #fff;
}
section.clients .brand-card:hover figure {
  filter: brightness(1) invert(0);
}
section.clients .brand-card._gray figure {
  filter: grayscale(100%);
  transition: all 0.3s;
}
section.clients .brand-card._gray:hover figure {
  filter: grayscale(0%);
}
section.clients .brand-card.bg-light-gray:hover {
  background-color: #646767;
}

section.cta {
  overflow: hidden;
  position: relative;
  padding-bottom: 30px;
  margin-top: -5px;
}
section.cta::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
section.cta .container,
section.cta .overflow-text-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 15px;
}
@media (min-width: 992px) {
  section.cta .container,
  section.cta .overflow-text-wrap {
    gap: 25px;
  }
}
@media (min-width: 1200px) {
  section.cta .container,
  section.cta .overflow-text-wrap {
    gap: 35px;
  }
}
section.cta .custom-btn {
  background-color: rgba(241, 248, 250, 0.15);
  color: #fff;
}
section.cta .custom-btn:hover {
  background-color: #ffd13b;
}
section.cta .heading h2 {
  font-weight: 300;
}
section.cta .overflow-text-wrap {
  padding-top: 80px;
}
@media (min-width: 576px) {
  section.cta .overflow-text-wrap {
    padding-top: 120px;
  }
}
@media (min-width: 992px) {
  section.cta .overflow-text-wrap {
    padding-top: 160px;
  }
}
@media (min-width: 1200px) {
  section.cta .overflow-text-wrap {
    padding-top: 200px;
  }
}
section.cta .overflow-text-wrap p {
  font-size: 20px;
  column-gap: 15px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  color: #fff;
}
@media (min-width: 576px) {
  section.cta .overflow-text-wrap p {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  section.cta .overflow-text-wrap p {
    font-size: 34px;
    column-gap: 25px;
  }
}
@media (min-width: 1200px) {
  section.cta .overflow-text-wrap p {
    font-size: 42px;
    column-gap: 35px;
  }
}
section.cta .overflow-text-wrap p .asterisk-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
  aspect-ratio: 1/1;
}
@media (min-width: 992px) {
  section.cta .overflow-text-wrap p .asterisk-icon {
    height: 30px;
    width: 30px;
  }
}
section.cta .overflow-text-wrap p .asterisk-icon svg {
  fill: #fff;
}
section.cta .cta-text-slider-wrap {
  position: relative;
  z-index: 2;
}
section.cta .cta-text-slider-wrap .cta-text-slider .splide__track {
  visibility: visible;
  overflow: visible;
}
section.cta .cta-text-slider-wrap .cta-text-slider .splide__slide.is-active {
  width: fit-content !important;
}

section.contact-customer-links {
  background-color: #000;
  padding: 0;
}
section.contact-customer-links .container {
  border-inline: 1px solid rgba(255, 255, 255, 0.3019607843);
}
section.contact-customer-links .contact-link-wrapper {
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 13px;
  border-bottom: 1px solid rgba(255, 209, 59, 0.3);
  height: 100%;
  padding: 25px 10px;
}
@media (min-width: 576px) {
  section.contact-customer-links .contact-link-wrapper {
    row-gap: 20px;
  }
}
@media (min-width: 768px) {
  section.contact-customer-links .contact-link-wrapper {
    padding: 30px 20px;
  }
}
@media (min-width: 992px) {
  section.contact-customer-links .contact-link-wrapper {
    border-bottom-style: none;
    row-gap: 20px;
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  section.contact-customer-links .contact-link-wrapper {
    row-gap: 26px;
    padding: 50px;
  }
}
@media (min-width: 1450px) {
  section.contact-customer-links .contact-link-wrapper {
    row-gap: 32px;
    padding: 50px;
  }
}
section.contact-customer-links .contact-link-wrapper .contact-figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  aspect-ratio: 1/1;
}
@media (min-width: 576px) {
  section.contact-customer-links .contact-link-wrapper .contact-figure {
    width: 40px;
    aspect-ratio: 1/1;
  }
}
section.contact-customer-links .contact-link-wrapper h3 {
  font-weight: 700;
  font-size: 20px;
}
section.contact-customer-links .contact-link-wrapper p,
section.contact-customer-links .contact-link-wrapper h3 {
  margin-bottom: 0;
}
section.contact-customer-links .contact-link-wrapper .highlighted-link {
  color: #ffd13b;
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.contact-customer-links .contact-link-wrapper .highlighted-link {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  section.contact-customer-links .contact-link-wrapper._first {
    border-right: 1px solid rgba(255, 255, 255, 0.3019607843);
  }
}
@media (min-width: 992px) {
  section.contact-customer-links .contact-link-wrapper._second {
    border-right: 1px solid rgba(255, 255, 255, 0.3019607843);
  }
}
section.contact-customer-links .contact-link-wrapper._third {
  border-bottom-style: none;
}

section.contact-social-links {
  padding: 0;
  background-color: #000;
}
section.contact-social-links .container {
  border-inline: 1px solid rgba(255, 255, 255, 0.3019607843);
}
section.contact-social-links .contact-social-links-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
}
@media (min-width: 768px) {
  section.contact-social-links .contact-social-links-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
section.contact-social-links .contact-social-links-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  background-color: #323333;
  border-right: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
}
section.contact-social-links .contact-social-links-list li:last-child, section.contact-social-links .contact-social-links-list li:nth-child(2) {
  border-right-style: none;
}
section.contact-social-links .contact-social-links-list li:nth-last-child(2), section.contact-social-links .contact-social-links-list li:last-child {
  border-bottom-style: none;
}
@media (min-width: 768px) {
  section.contact-social-links .contact-social-links-list li {
    border-bottom-style: none;
  }
  section.contact-social-links .contact-social-links-list li:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.3019607843);
  }
}
section.contact-social-links .contact-social-links-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  padding: 20px 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
@media (min-width: 576px) {
  section.contact-social-links .contact-social-links-list li a {
    padding: 25px 0;
  }
}
@media (min-width: 992px) {
  section.contact-social-links .contact-social-links-list li a {
    padding: 35px 0;
  }
}
section.contact-social-links .contact-social-links-list li a .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  aspect-ratio: 1/1;
  overflow-y: hidden;
  flex-direction: column;
}
@media (min-width: 576px) {
  section.contact-social-links .contact-social-links-list li a .social-icon {
    width: 22px;
  }
}
section.contact-social-links .contact-social-links-list li a .social-icon svg {
  fill: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
section.contact-social-links .contact-social-links-list li a .social-icon svg path {
  text-shadow: 0rem 2rem 0px #fff;
}
section.contact-social-links .contact-social-links-list li a .social-link-text {
  font-size: 15px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.contact-social-links .contact-social-links-list li a .social-link-text {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  section.contact-social-links .contact-social-links-list li a .social-link-text {
    font-size: 18px;
  }
}
section.contact-social-links .contact-social-links-list li:hover a {
  animation: horizontal-shaking 0.6s;
}

section.contact-form {
  min-height: 90vh;
  display: flex;
  align-items: center;
}
section.contact-form::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
}
section.contact-form .row {
  position: relative;
  z-index: 2;
}
section.contact-form .form-wrapper {
  background-color: #fff;
  padding: 25px 20px;
}
@media (min-width: 576px) {
  section.contact-form .form-wrapper {
    padding: 40px 50px;
  }
}
@media (min-width: 1200px) {
  section.contact-form .form-wrapper {
    padding: 50px 60px;
  }
}
section.contact-form .form-wrapper .input-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 10px;
  padding: 11px 0;
  position: relative;
}
section.contact-form .form-wrapper .input-wrapper select#eventType {
  border: none;
  outline: none;
  color: gray;
}
@media (min-width: 576px) {
  section.contact-form .form-wrapper .input-wrapper {
    column-gap: 15px;
    padding: 13px 0;
  }
}
section.contact-form .form-wrapper .input-wrapper::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 209, 59, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
section.contact-form .form-wrapper .input-wrapper::after {
  content: "";
  width: 0px;
  height: 1px;
  transition: all 0.3s;
  background-color: #ffd13b;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
section.contact-form .form-wrapper .input-wrapper .form-icon {
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
@media (min-width: 576px) {
  section.contact-form .form-wrapper .input-wrapper .form-icon {
    width: 25px;
  }
}
section.contact-form .form-wrapper .input-wrapper input,
section.contact-form .form-wrapper .input-wrapper textarea {
  background-color: transparent;
  border-style: none;
  padding: 0;
  color: #000;
  font-size: 15px;
}
@media (min-width: 992px) {
  section.contact-form .form-wrapper .input-wrapper input,
  section.contact-form .form-wrapper .input-wrapper textarea {
    font-size: 16px;
  }
}
section.contact-form .form-wrapper .input-wrapper input::placeholder,
section.contact-form .form-wrapper .input-wrapper textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
  text-transform: capitalize;
  font-size: 15px;
}
@media (min-width: 992px) {
  section.contact-form .form-wrapper .input-wrapper input::placeholder,
  section.contact-form .form-wrapper .input-wrapper textarea::placeholder {
    font-size: 16px;
  }
}
section.contact-form .form-wrapper .input-wrapper input:focus,
section.contact-form .form-wrapper .input-wrapper textarea:focus {
  box-shadow: none;
  border-style: none;
}
section.contact-form .form-wrapper .input-wrapper:hover::after {
  width: 100%;
}

section.contact-map {
  padding: 0;
  height: 400px;
}
@media (min-width: 768px) {
  section.contact-map {
    height: 600px;
  }
}

section.service-wrapper {
  padding: 0;
  margin-top: -4px;
}
section.service-wrapper .service-image {
  position: relative;
  aspect-ratio: 1/1;
}
section.service-wrapper .service-image .bg-figure {
  height: 115%;
}
@media (min-width: 576px) {
  section.service-wrapper .service-image {
    min-height: 300px;
    aspect-ratio: unset;
  }
}
@media (min-width: 768px) {
  section.service-wrapper .service-image {
    min-height: 500px;
  }
}
@media (min-width: 992px) {
  section.service-wrapper .service-image {
    min-height: 80vh;
    height: unset;
  }
}
section.service-wrapper .service-image .icon-wrapper {
  aspect-ratio: 1/1;
  position: absolute;
  z-index: 4;
  right: 0;
  background-color: #ffd13b;
  padding: 14px;
  bottom: 0;
  width: 80px;
  height: 80px;
}
@media (min-width: 576px) {
  section.service-wrapper .service-image .icon-wrapper {
    height: 80px;
    width: 80px;
  }
}
@media (min-width: 992px) {
  section.service-wrapper .service-image .icon-wrapper {
    height: 100px;
    padding: 20px;
    width: 100px;
    top: 10%;
    bottom: unset;
  }
}
section.service-wrapper .service-image .icon-wrapper.right {
  right: 50%;
  transform: translate(50%, 0);
}
@media (min-width: 992px) {
  section.service-wrapper .service-image .icon-wrapper.right {
    right: 0;
    transform: none;
  }
}
section.service-wrapper .service-image .icon-wrapper.left {
  left: 50%;
  transform: translate(-50%, 0);
}
@media (min-width: 992px) {
  section.service-wrapper .service-image .icon-wrapper.left {
    left: 0;
    transform: none;
  }
}
section.service-wrapper .service-image .icon-wrapper span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
section.service-wrapper .service-content-wrapper {
  background-color: #fff;
  overflow: hidden;
  padding: 30px 25px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  section.service-wrapper .service-content-wrapper {
    padding: 40px 40px;
  }
}
@media (min-width: 992px) {
  section.service-wrapper .service-content-wrapper {
    padding: 40px 40px;
  }
}
@media (min-width: 1200px) {
  section.service-wrapper .service-content-wrapper {
    padding: 50px 60px;
  }
}
@media (min-width: 1450px) {
  section.service-wrapper .service-content-wrapper {
    padding: 60px 80px;
  }
}
section.service-wrapper .service-content-wrapper h2 {
  font-size: 26px;
  margin-bottom: 14px;
}
@media (min-width: 576px) {
  section.service-wrapper .service-content-wrapper h2 {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  section.service-wrapper .service-content-wrapper h2 {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  section.service-wrapper .service-content-wrapper h2 {
    font-size: 38px;
  }
}
section.service-wrapper .service-content-wrapper p {
  font-size: 15px;
}
@media (min-width: 576px) {
  section.service-wrapper .service-content-wrapper p {
    font-size: 16px;
  }
}
section.service-wrapper .service-content-wrapper .title-wrapper {
  position: relative;
}
section.service-wrapper .service-content-wrapper .title-wrapper::before {
  content: "";
  height: 1px;
  background-color: #e3bd4a;
  position: absolute;
  top: 50%;
}
@media (min-width: 992px) {
  section.service-wrapper .service-content-wrapper .title-wrapper::before {
    top: 39%;
    width: 100px;
    left: -100px;
  }
}

section.about-heading {
  background: #2a5962;
  margin-top: -50px;
  position: relative;
  z-index: 600;
  overflow: hidden;
  z-index: 100;
  padding: 50px 0;
}
section.about-heading .blob-1 {
  background-color: rgba(226, 174, 19, 0.3803921569);
  right: 0;
  top: 0;
  margin-top: -50px;
}
@media (min-width: 992px) {
  section.about-heading .blob-1 {
    margin-top: -200px;
  }
}
section.about-heading .blob-2 {
  background-color: rgba(226, 174, 19, 0.3803921569);
  left: -100px;
  bottom: 160px;
}
@media (min-width: 768px) {
  section.about-heading .blob-2 {
    left: -160px;
  }
}
@media (min-width: 1200px) {
  section.about-heading .blob-2 {
    left: -60px;
    height: 450px;
  }
}
@media (min-width: 1200px) {
  section.about-heading {
    margin-top: -20px;
  }
}
@media (min-width: 576px) {
  section.about-heading {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  section.about-heading {
    padding: 100px 0;
  }
}
section.about-heading h2 {
  color: #fff;
  font-size: 44px;
  word-spacing: -1px;
  margin-bottom: 0px;
  line-height: 95%;
  font-family: "bebas";
  line-height: 110%;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 576px) {
  section.about-heading h2 {
    font-size: 70px;
  }
}
@media (min-width: 768px) {
  section.about-heading h2 {
    font-size: 90px;
  }
}
@media (min-width: 992px) {
  section.about-heading h2 {
    font-size: 115px;
  }
}
@media (min-width: 1200px) {
  section.about-heading h2 {
    font-size: 110px;
    word-spacing: -6px;
    letter-spacing: -2px;
  }
}
@media (min-width: 1450px) {
  section.about-heading h2 {
    font-size: 128px;
  }
}
section.about-heading .first-big-heading,
section.about-heading .middle-big-heading,
section.about-heading .last-big-heading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  section.about-heading .first-big-heading,
  section.about-heading .middle-big-heading,
  section.about-heading .last-big-heading {
    flex-direction: row;
    justify-content: space-between;
    column-gap: 30px;
  }
}
section.about-heading .first-big-heading {
  align-items: flex-start;
}
section.about-heading .first-big-heading .quote-wrapper {
  background-color: #ffd13b;
  border-radius: 6px;
  position: relative;
  padding: 8px 15px;
  width: max-content;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  section.about-heading .first-big-heading .quote-wrapper {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  section.about-heading .first-big-heading .quote-wrapper {
    padding: 15px 20px;
    margin-bottom: 0;
  }
}
section.about-heading .first-big-heading .quote-wrapper .quote-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  position: absolute;
  top: -16px;
  right: -16px;
}
section.about-heading .first-big-heading .quote-wrapper p {
  color: #fff;
  margin-bottom: 0;
  font-size: 12px;
}
@media (min-width: 576px) {
  section.about-heading .first-big-heading .quote-wrapper p {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  section.about-heading .first-big-heading .quote-wrapper p {
    font-size: 16px;
  }
}
section.about-heading .middle-big-heading {
  align-items: flex-start;
}
@media (min-width: 1200px) {
  section.about-heading .middle-big-heading {
    align-items: center;
  }
}
section.about-heading .middle-big-heading .graph-icon {
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.about-heading .last-big-heading {
  align-items: flex-start;
  flex-direction: column-reverse;
}
@media (min-width: 1200px) {
  section.about-heading .last-big-heading {
    align-items: center;
    flex-direction: row;
  }
}
section.about-heading .last-big-heading p {
  color: rgba(255, 255, 255, 0.5);
  width: 300px;
  margin-bottom: 0;
  font-size: 14px;
  margin-top: 5px;
}
@media (min-width: 576px) {
  section.about-heading .last-big-heading p {
    font-size: 18px;
  }
}

section.about-us-video-1 {
  background-color: #000;
  position: relative;
  z-index: 10;
  padding: 0;
}
@media (min-width: 992px) {
  section.about-us-video-1 {
    padding: 80px 0;
  }
}
section.about-us-video-1.remove-overlay::before {
  display: none;
}
section.about-us-video-1::before {
  content: "";
  position: absolute;
  background-color: #2a5962;
  width: 100%;
  height: 120%;
  z-index: 9;
  top: -50%;
  left: 0;
  display: none;
}
@media (min-width: 576px) {
  section.about-us-video-1::before {
    margin-top: -30px;
    padding: 60px 0;
    display: block;
  }
}
@media (min-width: 768px) {
  section.about-us-video-1::before {
    top: -45%;
  }
}
@media (min-width: 992px) {
  section.about-us-video-1::before {
    top: -20%;
  }
}
section.about-us-video-1 .bg-video {
  max-height: 85vh;
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 9;
}
section.about-us-video-1 .content-video-wrapper {
  position: relative;
}
section.about-us-video-1 .content-video-wrapper .video-overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 150%;
  top: -58px;
  left: 0;
  z-index: 10;
  background: linear-gradient(to right, #2a5962 0%, #2a5962 33%, transparent 33%, transparent 66%, #2a5962 66%, #2a5962 100%);
}
@media (min-width: 576px) {
  section.about-us-video-1 .content-video-wrapper .video-overlay {
    display: block;
  }
}
section.about-us-video-1 .clipped-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
section.about-us-video-1 .clipped-image-wrapper .clipped-image-content {
  width: 100%;
}
section.about-us-video-1 .bg-black {
  height: 50vh;
  background-color: #000;
}

.reveal img {
  transform-origin: left;
}

section.about-us-video-2 {
  margin-top: 0px;
}
@media (min-width: 1200px) {
  section.about-us-video-2 {
    margin-top: 80px;
  }
}
@media (min-width: 768px) {
  section.about-us-video-2 {
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  section.about-us-video-2 {
    padding-top: 80px;
  }
}
section.about-us-video-2 .video-wrapper-2 {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.about-us-video-2 .video-wrapper-2 .bg-video {
  width: 100%;
  margin: auto;
}

.black-overlay {
  width: 100%;
  position: relative;
  z-index: 0 !important;
  height: 120vh;
  background-color: #000;
  display: none;
}
@media (min-width: 992px) {
  .black-overlay {
    height: 150vh;
  }
}
@media (min-width: 576px) {
  .black-overlay {
    display: block;
  }
}

.about-us-content {
  background-color: #fff;
  position: relative;
  z-index: 12;
}
.about-us-content.custom-shadow {
  padding: 0;
  margin-top: -40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: -100px;
}
@media (min-width: 1200px) {
  .about-us-content.custom-shadow {
    padding: 40px 0;
  }
}
@media (min-width: 1450px) {
  .about-us-content.custom-shadow {
    padding: 50px 0;
  }
}
@media (min-width: 576px) {
  .about-us-content.custom-shadow {
    margin-top: unset;
  }
}
.about-us-content.custom-margin {
  z-index: 10;
  padding-top: 120px;
  padding-bottom: 0;
}
@media (min-width: 576px) {
  .about-us-content.custom-margin {
    padding-top: 150px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .about-us-content.custom-margin {
    padding-top: 220px;
    padding-bottom: 80px 0;
  }
}
.about-us-content .stats-count .count-wrapper {
  text-align: center;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about-us-content .stats-count .count-wrapper .counter-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 18px 0;
}
@media (min-width: 768px) {
  .about-us-content .stats-count .count-wrapper .counter-content {
    padding: 20px 0;
  }
}
@media (min-width: 992px) {
  .about-us-content .stats-count .count-wrapper .counter-content {
    padding: 20px 0;
  }
}
@media (min-width: 1200px) {
  .about-us-content .stats-count .count-wrapper .counter-content {
    padding: 0;
  }
}
.about-us-content .stats-count .count-wrapper h4 {
  font-size: 40px;
  margin-bottom: 0;
  color: #ffd13b;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 576px) {
  .about-us-content .stats-count .count-wrapper h4 {
    font-size: 45px;
    margin-bottom: 8px;
  }
}
@media (min-width: 1200px) {
  .about-us-content .stats-count .count-wrapper h4 {
    font-size: 45px;
  }
}
@media (min-width: 1450px) {
  .about-us-content .stats-count .count-wrapper h4 {
    font-size: 52px;
  }
}
@media (min-width: 1700px) {
  .about-us-content .stats-count .count-wrapper h4 {
    font-size: 70px;
  }
}
.about-us-content .stats-count .count-wrapper h4 span {
  font-size: 25px;
}
@media (min-width: 1200px) {
  .about-us-content .stats-count .count-wrapper h4 span {
    font-size: 25px;
  }
}
@media (min-width: 1450px) {
  .about-us-content .stats-count .count-wrapper h4 span {
    font-size: 45px;
  }
}
.about-us-content .stats-count .count-wrapper p {
  font-size: 16px;
  font-weight: 700;
  color: #556f74;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .about-us-content .stats-count .count-wrapper p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .about-us-content .stats-count .count-wrapper p {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .about-us-content .stats-count .count-wrapper p {
    font-size: 20px;
  }
}
@media (min-width: 1450px) {
  .about-us-content .stats-count .count-wrapper p {
    font-size: 22px;
  }
}
@media (min-width: 1700px) {
  .about-us-content .stats-count .count-wrapper p {
    font-size: 24px;
  }
}
.about-us-content .stats-count .count-wrapper._first::before {
  content: "";
  background-color: rgba(50, 51, 51, 0.3);
  position: absolute;
  right: 0;
  top: 50%;
  height: 70%;
  width: 1px;
  transform: translate(0, -50%);
}
.about-us-content .stats-count .count-wrapper._first::after {
  content: "";
  background-color: rgba(50, 51, 51, 0.3);
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 1px;
  width: 85%;
  transform: translate(-50%, 0);
  display: block;
}
@media (min-width: 992px) {
  .about-us-content .stats-count .count-wrapper._first::after {
    display: none;
  }
}
@media (min-width: 992px) {
  .about-us-content .stats-count .count-wrapper._second::before {
    content: "";
    background-color: rgba(50, 51, 51, 0.3);
    position: absolute;
    right: 0;
    top: 50%;
    height: 70%;
    width: 1px;
    transform: translate(0, -50%);
  }
}
.about-us-content .stats-count .count-wrapper._second::after {
  content: "";
  background-color: rgba(50, 51, 51, 0.3);
  position: absolute;
  bottom: 0;
  right: 50%;
  height: 1px;
  width: 85%;
  transform: translate(50%, 0);
  display: block;
}
@media (min-width: 992px) {
  .about-us-content .stats-count .count-wrapper._second::after {
    display: none;
  }
}
.about-us-content .stats-count .count-wrapper._third::before {
  content: "";
  background-color: rgba(50, 51, 51, 0.3);
  position: absolute;
  right: 0;
  top: 50%;
  height: 70%;
  width: 1px;
  transform: translate(0, -50%);
}

.about-us-content .heading h2,
.about-us-bottom .heading h2 {
  font-size: 26px;
  margin-bottom: 14px;
}
@media (min-width: 576px) {
  .about-us-content .heading h2,
  .about-us-bottom .heading h2 {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .about-us-content .heading h2,
  .about-us-bottom .heading h2 {
    font-size: 38px;
  }
}
.about-us-content .heading p,
.about-us-bottom .heading p {
  font-size: 14px;
}
@media (min-width: 576px) {
  .about-us-content .heading p,
  .about-us-bottom .heading p {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  .about-us-content .heading p,
  .about-us-bottom .heading p {
    font-size: 16px;
  }
}

.white-bg {
  background-color: #fff;
  height: 1vh;
}

section.about-us-bottom {
  background-color: #f0f3eb;
  position: relative;
  z-index: 9;
}
@media (min-width: 576px) {
  section.about-us-bottom {
    padding-top: 300px;
  }
}
@media (min-width: 1200px) {
  section.about-us-bottom {
    padding-top: 360px;
  }
}
@media (min-width: 1450px) {
  section.about-us-bottom {
    padding-top: 480px;
  }
}

section.services-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}
section.services-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 3rem;
}
section.services-section .service-card {
  background: #ffffff;
  border: 1px solid rgba(255, 209, 59, 0.3);
  overflow: hidden;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  position: relative;
}
section.services-section .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 15px rgba(0, 0, 0, 0.15);
}
section.services-section .service-card:hover .card-image {
  transform: scale(1.05);
}
section.services-section .service-card:hover .card-title {
  color: #667eea;
}
section.services-section .service-card .card-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}
section.services-section .service-card .card-image-container .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
section.services-section .service-card .card-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}
section.services-section .service-card .card-content {
  padding: 15px;
  display: flex;
  justify-content: center;
}
section.services-section .service-card .card-content .card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2a5962;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  line-height: 1.3;
}
section.services-section .service-card.featured {
  border: 2px solid #667eea;
}
section.services-section .service-card.featured .card-image-container::after {
  background: #004743;
}
section.services-section .service-card.premium {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
section.services-section .service-card.premium .card-title {
  color: white;
}
section.services-section .service-card.premium .card-description,
section.services-section .service-card.premium .card-features li {
  color: rgba(255, 255, 255, 0.9);
}
section.services-section .service-card.premium .card-features li::before {
  color: #10b981;
}
section.services-section .service-card.loading .card-image-container {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}
section.services-section .service-card.loading .card-content .card-title,
section.services-section .service-card.loading .card-content .card-description {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  color: transparent;
  border-radius: 4px;
}
section.services-section .service-card.loading .card-content .card-title {
  height: 1.5rem;
  margin-bottom: 0.5rem;
}
section.services-section .service-card.loading .card-content .card-description {
  height: 3rem;
}
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
section.services-section .services-grid.compact {
  gap: 1rem;
}
section.services-section .services-grid.compact .service-card .card-image-container {
  height: 150px;
}
section.services-section .services-grid.compact .service-card .card-content {
  padding: 1rem;
}
section.services-section .services-grid.compact .service-card .card-content .card-title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
section.services-section .services-grid.compact .service-card .card-content .card-description {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
section.services-section .services-section.dark-theme {
  background-color: #1a202c;
}
section.services-section .services-section.dark-theme .section-title {
  color: #e2e8f0;
}
section.services-section .services-section.dark-theme .service-card {
  background: #2d3748;
}
section.services-section .services-section.dark-theme .service-card .card-title {
  color: #e2e8f0;
}
section.services-section .services-section.dark-theme .service-card .card-description,
section.services-section .services-section.dark-theme .service-card .card-features li {
  color: #a0aec0;
}
section.services-section .services-section.dark-theme .service-card:hover .card-title {
  color: #667eea;
}

section.about-founder {
  z-index: 10;
  background: #fff;
}
@media (min-width: 1200px) {
  section.about-founder .heading h2 {
    font-size: 40px;
  }
}
@media (min-width: 1450px) {
  section.about-founder .heading h2 {
    font-size: 43px;
  }
}
section.about-founder p {
  font-size: 14px;
}
@media (min-width: 576px) {
  section.about-founder p {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  section.about-founder p {
    font-size: 16px;
  }
}
section.about-founder .figure-wrapper {
  position: relative;
}
section.about-founder .figure-wrapper a {
  transition: 0.4s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffd13b;
  border-style: none;
}
section.about-founder .figure-wrapper a::before, section.about-founder .figure-wrapper a::after {
  background-color: white;
  color: black;
}
section.about-founder .figure-wrapper a:hover span {
  color: teal;
}

section.about-cta {
  overflow: hidden;
  position: relative;
  padding: 30px 0;
  margin-top: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  section.about-cta {
    padding: 60px 0;
  }
}
@media (min-width: 992px) {
  section.about-cta {
    padding: 100px 0;
  }
}
@media (min-width: 1200px) {
  section.about-cta {
    padding: 140px 0;
  }
}
@media (min-width: 1450px) {
  section.about-cta {
    padding: 180px 0;
  }
}
section.about-cta::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
section.about-cta .container {
  position: relative;
  z-index: 2;
}
section.about-cta .heading {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  section.about-cta .heading {
    margin-top: 0px;
  }
}
section.about-cta figure {
  height: 170%;
  top: -20%;
}

footer {
  position: relative;
  z-index: 0;
  background-color: #004743;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -5px;
}
footer::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(40, 86, 94, 0.85);
}
footer .top-footer,
footer .middle-footer,
footer .bottom-footer,
footer .copyright-wrapper {
  position: relative;
  z-index: 2;
}
footer .top-footer {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  footer .top-footer {
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  footer .top-footer {
    padding-bottom: 80px;
  }
}
footer .top-footer .figure-wrapper {
  border-top: none;
  padding: 25px 50px;
}
@media (min-width: 576px) {
  footer .top-footer .figure-wrapper {
    padding: 25px 60px;
  }
}
@media (min-width: 768px) {
  footer .top-footer .figure-wrapper {
    padding: 50px 100px;
  }
}
footer .top-footer .figure-wrapper figure {
  width: 170px;
  height: 170px;
}
@media (min-width: 576px) {
  footer .top-footer .figure-wrapper figure {
    width: 200px;
    height: 200px;
  }
}
@media (min-width: 768px) {
  footer .top-footer .figure-wrapper figure {
    width: 220px;
    height: 220px;
  }
}
@media (min-width: 768px) {
  footer .top-footer::before {
    content: "";
    height: 120px;
    width: 22%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(50, 51, 51, 0.3);
    backdrop-filter: blur(14px);
  }
}
@media (min-width: 768px) {
  footer .top-footer::after {
    content: "";
    height: 120px;
    width: 22%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(50, 51, 51, 0.3);
    backdrop-filter: blur(14px);
  }
}
footer .middle-footer {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 209, 59, 0.3);
  border-bottom: 1px solid rgba(255, 209, 59, 0.3);
}
@media (min-width: 576px) {
  footer .middle-footer {
    padding: 30px 0;
  }
}
@media (min-width: 992px) {
  footer .middle-footer {
    padding: 50px 0;
  }
}
footer .middle-footer ul {
  padding-left: 0;
  display: grid;
  list-style-type: none;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  footer .middle-footer ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  footer .middle-footer ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
footer .middle-footer ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 576px) {
  footer .middle-footer ul li {
    align-items: baseline;
  }
}
footer .middle-footer ul li .marker {
  width: 5px;
  height: 5px;
  aspect-ratio: 1/1;
  display: inline-block;
  background-color: #ffd13b;
}
@media (min-width: 576px) {
  footer .middle-footer ul li .marker {
    width: 9px;
    height: 9px;
  }
}
footer .middle-footer ul li a {
  color: #fff;
  position: relative;
  font-size: 15px;
  transition: 0.3s;
}
@media (min-width: 576px) {
  footer .middle-footer ul li a {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  footer .middle-footer ul li a {
    font-size: 18px;
  }
}
footer .middle-footer ul li a:hover {
  color: #ffd13b;
}
footer .bottom-footer {
  border-bottom: 0px;
}
footer .bottom-footer .footer-link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 0 15px 0px;
  height: 100%;
}
@media (min-width: 576px) {
  footer .bottom-footer .footer-link-wrap {
    padding: 20px 0 20px 0px;
  }
}
@media (min-width: 992px) {
  footer .bottom-footer .footer-link-wrap {
    padding: 30px 0;
  }
}
footer .bottom-footer .footer-link-wrap h5 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #fff;
}
@media (min-width: 576px) {
  footer .bottom-footer .footer-link-wrap h5 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  footer .bottom-footer .footer-link-wrap h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1450px) {
  footer .bottom-footer .footer-link-wrap h5 {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
footer .bottom-footer .footer-link-wrap .big-link {
  color: #ffd13b;
  font-size: 20px;
  font-weight: 600;
}
@media (min-width: 576px) {
  footer .bottom-footer .footer-link-wrap .big-link {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  footer .bottom-footer .footer-link-wrap .big-link {
    font-size: 22px;
  }
}
@media (min-width: 1450px) {
  footer .bottom-footer .footer-link-wrap .big-link {
    font-size: 26px;
  }
}
footer .bottom-footer .footer-link-wrap .footer-anchor-tags {
  font-size: 14px;
  color: #fff;
}
@media (min-width: 576px) {
  footer .bottom-footer .footer-link-wrap .footer-anchor-tags {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  footer .bottom-footer .footer-link-wrap .footer-anchor-tags {
    font-size: 14px;
  }
}
footer .bottom-footer .footer-link-wrap ul {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
@media (min-width: 1450px) {
  footer .bottom-footer .footer-link-wrap ul {
    column-gap: 50px;
  }
}
footer .bottom-footer .footer-link-wrap ul li a .footer-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  background-color: rgba(85, 111, 116, 0.6);
  padding: 10px;
  border: 1px solid rgba(255, 209, 59, 0.3);
  transition: 0.3s;
  position: relative;
}
@media (min-width: 992px) {
  footer .bottom-footer .footer-link-wrap ul li a .footer-icon {
    height: 48px;
    padding: 13px;
    width: 48px;
  }
}
footer .bottom-footer .footer-link-wrap ul li a .footer-icon svg {
  fill: #fff;
}
footer .bottom-footer .footer-link-wrap ul li a .footer-icon:hover {
  color: #fff;
}
footer .bottom-footer .footer-link-wrap ul li a .footer-icon:hover svg {
  fill: #fff;
}
footer .bottom-footer .footer-link-wrap ul li a .footer-icon:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
footer .bottom-footer .footer-link-wrap ul li a .footer-icon:hover::after {
  right: 0;
  left: auto;
  width: 100%;
}
footer .bottom-footer .footer-link-wrap ul li a .footer-icon::before {
  content: "";
  height: 50%;
  position: absolute;
  width: 0;
  background-color: rgba(255, 209, 59, 0.7);
  top: 0;
  right: 0;
  transition: 0.4s;
  z-index: -1;
}
footer .bottom-footer .footer-link-wrap ul li a .footer-icon::after {
  content: "";
  height: 50%;
  position: absolute;
  width: 0;
  background-color: rgba(255, 209, 59, 0.7);
  bottom: 0;
  left: 0;
  transition: 0.4s;
  z-index: -1;
}
footer .bottom-footer .footer-link-wrap._zero {
  border-bottom: 1px solid rgba(255, 209, 59, 0.3);
}
@media (min-width: 322px) {
  footer .bottom-footer .footer-link-wrap._zero {
    border-top: 1px solid rgba(255, 209, 59, 0.3);
    border-bottom: none;
  }
}
@media (min-width: 576px) {
  footer .bottom-footer .footer-link-wrap._zero {
    border-right: 1px solid rgba(255, 209, 59, 0.3);
  }
}
@media (min-width: 992px) {
  footer .bottom-footer .footer-link-wrap._zero {
    border-right: 1px solid rgba(255, 209, 59, 0.3);
    border-bottom: none;
    border-top: none;
  }
}
footer .bottom-footer .footer-link-wrap._first {
  border-bottom: 1px solid rgba(255, 209, 59, 0.3);
}
@media (min-width: 992px) {
  footer .bottom-footer .footer-link-wrap._first {
    border-right: 1px solid rgba(255, 209, 59, 0.3);
    border-bottom: none;
  }
}
@media (min-width: 992px) {
  footer .bottom-footer .footer-link-wrap._second {
    border-right: 1px solid rgba(255, 209, 59, 0.3);
  }
}
footer .bottom-footer .footer-link-wrap._third {
  border-bottom: 1px solid rgba(255, 209, 59, 0.3);
}
@media (min-width: 576px) {
  footer .bottom-footer .footer-link-wrap._third {
    border-left: 1px solid rgba(255, 209, 59, 0.3);
  }
}
@media (min-width: 992px) {
  footer .bottom-footer .footer-link-wrap._third {
    border-bottom: none;
    border-left: none;
    border-right: 1px solid rgba(255, 209, 59, 0.3);
  }
}
@media (min-width: 322px) {
  footer .bottom-footer .footer-link-wrap._fifth {
    border-top: 1px solid rgba(255, 209, 59, 0.3);
    border-left: none;
  }
}
@media (min-width: 992px) {
  footer .bottom-footer .footer-link-wrap._fifth {
    border-bottom: none;
    border-left: none;
    border-top: none;
    padding-left: 7px;
  }
}
footer .copyright-wrapper {
  background-color: #2a5962;
  padding: 15px 0;
}
@media (min-width: 576px) {
  footer .copyright-wrapper {
    padding: 20px 0;
  }
}
@media (min-width: 768px) {
  footer .copyright-wrapper {
    padding: 30px 0;
  }
}
footer .copyright-wrapper p,
footer .copyright-wrapper a {
  font-size: 13px;
}
@media (min-width: 992px) {
  footer .copyright-wrapper p,
  footer .copyright-wrapper a {
    font-size: 14px;
  }
}
footer .copyright-wrapper p {
  color: #fff;
  margin-bottom: 0;
}
footer .copyright-wrapper p a,
footer .copyright-wrapper p span {
  color: #ffd13b;
}
footer .copyright-wrapper .bottom-links a {
  color: #fff;
  transition: 0.3s;
}
footer .copyright-wrapper .bottom-links a:hover {
  color: #ffd13b;
}

.scroll-top-btn {
  position: fixed;
  background-color: #ffd13b;
  transform: scale(0.7);
  right: 10px;
  border-radius: 50%;
  padding: 10px;
  display: inline-block;
  top: 85vh !important;
  z-index: 99;
  aspect-ratio: 1/1;
  width: 50px;
  height: 50px;
}
@media (min-width: 768px) {
  .scroll-top-btn {
    right: 30px;
  }
}
@media (min-width: 576px) {
  .scroll-top-btn {
    width: 70px;
    height: 70px;
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .scroll-top-btn {
    width: 90px;
    height: 90px;
    padding: 20px;
  }
}

.side-nav {
  position: fixed;
  top: -110%;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #2a5962;
  z-index: 50;
  transition: 0.4s;
  opacity: 0;
  pointer-events: none;
}
.side-nav .container {
  padding: 0px 5px;
}
@media (min-width: 576px) {
  .side-nav .container {
    padding: 0px 20px;
  }
}
.side-nav.open {
  top: 0%;
  opacity: 1;
  pointer-events: all;
  overflow-y: scroll;
}
.side-nav.open::-webkit-scrollbar {
  display: none;
}
.side-nav .close_btn._outer {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
@media (min-width: 1200px) {
  .side-nav .close_btn._outer {
    display: block;
  }
}
@media (min-width: 1400px) {
  .side-nav .close_btn._outer {
    left: 10px;
  }
}
@media (min-width: 1450px) {
  .side-nav .close_btn._outer {
    left: calc((100vw - 1320px) / 7);
  }
}
@media (min-width: 1700px) {
  .side-nav .close_btn._outer {
    left: calc((100vw - 1320px) / 4.5);
  }
}
.side-nav .close_btn._inner {
  margin-left: 12px;
}
@media (min-width: 1200px) {
  .side-nav .close_btn._inner {
    display: none;
  }
}
.side-nav .close_btn button {
  border: 0;
  outline: 0;
  background-color: transparent;
  color: #fff;
  width: 30px;
  height: 30px;
}
@media (min-width: 992px) {
  .side-nav .close_btn button {
    width: 40px;
    height: 40px;
  }
}
.side-nav .container {
  border-inline: 1px solid rgba(255, 255, 255, 0.1215686275);
}
.side-nav .nav-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
  position: relative;
}
.side-nav .nav-header .nav-menu-wrap {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 576px) {
  .side-nav .nav-header .nav-menu-wrap ._logo {
    margin-left: 20px;
  }
}
.side-nav .nav-header .nav-menu-wrap ._logo a {
  text-decoration: none;
}
.side-nav .nav-header .nav-menu-wrap ._logo a figure {
  width: 160px;
}
@media (min-width: 768px) {
  .side-nav .nav-header .nav-menu-wrap ._logo a figure {
    width: 200px;
  }
}
.side-nav .nav-header .nav-menu-wrap ._logo a figure img {
  width: 100%;
}
.side-nav .nav-header .nav-menu-wrap ._social-links {
  display: flex;
  align-items: center;
}
.side-nav .nav-header .nav-menu-wrap ._social-links ul {
  display: flex;
  align-items: center;
}
.side-nav .nav-header .nav-menu-wrap ._social-links ul li {
  margin-left: 10px;
}
.side-nav .nav-header .nav-menu-wrap ._social-links ul li:nth-child(2) a svg {
  width: 15px;
}
@media (min-width: 768px) {
  .side-nav .nav-header .nav-menu-wrap ._social-links ul li:nth-child(2) a svg {
    width: 17px;
  }
}
.side-nav .nav-header .nav-menu-wrap ._social-links ul li:nth-child(3) a svg {
  margin-bottom: 2px;
}
.side-nav .nav-header .nav-menu-wrap ._social-links ul li a {
  border: 1px solid rgba(255, 209, 59, 0.3);
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  width: 30px;
  height: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .side-nav .nav-header .nav-menu-wrap ._social-links ul li a {
    width: 35px;
    height: 35px;
  }
}
@media (min-width: 992px) {
  .side-nav .nav-header .nav-menu-wrap ._social-links ul li a {
    width: 40px;
    height: 40px;
  }
}
.side-nav .nav-header .nav-menu-wrap ._social-links ul li a:hover {
  color: #fff;
}
.side-nav .nav-header .nav-menu-wrap ._social-links ul li a:hover svg {
  fill: #fff;
}
.side-nav .nav-header .nav-menu-wrap ._social-links ul li a:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
.side-nav .nav-header .nav-menu-wrap ._social-links ul li a:hover::after {
  right: 0;
  left: auto;
  width: 100%;
}
.side-nav .nav-header .nav-menu-wrap ._social-links ul li a::before {
  content: "";
  height: 50%;
  position: absolute;
  width: 0;
  background-color: rgba(255, 209, 59, 0.7);
  top: 0;
  right: 0;
  transition: 0.4s;
  z-index: -1;
}
.side-nav .nav-header .nav-menu-wrap ._social-links ul li a::after {
  content: "";
  height: 50%;
  position: absolute;
  width: 0;
  background-color: rgba(255, 209, 59, 0.7);
  bottom: 0;
  left: 0;
  transition: 0.4s;
  z-index: -1;
}
.side-nav .nav-header .nav-menu-wrap ._social-links ul li a svg {
  transition: 0.4s;
  fill: #fff;
  width: 15px;
}
@media (min-width: 768px) {
  .side-nav .nav-header .nav-menu-wrap ._social-links ul li a svg {
    width: 18px;
  }
}
@media (min-width: 992px) {
  .side-nav .nav-header .nav-menu-wrap ._social-links ul li a svg {
    width: 20px;
  }
}
.side-nav .nav-body {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
  overflow-y: scroll;
}
.side-nav .nav-body::-webkit-scrollbar {
  display: none;
}
.side-nav .nav-body .container {
  padding: 15px;
}
@media (min-width: 576px) {
  .side-nav .nav-body .container {
    padding: 20px;
  }
}
.side-nav .nav-body .nav-body-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.side-nav .nav-body .nav-body-wrap .nav-menu-list {
  padding-block: 0px;
  list-style-type: none;
}
@media (min-width: 576px) {
  .side-nav .nav-body .nav-body-wrap .nav-menu-list {
    padding-block: 40px;
  }
}
@media (min-width: 992px) {
  .side-nav .nav-body .nav-body-wrap .nav-menu-list {
    padding-block: 80px;
  }
}
.side-nav .nav-body .nav-body-wrap .nav-menu-list li {
  margin-bottom: 13px;
  position: relative;
  padding-left: 16px;
}
@media (min-width: 576px) {
  .side-nav .nav-body .nav-body-wrap .nav-menu-list li {
    padding-left: 30px;
    margin-bottom: 15px;
  }
}
.side-nav .nav-body .nav-body-wrap .nav-menu-list li:last-child {
  margin-bottom: 0;
}
.side-nav .nav-body .nav-body-wrap .nav-menu-list li a {
  text-decoration: none;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.4s;
  font-size: 18px;
  display: inline-block;
  transform: scale(1);
}
@media (min-width: 576px) {
  .side-nav .nav-body .nav-body-wrap .nav-menu-list li a {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .side-nav .nav-body .nav-body-wrap .nav-menu-list li a {
    font-size: 32px;
  }
}
.side-nav .nav-body .nav-body-wrap .nav-menu-list li a.active, .side-nav .nav-body .nav-body-wrap .nav-menu-list li a:hover {
  color: #fff;
  transform: scale(1.05);
}
.side-nav .nav-body .nav-body-wrap .nav-menu-list li a.active {
  transform: scale(1);
  border-bottom: 1px solid rgba(255, 209, 59, 0.6);
}
@media (min-width: 576px) {
  .side-nav .nav-body .nav-body-wrap .nav-menu-list li a.active {
    border-bottom: 2px solid rgba(255, 209, 59, 0.6);
  }
}
.side-nav .nav-body .nav-body-wrap .nav-menu-list li::before {
  content: "";
  width: 5px;
  aspect-ratio: 1/1;
  position: absolute;
  display: block;
  top: 50%;
  left: 0px;
  background-color: #ffd13b;
  transform: translate(0%, -50%);
}
@media (min-width: 576px) {
  .side-nav .nav-body .nav-body-wrap .nav-menu-list li::before {
    width: 9px;
  }
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap {
  padding-block: 35px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media (min-width: 992px) {
  .side-nav .nav-body .nav-body-wrap .nav-connect-wrap {
    padding-block: 80px;
    border-top-style: none;
  }
  .side-nav .nav-body .nav-body-wrap .nav-connect-wrap::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.14);
    height: 75%;
    width: 1px;
    position: absolute;
    left: -30%;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap .lets-talk h4 {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 26px;
}
@media (min-width: 992px) {
  .side-nav .nav-body .nav-body-wrap .nav-connect-wrap .lets-talk h4 {
    font-size: 40px;
  }
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap .lets-talk h4 span {
  color: #fff;
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect {
    margin-top: 15vh;
  }
}
@media (min-width: 1200px) {
  .side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect {
    margin-top: 20vh;
  }
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul {
  display: flex;
  flex-direction: row;
}
@media (min-width: 768px) {
  .side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul {
    gap: 100px;
  }
}
@media (min-width: 992px) {
  .side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul {
    gap: 0px;
    flex-direction: column;
  }
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li {
    margin-bottom: 50px;
  }
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._icon {
  margin-right: 10px;
  position: relative;
}
@media (min-width: 992px) {
  .side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._icon {
    margin-right: 20px;
  }
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._icon span {
  border: 1px solid rgba(255, 209, 59, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
}
@media (min-width: 992px) {
  .side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._icon span {
    width: 45px;
    height: 45px;
  }
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._icon span svg {
  width: 20px;
  fill: #fff;
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._icon:hover {
  color: #fff;
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._icon:hover svg {
  fill: #fff;
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._icon:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._icon:hover::after {
  right: 0;
  left: auto;
  width: 100%;
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._icon::before {
  content: "";
  height: 50%;
  position: absolute;
  width: 0;
  background-color: rgba(255, 209, 59, 0.7);
  top: 0;
  right: 0;
  transition: 0.4s;
  z-index: -1;
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._icon::after {
  content: "";
  height: 50%;
  position: absolute;
  width: 0;
  background-color: rgba(255, 209, 59, 0.7);
  bottom: 0;
  left: 0;
  transition: 0.4s;
  z-index: -1;
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._cont {
  display: none;
}
@media (min-width: 768px) {
  .side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._cont {
    display: block;
  }
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._cont h5 {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
  font-size: 14px;
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._cont a {
  color: #fff;
  transition: 0.4s;
  font-size: 20px;
}
@media (min-width: 1200px) {
  .side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._cont a {
    font-size: 22px;
  }
}
.side-nav .nav-body .nav-body-wrap .nav-connect-wrap ._connect ul li ._cont a:hover {
  color: #ffd13b;
}
.side-nav .nav-footer {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
}
.side-nav .nav-footer .nav-footer-wrap {
  height: 10vh;
  display: none;
  align-items: center;
}
@media (min-width: 768px) {
  .side-nav .nav-footer .nav-footer-wrap {
    display: flex;
  }
}
.side-nav .nav-footer .nav-footer-wrap h4 {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  font-size: 14px;
}
@media (min-width: 576px) {
  .side-nav .nav-footer .nav-footer-wrap h4 {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .side-nav .nav-footer .nav-footer-wrap h4 {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .side-nav .nav-footer .nav-footer-wrap h4 {
    font-size: 20px;
  }
}
.side-nav .nav-footer .nav-footer-wrap h4 em {
  display: block;
}
@media (min-width: 992px) {
  .side-nav .nav-footer .nav-footer-wrap h4 em {
    display: unset;
  }
}

.loader-container,
.simple-loader-container {
  position: fixed;
  top: 0;
  z-index: 150;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #004743;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none !important;
}
.loader-container .logo,
.simple-loader-container .logo {
  width: 100px;
  opacity: 0;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .loader-container .logo,
  .simple-loader-container .logo {
    width: 180px;
  }
}
.loader-container .logo img,
.simple-loader-container .logo img {
  width: 100%;
}
.loader-container .bottom-line,
.simple-loader-container .bottom-line {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 1px;
  background-color: #004743;
  z-index: 8;
}
@media (min-width: 992px) {
  .loader-container .bottom-line,
  .simple-loader-container .bottom-line {
    bottom: 38%;
  }
}
@media (min-width: 1200px) {
  .loader-container .bottom-line,
  .simple-loader-container .bottom-line {
    bottom: 36%;
  }
}
@media (min-width: 1200px) {
  .loader-container .bottom-line,
  .simple-loader-container .bottom-line {
    bottom: 36%;
  }
}
.loader-container .solid-line,
.simple-loader-container .solid-line {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 1px;
  background-color: #e3bd4a;
  z-index: 8;
}
@media (min-width: 992px) {
  .loader-container .solid-line,
  .simple-loader-container .solid-line {
    bottom: 38%;
  }
}
@media (min-width: 1200px) {
  .loader-container .solid-line,
  .simple-loader-container .solid-line {
    bottom: 36%;
  }
}
@media (min-width: 1200px) {
  .loader-container .solid-line,
  .simple-loader-container .solid-line {
    bottom: 36%;
  }
}
.loader-container .window,
.simple-loader-container .window {
  background-color: #004743;
  position: absolute;
  top: 0;
  width: 1px;
  height: 0%;
  z-index: 1;
}
.loader-container .window._left,
.simple-loader-container .window._left {
  right: 50%;
}
.loader-container .window._right,
.simple-loader-container .window._right {
  left: 50%;
}

.banner-audio {
  position: absolute;
  border: 0;
  outline: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  z-index: 9999;
  bottom: 70px;
  padding: 4px;
  background-color: #ffd13b;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-audio span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
@media (min-width: 576px) {
  .banner-audio {
    padding: 8px;
    width: 50px;
    height: 50px;
  }
}
.banner-audio._bottom {
  right: 4%;
  bottom: 10px;
}
@media (min-width: 576px) {
  .banner-audio._bottom {
    bottom: 30px;
  }
}
@media (min-width: 992px) {
  .banner-audio._bottom {
    bottom: 70px;
  }
}
.banner-audio._top {
  right: 4%;
  top: 40px;
}
@media (min-width: 576px) {
  .banner-audio._top {
    top: unset;
    bottom: 10%;
    right: 50%;
    transform: translate(50%, 0);
  }
}

section.blogs .news-slider-container {
  margin: 0 auto;
  background: white;
}
section.blogs .news-slider {
  padding-inline: 10px;
}
section.blogs .slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 0px 10px;
}
section.blogs .slider-header .heading h2 {
  font-size: 24px;
  color: #2a5962;
  font-weight: 500;
}
@media (min-width: 576px) {
  section.blogs .slider-header .heading h2 {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  section.blogs .slider-header .heading h2 {
    font-size: 36px;
    margin-top: 16px;
  }
}
@media (min-width: 1200px) {
  section.blogs .slider-header .heading h2 {
    font-size: 38px;
  }
}
section.blogs .slider-header .heading h2 .fw-semibold {
  font-weight: 600;
}
section.blogs .slider-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
}
section.blogs .slider-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}
section.blogs .slider-controls .control-btn {
  width: 60px;
  height: 60px;
  border: 1px solid #ffd13b;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
section.blogs .slider-controls .control-btn:hover {
  background: #ffd13b;
  border-color: #999;
}
section.blogs .slider-controls .control-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.blogs .slider-controls .control-btn span svg {
  width: 16px;
  height: 16px;
}
section.blogs .slider-controls .control-btn span svg path {
  fill: currentColor;
}
section.blogs .auto-play-toggle {
  background: none;
  border: 1px solid #ddd;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  margin-left: 15px;
}
section.blogs .splide__track {
  border-radius: 12px;
  overflow: visible;
  padding-bottom: 50px;
}
section.blogs .splide__slide {
  overflow: hidden;
  transition: transform 0.3s ease;
  margin: 0px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}
section.blogs .splide__slide:hover {
  transform: translateY(-5px);
}
section.blogs .splide__slide .slide-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
section.blogs .splide__slide .slide-content {
  padding: 25px 10px 10px;
  background: white;
}
section.blogs .splide__slide .slide-content .slide-category {
  display: inline-block;
  background: #2a5962;
  color: #fff;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
section.blogs .splide__slide .slide-content .slide-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #556f74;
  margin-bottom: 12px;
}
@media (min-width: 1200px) {
  section.blogs .splide__slide .slide-content .slide-title {
    font-size: 18px;
  }
}
section.blogs .splide__slide .slide-content .slide-meta {
  color: #556f74;
  font-size: 0.875rem;
}
section.blogs .progress-container {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
section.blogs .progress-container .progress-bar {
  flex: 1;
  height: 4px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
section.blogs .progress-container .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 209, 59, 0.75), #ffd13b);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
section.blogs .splide__pagination {
  bottom: 0;
}
section.blogs .splide__pagination .splide__pagination__page {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  margin: 0 4px;
  opacity: 1;
  transition: all 0.3s ease;
  position: relative;
}
section.blogs .splide__pagination .splide__pagination__page.is-active {
  background: #2a5962;
  transform: scale(1.2);
}
section.blogs .splide__pagination .splide__pagination__page.is-active::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 16px;
  height: 16px;
  border: 2px solid #2a5962;
  border-radius: 50%;
  opacity: 0.3;
}
section.blogs .splide__arrows {
  display: none;
}

section.testimonials {
  background-color: #f1f8fa;
}
section.testimonials .testimonial-container {
  max-width: 100%;
  overflow: hidden;
  gap: 2rem;
}
section.testimonials .testimonial-container .slider-row {
  margin-bottom: 2rem;
}
section.testimonials .testimonial-container .testimonial-slider-forward,
section.testimonials .testimonial-container .testimonial-slider-reverse {
  overflow: hidden;
  max-height: 350px;
}
section.testimonials .testimonial-container .testimonial-slider-forward .splide__track,
section.testimonials .testimonial-container .testimonial-slider-reverse .splide__track {
  overflow: visible;
  padding: 25px 0px;
}
section.testimonials .testimonial-container .testimonial-slider-forward .splide__list,
section.testimonials .testimonial-container .testimonial-slider-reverse .splide__list {
  display: flex;
  align-items: stretch;
}
section.testimonials .testimonial-container .testimonial-slider-forward .splide__slide,
section.testimonials .testimonial-container .testimonial-slider-reverse .splide__slide {
  min-width: 390px;
  max-width: 400px;
}
section.testimonials .testimonial-container .testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid rgba(255, 209, 59, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 390px;
}
section.testimonials .testimonial-container .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}
section.testimonials .testimonial-container .slider-row-2 .testimonial-card {
  direction: ltr;
  width: 390px;
}
section.testimonials .testimonial-container .slider-row-2 .testimonial-card .user-info {
  justify-content: flex-end;
  flex-direction: row-reverse;
}
section.testimonials .testimonial-container .heading-testimonials {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.testimonials .testimonial-container .heading-testimonials .btn-wrap a {
  color: #556f74 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border: 1px solid #ffd13b;
  cursor: pointer;
}
section.testimonials .testimonial-container .user-info {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
section.testimonials .testimonial-container .user-info .testimonial-placeholder {
  font-size: 18px;
  padding: 10px;
  color: #fff;
  background-color: #2a5962;
  border-radius: 50%;
  margin-right: 7px;
}
section.testimonials .testimonial-container .user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
  border: 2px solid #e0e0e0;
}
section.testimonials .testimonial-container .user-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #556f74;
  margin-bottom: 0.25rem;
}
section.testimonials .testimonial-container .user-details span {
  font-size: 14px;
  color: #556f74;
}
section.testimonials .testimonial-container .testimonial-text {
  height: 150px;
  width: 100%;
  overflow-y: scroll;
  color: #556f74;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
  font-size: 0.95rem;
  text-align: start;
  text-wrap: wrap;
  overflow-x: hidden;
}
section.testimonials .testimonial-container .testimonial-text::-webkit-scrollbar {
  width: 4px;
}
section.testimonials .testimonial-container .testimonial-text::-webkit-scrollbar-thumb {
  background-color: #ffd13b;
}
section.testimonials .testimonial-container .testimonial-text::-webkit-scrollbar-track {
  background-color: transparent;
}
section.testimonials .testimonial-container .testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
  flex-direction: row-reverse;
}
section.testimonials .testimonial-container .second-row-meta {
  flex-direction: row;
}
section.testimonials .testimonial-container .rating {
  display: flex;
  gap: 0.25rem;
}
section.testimonials .testimonial-container .star {
  width: 16px;
  height: 16px;
  background: #ffd700;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
section.testimonials .testimonial-container .star .unfilled {
  background: grey !important;
}
section.testimonials .testimonial-container .star2 {
  width: 16px;
  height: 16px;
  background: #c4c4c4;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
section.testimonials .testimonial-container .star2 .unfilled {
  background: grey !important;
}
section.testimonials .testimonial-container .timestamp {
  font-size: 0.8rem;
  color: #556f74;
  text-align: right;
}
section.testimonials .splide__arrows,
section.testimonials .splide__pagination {
  display: none !important;
}
@media (max-width: 768px) {
  section.testimonials .testimonial-slider-forward .splide__slide,
  section.testimonials .testimonial-slider-reverse .splide__slide {
    min-width: 280px;
    margin-right: 1rem;
  }
  section.testimonials .testimonial-card {
    padding: 1.25rem;
  }
}

.floating-social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.floating-social.show {
  opacity: 1;
  visibility: visible;
}

.social-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.social-item {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transform-origin: center;
}

.social-container .social-item {
  transition: transform 0.3s ease-in-out;
}

.social-container:hover .social-item {
  transform: translateX(-120px);
}

.social-icon {
  width: 170px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon .social-text {
  margin-left: 15px;
  font-weight: 500;
  font-size: 14px;
  opacity: 1;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  transition: all 0.3s ease;
  z-index: -1;
}

.social-container:hover .social-item .social-icon::before {
  transform: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.facebook {
  background: #3b5998;
}

.instagram {
  background: rgb(64, 93, 230);
}

.whatsapp {
  background: rgb(37, 211, 102);
}

.floating-icon-a a svg {
  width: 30%;
  height: 50%;
}

section.card-organiser {
  background-color: #f1f8fa;
}
section.card-organiser .section-header {
  margin-bottom: 50px;
}
section.card-organiser .section-header .section-subtitle {
  color: #ffd13b;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
section.card-organiser .section-header .section-title {
  color: #2a5962;
  margin-bottom: 20px;
  line-height: 1.3;
}
section.card-organiser .section-header .section-description {
  font-size: 16px;
  color: #556f74;
  margin: 0 auto;
  line-height: 1.7;
}
section.card-organiser .services-grid .service-card {
  background: white;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
section.card-organiser .services-grid .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
section.card-organiser .services-grid .service-card .card-icon {
  width: 60px;
  height: 4px;
  background: #ffd13b;
  margin-bottom: 25px;
  border-radius: 2px;
}
section.card-organiser .services-grid .service-card .card-title {
  color: #2a5962;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: 18px;
}
@media (min-width: 768px) {
  section.card-organiser .services-grid .service-card .card-title {
    font-size: 22px;
  }
}
section.card-organiser .services-grid .service-card .card-content {
  font-size: 14px;
  color: #556f74;
  line-height: 1.5;
}
@media (min-width: 768px) {
  section.card-organiser .services-grid .service-card .card-content {
    font-size: 15px;
  }
}

section.birthday-event-planner .birthday-event-figure-wrapper {
  display: flex;
  justify-content: center;
}
section.birthday-event-planner .birthday-event-figure-wrapper .figure-wrapper {
  height: 420px;
  width: 444px;
}
section.birthday-event-planner .birthday-event-figure-wrapper .figure-wrapper img {
  width: 100%;
  height: 100%;
}

.left-right-full {
  padding: 0;
  margin: 0;
}
.left-right-full .container-fluid {
  padding: 0;
  max-width: 100%;
}
.left-right-full .row {
  margin: 0;
  min-height: 80vh;
}
.left-right-full .col-xl-6 {
  padding: 0;
}
.left-right-full .left-div {
  background-color: #2a5962;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 60px 50px;
}
@media (min-width: 1200px) {
  .left-right-full .left-div {
    height: 85%;
  }
}
.left-right-full .left-div .heading h2 {
  color: #fff;
}
.left-right-full .left-div .heading h2 span {
  font-weight: 600;
}
.left-right-full .left-div .heading p {
  color: #fff;
}
.left-right-full .right-div {
  height: 85%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .left-right-full .right-div {
    height: 85%;
  }
}
.left-right-full .right-div .figure-wrapper {
  height: 85%;
  margin: 0;
  position: relative;
}
.left-right-full .right-div .figure-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

section.why-choose-us-birthday {
  background-color: #f8f9fa;
}
section.why-choose-us-birthday .why-choose-row {
  background-color: #fff;
  gap: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
section.why-choose-us-birthday .why-choose-row h5 {
  color: #2a5962;
  font-size: 15px;
  text-align: center;
  margin: 5px 0px 0px;
}
@media (min-width: 768px) {
  section.why-choose-us-birthday .why-choose-row h5 {
    font-size: 18px;
    font-weight: 600;
  }
}
section.why-choose-us-birthday .why-choose-row p {
  color: #556f74;
  font-size: 13px;
}
@media (min-width: 768px) {
  section.why-choose-us-birthday .why-choose-row p {
    font-size: 15px;
  }
}
section.why-choose-us-birthday .why-choose-row .why-choose-icon {
  padding: 20px;
  background-color: #2a5962;
}

.birthday-cta-heading p {
  color: #fff;
}
.birthday-cta-heading .cta-birthday {
  display: flex;
  gap: 5%;
}
.birthday-cta-heading .cta-birthday ul {
  color: #fff;
}

section.birthday-clients {
  padding-bottom: 45px;
}
@media (min-width: 768px) {
  section.birthday-clients {
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  section.birthday-clients {
    padding-bottom: 80px;
  }
}

section.heading-of-events {
  background-color: #fff;
  z-index: 40;
}

section.birthday-section {
  background-color: #2a5962;
  display: flex;
  align-items: center;
  padding: 0px;
}
section.birthday-section .heading h2 {
  color: #fff;
  font-weight: 600;
}
section.birthday-section .description {
  padding-right: 20px;
}
section.birthday-section .description p {
  color: #fff;
}
section.birthday-section .content-wrapper,
section.birthday-section .image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.birthday-section .content-wrapper img,
section.birthday-section .image-wrapper img {
  position: relative;
}
section.birthday-section .image-wrapper {
  position: absolute;
}
section.birthday-section .col-text {
  padding: 0px 12px;
}
@media (min-width: 768px) {
  section.birthday-section .col-text {
    padding: 0px;
  }
}
@media (min-width: 992px) {
  section.birthday-section .col-text {
    order: initial;
  }
}
section.birthday-section .col-text .content-wrapper {
  justify-content: center;
  padding: 20px 15px;
}
@media (min-width: 576px) {
  section.birthday-section .col-text .content-wrapper {
    padding: 20px;
  }
}
@media (min-width: 768px) {
  section.birthday-section .col-text .content-wrapper {
    padding: 60px 20px;
  }
}
@media (min-width: 992px) {
  section.birthday-section .col-text .content-wrapper {
    padding: 60px 40px;
  }
}
section.birthday-section .section-header {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  section.birthday-section .section-header {
    margin-bottom: 30px;
  }
}
section.birthday-section .section-header .category {
  color: #556f74;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  section.birthday-section .section-header .category {
    font-size: 14px;
  }
}
section.birthday-section .section-header .title {
  color: #556f74;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 376px) {
  section.birthday-section .section-header .title {
    font-size: 1.5rem;
  }
}
@media (min-width: 576px) {
  section.birthday-section .section-header .title {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  section.birthday-section .section-header .title {
    font-size: 2.5rem;
  }
}
section.birthday-section .description {
  color: #556f74;
}
section.birthday-section .description p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.7;
}
@media (min-width: 576px) {
  section.birthday-section .description p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
section.birthday-section .description p:last-child {
  margin-bottom: 0;
}
section.birthday-section .col-image {
  padding: 0px 0px;
  height: 100%;
}
@media (min-width: 768px) {
  section.birthday-section .col-image {
    padding: 0px;
  }
}
@media (min-width: 992px) {
  section.birthday-section .col-image {
    order: initial;
  }
}
section.birthday-section .col-image .image-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
}
@media (min-width: 992px) {
  section.birthday-section .col-image .image-wrapper {
    height: 100%;
  }
}
section.birthday-section .col-image .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  height: 60vh;
}
@media (min-width: 992px) {
  section.birthday-section .col-image .image-wrapper img {
    height: 100%;
  }
}

.birthday-event-planner-mumbai {
  background-color: #fff;
}

.best-birthday-planner {
  background-color: #f8f9fa;
}

.event-management-birthday-Companies {
  background-color: #f8f9fa;
}

.gallery-section {
  background-color: #f1f8fa !important;
}

/* Dropdown specific styling */
.dropdown {
  position: relative !important;
}

.dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 1000 !important;
  min-width: 200px;
  margin: 0;
  padding: 8px 0;
  background-color: white;
  border-radius: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  border-bottom: 3px solid #ffd13b;
}
.dropdown-menu li a {
  color: #2a5962 !important;
  font-weight: 500;
  justify-content: left !important;
}

.dropdown-menu.show {
  border-radius: 0px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 8px 15px;
  color: #2a5962;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s;
  font-size: 14.7px;
}

.dropdown-item.active {
  background-color: #ffd13b;
  color: #fff;
  font-weight: 600;
}

.dropdown-item:hover {
  color: #2a5962;
}

.dropdown-divider {
  height: 0;
  margin: 8px 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.about-figure-wrapper {
  position: relative;
}
.about-figure-wrapper .figure-overlay {
  background-color: #000;
  position: absolute;
  right: -4%;
  width: 80%;
  padding: 15px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .about-figure-wrapper .figure-overlay {
    right: -8%;
    width: 60%;
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .about-figure-wrapper .figure-overlay {
    padding: 40px;
  }
}
.about-figure-wrapper .figure-overlay p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .about-figure-wrapper .figure-overlay p {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .about-figure-wrapper .figure-overlay p {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .about-figure-wrapper .figure-overlay p {
    font-size: 26px;
  }
}

.scroll-wrapper {
  height: 500px;
  overflow: scroll;
  overflow-x: hidden;
}
.scroll-wrapper::-webkit-scrollbar {
  width: 1px;
}
.scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: #ffd13b;
}
.scroll-wrapper::-webkit-scrollbar-track {
  background-color: transparent;
}

.contact-modal-anchor {
  position: fixed;
  bottom: 0px;
  /* Distance from the bottom */
  left: 50%;
  transform: translateX(-50%);
  /* Centers the element horizontally */
  background-color: #004743;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  z-index: 50;
  /* Ensure it's above other content */
  transition: #fff 0.3s ease, transform 0.3s ease;
  display: flex;
  /* To center text vertically if needed */
  align-items: center;
  justify-content: center;
}
.contact-modal-anchor:hover {
  background-color: #ffc508;
}

.app-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1001;
  /* Sit on top, higher than the anchor */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.705);
  /* Semi-transparent background */
  /* Space from the top for modal content */
  /* The Close Button */
}
.app-modal .app-modal-content {
  background-color: #fff;
  margin: 12% auto;
  /* 5% from the top and horizontally centered */
  padding: 30px;
  width: 90%;
  /* Responsive width */
  max-width: 800px;
  /* Max width for larger screens */
  position: relative;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3), 0 12px 40px 0 rgba(0, 0, 0, 0.25);
  animation-name: slideInTop;
  animation-duration: 0.5s;
  text-align: center;
}
.app-modal .app-modal-content .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.app-modal .app-modal-content .heading h2 {
  text-align: center;
  color: #2a5962;
  margin-bottom: 25px;
  font-size: 1.2rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .app-modal .app-modal-content .heading h2 {
    font-size: 2rem;
    margin-bottom: 35px;
  }
}
.app-modal .app-modal-close-button {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.app-modal .app-modal-close-button:hover, .app-modal .app-modal-close-button:focus {
  color: black;
  text-decoration: none;
}

/* Modal Entry Animation */
@keyframes slideInTop {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.form-wrapper {
  background-color: #fff;
}

.input-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 10px;
  padding: 11px 0;
  position: relative;
}
.input-wrapper input {
  border-bottom: 0px !important;
}
.input-wrapper textarea {
  border-bottom: 0px !important;
}
@media (min-width: 576px) {
  .input-wrapper {
    column-gap: 15px;
    padding: 13px 0;
  }
}
.input-wrapper::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 209, 59, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.input-wrapper::after {
  content: "";
  width: 0px;
  height: 1px;
  transition: all 0.3s;
  background-color: #ffd13b;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.input-wrapper .form-icon {
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
@media (min-width: 576px) {
  .input-wrapper .form-icon {
    width: 25px;
  }
}
.input-wrapper input,
.input-wrapper textarea {
  background-color: transparent;
  border-style: none;
  padding: 0;
  color: #000;
  font-size: 15px;
}
@media (min-width: 992px) {
  .input-wrapper input,
  .input-wrapper textarea {
    font-size: 16px;
  }
}
.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
  text-transform: capitalize;
  font-size: 15px;
}
@media (min-width: 992px) {
  .input-wrapper input::placeholder,
  .input-wrapper textarea::placeholder {
    font-size: 16px;
  }
}
.input-wrapper input:focus,
.input-wrapper textarea:focus {
  box-shadow: none;
  border-style: none;
}
.input-wrapper:hover::after {
  width: 100%;
}

.res-message {
  margin-top: 10px;
  font-size: 0.9em;
  font-style: italic;
  color: #555;
}

@media (max-width: 768px) {
  .app-modal {
    padding-top: 20px;
  }
  .app-modal-content {
    margin: 2% auto;
    width: 95%;
    padding: 15px;
  }
  .contact-modal-anchor {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}
.heading h4 {
  font-size: 24px;
  font-weight: 600;
  color: #2d5c63;
}
.heading .light-font {
  color: #2d5c63;
  font-weight: 400;
}

.about-figure-wrapper .figure-overlay {
  background-color: #2a5962 !important;
}

.about-founder .figure-wrapper {
  height: 100%;
}
.about-founder .figure-wrapper figure {
  height: 100%;
}

.text-italic {
  font-style: italic;
}
.text-italic p {
  font-size: 14px;
}

section.salesforce-bg {
  background: #e7f2f4;
  color: #2a5962;
}
section.salesforce-bg h2 {
  font-weight: 600;
  font-size: 24px;
}
@media (min-width: 576px) {
  section.salesforce-bg h2 {
    font-size: 31px;
  }
}
@media (min-width: 992px) {
  section.salesforce-bg h2 {
    font-size: 43px;
  }
}
section.salesforce-bg .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}
section.salesforce-bg .service-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 7px 10px 36px #a1c0c4;
}
@media (min-width: 768px) {
  section.salesforce-bg .service-icon {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 992px) {
  section.salesforce-bg .service-icon {
    width: 120px;
    height: 120px;
  }
}
section.salesforce-bg .service-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media (min-width: 768px) {
  section.salesforce-bg .service-icon img {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 992px) {
  section.salesforce-bg .service-icon img {
    width: 60px;
    height: 60px;
  }
}
section.salesforce-bg .service-title {
  font-weight: 600;
  margin: 0;
  font-size: 14px;
}
@media (min-width: 768px) {
  section.salesforce-bg .service-title {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  section.salesforce-bg .service-title {
    font-size: 18px;
  }
}
section.salesforce-bg .text-white {
  font-size: 30px;
  font-weight: 600 !important;
}
@media (min-width: 768px) {
  section.salesforce-bg .text-white {
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  section.salesforce-bg .text-white {
    font-size: 40px;
  }
}

section.contact-customer-links {
  background-color: #3a5252;
  padding: 0;
}

section.contact-social-links {
  padding: 0;
  background-color: #000;
}
section.contact-social-links .container {
  border-inline: 1px solid rgba(255, 255, 255, 0.3019607843);
}
section.contact-social-links .contact-social-links-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3019607843);
}
@media (min-width: 768px) {
  section.contact-social-links .contact-social-links-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
section.contact-social-links .contact-social-links-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  background-color: #323333;
  border-right: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
}
section.contact-social-links .contact-social-links-list li:nth-child(2), section.contact-social-links .contact-social-links-list li:nth-child(4) {
  border-right-style: none;
}
section.contact-social-links .contact-social-links-list li:nth-child(5) {
  grid-column: 1/-1;
  border-right-style: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3019607843);
}
section.contact-social-links .contact-social-links-list li:last-child {
  border-bottom-style: none;
}
@media (min-width: 768px) {
  section.contact-social-links .contact-social-links-list li {
    border-bottom-style: none;
  }
  section.contact-social-links .contact-social-links-list li:nth-child(2), section.contact-social-links .contact-social-links-list li:nth-child(4) {
    border-right: 1px solid rgba(255, 255, 255, 0.3019607843);
  }
  section.contact-social-links .contact-social-links-list li:nth-child(5) {
    grid-column: auto;
  }
  section.contact-social-links .contact-social-links-list li:last-child {
    border-right-style: none;
  }
}
section.contact-social-links .contact-social-links-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  padding: 20px 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 1px solid #737171;
}
@media (min-width: 576px) {
  section.contact-social-links .contact-social-links-list li a {
    padding: 25px 0;
  }
}
@media (min-width: 992px) {
  section.contact-social-links .contact-social-links-list li a {
    padding: 35px 0;
    border: none;
  }
}
section.contact-social-links .contact-social-links-list li a .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  aspect-ratio: 1/1;
  overflow-y: hidden;
  flex-direction: column;
}
@media (min-width: 576px) {
  section.contact-social-links .contact-social-links-list li a .social-icon {
    width: 22px;
  }
}
section.contact-social-links .contact-social-links-list li a .social-icon svg {
  fill: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
section.contact-social-links .contact-social-links-list li a .social-icon svg path {
  text-shadow: 0rem 2rem 0px #fff;
}
section.contact-social-links .contact-social-links-list li a .social-link-text {
  font-size: 15px;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.contact-social-links .contact-social-links-list li a .social-link-text {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  section.contact-social-links .contact-social-links-list li a .social-link-text {
    font-size: 18px;
  }
}
section.contact-social-links .contact-social-links-list li:hover a {
  animation: horizontal-shaking 0.6s;
}

section.privacy-policy-wrapper {
  background-color: white;
}
section.privacy-policy-wrapper a {
  color: #556f74;
  font-weight: 600;
}
section.privacy-policy-wrapper h2 {
  font-weight: 600;
  color: #2d5c63;
  font-size: 24px;
}
section.privacy-policy-wrapper h2 span {
  font-weight: 600;
}
section.privacy-policy-wrapper h3 {
  font-weight: 600;
  color: #2a5962;
  font-size: 20px;
}

section.iconic-locations .masonry-wrapper .figure-wrapper .overlay .plus-icon {
  height: auto;
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 40%;
  right: 40%;
}

figure:has(img) img {
  width: 100%;
  height: 100%;
}

section.faq {
  background-color: #f9fcfd;
}
section.faq .accordion {
  --bs-accordion-border-width: 0;
  border-radius: 0px !important;
}
section.faq .accordion-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 17px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
section.faq .accordion-item:last-child {
  margin-bottom: 0;
}
section.faq .accordion-button {
  padding: 16px 50px 16px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #556f74;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  position: relative;
  word-wrap: break-word;
  white-space: normal;
}
@media (min-width: 992px) {
  section.faq .accordion-button {
    padding: 20px 60px 20px 24px;
    font-size: 16px;
  }
}
section.faq .accordion-button span {
  flex: 1;
  margin-right: 16px;
}
section.faq .accordion-button:not(.collapsed) {
  background: white;
  box-shadow: none;
}
section.faq .accordion-button:focus {
  box-shadow: none;
  border: none;
}
section.faq .accordion-button::after {
  display: none;
}
section.faq .accordion-button::before {
  content: "+";
  right: 16px;
  font-size: 24px;
  font-weight: 300;
  color: #666;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  position: absolute;
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(0deg);
  flex-shrink: 0;
}
@media (min-width: 992px) {
  section.faq .accordion-button::before {
    right: 24px;
    font-size: 26px;
  }
}
section.faq .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(45deg);
}
section.faq .accordion-button.collapsed::before {
  transform: translateY(-50%) rotate(0deg);
}
section.faq .accordion-body {
  padding: 16px;
  font-size: 14px;
  color: #556f74;
}
@media (min-width: 992px) {
  section.faq .accordion-body {
    padding: 20px 24px 20px 24px;
    font-size: 15px;
    line-height: 1.5;
  }
}
section.faq .accordion-collapse {
  border-top: 1px solid #f0f0f0;
}

a {
  color: #556f74;
  font-weight: 500;
  text-decoration: none;
}

section.birthday-event-planner {
  background-color: #fff;
}

section.event-decor-section {
  background-color: #f1f8fa;
}

section.client-review-section {
  background-color: #fff;
}

section.review-cards {
  background-color: #f1f8fa;
}
section.review-cards .heading {
  text-align: center;
  margin-bottom: 20px;
}
section.review-cards .heading h2 {
  color: #2a5962;
}
section.review-cards .heading h2 span {
  font-weight: 600;
}
section.review-cards .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
}
section.review-cards .testimonials-grid .testimonial-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  section.review-cards .testimonials-grid .testimonial-col {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
section.review-cards .testimonial-card {
  background: white;
  padding: 2rem;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: auto;
  margin-bottom: 1.5rem;
}
section.review-cards .testimonial-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
section.review-cards .testimonial-card .quote-icon {
  font-size: 3rem;
  color: #ffd13b;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}
section.review-cards .testimonial-card .testimonial-text {
  color: #556f74;
  line-height: 1.6;
  padding-bottom: 16px;
  font-size: 0.95rem;
}
section.review-cards .testimonial-card .star-rating-bottom-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  color: #556f74;
}
section.review-cards .testimonial-card .star-rating-bottom-line .star-rating {
  display: flex;
  gap: 0.2rem;
}
section.review-cards .testimonial-card .star-rating-bottom-line .star-rating .star {
  color: #ffd13b;
  font-size: 22px;
}
section.review-cards .testimonial-card .star-rating-bottom-line .star-rating .unfilled {
  color: grey;
}
section.review-cards .testimonial-card .client-info {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  gap: 1rem;
  margin-bottom: 16px;
}
section.review-cards .testimonial-card .client-info .client-review-figure-wrapper {
  height: 100px;
  width: 100px;
}
section.review-cards .testimonial-card .client-info .client-avatar {
  width: 50px;
  height: 50px;
  background-color: #2a5962;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}
section.review-cards .testimonial-card .client-info .client-detatail-wrap {
  display: flex;
  gap: 15px;
}
section.review-cards .testimonial-card .client-info .client-detatail-wrap .client-details .client-name {
  font-weight: bold;
  color: #556f74;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}
section.review-cards .testimonial-card .client-info .client-detatail-wrap .client-details .client-title {
  color: #2a5962;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
section.review-cards .testimonial-card .client-info .client-detatail-wrap .client-details .client-date {
  color: #556f74 !important;
  font-size: 0.8rem;
}
section.review-cards .pagination-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 992px) {
  section.review-cards .pagination-wrapper {
    justify-content: space-between;
    flex-direction: row;
  }
}
section.review-cards .pagination-wrapper .page-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px !important;
  color: #2a5962;
}
section.review-cards .pagination-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 992px) {
  section.review-cards .pagination-wrapper {
    justify-content: space-between;
    flex-direction: row;
  }
}
section.review-cards .pagination-wrapper .page-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px !important;
  color: #2a5962;
}
section.review-cards .pagination-wrapper .pagination {
  gap: 10px !important;
  border: none !important;
  margin-bottom: 0px !important;
}
section.review-cards .pagination-wrapper .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #ffd13b;
}
section.review-cards .pagination-wrapper .page-link {
  color: #556f74 !important;
  border: none !important;
}
section.review-cards .pagination-wrapper .page-item:first-child .page-link {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
section.review-cards .pagination-wrapper .page-item:last-child .page-link {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

section.best-birthday-planner {
  background-color: #f1f8fa;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

.modal-container {
  width: 100%;
  max-width: 66.666667%;
  margin: 0 auto;
}

.modal-content {
  background: white;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}
.modal-content .heading h2 span {
  font-weight: 500;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.modal-title {
  font-size: 28px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 30px;
  text-align: center;
}

.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 25px;
}

.form-row.three-cols {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.form-row.two-cols {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #556f74 !important;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  transition: all 0.2s ease;
  background: #ffffff;
  font-family: inherit;
  border: none !important;
  border-bottom: 1px solid #d1d5db !important;
  border-radius: 0px !important;
}

.form-control:focus {
  outline: none;
  border-color: transparent !important;
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.1);
}

.form-control::placeholder {
  color: #556f74;
}

.textarea-control {
  resize: vertical;
  width: 100%;
  min-height: 120px;
}

.rating-stars {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.rating-star {
  font-size: 24px;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rating-star:hover,
.rating-star.active {
  color: #f59e0b;
  transform: scale(1.1);
}

.image-upload-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.image-upload-container {
  position: relative;
  width: 100px;
  height: 100px;
  border: 2px dashed #d1d5db;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f9fafb;
}

.image-upload-container:hover {
  border-color: #f59e0b;
  background: #fffbeb;
}

.upload-label {
  color: #556f74 !important;
}

.upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image-upload-container.has-image .upload-content {
  display: none;
}

.upload-icon {
  font-size: 32px;
  color: #2a5962;
  margin-bottom: 8px;
}

.upload-text {
  font-size: 12px;
  color: #2a5962;
  text-align: center;
  line-height: 1.3;
}

.image-preview {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  display: none;
  position: relative;
}

.image-preview.show {
  display: block;
}

.image-remove {
  position: absolute;
  top: 0px;
  right: 0px;
  background: rgba(239, 68, 68, 0.9);
  color: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s ease;
  transform: translate(50%, -50%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.image-remove:hover {
  background: #dc2626;
  transform: translate(50%, -50%) scale(1.1);
}

.hidden-input {
  display: none;
}

.button-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

#resetBtn {
  background: #ffebeb;
  color: #d56363;
  border: 1px solid #ffa7a7;
}

#resetBtn:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .modal-container {
    max-width: 95%;
  }
  .modal-content {
    padding: 30px 20px;
  }
  .form-row.three-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-row.two-cols {
    grid-template-columns: 1fr;
  }
  .image-upload-section {
    width: 100%;
    align-items: center;
  }
  .image-upload-container,
  .image-preview {
    width: 120px;
    height: 120px;
  }
  .button-group {
    flex-direction: column;
    align-items: center;
  }
}
.multiple-image-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  width: 100%;
  max-width: none;
}

.image-placeholder {
  position: relative;
  width: 100px;
  height: 100px;
  border: 2px dashed #d1d5db;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
}

.image-placeholder:hover {
  border-color: #f59e0b;
  background: #fffbeb;
}

.image-placeholder.has-image {
  border-style: solid;
  background-color: transparent;
}

.image-preview-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.image-preview-thumbnail.show {
  display: block;
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

.image-placeholder.has-image .placeholder-content {
  display: none;
}

.placeholder-icon {
  font-size: 32px;
  color: #9ca3af;
  margin-bottom: 5px;
}

.placeholder-text {
  font-size: 12px;
  color: #6b7280;
}

.image-remove-thumbnail {
  position: absolute;
  top: 0px;
  right: 0px;
  background: rgba(239, 68, 68, 0.9);
  color: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s ease;
  transform: translate(50%, -50%);
  z-index: 10;
  overflow: visible;
}

.image-placeholder {
  position: relative;
  overflow: visible;
}

.image-remove-thumbnail:hover {
  background: #dc2626;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
  height: max-content;
}

section.page-header-wrapper .page-header {
  height: max-content;
}

.user-details {
  text-align: left;
}

section.testimonials .testimonial-container .slider-row-2 .testimonial-card {
  text-align: start;
}

.side-nav .nav-header .nav-menu-wrap ._social-links ul li {
  margin-left: 2px;
}
@media (min-width: 576px) {
  .side-nav .nav-header .nav-menu-wrap ._social-links ul li {
    margin-left: 10px;
  }
}

.side-nav .close_btn._inner {
  margin-left: 2px;
}
@media (min-width: 576px) {
  .side-nav .close_btn._inner {
    margin-left: 12px;
  }
}

.bg-gray {
  background-color: #f9fcfd !important;
}

section.usp-section {
  background-color: #f8f9fa;
}
@media (min-width: 992px) {
  section.usp-section {
    position: relative;
    padding-bottom: 115px;
  }
}
section.usp-section .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  section.usp-section .heading {
    padding-bottom: 40px;
  }
}
section.usp-section .heading h2 span {
  font-weight: 600;
}
section.usp-section .top-wraper {
  display: flex;
  justify-content: center;
}
section.usp-section .top-wraper .top-cards-wrapp {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section .top-wraper .top-cards-wrapp {
    min-height: 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    position: relative;
  }
}
@media (min-width: 1200px) {
  section.usp-section .top-wraper .top-cards-wrapp {
    min-height: 112px;
  }
}
section.usp-section .top-wraper .top-cards-wrapp .circle-wrapper {
  display: flex;
}
@media (min-width: 992px) {
  section.usp-section .top-wraper .top-cards-wrapp .circle-wrapper {
    margin-top: 30px;
    position: absolute;
    transform: translate(0px, 50px);
  }
}
@media (min-width: 1200px) {
  section.usp-section .top-wraper .top-cards-wrapp .circle-wrapper {
    margin: 0px;
    transform: translate(0px, 31px);
  }
}
section.usp-section .top-wraper .top-cards-wrapp .circle-wrapper span {
  width: 25px;
  height: 25px;
  color: #2a5962;
  padding: 35px;
  border-radius: 50%;
  background-color: #ddf1f4;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px solid #fff;
  font-weight: 600;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  section.usp-section .top-wraper .top-cards-wrapp .circle-wrapper span {
    width: 15px;
    height: 15px;
    padding: 25px;
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .top-wraper .top-cards-wrapp .circle-wrapper span {
    width: 40px;
    height: 40px;
    padding: 50px;
    font-size: 32px;
  }
}
section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper {
    width: 76%;
    position: absolute;
    transform: translate(7px, -15px);
    text-align: center;
  }
}
@media (min-width: 1200px) {
  section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper {
    padding: 0px;
    width: 65%;
    transform: translate(7px, -76px);
  }
}
@media (min-width: 1400px) {
  section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper {
    width: 70%;
  }
}
section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper span {
  font-size: 16px;
  color: #2a5962;
  font-weight: 600;
}
@media (min-width: 992px) {
  section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper span {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper span {
    font-size: 16px;
  }
}
section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper p {
  font-size: 15px;
  margin: 0px;
  color: #556f74;
}
@media (min-width: 992px) {
  section.usp-section .top-wraper .top-cards-wrapp .card-description-wrapper p {
    font-size: 13px;
  }
}
section.usp-section .bottom-wraper {
  display: flex;
  justify-content: center;
}
section.usp-section .bottom-wraper .bottom-cards-wrapp {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp {
    min-height: 120px;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    width: 40%;
    position: relative;
  }
}
@media (min-width: 1200px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp {
    min-height: 112px;
  }
}
section.usp-section .bottom-wraper .bottom-cards-wrapp .circle-wrapper {
  display: flex;
}
@media (min-width: 992px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .circle-wrapper {
    position: absolute;
    transform: translate(0px, -69px);
  }
}
@media (min-width: 1200px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .circle-wrapper {
    margin: 0px;
    transform: translate(0px, -32px);
  }
}
section.usp-section .bottom-wraper .bottom-cards-wrapp .circle-wrapper span {
  width: 25px;
  height: 25px;
  color: #2a5962;
  padding: 35px;
  border-radius: 50%;
  background-color: #ddf1f4;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px solid #fff;
  font-weight: 600;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .circle-wrapper span {
    width: 15px;
    height: 15px;
    padding: 25px;
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .circle-wrapper span {
    width: 40px;
    height: 40px;
    padding: 50px;
    font-size: 32px;
  }
}
section.usp-section .bottom-wraper .bottom-cards-wrapp .card-description-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .card-description-wrapper {
    width: 76%;
    position: absolute;
    transform: translate(3px, 16px);
    text-align: center;
  }
}
@media (min-width: 1200px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .card-description-wrapper {
    padding: 0px;
    width: 65%;
    transform: translate(7px, 79px);
  }
}
@media (min-width: 1400px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .card-description-wrapper {
    width: 70%;
  }
}
section.usp-section .bottom-wraper .bottom-cards-wrapp .card-description-wrapper span {
  font-size: 16px;
  color: #2a5962;
  font-weight: 600;
}
@media (min-width: 992px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .card-description-wrapper span {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .card-description-wrapper span {
    font-size: 16px;
  }
}
section.usp-section .bottom-wraper .bottom-cards-wrapp .card-description-wrapper p {
  font-size: 15px;
  margin: 0px;
  color: #556f74;
}
@media (min-width: 992px) {
  section.usp-section .bottom-wraper .bottom-cards-wrapp .card-description-wrapper p {
    font-size: 13px;
  }
}
section.usp-section .left-container-wrapp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp {
    position: relative;
    gap: 21px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .left-container-wrapp {
    gap: 36px;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  width: 100%;
  min-height: 138px;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp {
    min-height: 120px;
    flex-direction: row;
    gap: 0px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp {
    min-height: 112px;
    gap: 20px;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp .circle-wrapper {
  display: flex;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp .circle-wrapper {
    margin-top: 27px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp .circle-wrapper {
    margin: 0px;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp .circle-wrapper span {
  width: 25px;
  height: 25px;
  color: #2a5962;
  padding: 35px;
  border-radius: 50%;
  background-color: #ddf1f4;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px solid #fff;
  font-weight: 600;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp .circle-wrapper span {
    width: 15px;
    height: 15px;
    padding: 25px;
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp .circle-wrapper span {
    width: 40px;
    height: 40px;
    padding: 50px;
    font-size: 32px;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp .card-description-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp .card-description-wrapper {
    width: 76%;
    padding-left: 19px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp .card-description-wrapper {
    padding: 0px;
    width: 65%;
  }
}
@media (min-width: 1400px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp .card-description-wrapper {
    width: 70%;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp .card-description-wrapper span {
  font-size: 16px;
  color: #2a5962;
  font-weight: 600;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp .card-description-wrapper span {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp .card-description-wrapper span {
    font-size: 16px;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp .card-description-wrapper p {
  font-size: 15px;
  margin: 0px;
  color: #556f74;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp .card-description-wrapper p {
    font-size: 13px;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp._left-space {
  justify-content: start;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp._left-space {
    justify-content: center;
  }
}
@media (min-width: 1400px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp._left-space {
    justify-content: flex-end;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp._middle-card-wrapp {
  justify-content: center;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp._middle-card-wrapp {
    justify-content: left;
  }
}
@media (min-width: 1200px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp._middle-card-wrapp {
    justify-content: flex-start;
  }
}
section.usp-section .left-container-wrapp .left-cards-wrapp._middle-card-wrapp .card-description-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp._middle-card-wrapp .card-description-wrapper {
    width: 65%;
  }
}
@media (min-width: 1200px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp._middle-card-wrapp .card-description-wrapper {
    width: 57%;
  }
}
@media (min-width: 1400px) {
  section.usp-section .left-container-wrapp .left-cards-wrapp._middle-card-wrapp .card-description-wrapper {
    width: 65%;
  }
}
section.usp-section .middle-div {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  background-color: #004743;
  border-radius: 50%;
  border: 10px solid #ffffff;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  section.usp-section .middle-div {
    width: 310px;
    height: 310px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1200px) {
  section.usp-section .middle-div {
    width: 335px;
    height: 335px;
  }
}
section.usp-section .middle-div .circle-logo {
  width: 160px;
}
section.usp-section .right-container-wrapp {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (min-width: 992px) {
  section.usp-section .right-container-wrapp {
    position: relative;
    gap: 21px;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  section.usp-section .right-container-wrapp {
    gap: 36px;
  }
}
section.usp-section .right-container-wrapp .right-cards-wrapp {
  display: flex;
  gap: 20px;
  width: 100%;
  min-height: 138px;
}
@media (min-width: 992px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp {
    min-height: 120px;
    width: 94%;
  }
}
@media (min-width: 1024px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp {
    width: 94%;
  }
}
@media (min-width: 1200px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp {
    width: 100%;
    min-height: 112px;
  }
}
section.usp-section .right-container-wrapp .right-cards-wrapp .circle-wrapper {
  display: flex;
}
@media (min-width: 992px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp .circle-wrapper {
    margin-top: 27px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp .circle-wrapper {
    margin: 0px;
    padding-left: 12px;
  }
}
@media (min-width: 1400px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp .circle-wrapper {
    padding: 0px;
  }
}
section.usp-section .right-container-wrapp .right-cards-wrapp .circle-wrapper span {
  width: 25px;
  height: 25px;
  color: #2a5962;
  padding: 35px;
  border-radius: 50%;
  background-color: #ddf1f4;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px solid #fff;
  font-weight: 600;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp .circle-wrapper span {
    width: 15px;
    height: 15px;
    padding: 25px;
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp .circle-wrapper span {
    width: 40px;
    height: 40px;
    padding: 50px;
    font-size: 32px;
  }
}
section.usp-section .right-container-wrapp .right-cards-wrapp .card-description-wrapper {
  width: 100%;
}
@media (min-width: 1200px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp .card-description-wrapper {
    width: 65%;
  }
}
section.usp-section .right-container-wrapp .right-cards-wrapp .card-description-wrapper span {
  font-size: 16px;
  color: #2a5962;
  font-weight: 600;
}
@media (min-width: 992px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp .card-description-wrapper span {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp .card-description-wrapper span {
    font-size: 16px;
  }
}
section.usp-section .right-container-wrapp .right-cards-wrapp .card-description-wrapper p {
  font-size: 15px;
  margin: 0px;
  color: #556f74;
}
@media (min-width: 992px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp .card-description-wrapper p {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp._right-space {
    justify-content: flex-end;
  }
}
section.usp-section .right-container-wrapp .right-cards-wrapp._middle-card-wrapp {
  justify-content: start;
}
@media (min-width: 992px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp._middle-card-wrapp {
    justify-content: end;
  }
}
@media (min-width: 1200px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp._middle-card-wrapp {
    justify-content: flex-end;
  }
}
section.usp-section .right-container-wrapp .right-cards-wrapp._middle-card-wrapp .card-description-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp._middle-card-wrapp .card-description-wrapper {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp._middle-card-wrapp .card-description-wrapper {
    width: 57%;
  }
}
@media (min-width: 1400px) {
  section.usp-section .right-container-wrapp .right-cards-wrapp._middle-card-wrapp .card-description-wrapper {
    width: 65%;
  }
}

.upload-section {
  font-size: 13px;
}
.upload-section p {
  margin-bottom: 10px;
}
.upload-section .text-dark {
  font-weight: 500;
  font-size: 15px;
  color: #556f74 !important;
}

section.instagram {
  background-color: white;
  padding-bottom: 0;
}
section.instagram .custom-btn {
  color: #fff;
}
section.instagram .brands-slider .splide__track,
section.instagram .brands-slider-bottom .splide__track {
  overflow: hidden;
}
@media (min-width: 576px) {
  section.instagram .brands-slider .splide__track,
  section.instagram .brands-slider-bottom .splide__track {
    overflow: visible;
  }
}
section.instagram .brand-card {
  background-color: #2d656e;
  height: 100%;
  cursor: pointer;
  margin-right: 16px;
  aspect-ratio: 1/1;
  width: 100%;
  transition: all 0.3s;
}
section.instagram .brand-card img {
  object-fit: cover;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  section.instagram .brand-card {
    margin-right: 20px;
  }
}

@media (min-width: 992px) {
  .h-lg-100 {
    height: 100%;
  }
}

p.letters-slide-up.text-center.mobile-fade-up.overflow-hidden {
  min-height: auto;
}
@media (min-width: 768px) {
  p.letters-slide-up.text-center.mobile-fade-up.overflow-hidden {
    min-height: 155px;
  }
}
@media (min-width: 1700px) {
  p.letters-slide-up.text-center.mobile-fade-up.overflow-hidden {
    min-height: auto;
  }
}

section.client-slider {
  padding: 0px 0px;
  position: relative;
  overflow: hidden;
  background-color: #f0ede4;
  /* Alternative styling to match your design more closely */
  /* For better spacing, you might want to add some bottom padding to the container */
}
section.client-slider #client-review-slider {
  margin: 40px auto;
}
section.client-slider .testimonial-card {
  background: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s;
}
section.client-slider .testimonial-card .star-date-info {
  color: #556f74;
  font-size: 14px !important;
  margin-bottom: 15px;
}
section.client-slider .testimonial-card .client-review-image-wrapper {
  width: 80px;
  height: 80px;
  pointer-events: all;
}
section.client-slider .testimonial-card span {
  width: 50px;
  height: 50px;
  background-color: #2a5962;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
}
section.client-slider .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
section.client-slider h3 {
  margin: 0.5rem 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2a5962;
}
section.client-slider .subtitle {
  color: #556f74;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}
section.client-slider .stars {
  color: #ff9800;
  font-size: 20px !important;
}
section.client-slider .stars span {
  font-size: 16px !important;
}
section.client-slider .stars span {
  color: #556f74;
  font-size: 1rem;
  margin-left: 0.3rem;
}
section.client-slider .testimonial {
  height: 150px;
  overflow-y: scroll !important;
  font-style: italic;
  font-size: 0.9rem;
  color: #556f74;
  margin-top: 0.5rem;
  pointer-events: auto;
  user-select: text;
  padding: 6px;
}
section.client-slider .testimonial::-webkit-scrollbar {
  width: 2px;
}
section.client-slider .testimonial::-webkit-scrollbar-thumb {
  background-color: #ffd13b;
}
section.client-slider .testimonial::-webkit-scrollbar-track {
  background-color: transparent;
}
section.client-slider .splide__slide {
  display: flex;
  justify-content: center;
}
section.client-slider .splide__track {
  padding: 50px 0px;
}
section.client-slider .splide__slide {
  transition: transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1);
}
section.client-slider .splide__slide.is-active .testimonial-card {
  transform: rotate(0deg);
  z-index: 2;
}
section.client-slider .splide__slide.is-prev .testimonial-card {
  transform: rotate(-3deg) translateY(20px);
  z-index: 1;
}
section.client-slider .splide__slide.is-next .testimonial-card {
  transform: rotate(3deg) translateY(20px);
  z-index: 1;
}
section.client-slider .testimonial-card {
  transition: transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1);
}
section.client-slider .carousel {
  overflow-x: clip;
}
section.client-slider .swiper-wrapper {
  height: unset;
}
section.client-slider .swiper {
  padding: 5rem 0;
  overflow: visible;
  pointer-events: none;
}
section.client-slider .swiper .swiper-slide {
  width: 400px;
}
section.client-slider .single {
  position: relative;
  pointer-events: none;
  user-select: none;
}
section.client-slider .pagination-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 992px) {
  section.client-slider .pagination-wrapper {
    justify-content: space-between;
    flex-direction: row;
  }
}
section.client-slider .pagination-wrapper .page-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px !important;
  color: #2a5962;
}
section.client-slider .pagination-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 992px) {
  section.client-slider .pagination-wrapper {
    justify-content: space-between;
    flex-direction: row;
  }
}
section.client-slider .pagination-wrapper .page-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px !important;
  color: #2a5962;
}
section.client-slider .pagination-wrapper .pagination {
  gap: 10px !important;
  border: none !important;
  margin-bottom: 0px !important;
}
section.client-slider .pagination-wrapper .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #ffd13b;
}
section.client-slider .pagination-wrapper .page-link {
  color: #556f74 !important;
  border: none !important;
}
section.client-slider .pagination-wrapper .page-item:first-child .page-link {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
section.client-slider .pagination-wrapper .page-item:last-child .page-link {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
section.client-slider .navigation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
section.client-slider .swiper-pagination {
  position: relative !important;
  width: auto !important;
  display: flex;
  gap: 8px;
}
section.client-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}
section.client-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffd13b;
  transform: scale(1.2);
}
section.client-slider .swiper-button-prev,
section.client-slider .swiper-button-next {
  position: relative !important;
  top: -9px !important;
  left: -1px !important;
  transform: none !important;
  width: 60px;
  height: 60px;
  margin-top: 0;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
}
section.client-slider .swiper-button-prev:after,
section.client-slider .swiper-button-next:after {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
section.client-slider .swiper-button-prev:hover,
section.client-slider .swiper-button-next:hover {
  background: #f8f9fa;
  transform: translateX(-50%) scale(1.05);
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  section.client-slider .swiper-button-prev,
  section.client-slider .swiper-button-next {
    display: flex;
  }
}
section.client-slider .swiper-button-prev {
  left: calc(50% - 50px); /* Position left arrow to the left of center */
}
section.client-slider .swiper-button-next {
  left: calc(50% + 50px); /* Position right arrow to the right of center */
}
section.client-slider .swiper-button-prev:after,
section.client-slider .swiper-button-next:after {
  color: #666;
}
section.client-slider .container {
  padding-bottom: 80px; /* Add space for the arrows */
}

a.custom-btn._filled.d-inline-block.mt-4 {
  color: white;
}/*# sourceMappingURL=style.min.css.map */