/**
* Template Name: Avilon
* Template URL: https://bootstrapmade.com/avilon-bootstrap-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
/* Smooth scroll */
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
/* PHP Email Form Messages
------------------------------*/
@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* Global Header on Scroll
------------------------------*/
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
/* Navmenu - Mobile */
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
@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%);
  }
}
:root {
  --default-font: "Roboto", 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: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
  --background-color: #ffffff;
  --accent-color: #1a5245;
  --default-color: #212529;
  --primary-color: #1a5245;
  --heading-color: #065b5e;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 1);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #1dc8cd;
  scroll-behavior: smooth;
}

html,
body {
  font-size: 1.1rem;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Add other styling like background, padding, etc. */
}
.modal .modal-content {
  border: none;
  border-radius: 0;
  width: 768px;
  transform: translateX(-15%);
}
@media (max-width: 992px) {
  .modal .modal-content {
    max-width: 100%;
    transform: none;
  }
}
.modal .modal-content .modal-dialog {
  max-width: 768px;
  transform: translateX(-25%);
}
@media (max-width: 991px) {
  .modal .modal-content .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.modal .modal-content .modal-body {
  padding: 0;
}
@media (max-width: 992px) {
  .modal .modal-content .modal-body div.row {
    padding: 20px;
  }
}
.modal .modal-content .modal-body .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-content .modal-body .logo img {
  width: 75%;
}
.modal .modal-content .modal-body img {
  max-width: 100%;
}
.modal .modal-content .modal-body .offer-sec {
  display: block;
  padding: 0;
}
@media (max-width: 1023px) {
  .modal .modal-content .modal-body .offer-sec {
    display: none;
  }
}
.modal .modal-content .modal-body .contact-form {
  width: 75%;
  height: 100%;
}
@media (max-width: 992px) {
  .modal .modal-content .modal-body .contact-form {
    width: 100%;
  }
}
.modal .modal-content .modal-body .contact-form input[type=text] {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.modal .modal-content .modal-body .contact-form input[type=text]:focus {
  border-color: var(--accent-color);
}
.modal .modal-content .modal-body .contact-form input[type=text]::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.modal .modal-content .modal-body .contact-form input[type=text]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.modal .modal-content .modal-body .contact-form input[type=email] {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.modal .modal-content .modal-body .contact-form input[type=email]:focus {
  border-color: var(--accent-color);
}
.modal .modal-content .modal-body .contact-form input[type=email]::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.modal .modal-content .modal-body .contact-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.modal .modal-content .modal-body .contact-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.modal .modal-content .modal-body .contact-form textarea:focus {
  border-color: var(--accent-color);
}
.modal .modal-content .modal-body .contact-form textarea::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.modal .modal-content .modal-body .contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.modal .modal-content .modal-body .contact-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--default-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 10px;
  font-size: 1rem;
}
.modal .modal-content .modal-body .contact-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}
.modal .modal-content .modal-body .form-sec {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.modal .modal-content .modal-body .form-sec .logo img {
  width: 200px;
}
.modal .modal-content .modal-body .form-sec .callnumber {
  padding: 10px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  font-size: 1rem;
  margin-top: 5%;
}
.modal .modal-content .modal-body .form-sec .callnumber a {
  color: white;
}
.modal .modal-content .modal-body .form-sec .callnumber a:hover {
  color: white;
}
.modal .modal-content .modal-body .form-sec .btn-submit {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 22px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  animation-delay: 0.8s;
  color: var(--contrast-color);
  border: 2px solid var(--default-color);
  background: var(--accent-color);
}
.modal .modal-content button.btn-close {
  color: white;
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
}
.modal .modal-content button.btn-close:hover, .modal .modal-content button.btn-close:focus {
  outline: none;
  box-shadow: none;
}

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

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 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h2 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h3 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h4 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h5 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.contact-form {
  display: flex;
  align-items: center;
}
.contact-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 5px;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
}
.contact-form .sent-message {
  display: none;
  cursor: default;
  background: #059652;
  color: white;
  text-align: center;
  padding: 5px;
  margin-top: 24px;
  font-weight: 600;
}
.contact-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.contact-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;
}

