/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --default-font: "inter", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "inter", serif;
  --nav-font: "inter", serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #767b78;
  --heading-color: #051e16;
  --accent-color: #abe3c3;
  --accent-color-dark: #83ac94;
  --accent-color-dark-2: #546c64;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #051e16;
  --nav-hover-color: #546c64;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #051e16;
  --nav-dropdown-hover-color: #546c64;
}

/* Color Presets */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

.service-item:hover h3 {
  color: var(--heading-color) !important;
}

.only-mob {
  display: none;
  padding: 10px 20px;
  > a {
    background-color: var(--accent-color);
    color: var(--heading-color);
    border-radius: 10px;
  }
}

.navmenu a,
.navmenu a:focus {
  justify-content: center !important;
}

.reset-wd {
  font-weight: 400 !important;
}

.swiper-slide img {
  width: 100%;
  filter: brightness(0);
  opacity: 0.2;

  &:hover {
    opacity: 1;
    filter: none;
    transition-duration: 0.4s;
  }
}

.brand-section {
  padding: 10px 0;
  background: white;
}

.hide {
  display: none;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--accent-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: var(--heading-color);

  .mobile-nav-toggle {
    color: white;
  }

  img#black-bg-ed {
    display: block !important;
  }

  img#white-bg-ed {
    display: none !important;
  }

  .navmenu a,
  .navmenu a:focus {
    color: white;
  }

  .right-elements > .login-btn {
    color: white;
  }

  .right-elements > .reg-btn {
    background: var(--accent-color);
    color: var(--heading-color);
    border-color: var(--accent-color-dark-2);
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.header .right-elements {
  justify-content: flex-end;
}

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    font-weight: 700;
    /* background-color: var(--nav-hover-color); */
  }

  .header .right-elements > a {
    margin: 0 !important;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 25px;
    gap: 10px;
    font-size: 18px;
  }

  .header .right-elements {
    > .login-btn {
      color: var(--heading-color);
      font-weight: 600;

      &:hover {
        color: var(--accent-color-dark);
      }
    }
  }

  .header .right-elements > .reg-btn {
    background: var(--accent-color-dark-2);
    border: 1px solid var(--accent-color-dark);
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    &:hover {
      background: var(--accent-color-dark);
    }
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    background-color: transparent;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    > .only-mob {
      display: block;
    }
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  display: flex;
  justify-content: center;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  border-radius: 10px;
  border: 2px solid var(--accent-color-dark);
  font-size: 18px;
  padding: 15px 15px;
  box-shadow: none;
  color: var(--default-color);
  background-color: transparent;
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--heading-color);
  font-weight: 500;
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 10px;
  font-size: 20px;
  width: 15rem;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #e8fff2;
  font-size: 14px;
  position: relative;
}

.footer .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgb(175 227 197);
}

.footer .form-check-input:checked {
  background-color: var(--accent-color-dark-2);
  border-color: var(--accent-color-dark-2);
}

.scroll-top:hover {
  background-color: var(--accent-color-dark-2) !important;
}

.brand-logo-set {
  width: 100%;
}

.footer > .curve-svg {
  transform: rotate(180deg);
  width: 100%;
  height: 100%;
}

.form-footer .line {
  height: 2rem;
  border-left: 1px solid var(--accent-color-dark);
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
  color: white;
  background-color: #7b7984;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: white;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer-about {
  display: flex;
  justify-content: end;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 15px;

  img {
    width: 350px;
  }

  p {
    font-size: 18px;
    font-weight: 300;
  }
}

.footer-contact {
  h4 {
    font-size: 20px;
    text-transform: uppercase;
  }

  p {
    font-size: 18px;
  }
}

.footer .form-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  .form-check {
    display: flex;
    gap: 10px;
    align-items: center;

    .form-check-input {
      width: 1.2rem;
      height: 1.2rem;
      border-color: var(--heading-color);
    }
  }
}

