@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

body {
  overflow-x: hidden;
}

.sec {
  padding: 4rem 0;
  position: relative;
}
@media all and (max-width: 992px) {
  .sec {
    padding: 3rem 0;
  }
}

.big-para {
  font-size: 18px;
  color: #4f4e4e;
}

p {
  color: #4f4e4e;
}

.color-yellow {
  color: #cea75a;
}

.sec-small {
  padding: 3rem 0;
}
@media all and (max-width: 992px) {
  .sec-small {
    padding: 2rem 0;
  }
}

@keyframes SlideRightIn {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
.mobile-modal {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
}
.mobile-modal .modal-inner {
  position: absolute;
  z-index: 99999;
  background-color: #fff;
  width: 90%;
  top: 0;
  right: 0;
  height: 100vh;
  animation: SlideRightIn 0.3s ease-in-out;
}
.mobile-modal .modal-inner .close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
}
.mobile-modal .modal-inner .close .mobile-logo {
  max-width: 80px;
}
.mobile-modal .modal-inner .links ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.mobile-modal .modal-inner .links ul li {
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid #101d2e;
}
.mobile-modal .modal-inner .links ul li:last-child {
  border: 0;
}
.mobile-modal .modal-inner .links ul li a {
  text-decoration: none;
  padding: 1rem 0.7rem;
  color: #101d2e;
}

.hide {
  display: none !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.header .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  padding-top: 0.3rem;
}
.header .navigation .logo a img {
  max-width: 100px;
}
.header .navigation .links ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.header .navigation .links ul li a {
  display: inline-block;
  text-decoration: none;
  padding: 0.5rem 1rem;
  color: #cea75a;
}
.header .navigation .menu {
  display: none;
}
@media all and (max-width: 992px) {
  .header {
    left: 50%;
    transform: translateX(-50%);
  }
  .header .navigation .links {
    display: none;
  }
  .header .navigation .logo a img {
    max-width: 80px;
  }
  .header .navigation .menu {
    display: block;
  }
}

.clipp {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 96%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 96%, 0% 100%);
}

.hero {
  min-height: 70vh;
  background-image: url("../img/hero-2.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media all and (max-width: 992px) {
  .hero {
    min-height: 50vh;
  }
}

.main-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #101d2e;
}
.main-heading span {
  background-color: #cea75a;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  list-style: 1.6;
}
@media all and (max-width: 992px) {
  .main-heading {
    font-size: 1.7rem;
  }
  .main-heading span {
    font-size: 2rem;
  }
}

.p-hero-text {
  font-size: 1.2rem;
  color: #4f4e4e;
}
.p-hero-text span {
  font-weight: bold;
  color: #000;
}

.bg-grey {
  background-color: #f7f7f7;
}

.featuer-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  gap: 1rem;
}
.featuer-list li {
  list-style: none;
  padding: 1rem 0.5rem;
  text-align: center;
  width: 30%;
}
.featuer-list li .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.featuer-list li .feature .icon {
  width: 70px;
  height: 70px;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: grid;
  place-content: center;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.featuer-list li .feature .icon img {
  max-width: 40px;
}
.featuer-list li .feature h6 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}
@media all and (max-width: 992px) {
  .featuer-list {
    justify-content: left;
  }
  .featuer-list li {
    padding: 0;
    height: 100%;
  }
  .featuer-list li .feature {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1rem 0.2rem;
    border-radius: 0.5rem;
    min-height: 150px;
    background-color: #fff;
  }
  .featuer-list li .feature h6 {
    font-size: 1rem;
    font-weight: normal;
  }
  .featuer-list li .feature .icon {
    box-shadow: none;
    margin-bottom: 0.5rem;
    background-color: rgba(206, 167, 90, 0.1);
  }
  .featuer-list li .feature .icon img {
    max-width: 30px;
  }
}

.cta {
  margin-top: 2rem;
}
.cta a {
  padding: 0.8rem 1rem;
  border: 2px solid #cea75a;
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
  color: #cea75a;
  font-weight: 600;
  border-radius: 0.5rem;
}

