/*-------------------------------------
  Root Variables
--------------------------------------*/
:root {
  --primary: #0149AF;
  --secondary: #525252;
  --white: #fff;
  --black: #000;
  /*--gradient-primary: linear-gradient(90deg, #0a66c2 0%, #2bb673 100%);*/
  --gradient-primary: #004094;
  --thirdclr: #666666;
  --lightwhite: #f4f4f4;
  --offwhite: #EEEEEE;
  --darkblack: #1A1A1A;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

.max-1-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.max-2-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.max-3-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*-------------------------------------
  Base Styles
--------------------------------------*/
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

.font-bricolage {
  font-family: "Bricolage Grotesque", sans-serif;
}

h1, h2, h3, h4, h5, h6, li, a, p, ol, ul {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.section-bg-light {
  background-color: rgba(217, 217, 217, 0.2);
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}

/*-------------------------------------
  Typography Styles
--------------------------------------*/
h2, h3, h4, h5, h6, .navbar-brand {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
}

/*-- heading size css start --*/
.banner-heading {
  font-size: 64px;
  line-height: 74px;
  font-weight: 600;
  letter-spacing: -1.8px;
  font-family: "Bricolage Grotesque", sans-serif;
}
@media only screen and (max-width: 767px) {
  .banner-heading {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -1px;
  }
}

.sub-heading {
  font-size: 50px;
  line-height: 56px;
  font-weight: 600;
  letter-spacing: -1.5px;
}
@media only screen and (max-width: 1599px) {
  .sub-heading {
    font-size: 42px;
    line-height: 50px;
    letter-spacing: -1px;
  }
}
@media only screen and (max-width: 1366px) {
  .sub-heading {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -1.2px;
  }
}
@media only screen and (max-width: 767px) {
  .sub-heading {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -1px;
  }
}

.third-heading {
  font-size: 26px;
  line-height: 28px;
  letter-spacing: -0.66px;
}

.fourth-heading {
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.4px;
}

.web-paragraph-18 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.2px;
}
@media only screen and (max-width: 767px) {
  .web-paragraph-18 {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.1px;
  }
}

.web-paragraph-16 {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.2px;
}
@media only screen and (max-width: 767px) {
  .web-paragraph-16 {
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.1px;
  }
}

.font-14 {
  font-size: 14px;
  line-height: 20px;
}

.font-16 {
  font-size: 16px;
  line-height: 28px;
}

.font-60 {
  font-size: 60px;
  line-height: 70px;
}
@media only screen and (max-width: 1199px) {
  .font-60 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 991px) {
  .font-60 {
    font-size: 28px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .font-60 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .font-60 {
    font-size: 18px;
    line-height: 28px;
  }
}

.font-50 {
  font-size: 50px;
  line-height: 60px;
}
@media only screen and (max-width: 1199px) {
  .font-50 {
    font-size: 28px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 480px) {
  .font-50 {
    font-size: 26px;
    line-height: 38px;
  }
}

/*-- heading size css end --*/
/*-------------------------------------
  Color Utility Classes
--------------------------------------*/
.primary-text {
  color: var(--primary);
}

.secondary-text {
  color: var(--secondary);
}

.white-text {
  color: var(--white);
}

.black-text {
  color: var(--black);
}

/*-------------------------------------
  Layout & Spacing
--------------------------------------*/
/*-- main padding css start --*/
.ptb-100 {
  padding: 100px 0;
}
@media only screen and (max-width: 1499px) {
  .ptb-100 {
    padding: 90px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .ptb-100 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 991px) {
  .ptb-100 {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 767px) {
  .ptb-100 {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 575px) {
  .ptb-100 {
    padding: 40px 0;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 1499px) {
  .pt-100 {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 1199px) {
  .pt-100 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .pt-100 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-100 {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .pt-100 {
    padding-top: 35px;
  }
}

/*-- main padding css end --*/
/*-------------------------------------
  Container
--------------------------------------*/
@media only screen and (min-width: 1500px) {
  .custom-container {
    max-width: 1440px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1599px) {
  .custom-container {
    width: calc(100% - 80px);
    margin: 0 auto;
    max-width: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .custom-container {
    width: 100%;
    max-width: none;
  }
}
@media only screen and (max-width: 767px) {
  .custom-container {
    width: 100%;
    max-width: none;
  }
}

/*-------------------------------------
  Section: Header Quick Contact
--------------------------------------*/
.section-quick-contact {
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
}
.section-quick-contact .quick-contact-main {
  padding: 6px 0;
}
.section-quick-contact .quick-contact-main .quick-contact-left ul,
.section-quick-contact .quick-contact-main .quick-contact-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.section-quick-contact .quick-contact-main .quick-contact-left ul li,
.section-quick-contact .quick-contact-main .quick-contact-right ul li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.section-quick-contact .quick-contact-main .quick-contact-left ul li .icon-box,
.section-quick-contact .quick-contact-main .quick-contact-right ul li .icon-box {
  height: 28px;
  width: 28px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.section-quick-contact .quick-contact-main .quick-contact-left ul li .icon-box img,
.section-quick-contact .quick-contact-main .quick-contact-right ul li .icon-box img {
  max-width: 16px;
  height: auto;
}
.section-quick-contact .quick-contact-main .quick-contact-left ul li a,
.section-quick-contact .quick-contact-main .quick-contact-right ul li a {
  font-size: 15px;
  line-height: 22px;
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
}
.section-quick-contact .quick-contact-main .quick-contact-left ul li a:hover,
.section-quick-contact .quick-contact-main .quick-contact-right ul li a:hover {
  opacity: 0.8;
}
.section-quick-contact .quick-contact-main .quick-contact-right ul {
  justify-content: flex-end;
}

/*-------------------------------------
  Section: Home Banner
--------------------------------------*/
.section-home-banner {
  height: 800px;
  display: flex;
  align-items: center;
  background: url("./../img/sharp.webp") no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section-home-banner {
    height: auto;
    padding: 50px 0;
    text-align: center;
  }
}
.section-home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #004094 0%, rgba(0, 64, 148, 0.15) 100%);
  opacity: 0.85;
  z-index: 1;
}
.section-home-banner > * {
  position: relative;
  z-index: 2;
}

/*-------------------------------------
  Section: Home Products
--------------------------------------*/
.section-home-products .home-products-content-inner {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .section-home-products .home-products-content-inner {
    margin-top: 25px;
  }
}
.section-home-products .home-products-content-inner .product-item {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 15px;
}
.section-home-products .home-products-content-inner .product-item .product-image {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.025);
}
.section-home-products .home-products-content-inner .product-item .product-content {
  padding: 20px 20px 22px;
}
@media only screen and (max-width: 767px) {
  .section-home-products .home-products-content-inner .product-item .product-content {
    padding: 20px 15px;
  }
}

/*-------------------------------------
  Section: Home Why Choose
--------------------------------------*/
.section-home-why-choose .why-choose .experience-section {
  display: flex;
  justify-content: center;
}
.section-home-why-choose .why-choose .experience-section .experience-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 20px;
}
.section-home-why-choose .why-choose .experience-section .experience-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .section-home-why-choose .why-choose .experience-section .experience-row {
    gap: 15px;
  }
}
.section-home-why-choose .why-choose .experience-section .experience-card {
  flex: 0 0 30%;
  background: var(--offwhite);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.section-home-why-choose .why-choose .experience-section .experience-card .sub-heading, .section-home-why-choose .why-choose .experience-section .experience-card .web-paragraph-16 {
  transition: all 0.3s ease;
}
.section-home-why-choose .why-choose .experience-section .experience-card:hover {
  background: var(--gradient-primary);
}
.section-home-why-choose .why-choose .experience-section .experience-card:hover > * {
  color: var(--white);
}
.section-home-why-choose .why-choose .experience-section .row-middle .experience-card {
  flex: 0 0 30%;
}
@media (max-width: 767px) {
  .section-home-why-choose .why-choose .experience-section .row-middle .experience-card {
    flex: 0 0 calc(50% - 8px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-home-why-choose .why-choose .experience-section .experience-card {
    min-width: 166px;
  }
}
@media (max-width: 767px) {
  .section-home-why-choose .why-choose .experience-section .experience-card {
    flex: 0 0 calc(50% - 8px);
  }
}
.section-home-why-choose .why-choose .experience-section {
  /* @media (max-width: 768px) {
     .experience-card {
       flex: 0 0 80%;
     }
   }*/
  /*@media (max-width: 480px) {
    .experience-card {
      flex: 0 0 50%;
    }
  }*/
}

/*-------------------------------------
  Section: Home Clients
--------------------------------------*/
.section-home-clients .home-clients-content-inner {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .section-home-clients .home-clients-content-inner {
    margin-top: 25px;
  }
}
.section-home-clients .home-clients-content-inner .clients-item {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 15px;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .section-home-clients .home-clients-content-inner .clients-item {
    padding: 15px;
  }
}
.section-home-clients .home-clients-content-inner .clients-item .media {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 20px;
}
.section-home-clients .home-clients-content-inner .clients-item .media .product-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.section-home-clients .home-clients-content-inner .clients-item .media .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.section-home-clients .home-clients-content-inner .clients-item .media .media-body p {
  margin: 0;
  line-height: 1.5;
  color: #333;
}

/*-------------------------------------
  Section: Home Industries
--------------------------------------*/
.section-home-industries .home-industries-content-inner {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .section-home-industries .home-industries-content-inner {
    margin-top: 25px;
  }
}
.section-home-industries .home-industries-content-inner .product-item {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.section-home-industries .home-industries-content-inner .product-item .industry-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 15px;
  background: var(--gradient-primary);
  display: block;
}

/*-------------------------------------
  Buttons
--------------------------------------*/
/*-- redirect button css start --*/
.redirect {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2px;
  text-decoration: none;
  border-radius: 5px;
  padding: 13px 25px;
  transition: all 0.3s ease;
}
.redirect.redirect-primary {
  color: #fff;
  background: var(--gradient-primary);
}
.redirect.redirect-primary:hover {
  transform: translateY(-2px);
}
.redirect.redirect-secondary {
  color: var(--black);
  background: var(--white);
}
.redirect.redirect-secondary:hover {
  transform: translateY(-2px);
}

/*-- redirect button css end --*/
/*-------------------------------------
  Section: Home CTA
--------------------------------------*/
.section-home-cta .home-cta-content {
  position: relative;
  background: url("./../img/cta.png") no-repeat center center;
  background-size: cover;
  overflow: hidden;
  border-radius: 15px;
}
.section-home-cta .home-cta-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #004094 0%, rgba(0, 64, 148, 0.15) 100%);
  opacity: 0.85;
  z-index: 1;
}
.section-home-cta .home-cta-content > * {
  position: relative;
  z-index: 2;
}
.section-home-cta .home-cta-content .home-cta-inner-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-points {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .about-points {
    gap: 0;
    margin: 10px 0 15px;
  }
}
.about-points .we-are {
  flex: 1;
}
.about-points .we-are .about-list {
  padding: 0;
  margin: 0;
}
.about-points .we-are .about-list li {
  position: relative;
  padding: 8px 0 0 34px;
}
.about-points .we-are .about-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(90deg, #004094 0%, rgba(0, 64, 148, 0.3) 100%);
}
.about-points .we-are .about-list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.45rem + 5px);
  width: 12px;
  height: 12px;
  background: url("../img/svg/tick.svg") center/contain no-repeat;
  z-index: 1;
}
@media (max-width: 768px) {
  .about-points {
    flex-direction: column;
  }
  .about-points .we-are {
    width: 100%;
    gap: 0;
  }
}

/*-------------------------------------
  Section: Home Clients
--------------------------------------*/
.section-home-faq .home-faq-content .trusted-services {
  margin: 25px 0 15px;
}
@media only screen and (max-width: 575px) {
  .section-home-faq .home-faq-content .trusted-services {
    margin: 25px 0 0;
  }
}
.section-home-faq .home-faq-content .trusted-services .clients-item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--offwhite);
}
.section-home-faq .home-faq-content .trusted-services .clients-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.section-home-faq .home-faq-content .trusted-services .clients-item .media {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 20px;
}
.section-home-faq .home-faq-content .trusted-services .clients-item .media .trusted-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.section-home-faq .home-faq-content-inner .accordion .accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px !important;
  overflow: hidden;
}
.section-home-faq .home-faq-content-inner .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.section-home-faq .home-faq-content-inner .accordion .accordion-item .accordion-header .accordion-button {
  border: none;
  outline: none;
  background-color: var(--offwhite);
}
.section-home-faq .home-faq-content-inner .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: var(--white) !important;
}
.section-home-faq .home-faq-content-inner .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):focus {
  box-shadow: none;
}
.section-home-faq .home-faq-content-inner .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.section-home-faq .home-faq-content-inner .accordion .accordion-item .accordion-header .accordion-item:first-of-type .accordion-button {
  box-shadow: none;
}
.section-home-faq .home-faq-content-inner .accordion .accordion-item .accordion-collapse {
  border: none;
}
.section-home-faq .home-faq-content-inner .accordion .accordion-item .accordion-collapse .accordion-body {
  border: none;
  background-color: var(--offwhite);
}
.section-home-faq .home-faq-content-inner .accordion .accordion-item:first-of-type {
  border-radius: 0;
}
.section-home-faq .home-faq-content-inner .clients-item {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 15px;
  padding: 20px;
}
.section-home-faq .home-faq-content-inner .clients-item .media {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 20px;
}
.section-home-faq .home-faq-content-inner .clients-item .media .product-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.section-home-faq .home-faq-content-inner .clients-item .media .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .section-home-faq .home-faq-content-inner .clients-item .media {
    flex-direction: column;
  }
  .section-home-faq .home-faq-content-inner .clients-item .media .product-image {
    width: 100%;
    height: auto;
  }
  .section-home-faq .home-faq-content-inner .clients-item .media .product-image img {
    width: 100%;
    height: auto;
  }
}

/*-------------------------------------
  Section: Home Footer
--------------------------------------*/
.section-footer {
  background: var(--gradient-primary);
}
.section-footer .footer-main {
  width: 100%;
}
.section-footer .footer-main .footer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 3%;
  padding-bottom: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .section-footer .footer-main .footer-container {
    display: block;
  }
}
.section-footer .footer-main .footer-container .footer-logo {
  width: 220px;
}
.section-footer .footer-main .footer-container .footer-left {
  width: 30%;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .section-footer .footer-main .footer-container .footer-left {
    width: 100%;
  }
}
.section-footer .footer-main .footer-container .footer-right {
  width: 67%;
  display: flex;
  gap: 1%;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .section-footer .footer-main .footer-container .footer-right {
    margin-top: 40px;
    width: 100%;
  }
}
.section-footer .footer-main .footer-container .footer-right .inner-box {
  flex: 1;
  /*@media only screen and (min-width: 768px) and (max-width: 1199px) {
      flex: 1 1 100%; // default full width

      &:nth-child(1) {
        flex-basis: 100%; // first div full width
      }

      &:nth-child(2),
      &:nth-child(3) {
        flex-basis: calc(50% - 0.5%); // next two divs 50% each minus half the gap
      }
    }
  }*/
}
@media only screen and (min-width: 1366px) {
  .section-footer .footer-main .footer-container .footer-right .inner-box:nth-child(2) {
    margin: 0 30px 0 -28px;
  }
}
.section-footer .footer-main .footer-container .footer-right .inner-box .footer-menus h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
}
.section-footer .footer-main .footer-container .footer-right .inner-box .footer-menus h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 54px;
  height: 2px;
  background-color: var(--offwhite);
  opacity: 0.35;
}
.section-footer .footer-main .footer-container .footer-right .inner-box .footer-menus .quick-contact ul li a {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: -0.2px;
  padding: 2px 0;
  display: block;
  color: var(--white);
}
.section-footer .footer-main .footer-container .footer-right .inner-box .footer-menus .quick-contact ul li a:hover {
  opacity: 0.8;
}
.section-footer .footer-main .footer-container .footer-right .inner-box .footer-menus .footer-quick-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.section-footer .footer-main .footer-container .footer-right .inner-box .footer-menus .footer-quick-contact ul li {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 5px 0;
}
.section-footer .footer-main .footer-container .footer-right .inner-box .footer-menus .footer-quick-contact ul li .icon-box {
  height: 28px;
  min-width: 28px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.section-footer .footer-main .footer-container .footer-right .inner-box .footer-menus .footer-quick-contact ul li .icon-box img {
  max-width: 16px;
  height: auto;
}
.section-footer .footer-main .footer-container .footer-right .inner-box .footer-menus .footer-quick-contact ul li a {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: -0.2px;
  display: block;
  color: var(--white);
  text-decoration: none;
}
.section-footer .footer-main .footer-container .footer-right .inner-box .footer-menus .footer-quick-contact ul li a:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .section-footer .footer-main .footer-container {
    flex-direction: column;
    width: 100%;
    gap: 2rem;
  }
  .section-footer .footer-main .footer-container .footer-left,
  .section-footer .footer-main .footer-container .footer-right {
    width: 100%;
  }
  .section-footer .footer-main .footer-container .footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .section-footer .footer-main .footer-container .footer-right .inner-box:nth-child(1), .section-footer .footer-main .footer-container .footer-right .inner-box:nth-child(2) {
    width: 50%;
  }
  .section-footer .footer-main .footer-container .footer-right .inner-box:nth-child(3) {
    width: 100%;
    flex-basis: 100%;
  }
}
.section-footer .copy-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.section-footer .copy-right .left,
.section-footer .copy-right .right {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.section-footer .copy-right .left a,
.section-footer .copy-right .right a {
  color: #fff;
  text-decoration: none;
}
.section-footer .copy-right .left a:hover,
.section-footer .copy-right .right a:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .section-footer .copy-right {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/*-------------------------------------
  Section: Home Menu
--------------------------------------*/
.top-navbar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.025);
}
.top-navbar .web-navbar {
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  z-index: 1000;
  padding: 13px 15px;
}
.top-navbar .web-navbar .logo img {
  width: 210px;
  height: auto;
}
@media only screen and (max-width: 1366px) {
  .top-navbar .web-navbar .logo img {
    width: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .top-navbar .web-navbar .logo img {
    width: 160px;
  }
}
.top-navbar .web-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
  margin-right: 42px;
  transition: all 0.4s ease;
}
.top-navbar .web-navbar .nav-links .web-menus {
  font-size: 16px;
  line-height: 26px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.top-navbar .web-navbar .nav-links .web-menus:hover {
  color: #007bff;
}
.top-navbar .web-navbar .nav-links .menu-contact {
  display: none;
}
.top-navbar .web-navbar .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
  margin-left: auto;
}
.top-navbar .web-navbar .menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}
.top-navbar .web-navbar .menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.top-navbar .web-navbar .menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.top-navbar .web-navbar .menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.top-navbar .web-navbar .btn-contact {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2px;
  text-decoration: none;
  border-radius: 5px;
  padding: 13px 25px;
  transition: all 0.3s ease;
  color: #fff;
  background: var(--gradient-primary);
}
@media (max-width: 768px) {
  .top-navbar .nav-links.active {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media only screen and (min-height: 768px) and (max-width: 991px) {
  .top-navbar .web-navbar .nav-links {
    gap: 25px;
    margin-right: 25px;
  }
}
@media (max-width: 768px) {
  .top-navbar .web-navbar .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #fff;
    overflow-y: auto;
    height: 0;
    transition: height 0.5s ease-in-out;
    z-index: 999;
    margin-top: 111px;
    width: 100%;
    margin-left: 0;
    gap: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .top-navbar .web-navbar .nav-links .web-menus {
    opacity: 0;
    width: 100%;
    padding: 12px 16px;
    display: block;
    transition: all 0.4s ease;
    border-bottom: 1px solid var(--offwhite);
  }
  .top-navbar .web-navbar .nav-links.active {
    height: calc(100svh - 111px);
  }
  .top-navbar .web-navbar .nav-links.active .web-menus {
    opacity: 1;
  }
  .top-navbar .web-navbar .nav-links.active .menu-contact {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
  }
  .top-navbar .web-navbar .nav-links.active .menu-contact .web-contacts {
    opacity: 1;
    padding: 12px 16px;
    border-top: 1px solid var(--offwhite);
    color: #333;
    font-weight: 500;
    text-decoration: none;
  }
  .top-navbar .web-navbar .nav-links.active .menu-contact .web-contacts:hover {
    background: #f9f9f9;
  }
  .top-navbar .web-navbar .menu-toggle {
    display: flex;
  }
  .top-navbar .web-navbar .btn-contact {
    position: relative;
    z-index: 1200;
  }
}
@media only screen and (max-width: 768px) and (max-width: 767px) {
  .top-navbar .web-navbar .btn-contact {
    padding: 8px 15px;
  }
}

.mt-121 {
  margin-top: 121px;
}
@media only screen and (max-width: 767px) {
  .mt-121 {
    margin-top: 111px;
  }
}

.web-top {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 52px);
  display: flex;
  justify-content: space-between;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 0;
}
@media only screen and (max-width: 767px) {
  .owl-theme .owl-nav {
    width: 100%;
  }
}
.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
  margin: 0;
  background-color: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.09) !important;
  border-radius: 10px;
  width: 3rem;
  height: 3rem;
  place-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: all 0.3s ease;
}
.owl-theme .owl-nav .owl-prev:hover,
.owl-theme .owl-nav .owl-next:hover {
  background: var(--gradient-primary) !important;
}
.owl-theme .owl-nav .owl-prev span,
.owl-theme .owl-nav .owl-next span {
  display: block;
  font-size: 34px;
  color: var(--primary-color);
}
.owl-theme .owl-nav .owl-prev {
  left: 15px;
}
.owl-theme .owl-nav .owl-prev span {
  margin: 0 4px 2px 0;
}
.owl-theme .owl-nav .owl-next {
  right: 15px;
}
.owl-theme .owl-nav .owl-next span {
  margin: 0 0 2px 4px;
}

