header {
  height: 70px;
  padding: 10px 0;
  width: 100%;
  position: fixed;
  z-index: 100;
  transition: all 0.5s ease-in-out;
}
header.hidden {
  transform: translateY(-100%); /* Moves the header up to hide it */
}
@media screen and (min-width: 768px) {
  header {
    height: 100px;
  }
}
header.header-visible {
  background-color: rgba(0, 0, 0, 0.4196078431);
  border-bottom: 1px solid rgba(51, 51, 51, 0.7882352941);
}
header .site-branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header .site-logo {
  max-height: 50px;
  max-width: 100px;
}
@media screen and (min-width: 768px) {
  header .site-logo {
    max-height: 79px;
    max-width: 158px;
  }
}
header .site-header-right {
  width: fit-content;
  display: flex;
  align-items: center;
}
header .site-header-right .burger {
  margin-right: 20px;
}
header .site-header-right .sign-in {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

/* From Uiverse.io by Cevorob */
.burger {
  position: relative;
  width: 30px;
  height: 25px;
  background: transparent;
  cursor: pointer;
  display: block;
}
.burger input {
  display: none;
}
.burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}
.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}
.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}
.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}
.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}
.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 22px;
  left: 5px;
}

.main-menu {
  transform: translateY(-100%);
  visibility: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #00372b;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
  color: #DEDEDE;
  transition: transform 0.7s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s;
  opacity: 0;
}
.main-menu.active {
  transform: translateY(0);
  visibility: 1;
  opacity: 1;
}
.main-menu .menu-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}
.main-menu .menu-inner .menu-left {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  position: relative;
  padding-bottom: 15%;
}
.main-menu .menu-inner .menu-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.main-menu .menu-inner .menu-left ul li a {
  margin: 30px 0 0 0;
  font-size: 48px;
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  color: #DEDEDE;
  transition: color 0.3s ease-in-out;
  font-weight: 300;
  justify-content: start;
  align-items: center;
}
.main-menu .menu-inner .menu-left ul li a::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 15px;
  background-image: url("../assets/images/arrow-right-green.png"); /* Replace with your image */
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 5px;
  margin-left: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.main-menu .menu-inner .menu-left ul li a:hover {
  color: #046A53;
  font-weight: 500;
}
.main-menu .menu-inner .menu-left ul li a:hover::after {
  opacity: 1;
}
.main-menu .menu-inner .menu-left ul li.current-menu-item a {
  color: #046A53;
  font-weight: 500;
}
.main-menu .menu-inner .menu-left ul li.current-menu-item a::after {
  opacity: 1;
}
.main-menu .menu-inner .menu-left .site-logo {
  margin-top: 30px;
  width: 120px;
  position: fixed;
  bottom: 20px;
}
.main-menu .menu-inner .menu-right {
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: end;
  flex-direction: column;
  position: relative;
  padding-left: 50px;
  padding-bottom: 15%;
}
.main-menu .menu-inner .menu-right .copy-right {
  position: fixed;
  bottom: 20px;
  font-size: 14px;
}
.main-menu .menu-inner .menu-right::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(222, 222, 222, 0.3490196078);
}
.main-menu .menu-inner .menu-right .menu-links-list {
  margin-top: 30px;
  font-size: 20px;
}
.main-menu .menu-inner .menu-right .menu-links-list h3 {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  margin-top: 10px;
  font-weight: normal;
  color: #046A53;
}
.main-menu .menu-inner .menu-right .menu-links-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.main-menu .menu-inner .menu-right .menu-links-list ul li {
  margin: 5px 0;
}
.main-menu .menu-inner .menu-right .menu-links-list ul li a {
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  color: #DEDEDE;
  transition: color 0.3s ease-in-out;
}
.main-menu .menu-inner .menu-right .menu-links-list ul li a:hover {
  color: #046A53;
}
.main-menu .menu-inner .menu-right .burger {
  position: absolute;
  top: 0;
  right: 0;
}
.main-menu .current-menu-item a {
  color: #068C6E;
}

.menu-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
}

.main-footer-section {
  display: flex;
  flex-flow: column-reverse;
  color: #DEDEDE;
  background-color: #121212;
}
@media screen and (min-width: 768px) {
  .main-footer-section {
    flex-flow: row;
    padding: 0;
  }
}
.main-footer-section > div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .main-footer-section > div {
    width: 50%;
  }
}
.main-footer-section .site-map {
  padding: 50px;
}
@media screen and (min-width: 768px) {
  .main-footer-section .site-map {
    padding: 50px 30px;
  }
}
.main-footer-section img {
  width: 100%;
}
.main-footer-section .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.main-footer-section .footer-links .footer-link {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main-footer-section .footer-links .footer-link {
    width: auto;
    text-align: left;
    flex: 1;
  }
}
.main-footer-section .footer-links .current-menu-item a {
  color: #15C59E;
  text-decoration: underline;
  font-weight: 600;
}
.main-footer-section .footer-links h3 {
  font-size: 16px;
  text-decoration: underline;
  font-weight: normal;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}
.main-footer-section .footer-links a {
  font-size: 16px;
  color: #068C6E;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.main-footer-section .footer-links a:hover {
  color: #15C59E;
  text-decoration: underline;
  font-weight: 600;
}
.main-footer-section .footer-links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main-footer-section .footer-links ul li {
  margin-bottom: 10px;
}
.main-footer-section .footer-image {
  overflow: hidden;
}
.main-footer-section .footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: zoomImage 5s ease-in-out forwards;
}

