/* Fonts */

/* Regular 400 */
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-Regular.woff2') format('woff2'),
    url('../fonts/Nunito-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold 700 */
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-Bold.woff2') format('woff2'),
    url('../fonts/Nunito-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
  --default-font: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Nunito", sans-serif;
}


:root {
  --background-color: #ffffff;
  --default-color: #0F172A;
  --heading-color: #0F172A;
  --accent-color: #C6A96B;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #0F172A;
  --nav-hover-color: #C6A96B;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #0F172A;
  --nav-dropdown-hover-color: #C6A96B;

}

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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 1.05rem;
}

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: #df152960;
  color: #df1529;
  text-align: center;
  padding: 10px;
  margin-bottom: 15px;
  margin-top: 15px;
  font-weight: 600;
  width: 100%;
  justify-self: center;
}

.php-email-form .sent-message {
  display: none;
  color: #116f15;
  background: #4caf5029;
  text-align: center;
  padding: 10px;
  margin-bottom: 15px;
  margin-top: 15px;
  font-weight: 600;
  width: 100%;
  justify-self: center;
}

.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(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

@media (max-width: 480px) {
  .header .logo img {
    max-height: 70px;
    width: 60%;
    padding: 5px 0;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/* Index Page Header
------------------------------*/
.index-page .header {
  /* --background-color: rgba(255, 255, 255, 0); */
  background-color: #fff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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;
  }

  .navmenu a,
  .navmenu a:focus {
    position: relative;
    color: var(--nav-color);
    padding: 18px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color 0.3s ease;
    z-index: 1;

  }

  /* Sliding background */
  .navmenu a::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    height: 70%;
    background: var(--accent-color);
    border-radius: 50px;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
  }

  .navmenu li:hover>a {
    color: var(--accent-color);
  }

  .navmenu li a.btn-getstarted:hover,
  .navmenu li a.btn-getstarted.active {
    color: white !important;
  }

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

  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.3s;
  }

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

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

  .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 {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    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 .megamenu {
    position: static;
  }

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

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }*/
}

/* Mobile Navigation */
@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: 17px;
    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);
  }

  .btn-getstarted {

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

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    background-color: white;
    color: var(--nav-dropdown-color);
    font-size: 17px;
    padding: 10px 20px !important;
  }

  .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%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .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;
  }
}

/* Active state (default) */
.navmenu .active,
.navmenu .active:focus {
  color: white !important;
  background: var(--accent-color);
}

/* 🚫 Prevent hover from changing active */
.navmenu li:hover>a.active {
  color: white !important;
}

/* Optional: stop background animation also */
.navmenu li:hover>a.active::before {
  transform: translateY(-50%) scaleX(0);
  /* disables yellow slide */
}

@media (max-width: 768px) {
  .mobile-nav-active .navmenu>ul {

    height: fit-content;
    align-self: center;
  }

  .mobile-nav-active .mobile-nav-toggle {
    top: 25%;
    right: 25px;
  }
}

/*--------------------------------------------------------------
#  Footer
--------------------------------------------------------------*/
.footer {
  color:#fff;
  background-color: #0f172a;
  font-size: 15px;

  border-top: 1px solid #dee2e6;
  position: relative;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer-about {
  justify-items: center;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 15px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.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 {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.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 {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .copyright {
  padding-top: 10px;
  padding-bottom: 25px;
}

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

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer-links {
  font-size: 15px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #c6a96b;
}

.divider-dot {
  margin: 0 10px;
  color: #ccc;
}

/*--------------------------------------------------------------
# loader
--------------------------------------------------------------*/
#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);
  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;
  }
}

/*--------------------------------------------------------------
# To Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-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;
  }
}

/*--------------------------------------------------------------
#  Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.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 70%);
}

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

@media (max-width: 768px) {

  section,
  .section {

    padding: 20px 0 !important;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
  line-height: 1.7rem;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Background images */
.hero-bg {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Show desktop / mobile */
.desktop {
  display: block;
}

.mobile {
  display: none;
}

@media (max-width: 768px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}

/* Overlay */
.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* move content left */
  padding: 0 80px;
  /* spacing from left */
}

/* Content */
.hero-content {
  width: 100%;
  color: #fff;
  text-align: left !important;
  padding-left: 2%;
}

.hero-content h1 {
  font-size: 49px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #27364F;


}

.hero-content h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #C6A96B;
  line-height: 1.8rem;
  width: 95%;
}

.hero-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.8rem;
}