.form-check-label {
  font-size: 18px;
  text-align: left;
}

.footer .section-title {
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;

  h2 {
    padding: 0;
    font-weight: 400;
  }
}

.footer .copyright {
  justify-content: center;
  align-items: center;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;

  p {
    color: var(--heading-color);
    font-weight: 300;
  }
}

.footer-wave .hero-waves {
  display: block;
  width: 100%;
  height: 80px;
  position: relative;
}

.footer-wave .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #d9d9d9;
  opacity: 0.6;
}

.footer-wave .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #d9d9d9;
  opacity: 0.4;
}

.footer-wave .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #d9d9d9;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

.cory-inner {
  background: var(--accent-color);
}

.copyright p {
  font-size: 16px;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  display: flex;
  gap: 20px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;

  > img {
    width: 150px;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color-dark);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--heading-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
/*section,*/
/*.section {*/
/*  color: var(--default-color);*/
/*  background-color: var(--background-color);*/
/*  padding: 60px 0;*/
/*  scroll-margin-top: 77px;*/
/*  overflow: clip;*/
/*}*/

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  padding-bottom: 20px;
  margin: 0;
  position: relative;
}

.section-title p {
  color: var(--default-color);
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  padding: 20px;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180.09deg, #abe3c3 65.37%, #83ac94 128.21%);

  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;

  > .hive-img {
    position: absolute;
    width: 100%;
    top: 0;
  }
}

#hero-carousel {
  padding: 0 10vw !important;
}

.hero .carousel-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  gap: 50px;

  .left-el {
    text-align: center;

    > img {
      width: 300px;
    }
  }
}

.hero .right-el {
  h3 {
    font-size: 2rem;
    font-weight: 200;
    color: var(--accent-color-dark-2);
    > strong {
      font-weight: 500;
    }
  }
}

.carousel-indicators {
  margin-bottom: 4rem !important;
}

.carousel-indicators li {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #000;
}
.carousel-indicators .active {
  background-color: var(--accent-color);
}

.hero h2 {
  font-size: 50px;
  font-weight: 500;
}

.hero p {
  font-weight: 300;
  color: #546c64;
}

.hero .curve-svg {
  width: 100%;
  height: 100%;
}

.hero h2 span {
  text-decoration: underline;
}

.hero p {
  animation-delay: 0.4s;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  color: #d4d4d4;
  opacity: 0.8;
}

.hero .btn-get-started {
  font-weight: 600;
  font-size: 25px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 32px;
  border-radius: 10px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  border: 1px solid var(--accent-color-dark);
  background: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
}

.hero .btn-get-started:hover {
  background: var(--accent-color-dark);
  text-decoration: none;
}