.sec-heading {
  font-size: 2.6rem;
  font-weight: bold;
}
@media all and (max-width: 992px) {
  .sec-heading {
    font-size: 2rem;
  }
}

.about-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 800px;
}
@media all and (max-width: 992px) {
  .about-image {
    max-width: 100%;
    position: relative;
    top: 0;
    right: 0;
  }
}

.static-bg {
  background-image: url("../img/static-bg.jpg");
  min-height: 70vh;
  background-size: cover;
  background-attachment: fixed;
}

.services-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.services-list li {
  width: 32%;
  margin-bottom: 3rem;
}
.services-list li .service-card {
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 0.7rem;
  height: 100%;
  border-radius: 0.5rem;
  position: relative;
  min-height: 400px;
}
.services-list li .service-card .card-img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-list li .service-card .service-content {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
  box-shadow: 0 12px 55px 0 rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  padding: 1rem 1rem;
  position: absolute;
  top: calc(100% - 7rem);
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  display: flex;
  justify-content: space-between;
  min-height: 140px;
}
.services-list li .service-card .service-content p {
  font-size: 0.9rem;
}
.services-list li .service-card .service-content .icon {
  width: 40px;
  height: 40px;
  background-color: #cea75a;
  border-radius: 0.4rem;
  display: grid;
  place-content: center;
}
@media all and (max-width: 992px) {
  .services-list li {
    width: 48%;
  }
}
@media all and (max-width: 768px) {
  .services-list li {
    width: 100%;
  }
}

.experts-image {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 800px;
}
@media all and (max-width: 992px) {
  .experts-image {
    max-width: 100%;
    position: relative;
    top: 0;
    right: 0;
  }
}

.accordion dd,
.accordion__panel {
  font-size: 1em;
  line-height: 1.5em;
}

.accordion p {
  padding: 1rem;
}

.accordion {
  position: relative;
}

.accordionTitle,
.accordion__Heading {
  background-color: #cea75a;
  font-weight: 700;
  padding: 1em;
  padding-left: 1.4rem;
  display: block;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  transition: background-color 0.5s ease-in-out;
  border-radius: 0.5rem;
}
@media all and (max-width: 992px) {
  .accordionTitle,
  .accordion__Heading {
    font-weight: normal;
    text-align: left;
  }
  .accordionTitle::before,
  .accordion__Heading::before {
    display: none;
  }
}
.accordionTitle:before,
.accordion__Heading:before {
  content: "+";
  font-size: 1.5em;
  line-height: 1em;
  float: left;
  transition: transform 0.3s ease-in-out;
}
.accordionTitle:hover,
.accordion__Heading:hover {
  background-color: #bd9038;
  color: #fff;
}

.accordionTitleActive,
.accordionTitle.is-expanded {
  background-color: #bd9038;
}
.accordionTitleActive:before,
.accordionTitle.is-expanded:before {
  transform: rotate(-225deg);
}

.accordionItem {
  height: auto;
  overflow: hidden;
  max-height: 50em;
  transition: max-height 1s;
}
@media screen and (min-width: 48em) {
  .accordionItem {
    max-height: 15em;
    transition: max-height 0.5s;
  }
}

.accordionItem.is-collapsed {
  max-height: 0;
}

.no-js .accordionItem.is-collapsed {
  max-height: auto;
}

.animateIn {
  animation: accordionIn 0.45s normal ease-in-out both 1;
}

.animateOut {
  animation: accordionOut 0.45s alternate ease-in-out both 1;
}

@keyframes accordionIn {
  0% {
    opacity: 0;
    transform: scale(0.9) rotateX(-60deg);
    transform-origin: 50% 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes accordionOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9) rotateX(-60deg);
  }
}
.swiper {
  width: 100%;
  max-width: 1280px;
  min-height: 350px;
  margin-top: 40px;
}

.swiper-slide {
  background: #fff;
  padding: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 0.5rem;
  min-height: 300px;
}
.swiper-slide .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.swiper-slide .top .image {
  width: 60px;
  height: 60px;
  overflow: hidden;
  background-color: #cea75a;
  border-radius: 50%;
  position: relative;
}
.swiper-slide .top .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-slide .top .stars img {
  max-width: 80px;
}
.swiper-slide .review {
  position: relative;
  margin-top: 2rem;
}
.swiper-slide .review p {
  margin: 0;
}
.swiper-slide .review img {
  max-width: 16px;
}
.swiper-slide .review .inverted {
  transform: rotate(180deg);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #000 !important;
}