.dash {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);

  margin: auto;
}

.hero-credibility {
  font-size: 17px;

  color:
    color-mix(in srgb, var(--default-color), transparent 25%);
}


@media (max-width: 1920px) and (min-width: 1500px) {
  .hero-content h1 {
    font-size: 65px;
    margin-top: 40px;
  }

  .hero-content h2 {
    font-size: 27px;
    line-height: 2.2rem;
  }

  .hero-content h3 {
    font-size: 27px;
    line-height: 2.6rem;
  }

  .hero-credibility {
    font-size: 24px;
  }

  .banner-button {
    font-size: 24px;
  }
}

@media (max-width: 1440px) {
  .hero-content h2 {
    width: 80%;
  }
}

@media (max-width: 767px) and (min-width: 476px) {
  .hero-content h1 {
    text-align: center !important;
    width: 60% !important;
    place-self: center !important;
    position: absolute !important;
    top: 8% !important;
    margin-top: 0 !important;
  }

  .hero-content h2 {
    text-align: center !important;
    /* margin-top: 175px !important; */
    width: 100% !important;
    padding: 0 20px !important;
  }
}

@media (max-width: 1199px) and (min-width: 1025px) {
  .carousel-caption {
    top: 35% !important;
    left: 5% !important;
  }

  .hero-content h2 {
    width: 95% !important;
  }

  .hero-content h1 {
    font-size: 37px !important;
  }
}

@media (max-width: 991px) and (min-width: 901px) {
  .hero-content h1 {
    font-size: 30px;
    margin-top: 80px;
  }

  .hero-content h2 {
    font-size: 18px;
    width: 70%;
  }
}

@media (max-width: 1023px) and (min-width: 992px) {
  .hero-content h1 {
    font-size: 30px;
    margin-top: 0px;
  }

  .carousel-caption {

    left: 6% !important;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 34px;
    margin-top: 100px;
  }

  .hero-content h2 {
    font-size: 15px;
    width: 70%;
    text-align: center;
    justify-self: center;
  }

  .hero-content h3 {
    font-size: 16px;
  }
  .carousel-caption {
    
    left: 0% !important;
  }

}

@media(max-width: 475px) {
  .less-bottom {
    margin-bottom: -120px;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

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

  .hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    text-align-last: center;
  }

  .hero-content h1 {
    font-size: 25px;
    margin-top: 50px;
    text-align: center;
    position: absolute;
    top: 15%;

    left: 50%;
    transform: translateX(-50%);

    width: 75%;
  }

  .hero-content h2 {
    font-size: 16px;
    text-align: center !important;
    line-height: 1.4rem;
    margin-bottom: 10px;
    margin-top: 85px;
    place-self: center !important;
    width: 100%;

  }

  .banner-button {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-content h3 {
    font-size: 15px;
    text-align: center;
  }

  .hero-credibility {
    font-size: 15px;
    text-align: center;
  }

  .hero-section {
    text-align-last: center;
  }

  .contact-padding {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .iti--allow-dropdown input.iti__tel-input,
  .iti--allow-dropdown input.iti__tel-input[type=tel],
  .iti--allow-dropdown input.iti__tel-input[type=text],
  .iti--separate-dial-code input.iti__tel-input,
  .iti--separate-dial-code input.iti__tel-input[type=tel],
  .iti--separate-dial-code input.iti__tel-input[type=text] {

    padding-left: 138px !important;
  }

}




/* old slider css below */
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }

}