.footer-bottom {
  background-color: #DEDEDE;
  padding: 10px 0;
  color: #1C1C1C;
  position: absolute;
  z-index: 1;
  width: 100%;
}
.footer-bottom a {
  color: #DEDEDE;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #068C6E;
}
.footer-bottom .footer-logo {
  width: 110px;
  display: none;
}
@media screen and (min-width: 768px) {
  .footer-bottom .footer-logo {
    display: block;
  }
}
.footer-bottom .footer-logos {
  padding: 0 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .footer-bottom .footer-logos {
    margin-bottom: 0;
  }
}
.footer-bottom .footer-logos img {
  height: 50px;
  filter: grayscale(100%);
}
.footer-bottom .footer-logos.payment-logos {
  padding-right: 0;
}
.footer-bottom .footer-logos.payment-logos img {
  height: 20px;
  margin-left: 10px;
}
.footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: column;
}
@media screen and (min-width: 768px) {
  .footer-bottom .footer-bottom-content {
    flex-flow: row;
  }
}
.footer-bottom .footer-bottom-content .footer-bottom-left {
  display: flex;
  gap: 10px;
}
.footer-bottom .footer-bottom-content .footer-bottom-right {
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-bottom .footer-bottom-content .footer-bottom-right {
    text-align: right;
  }
}
.footer-bottom .footer-bottom-content .footer-bottom-right p {
  font-size: 14px;
}

.footer-menu {
  display: flex;
  flex-flow: column;
  color: #DEDEDE;
}
.footer-menu .invisible {
  opacity: 1 !important;
}

.main-navigation ul {
  display: block !important;
}

.hero-section {
  min-height: 700px;
  height: 100vh;
  padding-top: 70px;
}
.hero-section::before {
  content: " ";
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url("../assets/images/arrow-down.png");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 40px;
  left: calc(50% - 15px);
  animation: bounce 1.5s infinite ease-in-out;
}
@media screen and (min-width: 768px) {
  .hero-section {
    height: 100vh;
    padding-top: 100px;
  }
}
.hero-section .hero-content {
  font-family: "Raleway", sans-serif;
  color: #DEDEDE;
  padding: 50px 0 190px 0;
}
.hero-section .hero-content b, .hero-section .hero-content strong {
  font-weight: 400;
  color: #068C6E;
}
.hero-section .hero-content .hero-header p {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .hero-section .hero-content .hero-header p {
    font-size: 48px;
    line-height: 57px;
  }
}
.hero-section .hero-content .hero-subheader p {
  font-size: 18px;
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .hero-section .hero-content .hero-subheader p {
    font-size: 24px;
    line-height: 29px;
  }
}
.hero-section .hero-booking {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: max-content;
  bottom: 130px;
  background: radial-gradient(68.81% 218.39% at 50% 50%, rgba(18, 18, 18, 0.4) 45.47%, rgba(117, 117, 117, 0.4) 100%), linear-gradient(270deg, rgba(18, 18, 18, 0.15) 29%, rgba(117, 117, 117, 0.15) 70.5%);
  padding: 14px 25px;
  border-radius: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  gap: 10px;
}
.hero-section .hero-booking::before {
  content: "";
  position: absolute;
  inset: 0; /* Stretch to cover */
  padding: 1px; /* Border thickness */
  background: conic-gradient(from -39.15deg at 50% 50%, #1E1E1E -90deg, #DEDEDE 79.2deg, #1E1E1E 270deg, #DEDEDE 439.2deg);
  mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  border-radius: 5px; /* If rounded borders are needed */
  border: 0.7px solid;
  backdrop-filter: blur(10px);
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3882352941);
}
@media screen and (min-width: 768px) {
  .hero-section .hero-booking {
    flex-flow: row;
  }
}
.hero-section .hero-booking > div {
  flex: 1;
  width: 100%;
}
.hero-section .hero-booking select, .hero-section .hero-booking input[type=date] {
  width: 100%;
  font-size: 12px;
  height: 45px;
  padding: 10px;
  color: #DEDEDE;
  margin-right: 10px;
  border-radius: 5px;
}
.hero-section .hero-booking button {
  width: auto;
}
@media screen and (min-width: 768px) {
  .hero-section .hero-booking button {
    width: 100%;
  }
}

.hero-section-2 .hero-content {
  position: absolute;
  bottom: 0;
}
.hero-section-2 .page-name {
  position: relative;
  padding-left: 40px;
}
.hero-section-2 .page-name::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  left: 0;
  background-image: url("../assets/images/arrow-right-white.png");
  height: 24px;
  width: 32px;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-section {
  position: relative;
}
.hero-section .hero-background {
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: fixed;
}
.hero-section .hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}
.hero-section .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: zoomImage 5s ease-in-out forwards;
  filter: grayscale(100%);
}