/*-------------------------------------
  Section: Whatsapp * Scroll to top
--------------------------------------*/
.whatsapp-call {
  position: fixed;
  right: 4.5rem;
  bottom: 1.25rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0.6rem;
  display: grid;
  place-items: center;
  background: var(--gradient-primary);
  cursor: pointer;
  z-index: 9999;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
@media (max-width: 420px) {
  .whatsapp-call {
    bottom: 0.8rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}
.whatsapp-call img {
  width: 28px;
  height: 28px;
  margin: 0;
}

.scroll-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0.6rem;
  display: grid;
  place-items: center;
  background: var(--gradient-primary);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.15s ease;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.scroll-to-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-to-top:hover, .scroll-to-top:focus {
  background: var(--gradient-primary);
  outline: none;
}
.scroll-to-top .arrow-icon {
  width: 18px;
  height: 18px;
  animation: arrowUp 1.4s ease-in-out infinite;
}
@keyframes arrowUp {
  0% {
    transform: translateY(6px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    transform: translateY(-6px);
    opacity: 1;
  }
  100% {
    transform: translateY(-10px);
    opacity: 0;
  }
}
@media (max-width: 420px) {
  .scroll-to-top {
    right: 0.6rem;
    bottom: 0.8rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}
.scroll-to-top {
  /*  @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }
      transition: none;
      .arrow-icon {
        animation: none;
      }
    }*/
}

/*-------------------------------------
  Section: Inquiry Mail
--------------------------------------*/
.web-inq-mail .modal-dialog {
  max-width: 600px;
}
.web-inq-mail .modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.web-inq-mail .modal-header {
  background: var(--gradient-primary);
}
.web-inq-mail .modal-body {
  padding: 25px 15px;
}
.web-inq-mail form > div {
  margin-bottom: 12px;
}
.web-inq-mail form > div:last-child {
  margin-bottom: 0;
}
.web-inq-mail .form-label {
  margin-bottom: 0.25rem;
  color: var(--secondary-color);
  opacity: 0.5;
  font: 15px/26px "Inter", sans-serif;
}
.web-inq-mail .form-control {
  height: 52px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  background: #fff;
  font: 15px/26px "Inter", sans-serif;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}
.web-inq-mail .form-control::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.web-inq-mail .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 64, 148, 0.08);
  outline: none;
}
.web-inq-mail textarea.form-control {
  height: auto;
  min-height: 120px;
  padding: 12px 15px;
  resize: vertical;
}
.web-inq-mail .invalid-feedback {
  font-size: 12px;
  line-height: 16px;
}
.web-inq-mail .btn-submit {
  display: inline-block;
  padding: 13px 25px;
  border: 0;
  border-radius: 5px;
  background: var(--gradient-primary);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.2px;
  font: 400 18px "Bricolage Grotesque", sans-serif;
  transition: 0.3s ease;
}
.web-inq-mail .btn-submit:hover {
  opacity: 0.9;
}
.web-inq-mail .custom-select-wrapper {
  position: relative;
}
.web-inq-mail .custom-select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.3s ease;
}
.web-inq-mail .custom-select-wrapper:focus-within::after {
  transform: translateY(-35%) rotate(225deg);
}
.web-inq-mail .custom-select-wrapper .custom-select {
  width: 100%;
  height: 52px;
  padding: 0 45px 0 15px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  background: #fff;
  color: var(--secondary-color);
  font: 15px/26px "Inter", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.web-inq-mail .custom-select-wrapper .custom-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 64, 148, 0.08);
  outline: none;
}
.web-inq-mail .custom-select-wrapper .custom-select:invalid {
  color: rgba(0, 0, 0, 0.45);
}
.web-inq-mail .custom-select-wrapper .custom-select option {
  color: var(--secondary-color);
  background: #fff;
}