.header {
  --background-color: rgba(255, 255, 255, 1);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 9;
}
.header a:focus-visible {
  outline: none;
}
@media (max-width: 560px) {
  .header {
    --background-color: rgba(255, 255, 255, 1);
  }
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  margin-right: 8px;
  max-width: 18vw;
  height: 2.8vw;
  transition: all ease 0.5s;
  background: white;
  border-radius: 10%;
}
@media (max-width: 991px) {
  .header .logo img {
    width: 360px;
    height: 10vw;
    max-width: 30vw;
  }
}
@media (max-width: 768px) {
  .header .logo img {
    width: 360px;
    height: 8vw;
    max-width: 30vw;
  }
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--heading-color);
}

.scrolled .header {
  --background-color:white;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.scrolled .header .navmenu a {
  color: var(--accent-color);
}
.scrolled .header .navmenu a.active {
  color: var(--default-color);
}
@media (max-width: 1024px) {
  .scrolled .header .navmenu a.active {
    color: var(--accent-color);
  }
}
.scrolled .btn-get-started {
  border: 2px solid var(--default-color);
  background: var(--accent-color);
  color: white;
  border-radius: 50px;
  text-transform: none;
  font-size: 14px;
  padding: 12px 22px;
}

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.footer .logo img {
  height: 3vw;
}
@media (max-width: 991px) {
  .footer .logo img {
    height: 10vw;
  }
}
.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}
.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}
.footer .social-links {
  margin: 0 0 30px 0;
}
.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}
.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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);
}
@media only screen and (max-width: 992px) {
  .scroll-top {
    bottom: 35px;
  }
}

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

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  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%);
}

section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0 100px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}
section:last-child {
  padding-bottom: 0;
}

.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;
}
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 1.5rem;
    padding-top: 20px;
  }
}
.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;
}

.sticky-icon {
  z-index: 11;
  position: fixed;
  top: 40%;
  right: 0%;
  width: 220px;
  display: flex;
  flex-direction: column;
}
.sticky-icon a {
  transform: translate(160px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 5px 0;
  text-decoration: none;
  padding: 10px;
  font-size: 18px;
  font-family: var(--default-font);
  transition: all 0.8s;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: white;
  background: var(--accent-color);
}
.sticky-icon a:hover {
  color: white;
  transform: translate(0px, 0px);
}
.sticky-icon a:hover i {
  transform: rotate(360deg);
}
.sticky-icon a i {
  height: 40px;
  width: 40px;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.5s;
}
.sticky-icon a i.fa-whatsapp:before {
  font-size: 1.5rem;
}
@media only screen and (max-width: 992px) {
  .sticky-icon {
    display: none;
  }
}

@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  40% {
    transform: translateX(100%);
  }
  /* Moves quickly */
  41% {
    transform: translateX(100%);
  }
  /* Stops */
  45% {
    transform: translateX(100%);
  }
  /* Stops */
  50% {
    transform: translateX(100%);
  }
  /* Stops */
  100% {
    transform: translateX(100%);
  }
  /* Holds position for delay */
}
.whatsappm {
  display: none;
}
@media (max-width: 991px) {
  .whatsappm {
    display: block;
    position: absolute;
    right: 60px;
  }
  .whatsappm a {
    margin: 0;
    padding: 0 10px;
    font-size: 1rem;
  }
  .whatsappm a i:before {
    font-size: 25px;
  }
}

.buttonshine {
  position: relative;
}
.buttonshine a {
  color: var(--default-color);
}
.buttonshine::after {
  content: "";
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 220px;
  position: absolute;
  z-index: 1;
  animation: slide 3s infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#007db9e8", GradientType=1);
}

.enquieymb {
  display: none;
}