.hero-booking-element {
  position: relative;
  background-color: #046A53;
  background: radial-gradient(28.12% 78.97% at 50% 50%, rgba(5, 123, 97, 0.6) 50%, rgba(4, 106, 83, 0.6) 100%), linear-gradient(270deg, rgb(4, 106, 83) 29%, rgb(4, 106, 83) 70.5%);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.hero-booking-element::before {
  content: "";
  position: absolute;
  inset: 0; /* Stretch to cover */
  padding: 1px; /* Border thickness */
  background: conic-gradient(from 90deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  border-radius: 5px; /* If rounded borders are needed */
  pointer-events: none;
  cursor: pointer;
}
.hero-booking-element::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 5px;
  background-image: url("../assets/images/arrow-select-down.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 21px;
  right: 10px;
}
.hero-booking-element select, .hero-booking-element input[type=date] {
  background: transparent;
}
.hero-booking-element.date-seletion input[type=date] {
  background-image: none;
}
.hero-booking-element.date-seletion::after {
  content: "";
  display: none;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* Moves up */
  }
}
.services-section {
  background: #046A53;
  background: linear-gradient(45deg, #00281F 4%, #075645 24%, #046A53 33%, #0A4437 44%, #084E3F 62%, #065B48 69%, #046A53 77%, #075645 83%, #00281F 98%);
  color: #DEDEDE;
}
.services-section .explore-all-services {
  display: none;
}
@media screen and (min-width: 768px) {
  .services-section .explore-all-services {
    display: flex;
  }
}
.services-section h1 {
  margin-top: 0;
}

.service {
  width: 100%;
  display: flex;
  margin-top: 50px;
  flex-flow: column;
}
@media screen and (min-width: 768px) {
  .service {
    flex-flow: row;
  }
}
.service .service-image {
  width: 100%;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .service .service-image {
    width: 55%;
    padding-right: 30px;
  }
}
.service .service-image:nth-child(2) {
  padding-left: 30px;
  padding-right: 0;
}
.service .service-image img {
  border-radius: 9px;
}
.service .service-content {
  width: 100%;
  padding: 0;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .service .service-content {
    width: 45%;
    padding: 0 20px;
    margin-top: 0;
  }
}
.service .service-content h4 {
  font-size: 24px;
  margin-bottom: 10px;
}
.service .service-cta {
  margin-top: 20px;
  font-size: 20px;
}
.service:nth-child(2n) {
  flex-direction: column;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .service:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.service:nth-child(2n) .service-image {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .service:nth-child(2n) .service-image {
    padding-right: 0;
    padding-left: 30px;
  }
}

.booking-steps-section .section-header {
  text-align: center;
  font-family: "Raleway", sans-serif;
}
.booking-steps-section .section-header h1 {
  color: #046A53;
  margin-bottom: 0;
}
.booking-steps-section .booking-steps-grid {
  display: block;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .booking-steps-section .booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 50px;
  }
}
.booking-steps-section .booking-steps-grid .booking-step {
  display: flex;
  flex-direction: column;
  padding: 50px;
  border-radius: 0 60px 0 60px;
  background-color: #B7C6C3;
  color: #046A53;
  height: max-content;
}
.booking-steps-section .booking-steps-grid .booking-step .booking-step-number h2 {
  font-weight: 600;
}
.booking-steps-section .booking-steps-grid .booking-step .booking-step-content .text-s-medium {
  font-weight: 700;
}
.booking-steps-section .booking-steps-grid .booking-step:nth-child(2n) {
  background-color: #DEDEDE;
}
.booking-steps-section .booking-steps-grid .booking-step img {
  display: block;
  margin: 80px auto;
}
.booking-steps-section .booking-steps-grid .slick-next {
  right: -10px;
}
.booking-steps-section .booking-steps-grid .slick-prev {
  left: -10px;
}

.testimonials-section {
  color: #DEDEDE;
  overflow: hidden;
}
.testimonials-section .testimonial-author {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.testimonials-section .testimonial-author::before {
  content: "";
  width: 30px;
  border-bottom: 1px solid #DEDEDE;
  margin-right: 5px;
}
.testimonials-section .testimonial-author p {
  margin: unset;
}
.testimonials-section .slider {
  max-width: 100%;
  margin: 20px auto 0;
}
.testimonials-section .slick-list {
  overflow: visible !important; /* Allow shadows to be visible */
}
.testimonials-section .slick-slide {
  transition: transform 0.3s ease-in-out;
  opacity: 1; /* Dim inactive slides */
  padding: 50px 70px;
  border-radius: 80px 115px 115px 0;
  box-shadow: inset 0 0 0 1px #DEDEDE;
  width: auto; /* Allow slides to have different widths */
  margin: 0 30px; /* Adjust the space between slides */
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .testimonials-section .slick-slide {
    padding: 70px 84px;
    margin: 0 15px;
    opacity: 0.5;
  }
}
.testimonials-section .slick-slide.slick-current {
  background-color: #046A53;
  border: none;
  box-shadow: 4px 4px 45.4px 4px rgba(0, 0, 0, 0.2509803922);
}
.testimonials-section .slick-center {
  opacity: 1; /* Highlight the active slide */
  padding: 123px 84px;
  margin-top: 0;
}

.brands-section {
  background-color: #DEDEDE;
  padding: 40px 0;
}
.brands-section .section-header h1 {
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  .brands-section .section-header h1 {
    font-size: 42px;
  }
}
.brands-section .container {
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 768px) {
  .brands-section .container {
    flex-flow: row;
  }
}
.brands-section .container > div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .brands-section .container > div {
    width: 50%;
  }
}
.brands-section .brands-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: column;
}
@media screen and (min-width: 768px) {
  .brands-section .brands-grid {
    flex-flow: row;
  }
}
.brands-section .brands-grid .brands {
  display: flex; /* Flexbox container */
  flex-wrap: wrap; /* Allow items to wrap on multiple lines */
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .brands-section .brands-grid .brands {
    margin-bottom: 0;
  }
}
.brands-section .brands-grid .brands .brand {
  width: 75px;
  height: 75px;
}
.brands-section .brands-grid .brands .brand img {
  filter: grayscale(100%);
}

.partnership-section {
  display: flex;
  flex-flow: column;
  color: #DEDEDE;
  background-color: #121212;
}
@media screen and (min-width: 768px) {
  .partnership-section {
    flex-flow: row;
  }
}
.partnership-section > div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .partnership-section > div {
    width: 50%;
  }
}
.partnership-section h3 {
  font-weight: normal;
}
.partnership-section .partnership-content {
  padding: 50px 30px;
}
@media screen and (min-width: 768px) {
  .partnership-section .partnership-content {
    padding: 30px 100px;
  }
}
.partnership-section .partnership-image {
  overflow: hidden;
}
.partnership-section .partnership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: zoomImage 5s ease-in-out forwards;
}
.partnership-section .site-button {
  margin-top: 50px;
}