.card {
  text-align: center;
  padding: 20px;
  border: 1px solid var(--accent-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
/*.card:hover {*/
/*  transform: translateY(-5px);*/
/*}*/
.brand-logo {
  width: 100%;
  margin: 0 auto 15px;
}
/* Toggle Switch Styling */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: var(--accent-color-dark); /* Green when active */
}
input:checked + .slider:before {
  transform: translateX(26px);
}

.card-btm {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  > h5 {
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 1000px) {
  #hero-carousel {
    padding: 0 5vw !important;
  }

  .sorting-sec {
    margin-top: -22vw !important;
  }

  .hero .carousel-container {
    min-height: 60vh;
  }

  .hero h2 {
    font-size: 28px;
  }

  .sorting-sec {
    > .container {
      padding: 50px 30px !important;
    }

    .input-box {
      flex-direction: column;
    }

    .select-opt {
      justify-content: space-between;
    }

    & .stats {
      > .left-item,
      > .right-item {
        padding: 0 15px;
      }
    }
  }

  .footer .form-footer {
    flex-direction: column;
  }

  .footer .footer-top {
    padding-bottom: 50px !important;
  }

  .form-footer .line {
    display: none;
  }
}

@media (max-width: 767px) {
  .sorting-sec {
    margin-top: -26vw !important;
  }

  .stats {
    flex-direction: column;
  }

  & .stats {
    gap: 20px;
    > .left-item,
    > .right-item {
      flex-direction: row !important;

      .det {
        /* text-align: center; */
      }
    }
  }

  & .stats {
    > .mid-item {
      width: 100%;
      height: auto !important;
      border-left: none !important;
      border-bottom: 1px solid var(--accent-color);
    }
  }
}

@media (max-width: 575px) {
    .sorting-sec {
        margin-top: -34vw !important;
    }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 80px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #fff;
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #fff;
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #fff;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/

.why-us {
  /* background-color: #e8e8e8; */
  padding: 60px 0 100px 0;

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

  .service-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    /* align-items: center; */
    gap: 15px;

    .img {
      display: flex;
      align-items: center;
      flex-direction: row;
      gap: 20px;

      > h3 {
        text-align: left;
      }

      > img {
        width: 4rem !important;
        height: 4rem;
      }
    }

    .det {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      align-items: center;

      p {
        text-align: left;
        font-size: 20px;
        font-weight: 300;
      }

      a {
        h3 {
          margin-top: 0;
          font-weight: 600;
          font-size: 30px;
        }

        text-align: left;
        width: 100%;
      }
    }
  }
}

.services .service-item {
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  background-color: var(--surface-color);
  padding: 20px 25px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# sorting Section
--------------------------------------------------------------*/

.sorting-sec {
  /* padding: 40px; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: -18vw;
  overflow: visible;

  > .container {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 50px 100px;
    gap: 30px;
    /* position: absolute;
    top: 55vh; */
    background: #ffffff;
    box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.1);
    border-radius: 20px;

    > h2 {
      padding: 0;
      font-size: 40px;
      font-weight: 400;
      color: var(--accent-color-dark-2);
    }
  }

  .input-box {
    font-size: 25px;
    display: flex;
    border-radius: 5px;
    border-radius: 10px;
    width: 100%;
    outline: 2px solid var(--accent-color);
  }

  .select-opt {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;

    .btn-check:checked + .btn,
    .btn.active,
    .btn.show,
    .btn:first-child:active,
    :not(.btn-check) + .btn:active {
      border: none !important;
    }
  }

  /* Custom styling for dropdown button */
  .custom-dropdown .dropdown-toggle {
    text-align: left;
    font-size: 25px;
    border: none !important;
    padding: 0 20px;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  /* Custom styling for dropdown menu */
  .custom-dropdown .dropdown-menu {
    width: 200px;
    background-color: #ffffff;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  /* Custom styling for dropdown items */
  .custom-dropdown .dropdown-item {
    color: #333;
    padding: 10px;
  }

  /* Change background color on hover */
  .custom-dropdown .dropdown-item:hover {
    background-color: var(--accent-color) !important;
  }

  /* Change background color for selected item */
  .custom-dropdown .dropdown-item.active,
  .custom-dropdown .dropdown-item:active {
    background-color: var(--accent-color) !important;
  }

  .selected {
    background-color: var(--accent-color);
  }

  .input-box input {
    border: none;
    padding: 10px 20px;
    flex: 1;

    &:focus-visible {
      outline: none;
      background-color: #e8fff2;
      border-radius: 10px 0 0 10px;
    }
  }

  .shorten-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 25px;
    background: var(--accent-color);
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    color: var(--heading-color);
    font-weight: 600;
    border-radius: 10px;

    svg {
      width: 25px;
    }
  }
  .stats {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    align-items: center;

    > .left-item,
    > .right-item {
      font-size: 25px;
      display: flex;
      gap: 20px;
      align-items: center;
    }

    > .mid-item {
      height: 4rem;
      border-left: 1px solid var(--accent-color);
    }
  }
}

@media (min-width: 1200px) {
    .sorting-sec {
        margin-top: -16vw;
    }
}

@media (min-width: 1600px) {
    .sorting-sec {
        margin-top: -12vw;
    }
}

@media (min-width: 2000px) {
    .sorting-sec {
        margin-top: -10vw;
    }
}

/*--------------------------------------------------------------
# sorting Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# uptime Section
--------------------------------------------------------------*/

#uptime {
  /* padding: 40px; */

  > .container {
    display: flex;
    flex-direction: column;
    background-color: var(--accent-color);
    padding: 40px;
    border-radius: 20px;
    align-items: center;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);

    > p {
      padding: 0;
      text-align: center;
    }
  }
}