.hero {
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0;
}
.hero .dbanner {
  display: block;
}
@media (max-width: 991px) {
  .hero .dbanner {
    display: none;
  }
}
.hero .mbanner {
  display: none;
  background: url("../img/mbanner1.webp") no-repeat;
  display: block;
  background-size: contain;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .hero .mbanner {
    height: 550px;
  }
}
@media (max-width: 800px) {
  .hero .mbanner {
    height: 490px;
  }
}
@media (max-width: 768px) {
  .hero .mbanner {
    height: 460px;
  }
}
@media (max-width: 600px) {
  .hero .mbanner {
    height: 325px;
  }
}
@media (max-width: 560px) {
  .hero .mbanner {
    height: 325px;
  }
}
@media (max-width: 500px) {
  .hero .mbanner {
    height: 260px;
  }
}
@media (max-width: 450px) {
  .hero .mbanner {
    height: 260px;
  }
}
@media (max-width: 430px) {
  .hero .mbanner {
    height: 250px;
  }
}
@media (max-width: 400px) {
  .hero .mbanner {
    height: 255px;
  }
}
@media (max-width: 390px) {
  .hero .mbanner {
    height: 255px;
  }
}
@media (max-width: 375px) {
  .hero .mbanner {
    height: 255px;
  }
}
@media (max-width: 360px) {
  .hero .mbanner {
    height: 208px;
  }
}
@media (max-width: 320px) {
  .hero .mbanner {
    height: 195px;
  }
}
.hero .banner-block {
  transition: 0.5s;
  left: 35vh;
  width: 22vw;
  text-align: center;
  position: absolute;
  top: 2rem;
  transform: translateY(30%);
  background: white;
  border: 1px solid white;
  margin: 0;
  padding: 5px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero .banner-block {
    position: relative;
    left: auto;
    width: 100%;
    top: 0;
    transform: none;
    padding: 0;
    margin: 0;
  }
}
.hero .banner-block .banner-title {
  background-color: var(--accent-color);
  padding: 10px;
}
.hero .banner-block .banner-title h5 {
  color: var(--background-color) !important;
  margin: 0;
  font-size: 20px;
}
.hero .banner-block .pro-title {
  display: block;
  font-size: 28px;
  text-transform: capitalize;
  color: rgb(33, 37, 41);
  text-align: center;
  font-weight: 600;
  margin-bottom: 0px;
  padding: 5px;
}
.hero .banner-block .card-d-custom {
  background-color: #eee;
  padding: 10px 15px;
  width: 95%;
  justify-content: center;
  text-align: center;
  margin: 0 auto 15px;
}
.hero .banner-block .card-d-custom span.heading1 {
  color: #000;
  font-weight: 700;
  display: inline-block;
}
.hero .banner-block .offer-bg-animation {
  color: #fff;
  display: block;
  background: linear-gradient(-45deg, var(--primary-color), var(--primary-color), var(--primary-color), var(--primary-color));
  background-size: 400% 400%;
  animation: 3s infinite Gradient;
}
.hero .banner-block .of-box {
  font-size: 15px;
  width: 95%;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 8px;
}
.hero .banner-block .of-box .offer-text {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  border: 2px dashed #fff;
  padding: 10px 5px;
}
@media (max-width: 991px) {
  .hero .banner-block .of-box .offer-text {
    font-size: 1rem;
  }
}
.hero .banner-block .pro-price {
  /* padding: .1vw .8vw .3vw; */
  padding: 0.1vw 20px 0.3vw;
  font-size: 2rem;
  font-weight: 800;
  line-height: 28px;
  margin: 10px 0;
  display: block;
}
.hero .banner-block .effetMoveGradient, .hero .banner-block .effetMoveGradient:hover {
  text-shadow: 0 3px 6px var(--primary-color);
  background-color: var(--primary-color);
  background: linear-gradient(-45deg, var(--primary-color), var(--primary-color), var(--primary-color), var(--primary-color));
  background-size: 400% 400%;
  animation: 3s 2s infinite Gradient, 3s 2s infinite rocking;
  color: white;
  border: none;
}
.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--surface-color);
  border: 2px solid var(--surface-color);
}
.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--surface-color);
  text-decoration: none;
}