.meet-ceo-section {
  background-size: cover;
  background-position: center;
  color: #DEDEDE;
  position: relative;
  background-color: #046A53;
  background: linear-gradient(108.12deg, rgba(0, 40, 31, 0.95) 0.49%, rgba(1, 45, 35, 0.95) 8.45%, rgba(2, 52, 40, 0.95) 31.84%, rgba(4, 66, 52, 0.95) 48.75%, rgba(2, 53, 42, 0.95) 52.73%, rgba(0, 42, 32, 0.95) 73.63%, rgba(0, 42, 32, 0.95) 81.09%, rgba(4, 66, 52, 0.95) 87.06%, rgba(0, 42, 32, 0.95) 100%);
}
.meet-ceo-section .meet-ceo-content {
  display: flex;
  flex-flow: column-reverse;
}
.meet-ceo-section .meet-ceo-content > div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .meet-ceo-section .meet-ceo-content {
    display: flex;
    flex-flow: row;
  }
  .meet-ceo-section .meet-ceo-content > div {
    width: 50%;
  }
}
.meet-ceo-section .meet-ceo-content .ceo-name {
  margin-top: 20px;
}
.meet-ceo-section .meet-ceo-content .meet-ceo-left {
  text-align: left;
}
.meet-ceo-section .meet-ceo-content .meet-ceo-right {
  padding: 0px;
}
.meet-ceo-section .meet-ceo-content .meet-ceo-right img {
  width: 100%;
  box-shadow: 4px 4px 45.4px 4px rgba(0, 0, 0, 0.2509803922);
  border-radius: 9px;
}
@media screen and (min-width: 768px) {
  .meet-ceo-section .meet-ceo-content .meet-ceo-right {
    padding: 20px;
  }
  .meet-ceo-section .meet-ceo-content .meet-ceo-right img {
    width: auto;
  }
}
.meet-ceo-section .parallax-bg {
  opacity: 0.1;
}
.meet-ceo-section p {
  margin-bottom: 20px;
}
.meet-ceo-section h4 {
  font-weight: normal;
  margin-bottom: 20px;
}

.mile-stone-section .mile-stone-content {
  position: relative;
}
.mile-stone-section .mile-stone-content::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #B7C6C3;
  position: absolute;
  display: block;
  left: 50px;
  top: 20px;
}
@media screen and (min-width: 768px) {
  .mile-stone-section .mile-stone-content::before {
    left: 50%;
  }
}
.mile-stone-section .mile-stone-content::after {
  content: "";
  width: 2px;
  height: var(--scroll-progress, 0%); /* Default height is 0% */
  background-color: #046A53;
  position: absolute;
  left: 51px;
  top: 20px;
  transform: translateX(-50%);
  transition: height 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .mile-stone-section .mile-stone-content::after {
    left: calc(50% + 1px);
  }
}
.mile-stone-section .mile-stone-content .mile-stone-outter {
  width: 100%;
  display: flex;
  text-align: left;
}
.mile-stone-section .mile-stone-content .mile-stone-outter:nth-child(even) {
  flex-direction: row;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .mile-stone-section .mile-stone-content .mile-stone-outter:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
  }
}
.mile-stone-section .mile-stone-content .mile-stone-outter:nth-child(even) .mile-stone-item:nth-child(even)::after {
  left: 0;
  right: auto;
}
@media screen and (min-width: 768px) {
  .mile-stone-section .mile-stone-content .mile-stone-outter:nth-child(even) .mile-stone-item:nth-child(even)::after {
    left: auto;
    right: -21px;
  }
}
.mile-stone-section .mile-stone-content .mile-stone-outter.active .mile-stone-item::after {
  background-color: #046A53;
  box-shadow: 0 0 8px #046A53;
}
.mile-stone-section .mile-stone-content .mile-stone-item {
  width: 50%;
  padding: 20px 50px;
  position: relative;
}
.mile-stone-section .mile-stone-content .mile-stone-item p {
  margin-bottom: 20px;
}
.mile-stone-section .mile-stone-content .mile-stone-item img {
  width: 100%;
  margin-top: 20px;
  box-shadow: 4px 4px 45.4px 4px rgba(0, 0, 0, 0.2509803922);
  border-radius: 9px;
}
@media screen and (min-width: 768px) {
  .mile-stone-section .mile-stone-content .mile-stone-item img {
    max-width: 80%;
  }
}
.mile-stone-section .mile-stone-content .mile-stone-item:nth-child(odd) {
  width: 50px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .mile-stone-section .mile-stone-content .mile-stone-item:nth-child(odd) {
    width: 50%;
    padding: 20px 50px;
  }
}
.mile-stone-section .mile-stone-content .mile-stone-item:nth-child(even) {
  width: calc(100% - 50px);
}
.mile-stone-section .mile-stone-content .mile-stone-item:nth-child(even)::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #B7C6C3;
  border-radius: 50%;
  position: absolute;
  display: block;
  left: 1px;
  top: 32px;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .mile-stone-section .mile-stone-content .mile-stone-item:nth-child(even) {
    width: 50%;
  }
}