/*--------------------------------------------------------------
# uptime Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# howto Section
--------------------------------------------------------------*/

.howto {
  /* background-color: #e8e8e8; */
  padding: 60px 0;

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

  .service-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    /* align-items: center; */
    gap: 15px;

    .img {
      display: flex;
      align-items: center;
      flex-direction: row;
      gap: 20px;

      > h3 {
        text-align: left;
      }

      > img {
        width: 4rem !important;
        height: 4rem;
      }
    }

    .det {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      align-items: center;

      p {
        text-align: left;
        font-size: 20px;
        font-weight: 300;
      }

      a {
        h3 {
          margin-top: 0;
          font-weight: 600;
          font-size: 30px;
        }

        text-align: left;
        width: 100%;
      }
    }
  }
}
/*--------------------------------------------------------------
# howto Section
--------------------------------------------------------------*/

/* Responsive Custom */

@media (max-width: 600px) {
  .hero .carousel-item {
    margin-bottom: 0px !important;
    margin-top: 30px !important;
  }
}

@media (max-width: 800px) {
  .hero .carousel-item {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .hero .carousel-item {
    & .left-el {
      > img {
        width: 200px;
      }
    }
  }

  .hero .right-el {
    text-align: center;
  }

  .services .service-item p {
    font-size: 16px !important;
  }

  .services .service-item h3 {
    font-size: 20px !important;
  }

  .services .service-item {
    padding: 20px 15px;
    gap: 10px;

    img {
      width: 3rem !important;
    }
  }

  .footer-about {
    justify-content: left;
  }

  .footer .copyright {
    flex-direction: column;
    text-align: left;
  }

  .footer .credits {
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    text-align: left;
  }

  .footer .footer-top {
    padding-bottom: 0;
  }

  .verticals .modal-header {
    gap: 10px;
  }
  .verticals .modal-header {
    h5 {
      font-size: 18px;
    }
  }

  .nav-tabs .nav-link {
    font-size: 16px;
    padding: 5px 15px 5px 15px;
  }
  .hero {
    > .hive-img {
    }
  }

  .hardware-item .left-item {
    position: static;
  }

  .hardware .hardware-item {
    flex-direction: column;
  }

  .hardware .testimonial-wrap {
    padding-left: 0;
  }

  .hardware .hardware-item {
    padding: 30px;
    margin: 15px;
  }

  .hardware .hardware-item .hardware-img {
    position: static;
    left: auto;
  }
}

.affiliate-btn {
  font-weight: 700;
  font-size: 1.75rem;
  padding: 0.75rem 2rem;
  color: #fff;
  background: #000;
  border: 1px solid #AEE7C7;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.affiliate-heading {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #AEE7C7;
  font-size: 1.35rem;
}

.affiliate-btn:hover, .affiliate-btn:focus {
  transform: scale(1.05);
  background: #222;
  color: #fff;
}

.affiliate-btn .affiliate-arrow {
  margin-left: 0.5rem;
  font-size: 1.5rem;
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .affiliate-btn {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
    border-radius: 16px;
    width: 20rem;
  }
  .affiliate-btn .affiliate-arrow {
    font-size: 1.2rem;
  }
}

/* Phone (max-width: 575px) */
@media (max-width: 575px) {
  .affiliate-btn {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    min-width: 0;
  }
  .affiliate-btn .affiliate-arrow {
    font-size: 1rem;
  }
}