.overview .inner-title {
  font-weight: 700;
  margin: 30px 0;
}
@media (max-width: 991px) {
  .overview .inner-title {
    text-align: center;
    margin: 15px 0;
    font-size: 1.3rem;
  }
}
.overview .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}
@media (max-width: 991px) {
  .overview .our-story {
    padding: 15px;
  }
}
.overview .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.overview .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.overview .our-story p:last-child {
  margin-bottom: 0;
}
.overview ul {
  list-style: none;
  padding: 0;
}
.overview ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.overview ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}
.overview .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}
.overview .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}
.overview .watch-video:hover a {
  color: var(--accent-color);
}
.overview .about-img {
  min-height: 400px;
  position: relative;
}
.overview .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}

.amenities .features-image {
  position: relative;
}
.amenities .grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 3 equal columns */
  grid-template-rows: repeat(2, auto); /* 2 rows, height adjusts to content */
  gap: 20px; /* Space between grid items */
  /* Media query for responsiveness on smaller screens */
}
@media (max-width: 991px) {
  .amenities .grid-container {
    grid-template-columns: repeat(2, 2fr);
    grid-template-rows: repeat(4, auto);
  }
}
.amenities .grid-container .grid-item {
  background-color: lightblue;
  padding: 20px;
  text-align: center;
  border: 1px solid #ccc;
  overflow: hidden;
}
.amenities .grid-container .grid-item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.amenities .grid-container .grid-item:hover img {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  opacity: 1;
}
@media (max-width: 768px) {
  .amenities .grid-container {
    grid-template-columns: repeat(2, 250px);
    place-content: center;
  }
}
@media (max-width: 480px) {
  .amenities .grid-container {
    grid-template-columns: repeat(2, 190px);
  }
}
.amenities .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}
.amenities .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}
.amenities .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.configuration {
  background-color: #d7d9db;
}
.configuration .configuration-header .nav-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  border-bottom: none;
}
.configuration .configuration-header .nav-tabs .nav-item .nav-link {
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 16px;
  padding: 20px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--default-color);
  white-space: nowrap;
}
.configuration .configuration-header .nav-tabs .nav-item .nav-link:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.configuration .configuration-header .nav-tabs .nav-item .nav-link.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}
.configuration .tab-pane .row .config {
  display: none;
}
@media (max-width: 495px) {
  .configuration .tab-pane .row .config {
    display: block;
  }
  .configuration .tab-pane .row .config h2 {
    text-align: center;
    font-weight: 600;
  }
  .configuration .tab-pane .row .config .price-breakup {
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    margin-bottom: 1rem;
  }
  .configuration .tab-pane .row .config .price-breakup h4 {
    padding: 0;
  }
  .configuration .tab-pane .row .config .price-breakup h5 {
    margin: 0;
    padding: 0;
  }
  .configuration .tab-pane .row .config .price-breakup p {
    margin: 0;
    padding: 0;
  }
}
.configuration .towerDetails {
  text-align: center;
  padding-top: 0px;
}
@media (max-width: 495px) {
  .configuration .towerDetails {
    display: none;
  }
}
.configuration .towerDetails h3 {
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  margin-top: 10px;
}
.configuration .towerDetails ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  width: 100%;
}
.configuration .towerDetails ul li {
  font-size: 1rem;
  line-height: 1.2em;
  padding: 20px 20px;
  border-bottom: solid 1px #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.configuration .towerDetails ul li:last-child {
  border-bottom: none;
  /* margin-bottom: 20px */
}
.configuration .threebhk {
  background: url("../img/project_Plan.png") no-repeat;
  background-size: contain;
  height: 500px;
  background-position: bottom center;
}
@media (max-width: 991px) {
  .configuration .threebhk {
    background-size: cover;
    height: 650px;
  }
}
.configuration .fourbhk {
  background: url("../img/project_Plan.png") no-repeat;
  background-size: contain;
  height: 500px;
  background-position: bottom center;
}
@media (max-width: 991px) {
  .configuration .fourbhk {
    background-size: cover;
    height: 650px;
  }
}
.configuration .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}
.configuration .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}
.configuration .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.configuration .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}
.configuration .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.configuration .service-item:hover {
  border-color: var(--accent-color);
}
.configuration .service-item:hover h3 {
  color: var(--accent-color);
}