.progress-container {
  display: flex;
  max-width: 600px;
  margin: 1rem 0;
}
.progress-container .progress-item {
  flex: 1;
  margin-right: 1rem;
}
.progress-container .progress-item .progress-label {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
  display: block;
}
.progress-container .progress-item .progress-bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}
.progress-container .progress-item .progress-bar .progress-fill {
  height: 100%;
  transition: width 0.3s ease-in-out;
}
.progress-container .progress-item .progress-bar .progress-fill.positive-reviews {
  width: 96%;
  background-color: #f5c518;
}
.progress-container .progress-item .progress-bar .progress-fill.happy-clients {
  width: 97%;
  background-color: #2a3b5e;
}
.progress-container .progress-item .progress-bar .progress-percentage {
  position: absolute;
  right: -30px;
  top: -5px;
  font-size: 14px;
  color: #666;
}
@media (max-width: 768px) {
  .progress-container {
    flex-direction: column;
  }
  .progress-container .progress-item {
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
  }
  .progress-container .progress-item .progress-label {
    font-size: 14px;
  }
  .progress-container .progress-item .progress-bar {
    height: 8px;
  }
  .progress-container .progress-item .progress-bar .progress-percentage {
    font-size: 12px;
    right: -25px;
    top: -4px;
  }
}

.border-radius {
  border-radius: 0.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-list li {
  width: 32%;
}
.contact-list li .contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 0.5rem;
  padding: 3rem 1rem;
  height: 100%;
}
.contact-list li .contact-card .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  display: grid;
  place-content: center;
  background-color: rgba(245, 197, 24, 0.1);
}
.contact-list li .contact-card .icon img {
  max-width: 50px;
}
.contact-list li .contact-card p,
.contact-list li .contact-card a {
  text-decoration: none;
  font-size: 1rem;
  color: #4f4e4e;
}
@media all and (max-width: 768px) {
  .contact-list li {
    width: 100%;
  }
}

.footer {
  background-image: linear-gradient(180deg, rgba(238, 235, 235, 0.96), rgba(240, 231, 231, 0.9)), url("../img/usa-map.webp");
  background-position: 50%;
  padding: 2rem 0;
}

.footer-logo img {
  max-width: 150px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.5rem;
}
.footer-links li::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 3px;
  background-color: #cea75a;
  border-radius: 0.1rem;
  top: 11px;
  left: 0;
}
.footer-links li a {
  color: #101d2e;
  text-decoration: none;
  font-size: 0.9rem;
}

.social {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  gap: 0.8rem;
}
.social li a {
  width: 35px;
  height: 35px;
  background-color: #cea75a;
  border-radius: 0.5rem;
  display: grid;
  place-content: center;
}
.social li a img {
  max-width: 22px;
}

.field-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.5rem;
}
.field-container input {
  border: 1px solid #cea75a;
  padding: 0.8rem 0.8rem;
  width: 100%;
  box-shadow: none;
  outline: none;
  border-radius: 0.5rem;
}
.field-container button {
  background-color: #cea75a;
  border: 0;
  border-radius: 0.5rem;
  color: #fff;
  padding: 0.8rem 1rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.footer-list li {
  margin-right: 1rem;
  position: relative;
  padding-left: 1.5rem;
}
.footer-list li::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 3px;
  background-color: #cea75a;
  border-radius: 0.1rem;
  top: 11px;
  left: 0;
}
.footer-list li a {
  text-decoration: none;
  color: #6c757d;
}
@media all and (max-width: 768px) {
  .footer-list {
    margin-top: 0.8rem;
  }
}

.border-top-muted {
  border-top: 1px solid #6c757d;
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
}
@media all and (max-width: 768px) {
  .border-top-muted {
    flex-direction: column;
    margin-top: 2rem;
  }
}/*# sourceMappingURL=styles.css.map */