.transport-solution-section .transport-solution-content {
  display: flex;
}
.transport-solution-section .transport-solution-content > div {
  width: 50%;
}
.transport-solution-section .transport-solution-content .transport-solution-left {
  padding: 0 50px;
}
.transport-solution-section .transport-solution-content .transport-solution-left h4 {
  font-weight: normal;
}
.transport-solution-section .transport-solution-content .transport-solution-right .image-outter {
  margin-right: 0;
}
.transport-solution-section .transport-solution-content .transport-solution-right img {
  width: 100%;
}
.transport-solution-section .transport-solution-content .image-outter {
  border-radius: 12px 0 0 12px;
  padding: 50px 0 50px 50px;
}
.transport-solution-section .transport-solution-content .image-outter img {
  border-radius: 9px 0 0 9px;
}

.image-outter {
  margin: auto;
  width: fit-content;
  background-color: #046A53;
  padding: 30px;
  border-radius: 12px;
}
.image-outter img {
  border-radius: 9px;
}

.driven-services-section .driven-service {
  text-align: center;
}
.driven-services-section .driven-service-content {
  border: 1px solid #B7C6C3;
  padding: 40px 5px;
  border-radius: 0 0 60px 60px;
  width: calc(100% - 40px);
  max-width: 375px;
  margin: auto;
  margin-top: -10px;
}
.driven-services-section .driven-service-image {
  z-index: 1;
  position: relative;
  padding: 0 10px;
}
.driven-services-section button {
  margin-top: 20px;
}
.driven-services-section .slick-arrow {
  top: 40%;
}
.driven-services-section .slick-next {
  right: 0;
}
.driven-services-section .slick-prev {
  left: 0;
}
.driven-services-section .slick-dots {
  position: absolute;
  bottom: -25px; /* Adjust position */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #B7C6C3; /* Background color */
  border-radius: 4px;
  margin-top: 30px;
}
.driven-services-section .slick-dots li {
  flex: 1; /* Make dots stretch like a line */
  height: 4px; /* Thickness of the line */
  margin: 0; /* Small gap between */
  transition: background 0.3s ease-in-out;
  border-radius: 4px;
  padding: 0;
}
.driven-services-section .slick-dots li button {
  display: none;
}
.driven-services-section .slick-dots li.slick-active {
  background: #046A53; /* Highlight active slide */
}

.fleet-content-outter {
  padding-bottom: 50px;
}

.fleet-slider {
  border-radius: 60px;
  margin-bottom: 50px;
}
.fleet-slider .fleet-slide-inner {
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 768px) {
  .fleet-slider .fleet-slide-inner {
    flex-flow: row;
  }
}
.fleet-slider .fleet-slide-inner .fleet-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 60px 60px 0 0;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .fleet-slider .fleet-slide-inner .fleet-image {
    width: 55%;
    height: auto;
    border-radius: 60px 0 0 60px;
    background-size: cover;
    background-position: center;
  }
}
.fleet-slider .fleet-slide-inner .fleet-content {
  width: 100%;
  border: 1px solid #B7C6C3;
  border-radius: 0 0 60px 60px;
  border-top: none;
}
@media screen and (min-width: 768px) {
  .fleet-slider .fleet-slide-inner .fleet-content {
    width: 45%;
    border: 1px solid #B7C6C3;
    border-radius: 0 60px 60px 0;
    border-left: none;
  }
}
.fleet-slider .fleet-content-inner {
  padding: 50px;
}
.fleet-slider .fleet-content-inner .fleet-tags {
  display: flex;
  gap: 10px;
  margin: 20px auto;
}
.fleet-slider .fleet-content-inner .fleet-tags span {
  background-color: #B7C6C3;
  padding: 5px 20px;
  border-radius: 32px;
}
.fleet-slider .fleet-content-inner .fleet-tags .fleet-tag {
  flex: 1;
}
.fleet-slider .fleet-content-inner .fleet-tags .fleet-tag p {
  font-size: 10px;
  line-height: 10px;
  margin-top: 5px;
}
.fleet-slider .slick-prev, .fleet-slider .slick-next {
  bottom: -25px;
  top: auto;
  left: auto;
  right: auto;
  background-color: #B7C6C3;
}
.fleet-slider .slick-next {
  right: 20%;
}
@media screen and (min-width: 768px) {
  .fleet-slider .slick-next {
    left: 30%;
    right: auto;
  }
}
.fleet-slider .slick-prev {
  left: 20%;
}
.fleet-slider:nth-child(2n) .fleet-slide .fleet-slide-inner {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .fleet-slider:nth-child(2n) .fleet-slide .fleet-slide-inner {
    flex-direction: row-reverse;
  }
}
.fleet-slider:nth-child(2n) .fleet-slide .fleet-slide-inner .fleet-content {
  border-radius: 0 0 60px 60px;
  border: 1px solid #B7C6C3;
  border-top: none;
}
@media screen and (min-width: 768px) {
  .fleet-slider:nth-child(2n) .fleet-slide .fleet-slide-inner .fleet-content {
    border-radius: 60px 0 0 60px;
    border: 1px solid #B7C6C3;
    border-right: none;
  }
}
.fleet-slider:nth-child(2n) .fleet-slide .fleet-slide-inner .fleet-image {
  border-radius: 60px 60px 0 0;
}
@media screen and (min-width: 768px) {
  .fleet-slider:nth-child(2n) .fleet-slide .fleet-slide-inner .fleet-image {
    border-radius: 0 60px 60px 0;
  }
}
.fleet-slider:nth-child(2n) .slick-next {
  right: 20%;
  left: auto;
}
.fleet-slider:nth-child(2n) .slick-prev {
  right: auto;
  left: 20%;
}
@media screen and (min-width: 768px) {
  .fleet-slider:nth-child(2n) .slick-prev {
    right: 30%;
    left: auto;
  }
}