.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}
.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.call-to-action .container {
  position: relative;
  z-index: 3;
}
.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}
.call-to-action p {
  color: var(--default-color);
}
.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}
.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}
.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}
.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}
.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}
.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}
.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}
.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}
.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}
.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}
.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}
.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.location .container .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}
.location .container .member img {
  margin: 0px;
}
.location .container .member .member-content {
  padding: 0 20px 30px 20px;
}
.location .container .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
.location .container .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.location .container .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.location .container .member .social {
  margin-top: 15px;
}
.location .container .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}
.location .container .member .social a:hover {
  color: var(--accent-color);
}
.location .container .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.location .container .location-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}
.location .container .location-item:last-child {
  margin-bottom: 0;
}
.location .container .location-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.location .container .location-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}
.location .container .location-item h3:hover {
  color: var(--accent-color);
}
.location .container .location-item .location-content {
  display: grid;
  grid-template-rows: 0;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.location .container .location-item .location-content ul.locationList {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
.location .container .location-item .location-content ul.locationList li {
  position: relative;
  /* background-image: url(../images/tri.svg); */
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 16px;
  padding: 3px 0px;
  padding-left: 30px;
  transition: 0.3s;
}
.location .container .location-item .location-content ul.locationList i img {
  position: absolute !important;
  width: 20px;
  height: 20px;
  left: -5px;
  top: 4px;
}
.location .container .location-item .location-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}
.location .container .location-item .location-toggle:hover {
  color: var(--accent-color);
}
.location .container .location-active {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}
.location .container .location-active h3 {
  color: var(--accent-color);
}
.location .container .location-active .location-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}
.location .container .location-active .location-content ul.locationList {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
.location .container .location-active .location-content ul.locationList li i img {
  position: absolute !important;
  width: 20px;
  height: 20px;
  left: -5px;
  top: 4px;
}
.location .container .location-active .location-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.gallery .gallery-wrapper .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}
.gallery .gallery-wrapper .gallery-item a {
  position: relative;
  display: inline-block;
  width: 450px;
  height: 320px;
  vertical-align: top;
  margin: 10px;
  overflow: hidden;
}
.gallery .gallery-wrapper .gallery-item a img {
  transition: all ease-in-out 0.4s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  opacity: 0.8;
}
.gallery .gallery-wrapper .gallery-item a:hover img {
  transform: scale(1.5);
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -o-transform: scale(1.5);
  -ms-transform: scale(1.5);
  opacity: 1;
}
.gallery .gallery-wrapper .swiper-pagination {
  position: relative;
}
@media (min-width: 992px) {
  .gallery .gallery-wrapper .gallery-swiper {
    /* Hide pagination and disable overflow scrolling */
  }
  .gallery .gallery-wrapper .gallery-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
  }
  .gallery .gallery-wrapper .gallery-swiper .swiper-slide {
    width: 100% !important;
    height: auto !important;
  }
  .gallery .gallery-wrapper .gallery-swiper .swiper-pagination,
  .gallery .gallery-wrapper .gallery-swiper .swiper-scrollbar {
    display: none !important;
  }
  .gallery .gallery-wrapper .gallery-swiper .swiper-wrapper,
  .gallery .gallery-wrapper .gallery-swiper .swiper-container {
    overflow: visible !important;
  }
}