@media (min-width: 426px) and (min-width: 2048) {


  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 0 30px 30px 40px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 30px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (min-width: 770px) and (max-width: 900px) {
  .hero-content h1 {
    font-size: 30px !important;
  }

  .carousel-caption {
    top: 36% !important;
  }

  .hero-content h2 {
    width: 70% !important;
    font-size: 18px;
  }

  .banner-button {
    padding: 10px 20px !important;
    margin-top: -10px !important;
  }

  .carousel-inner {

    margin-top: 29px;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .carousel-inner {
    margin-top: 29px;
  }

  .hero-content h1 {
    font-size: 39px !important;
  }

  .carousel-caption {
    top: 36% !important;
      left: 7% !important;
  }

  .hero-content h2 {
    width: 90% !important;
    font-size: 20px;
  }
}

@media  (min-width: 1025px) and (max-width: 1200px) {
  .carousel-caption {
    top: 15%;
    left: 7% !important;

  }
}

@media (min-width: 1201px) and (max-width: 1280px) {
  .carousel-caption {
    left: 7%;
  }
}

@media (min-width: 1400px) and (max-width: 1480px) {
  .hero-content h1 {
    position: absolute !important;
    top: 17% !important;
  }

  .hero-content h2 {
    width: 70% !important;
  }

  .banner-button {
    position: absolute;
    top: 65%;
  }

  .carousel-caption {
    left: 7% !important;
  }
}

@media (min-width: 1921px) and (max-width: 2600px) {
  .hero-content h1 {
    position: absolute !important;
    top: 24% !important;
    font-size: 60px;
  }

  .hero-content h2 {
    width: 100% !important;
    font-size: 30px;
    line-height: 2.5rem;
  }

  .banner-button {
    position: absolute;
    top: 60%;
    font-size: 20px;
  }

  /* .carousel-caption {
    left: 7% !important;
} */
}


@media (min-width: 1481px) and (max-width: 1580px) {
  .hero-content h1 {
    position: absolute !important;
    top: 12% !important;
  }

  .hero-content h2 {
    width: 86% !important;

  }

  .banner-button {
    position: absolute;
    top: 65%;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

.about-1 {
  width: 260px;
  height: 100%;
  object-fit: cover;
}

.about-2 {
  height: 210px;
  object-fit: cover;
}

.about-3 {
  height: 210px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-1 {
    width: 100%;
    height: 380px;
    object-fit: cover;
  }

  .carousel-inner {
    text-align-last: center !important;
  }
}

@media (max-width: 640px) {
  .about-1 {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .about-2 {
    display: none;
  }

  .about-3 {
    display: none;
  }

  #connect {
    padding: 0 20px;
  }

  .carousel-caption {
    top: 17% !important;
    left: 0% !important;
    text-align-last: center !important;
  }

  .carousel-caption a {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

}

/* @media (min-width: 400px) and (max-width: 610px) {
  .carousel-caption {
    width: 90%;
    place-self: center;
  }
} */

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 20px;
}

.about-content {
  border: 1.5px solid #C6A96B;
  background-color:
    color-mix(in srgb, var(--accent-color), transparent 95%);
  color:
    color-mix(in srgb, var(--default-color), transparent 25%);
  padding: 30px;
  border-radius: 10px;
  line-height: 1.7rem;
  text-align: left;
}

.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
  background: transparent;
  margin-bottom: 30px;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.clients .client-logo img {
  padding: 20px 40px;
  width: 80%;
  height: 80%;
  object-fit: cover;
  transition: 0.3s;
  /*  opacity: 0.5;
 filter: grayscale(100%);*/
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

/* Optional: smoother look */
.clients-slider {
  overflow: hidden;
  margin: 0 10%;
}

@media (max-width: 768px) {

  .clients-slider {
    margin: 0 !important;
  }

  .clients .client-logo img {
    padding: 20px 40px;
    width: 100%;
    height: 100%;
  }

}

@media (max-width: 475px) {
  .clients-slider {
    margin: 0 !important;
  }

  .clients .client-logo img {
    padding: 10px 20px;
    width: 100%;
    height: 100%;
  }

}


.clients-slider .swiper-slide {
  margin: 0 !important;
  padding: 0 !important;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.features .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.features .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.features .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.features .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item+.features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  padding: 30px;
  border-radius: 10px;
  line-height: 1.7rem;
  text-align: left;
}

.features-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.features-details .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.features-details .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-details .features-item ul {
  list-style: none;
  padding: 0;
}

.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-details .features-item img {
  border-radius: 15px;
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.mobile-group {
  position: relative;
}

.mobile-label {
  position: absolute;
  top: -8px;
  left: 12px;
  background: #fff;
  padding: 0 5px;
  font-size: 12px;
  z-index: 2;
}

.country-code {
  max-width: 130px;
  border-right: 0;
  border-radius: 6px 0 0 6px;
}

.mobile-input {
  border-radius: 0 6px 6px 0;
}

.mobile-group .form-control:focus {
  box-shadow: none;
  border-color: #86b7fe;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  z-index: 99;
}

.iti--allow-dropdown input.iti__tel-input,
.iti--allow-dropdown input.iti__tel-input[type=tel],
.iti--allow-dropdown input.iti__tel-input[type=text],
.iti--separate-dial-code input.iti__tel-input,
.iti--separate-dial-code input.iti__tel-input[type=tel],
.iti--separate-dial-code input.iti__tel-input[type=text] {
  padding: 1rem .75rem;
  border-radius: var(--bs-border-radius);

}

@media (max-width: 768px) and (min-width: 300px) {
  .contact-title {
    font-size: 20px;
  }
}


.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.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);
}

.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(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


.our-service .nav .nav-link {
  transition: .5s;
}

.our-service .nav .nav-link.active {
  border-color: #0F172A !important;
  background: #0F172A;
}

.our-service .nav .nav-link.active h6 {
  color: #FFFFFF !important;
}

.our-service .nav .nav-link.active h6 i {
  color: #FFFFFF !important;

}

.our-service .nav .nav-link h6 i {
  margin-right: 20px;
}

/*** Feature ***/
.connect .connect-box,
.connect .connect-box * {
  transition: .5s;
}

.connect .connect-box:hover {
  background: #C6A96B;
  border-color: #C6A96B !important;
}

.connect .connect-box:hover * {
  color: #FFFFFF !important;
}

.small-head {
  color: #C6A96B
}

.content {
  color:
    color-mix(in srgb, var(--default-color), transparent 25%);
  text-align: left;
  border: 1.5px solid #C6A96B;
}

.gray-text {
  color:
    color-mix(in srgb, var(--default-color), transparent 25%);
}

/*** Callback ***/
.callback {
  position: relative;
}

.callback::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(198, 169, 107, .95), rgba(198, 169, 107, .95)), url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #C6A96B;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(198, 169, 107, .25);
}

.submit-btn {
  background: #0F172A;
  color: white;
}

.submit-btn:hover {
  background: #0F172A;
  color: white;
}

.red {
  color: #df1529;
}


.carousel-caption {
  top: 15%;
  left: 0%;

  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: start;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: #0F172A;
  border: 10px solid #0F172A;
}

.carousel-control-prev-icon {
  border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
  border-radius: 3rem 0 0 3rem;
}

.banner-button {
  background-color: #0F172A;
  color: white;
  margin-top: 10px;
  border: 2px solid #0F172A;
}

.banner-button:hover {
  background-color: #ffffff;
  border: 2px solid #0F172A;
  color: #0F172A;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    object-fit: cover;
  }
}

/* Founder */

.team-item {
  position: relative;
  padding: 4rem 0 7rem 0;
}

.team-item img {
  position: relative;
  z-index: 2;
  width: 83%;
}

.team-item .team-text {
  position: absolute;
  top: 0;
  right: 0rem;
  bottom: 0;
  left: 0rem;
  padding: 15px 15px 25px 15px;
  border: 1px solid #C6A96B;
  background-color:
    color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  transition: .5s;
  z-index: 1;
  width: 100%;
}

.team-item:hover .team-text {
  background: #0F172A;
  border-color: #0F172A;
  color: #ffffff
}

.team-item .team-text h4 {
  transition: .5s;
}

.team-item .small-head {
  transition: .5s;
}

.team-item:hover .team-text h4 {
  color: #FFFFFF;
}

.team-item .team-social {
  background: var(--light);
  color: #0F172A;

}

.team-item:hover .team-social {
  color: #ffffff;
  background-color: #C6A96B;
  border-radius: 50%;
}

.team-item:hover .small-head {
  color: #ffffff;
  transition: .5s;
}

.team-item:hover a.rounded-circle {
  color: #ffffff;
  background-color: #C6A96B;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

}

.sub-text {
  font-size: 15px !important;
}

.highlight-text {
  font-size: 25px;
  margin-bottom: 15px;
  color: #0F172A;
}

@media (max-width: 475px) {
  .team-item .team-text {
    position: absolute;
    top: 0rem;
    right: 0rem;
    bottom: 2rem;
    left: 0rem;
    padding: 0px 5px 10px 5px;
  }

  .sub-text {
    font-size: 12px !important;
  }

  .team-item img {
    width: 85%;
  }

  .team-item {
    position: relative;
    padding: 2rem 0 7rem 0;
  }
}

@media (max-width: 768px) and (min-width: 450px) {
  .sub-text {
    font-size: 15px;
  }
}

.read-more-btn {
  text-decoration: underline;
}

.founder-section {
  background:
    color-mix(in srgb, var(--accent-color), transparent 96%);
}

a.rounded-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #C6A96B;
  border-radius: 50%;
  text-decoration: none;
  color: #C6A96B;
  transition: 0.3s ease;
}

@media screen and (min-width: 1024px) and (max-width:1365px) {
  .team-item .team-text {
    right: 1rem;
    ;
    left: 1rem;
  }
}

@media (max-width: 1920px) and (min-width: 1600px) {
  .team-item img {
    width: 62%;
  }

  .sub-text {
    font-size: 16px;
  }

  .about-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .clients .client-logo img {
    padding: 20px 40px;
    width: 70%;
    height: 70%;
    object-fit: cover;
  }

  .explore-details {
    align-content: center;
  }

  .team-item .team-text {

    padding: 15px 15px 30px 15px;
  }

}



/* Terms and conditions */
.terms-section {
  padding: 60px 0;
  margin-top: 90px;
}

.term-block {
  padding: 10px 0;
}

.term-block h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.divider {
  height: 1px;
  background: #e5e5e5;
  margin: 20px 0;
}

.terms-content {
  text-align: left;
}

@media (max-width:600px) {
  .terms-section {
    padding: 60px 15px !important;
  }
}

/* Cookies */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fcfaf7;
  color: #27364F;
  padding: 10px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  z-index: 9999;
  font-size: 16px;
  border: 1px solid #c6a96b;
}

.accept {
  background: #c6a96b;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 5px;
}

.cookie-banner p {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}


.cookie-banner.hide {
  display: none;
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.close-btn {

  background-color: #0f172a1a;
  color: #0f172abf;
  border: none;
  padding: 6px 16px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width:475px) {
  .cookie-banner {

    padding: 10px;

    font-size: 14px;

  }

}

/* .iti__dropdown-content {
    position: absolute!important;
    z-index: 2!important;
    margin-left: -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
    background-color: #fff!important;
    border: 1px solid #ccc;
    max-height: 200px!important;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
} */
.mobile-input.is-invalid {
  border-color: #dc3545;
  /* Bootstrap danger color */
}

#mobile-error {
  display: block;
  /* always block, but text empty when no error */
  font-size: 12px;
  line-height: 1.2;
  color: #dc3545;
  position: absolute;
}