.stay-update-section {
  height: 100vh;
}
.stay-update-section h1 {
  color: #046A53;
  font-size: 48px;
  background: linear-gradient(97.8deg, #068C6E 17.36%, #01E1AE 37.97%, #01E1AE 65.42%, #068C6E 98.64%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mask-image: linear-gradient(97.8deg, #068C6E 17.36%, #01E1AE 37.97%, #01E1AE 65.42%, #068C6E 98.64%);
  -webkit-mask-image: linear-gradient(97.8deg, #068C6E 17.36%, #01E1AE 37.97%, #01E1AE 65.42%, #068C6E 98.64%);
  font-weight: 600;
  margin-top: 0;
}
.stay-update-section p {
  color: #03B48C;
  font-weight: 400;
  max-width: 930px;
}

.parallax-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -10vh;
  left: 0;
  width: 100%;
  height: 120vh; /* Slightly larger to create a parallax effect */
  background-size: cover;
  background-attachment: fixed; /* Enables the parallax effect */
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.content {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  padding: 180px 0;
}

.appear .overlay {
  opacity: 1;
}

.appear .content {
  opacity: 1;
  transform: translateY(0);
}

.user-section {
  display: flex;
  flex-direction: row;
  color: #DEDEDE;
}
.user-section h1, .user-section h4 {
  font-weight: normal;
}
.user-section h1 b, .user-section h4 b {
  color: #068C6E;
}
.user-section h4 {
  margin-bottom: 20px;
}
.user-section > div {
  width: 50%;
}
.user-section > div .um-login, .user-section > div .un-register {
  max-width: 100%;
  margin-top: 20px;
}
.user-section > div label, .user-section > div span, .user-section > div a {
  color: #DEDEDE !important;
}
.user-section > div.login-section, .user-section > div.registration-section {
  padding: 0 50px;
}
.user-section > div .um-center {
  text-align: left;
}
.user-section > div .um-link-alt {
  color: #046A53 !important;
}
.user-section > div .um-field-area input[type=text], .user-section > div .um-field-area input[type=email], .user-section > div .um-field-area input[type=password],
.user-section > div .um-field-area input[type=text]:focus, .user-section > div .um-field-area input[type=email]:focus, .user-section > div .um-field-area input[type=password]:focus {
  background-color: #046A53;
  background: linear-gradient(45deg, #068C6E, #00372b);
  color: #DEDEDE;
  border: 1px solid #068C6E !important;
  padding: 10px;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 5px;
}
.user-section > div .um-field-error {
  background-color: transparent;
  color: red;
  margin: 0;
  padding: 0;
}
.user-section > div .um-field-error .um-field-arrow {
  display: none;
}
.user-section > div button {
  margin-top: 30px;
}
.user-section .login-section {
  border-right: 1px solid #DEDEDE;
}

.um .um-field-checkbox.active:not(.um-field-radio-state-disabled) i {
  color: #068C6E !important;
}

.book-a-ride-form {
  max-width: 640px;
  margin: auto;
}
.book-a-ride-form select,
.book-a-ride-form input[type=date],
.book-a-ride-form input[type=text],
.book-a-ride-form input[type=email],
.book-a-ride-form input[type=password],
.book-a-ride-form input[type=text]:focus,
.book-a-ride-form input[type=email]:focus,
.book-a-ride-form input[type=password]:focus {
  width: 100%;
  padding: 10px;
  border: 1px solid #068C6E;
  border-radius: 5px;
  background: transparent;
  padding: 10px;
}
.book-a-ride-form .form-group {
  margin-top: 5px;
  margin-bottom: 20px;
}
.book-a-ride-form .form-group.flex {
  display: flex;
  gap: 20px;
}
.book-a-ride-form .form-group-inner {
  flex: 1;
}
.book-a-ride-form button {
  margin-top: 20px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  gap: 10px;
  user-select: none;
}
.custom-checkbox p {
  font-weight: 400;
  display: flex;
  flex-flow: column;
}
.custom-checkbox p span {
  color: #757575;
  font-size: 14px;
}

/* Hide default checkbox */
.custom-checkbox input {
  display: none;
}

/* Custom checkbox shape */
.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #046A53;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease-in-out;
  background-color: #046A53;
  border-color: #046A53;
}

/* Checkmark animation */
.custom-checkbox input:checked + .checkmark {
  background-color: #046A53;
  border-color: #046A53;
}

/* Checkmark icon */
.custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: opacity 0.3s ease-in-out;
}

.cars-slider .slick-list {
  border-radius: 60px 0 60px 0;
}
.cars-slider .slick-next, .cars-slider .slick-prev {
  margin-top: unset;
  top: 90%;
}
.cars-slider .slick-next {
  right: 35%;
}
.cars-slider .slick-prev {
  left: 35%;
}

.step-2 {
  display: none;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #121212 !important;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

section {
  height: 100vh;
}

p {
  margin: auto;
  margin-block-start: auto;
  margin-block-end: auto;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  margin-block-start: auto;
  margin-block-end: 10px;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2 {
  font-size: 42px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 16px;
  font-weight: 400;
}

a {
  text-decoration-line: none;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none !important;
}
a.site-button:hover, a.site-button:focus, a.site-button:active, a.site-button:visited {
  text-decoration: none;
  text-decoration-line: none;
  color: #DEDEDE;
}

.text-tiny, .text-tiny * {
  font-size: 14px;
}

.text-small, .text-small * {
  font-size: 16px;
}

.text-s-medium, .text-s-medium * {
  font-size: 18px;
}

.text-medium, .text-medium * {
  font-size: 20px;
}

.text-large, .text-large * {
  font-size: 24px;
}

.text-x-large, .text-x-large * {
  font-size: 28px;
}

.text-xx-large, .text-xx-large * {
  font-size: 36px;
}

.text-xxx-large, .text-xxx-large * {
  font-size: 40px;
}

.text-huge, .text-huge * {
  font-size: 42px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.full-height {
  height: 100vh;
}

.justify-center-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.justify-center-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.justify-start-center {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}

.justify-start-space-between {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}

.justify-center-top {
  display: flex;
  justify-content: center;
  align-items: start;
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
}

.text-green {
  color: #068C6E;
}

.overflow-hidden {
  overflow: hidden;
}

body.overflow-hidden .header-visible {
  background: transparent;
  border: none;
}

.invisible {
  opacity: 0 !important;
}

.hide {
  display: none;
}

.section-padding {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}

.section-padding-small {
  padding: 20px 0;
}

.text-center {
  text-align: center;
}

.post, .page {
  margin: 0;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  height: 100%;
  z-index: 1;
}
@media screen and (min-width: 1440px) {
  .container {
    padding: 0 50px;
  }
}
.container .content {
  padding: 0 50px;
}

.site-button {
  font-size: 14px;
  font-weight: 700;
  padding: 0px 50px 0 20px;
  height: 45px;
  border-radius: 5px;
  text-align: center;
  color: #DEDEDE;
  text-transform: uppercase;
  background-color: #046A53;
  background: radial-gradient(28.12% 78.97% at 50% 50%, #057B61 50%, #046A53 100%), linear-gradient(270deg, rgba(4, 106, 83, 0.2) 29%, rgba(4, 106, 83, 0.2) 70.5%);
  border: none;
  box-shadow: 0px 0px 2.5px 1px #046A53;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 150px;
  --angle: 36.47deg;
}
.site-button::after {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  margin: 0 10px;
  background: #DEDEDE;
  right: 25px;
  position: absolute;
}
.site-button::before {
  content: "";
  position: absolute;
  inset: 0; /* Stretch to cover */
  padding: 1px; /* Border thickness */
  /* Set initial variable */
  background: conic-gradient(from 36.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  border-radius: 5px; /* If rounded borders are needed */
  pointer-events: none;
}
.site-button .arrow {
  position: absolute;
  right: 7px;
}
.site-button:hover::before {
  animation: spinBGColor 1.5s ease-in-out infinite; /* Start animation */
}

.site-button.green {
  margin-top: 20px;
  color: #01E1AE;
}
.site-button.green::after {
  background-color: #01E1AE;
}
.site-button.green .arrow span {
  background-image: url("../assets/images/arrow-button-green.png");
  width: 23px;
  height: 23px;
  display: block;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}

.call-to-action {
  text-transform: uppercase;
  font-size: 18px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  left: 0;
  transition: all 0.3s ease;
}
.call-to-action a {
  color: #DEDEDE !important;
  text-decoration: none;
  font-weight: bold;
  display: contents;
}
.call-to-action a::after {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  margin: 0 10px;
  background: #DEDEDE;
}
.call-to-action::before {
  content: "";
  width: calc(100% - 50px);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px; /* Adjust the space between text and line */
  height: 2px; /* Thickness of the gradient line */
  border-radius: 2px; /* Optional for rounded edges */
  background: linear-gradient(80.45deg, #08D0A3 0%, #046A53 25%, #046A53 50%, #046A53 75%, #08D0A3 100%);
  pointer-events: none;
  background-size: 250% 2px; /* Expands gradient for smooth animation */
  background-position: 0% 50%; /* Start from right */
}
.call-to-action:hover::before {
  animation: moveGradient 2s ease-in infinite; /* Loop animation */
}

.call-to-action:not([data-aos=fade-up]):hover {
  left: 15px;
}

.call-to-action-arrow {
  font-size: 12px;
  width: 35px;
  height: 35px;
  border-radius: 9px;
  background: radial-gradient(28.12% 78.97% at 50% 50%, rgba(5, 123, 97, 0.8) 50%, rgba(4, 106, 83, 0.8) 100%), linear-gradient(270deg, rgba(4, 106, 83, 0.2) 29%, rgba(4, 106, 83, 0.2) 70.5%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.call-to-action-arrow span {
  background-image: url("../assets/images/arrow-forward.png");
  height: 30px;
  width: 30px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 0px 0px 5px 2px #046A53;
}
.call-to-action-arrow::before {
  content: "";
  position: absolute;
  inset: 0; /* Stretch to cover */
  padding: 1px; /* Border thickness */
  background: conic-gradient(from 41.33deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  border-radius: 5px; /* If rounded borders are needed */
}

.arrow {
  width: 25px;
  height: 25px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.arrow span {
  background-image: url("../assets/images/arrow-forward.png");
  width: 23px;
  height: 23px;
  display: block;
  background-size: contain;
}

.transparent-text {
  text-align: center;
  font-size: 100px;
  line-height: 100px;
  font-weight: bold;
  color: transparent; /* Makes text fill transparent */
  -webkit-text-stroke: 1px white; /* White border (for Chrome, Safari) */
  word-wrap: break-word;
  text-align: left;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .transparent-text {
    font-size: 155px;
    line-height: 120px;
    text-align: center;
  }
}

.big-text-section h1, .big-text-section h1 > p {
  text-align: left;
  font-size: 80px;
  line-height: 100px;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .big-text-section h1, .big-text-section h1 > p {
    font-size: 120px;
    line-height: 140px;
  }
}

.gradient-text {
  margin: 0 0 20px 0;
  background: linear-gradient(45deg, #046A53, #068C6E, #00372b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mask-image: linear-gradient(45deg, #046A53, #068C6E, #00372b);
  -webkit-mask-image: linear-gradient(45deg, #046A53, #068C6E, #00372b);
}

.bg-gradient-white {
  background-color: #DEDEDE;
  background: linear-gradient(-35deg, #ffffff 0%, #DEDEDE 22%, #DEDEDE 39%, #E0E0E0 65%, #ffffff 100%);
}

.bg-gradient-green {
  background-color: #046A53;
  background: linear-gradient(-45deg, #046A53 0%, #068C6E 15%, #046A53 32%, #068C6E 53%, #046A53 71%, #068C6E 85%);
}

.bg-gradient-green-testimonial {
  background-color: #046A53;
  background: linear-gradient(108.12deg, rgb(0, 40, 31) 0.49%, rgb(1, 45, 35) 8.45%, rgb(2, 52, 40) 31.84%, rgb(4, 66, 52) 48.75%, rgb(2, 53, 42) 52.73%, rgb(0, 42, 32) 73.63%, rgb(0, 42, 32) 81.09%, rgb(4, 66, 52) 87.06%, rgb(0, 42, 32) 100%);
}

.bg-gradient-white-green {
  background-color: #DEDEDE;
  background: linear-gradient(-35deg, #ffffff 6%, #B7C6C3 23%, #ffffff 43%, #B7C6C3 64%, #ffffff 75%, #B7C6C3 87%);
}

.slick-arrow {
  background-color: #DEDEDE;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  transform: none;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.slick-arrow:hover {
  transform: scale(1.1);
}
.slick-arrow:hover, .slick-arrow:focus, .slick-arrow:active {
  background-color: #DEDEDE;
}
.slick-arrow:before, .slick-arrow:after {
  content: " ";
  width: 20px;
  height: 3px;
  background-color: #046A53;
  display: block;
  rotate: 40deg;
  border-radius: 4px;
  margin: auto 17px;
  margin-top: 2px;
  opacity: 1 !important;
}
.slick-arrow::after {
  rotate: -40deg;
  margin-top: 9px;
}

.slick-next {
  right: 10px;
}
@media screen and (min-width: 768px) {
  .slick-next {
    right: 50px;
  }
}

.slick-prev {
  left: 10px;
  rotate: 180deg;
}
@media screen and (min-width: 768px) {
  .slick-prev {
    left: 50px;
  }
}

.slick-arrow.slick-disabled {
  background-color: #72958D;
}

#page select,
#page input[type=date],
#page input[type=text],
#page input[type=email],
#page input[type=password],
#page input[type=text]:focus,
#page input[type=email]:focus,
#page input[type=password]:focus {
  font-size: 14px;
  height: 45px;
  padding: 10px 15px;
  color: #DEDEDE;
  margin-right: 10px;
  border-radius: 5px;
}
#page select::placeholder,
#page input[type=date]::placeholder,
#page input[type=text]::placeholder,
#page input[type=email]::placeholder,
#page input[type=password]::placeholder,
#page input[type=text]:focus::placeholder,
#page input[type=email]:focus::placeholder,
#page input[type=password]:focus::placeholder {
  color: #DEDEDE;
}
#page select {
  appearance: none;
}

/* Keyframes for background movement */
@keyframes moveGradient {
  0% {
    background-position: 200% 150%;
  }
  33% {
    background-position: 150% 100%;
  }
  66% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 50% 0%;
  }
}
@keyframes zoomBackground {
  0% {
    background-size: 115%;
  }
  100% {
    background-size: 102%;
  }
}
@keyframes zoomImage {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes spinBGColor {
  0% {
    background: conic-gradient(from 36.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  5% {
    background: conic-gradient(from 54.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  10% {
    background: conic-gradient(from 72.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  15% {
    background: conic-gradient(from 90.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  20% {
    background: conic-gradient(from 108.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  25% {
    background: conic-gradient(from 126.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  30% {
    background: conic-gradient(from 144.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  35% {
    background: conic-gradient(from 162.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  40% {
    background: conic-gradient(from 180.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  45% {
    background: conic-gradient(from 198.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  50% {
    background: conic-gradient(from 216.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  55% {
    background: conic-gradient(from 234.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  60% {
    background: conic-gradient(from 252.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  65% {
    background: conic-gradient(from 270.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  70% {
    background: conic-gradient(from 288.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  75% {
    background: conic-gradient(from 306.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  80% {
    background: conic-gradient(from 324.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  85% {
    background: conic-gradient(from 342.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  90% {
    background: conic-gradient(from 360.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  95% {
    background: conic-gradient(from 378.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
  100% {
    background: conic-gradient(from 396.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
}
[data-scroll] {
  will-change: transform; /* Optimizes animations */
}

/*# sourceMappingURL=main.css.map */