.contact .info-item + .info-item {
  margin-top: 40px;
}
.contact .container-fluid {
  background: var(--accent-color);
  margin: 0;
  padding: 0;
}
.contact img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 500px;
}
.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.contact .contact-form {
  width: 75%;
  height: 100%;
}
@media (max-width: 992px) {
  .contact .contact-form {
    width: 100%;
  }
}
.contact .contact-form input[type=text] {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .contact-form input[type=text]:focus {
  border-color: var(--accent-color);
}
.contact .contact-form input[type=text]::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .contact-form input[type=text]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .contact-form input[type=email] {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .contact-form input[type=email]:focus {
  border-color: var(--accent-color);
}
.contact .contact-form input[type=email]::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .contact-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .contact-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .contact-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .contact-form textarea::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .contact-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--default-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .contact-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.enquiryform {
  width: 75%;
  height: 100%;
}
.enquiryform .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 5px;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
}
.enquiryform .sent-message {
  display: none;
  cursor: default;
  background: #059652;
  color: white;
  text-align: center;
  padding: 5px;
  margin-top: 24px;
  font-weight: 600;
}
.enquiryform .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.enquiryform .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;
}
@media (max-width: 992px) {
  .enquiryform {
    width: 100%;
  }
}
.enquiryform input[type=text] {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.enquiryform input[type=text]:focus {
  border-color: var(--accent-color);
}
.enquiryform input[type=text]::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.enquiryform input[type=text]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.enquiryform input[type=email] {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.enquiryform input[type=email]:focus {
  border-color: var(--accent-color);
}
.enquiryform input[type=email]::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.enquiryform input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.enquiryform button[type=submit] {
  color: var(--contrast-color);
  background: var(--default-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}
.enquiryform button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.stepinside .tour {
  background: url("../img/tour1.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  height: 500px;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  position: relative;
  cursor: pointer;
}
.stepinside .tour:before {
  content: "";
  position: absolute;
  z-index: 9;
  color: white;
  background: url(../img/touricon.png) no-repeat center center;
  background-size: contain;
  top: 50%;
  left: 50%;
  width: 15%;
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  background-blend-mode: multiply;
}
.stepinside .tour:after {
  content: "STEP INSIDE";
  position: absolute;
  z-index: 9;
  color: white;
  top: calc(50% + 100px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}
.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}
.service-details .services-list a:hover {
  border-color: var(--accent-color);
}
.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}
.service-details .services-img {
  margin-bottom: 20px;
}
.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}
.service-details h4 {
  font-size: 20px;
  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);
}

@media (min-width: 1200px) {
  .btn-get-started {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 22px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    animation-delay: 0.8s;
    color: var(--contrast-color);
    border: 2px solid var(--default-color);
    background: var(--accent-color);
  }
  .btn-get-started:hover {
    color: var(--contrast-color);
    text-decoration: none;
  }
  .social-connect {
    padding: 0rem;
  }
  .social-connect a {
    padding: 0 1rem;
  }
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a {
    padding: 8px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 20px;
  }
  .navmenu a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu .active {
    color: var(--default-color);
    background: var(--accent-color);
  }
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .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 li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .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 {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown ul .active:hover {
    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;
  }
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .btn-get-started {
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    /* outline: none; */
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    line-height: 1;
    padding: 12px 22px;
    border-radius: 50px;
    transition: 0.5s;
  }
}
@media (min-width: 1024px) {
  .hero .dbanner img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .overview .inner-title {
    max-width: 65%;
    margin-top: 30px;
  }
  .overview .our-story {
    padding-right: 10%;
  }
  .overview .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
  .pricing .featured {
    transform: scale(1.15);
  }
}
@media (max-width: 1199px) {
  .social-connect {
    display: none;
  }
  .mobile-nav-toggle {
    color: black;
    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 {
    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: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: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:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a 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 {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .active 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;
  }
  section {
    scroll-margin-top: 0px;
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .enquieymb {
    background: #1a5245;
    color: #fff;
    position: fixed;
    bottom: 0px;
    z-index: 999;
    width: 100%;
    /* border: 1px solid #fff; */
    overflow: hidden;
    text-align: center;
    display: block;
  }
  .enquieymb h5 {
    color: white;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 412px) {
  .card-d-custom span.heading1 {
    width: 50vw !important;
  }
}/*# sourceMappingURL=main.css.map */