:root {
  --heading-font: "Bebas Neue", sans-serif;
  --body-font: "Roboto", sans-serif;
  --primary: #a3c73d;
  --dark: #1e293b;
  --primary-rgb: 241, 190, 72;
  --dark-rgb: 44, 81, 94;
  --text: #1e293b;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --black: var(--dark);
  --black-rgb: 16, 16, 16;
  --light-bg: #f7f7f5;
  --border: #d8d8d8;
  --error: #d32f2f;
  --shadow-card: 0 15px 45px rgba(var(--black-rgb), 0.18);
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--body-font);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

.home {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.72) 50%,
      rgba(0, 0, 0, 0.58) 100%
    ),
    url(../img/hero.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-navbar {
  position: relative;
  z-index: 5;
  padding-top: 40px;
}

.nav-row {
  align-items: center;
}

.logo {
  display: inline-block;
}

.logo img {
  width: 100%;
  height: auto;
}

.nav-button {
  width: 100%;
  min-height: 44px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 3px;
  background-color: var(--primary);
  color: var(--dark);
  font-family: "Anek Latin", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: normal;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-button:hover {
  transform: translateY(-2px);
  background-color: var(--dark);
  color: var(--white);
}
.nav-button:hover .phone-icon {
  color: var(--white);
}
.nav-buttons {
  display: flex;
  gap: 0 20px;
  justify-content: flex-end;
}
.buttons {
  display: flex;
  gap: 0 20px;
  justify-content: center;
}

.buttons-two {
  display: flex;
  margin-top: 18px;
}

.circle-arrow {
  font-size: 22px;
}

.phone-icon {
  /* width: 25px;
    height: 25px;
    border-radius: 50%; */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* background: var(--dark); */
  color: var(--dark);
  font-size: 18px;
  transition: all 0.3s;
}

.hero-content {
  position: relative;
  z-index: 2;

  padding-top: 65px;
  padding-bottom: 40px;
}

.hero-small-title {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 28.9px;
  letter-spacing: normal;
}

.hero-title {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 80px;
  font-weight: 400;
  line-height: 80px;
  letter-spacing: normal;
  text-transform: uppercase;
}

.hero-title span {
  color: var(--primary);
}

.hero-line {
  margin-top: 16px;
  margin-bottom: 30px;

  width: 92%;
}

.hero-line img {
  width: 100%;
  height: auto;
}

.hero-services {
  max-width: 560px;
  margin-top: 15px;
  color: var(--white);
}

.services-span {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.services-list {
  font-size: 18px;
  font-weight: 700;
  line-height: 28.9px;
}

.hero-description {
  max-width: 700px;

  margin-top: 0px;

  color: var(--white);
}

.hero-description p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28.9px;
  letter-spacing: normal;
}

.hero-points {
  margin: 24px 0 28px;
}

.hero-points ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  width: 48%;
}

.hero-points li::before {
  font-family: "fontello";
  content: "\e98f";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

/* Tablet */
@media (max-width: 991px) {
  .hero-points li {
    flex: 0 0 calc(50% - 10px);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero-points {
    margin: 20px 0 24px;
  }

  .hero-points ul {
    gap: 11px;
  }

  .hero-points li {
    flex: 0 0 100%;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .buttons {
    flex-direction: column;
    gap: 16px 0;
  }
  
  
  .logo {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .site-navbar {
    padding-top: 60px;
  }
  
  .nav-row {
    flex-wrap: wrap;
  }

  .logo img {
    max-width: 160px;
  }

  .nav-button {
    min-height: 48px;
    font-size: 18px;
  }

  .phone-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--dark);
    color: var(--primary);
    font-size: 16px;
  }
  .hero-content {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .hero-row {
    flex-wrap: wrap;
  }

  .hero-small-title {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 44px;
    line-height: 1.04;
  }

  .hero-line {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 25px;
  }

  .services-heading,
  .services-list,
  .hero-description p {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .home {
    background-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.72) 50%,
        rgba(0, 0, 0, 0.58) 100%
      ),
      url(../img/hero.webp);

    background-size: cover;
    background-position: 60% center;
    background-repeat: no-repeat;
  }
  .hero-title {
    font-size: 38px;
  }

  .hero-small-title {
    font-size: 20px;
  }
}

.contact-form-card {
  padding: 36px;
  background-color: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}

.contact-form-card .form-group {
  margin-bottom: 10px;
}

.contact-form-card label {
  display: block;
  margin-bottom: 7px;
  color: var(--dark);
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

label.error {
  color: red;
}

.contact-form-card .text-muted {
  color: grey !important;
  font-weight: 400;
  font-size: 12px;
}

input::placeholder,
textarea::placeholder {
  color: #8b8b8b !important;
}

.contact-form-card .form-control {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  background-color: var(--white);

  border: 1px solid var(--border);
  border-radius: 2px;

  color: var(--dark);

  font-family: var(--body-font);
  font-size: 14px;

  box-shadow: none;

  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card .form-control::placeholder {
  color: var(--text-muted);
}

.contact-form-card .form-control:focus {
  border-color: var(--primary);

  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.12);

  outline: 0;
}

.contact-form-card textarea.form-control {
  min-height: 125px;

  resize: vertical;
}

.btn-primary {
  min-height: 52px;
  margin-top: 4px;
  padding: 0 20px;
  border: 0;
  border-radius: 3px;
  background-color: var(--primary);
  color: var(--dark);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active {
  background-color: var(--dark) !important;
  color: var(--white) !important;
  border-color: var(--dark) !important;
}

.form-header h2 {
  color: var(--dark);
  font-weight: 700;
}
.form-header p {
  color: var(--dark);
  font-size: 14px;
}

.cta-sub {
  margin: 12px 0 0;

  color: var(--dark);

  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .contact-form-card {
    width: 100%;
    max-width: 100%;

    padding: 24px 18px;

    margin: 0;
  }

  .contact-form-card .form-group {
    margin-bottom: 17px;
  }

  .contact-form-card .form-control {
    min-height: 47px;
  }

  .contact-form-card textarea.form-control {
    min-height: 120px;
  }

  .contact-form-card .btn-primary {
    min-height: 50px;

    font-size: 14px;
  }
}
.trust-section {
  background: var(--white);
  overflow: hidden;
  padding: 45px 0;
}

.trust-heading {
  margin-bottom: 32px;
  text-align: center;
}

.trust-heading h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--dark);
}

.trust-features-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 20px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.trust-feature {
  flex: 0 0 calc(25% - 15px);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.trust-feature-icon {
  flex: 0 0 42px;
  width: 42px;
}

.trust-feature-icon img {
  display: block;

  width: 42px;
  height: 42px;

  object-fit: contain;
}
/* .trust-feature-icon {
    width: 45px;
    flex-shrink: 0;
}

.trust-feature-icon i {
    font-size: 34px;
    line-height: 1;
} */
.trust-feature-content {
  flex: 1;
  min-width: 0;
}

.trust-feature-content h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 400;
  line-height: 1 !important;
  text-transform: uppercase;
  color: var(--dark);
}

.trust-feature-content p {
  margin: 0;
  /* font-family: var(--body-font); */
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--dark);
}


@media screen and (max-width: 768px) {
  .trust-section {
    padding: 40px 0;
  }

  .trust-heading {
    margin-bottom: 22px;
    padding: 0 10px;
  }

  .trust-heading h2 {
    font-size: 24px;
    line-height: 1.15;
  }

  .trust-features-list {
    align-items: center;
  }

  .trust-feature {
    flex: 0 0 auto;
    width: 100%;
    max-width: 192px;
    align-items: center;
    gap: 8px;

    margin: 0 auto;
  }

  .trust-feature-icon {
    flex: 0 0 36px;
    width: 36px;
  }

  .trust-feature-icon img {
    width: 36px;
    height: 36px;
  }

  .trust-feature-content {
    flex: 1;
    min-width: 0;
  }

  .trust-feature-content h3 {
    margin-bottom: 2px;

    font-size: 17px;
    line-height: 1.1;
  }

  .trust-feature-content p {
    font-size: 15px;
    line-height: 1.3;
  }
}

.gallery-section {
  width: 100%;
  overflow: hidden;
  background-color: var(--white);
}

.gallery-carousel {
  width: 100%;
}

.gallery-carousel .owl-stage {
  display: flex;
}

.gallery-carousel .owl-item {
  display: flex;
}

.gallery-item {
  position: relative;

  width: 100%;
  aspect-ratio: 1 / 1;

  display: block;
  overflow: hidden;
}

.gallery-item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

@media (hover: hover) {
  .gallery-item:hover img {
    transform: scale(1.05);
  }
}

.gallery-carousel .owl-nav,
.gallery-carousel .owl-dots {
  display: none;
}

@media (max-width: 767px) {
  .gallery-item {
    aspect-ratio: 1 / 1;
  }
}

.services-section {
  position: relative;
  width: 100%;

  padding: 70px 0;

  overflow: hidden;

  background-image: linear-gradient(
      rgba(var(--dark-rgb), 0.88),
      rgba(var(--dark-rgb), 0.78)
    ),
    url("../img/services/services-bg.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--white);
}

.services-wrapper {
  width: 100%;
}

.services-heading {
  margin-bottom: 50px;

  text-align: center;
}

.services-heading h2 {
  margin: 0;

  font-family: var(--heading-font);

  font-size: 54px;
  font-weight: 600;
  line-height: 1.08;

  text-transform: uppercase;

  color: var(--white);
}

.services-heading h2 span {
  color: var(--primary);
}

.services-cards-row {
  align-items: stretch;
}

.services-cards-row > div {
  display: flex;
}

.service-card {
  width: 100%;
  height: 100%;

  padding: 30px 28px 42px;

  display: flex;
  flex-direction: column;
  align-items: center;

  border: 1px solid rgba(var(--white-rgb), 0.9);
  border-radius: 8px;

  background: rgba(var(--dark-rgb), 0.08);

  color: var(--white);

  text-align: center;
}

.service-card-icon {
  width: 102px;
  height: 102px;

  flex: 0 0 102px;

  margin-bottom: 24px;
}

.service-card-icon img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

.service-card h3 {
  margin: 0 0 22px;

  font-family: var(--heading-font);

  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;

  text-transform: uppercase;

  color: var(--white);
}

.service-card p {
  max-width: 330px;

  margin: 0 auto;

  font-family: var(--body-font);

  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;

  color: var(--white);
}

.services-bottom {
  margin-top: 44px;

  text-align: center;
}

.services-bottom h4 {
  margin: 0 0 18px;

  font-family: var(--heading-font);

  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;

  text-transform: uppercase;

  color: var(--white);
}

.services-actions-row {
  max-width: 1100px;

  margin-left: auto;
  margin-right: auto;

  row-gap: 12px;
}

.services-action-btn {
  width: 100%;
  min-height: 52px;

  padding: 11px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  background: var(--primary);

  border: 0;
  border-radius: 4px;

  color: var(--dark);

  font-family: var(--body-font);

  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;

  text-align: center;
  text-decoration: none;
  text-transform: uppercase;

  transition: background-color 0.25s ease, color 0.25s ease,
    transform 0.25s ease;
}

.services-action-btn:hover {
  background: var(--white);

  color: var(--dark);

  transform: translateY(-2px);

  text-decoration: none;
}

.services-action-icon {
  width: 22px;
  height: 22px;

  flex: 0 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid currentColor;
  border-radius: 50%;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.services-phone-icon {
  font-size: 11px;
}

/* Text */

.services-action-text {
  display: inline-block;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .services-section {
    padding: 60px 0;
  }

  .services-heading h2 {
    font-size: 46px;
  }

  .service-card {
    padding: 26px 20px 35px;
  }

  .service-card-icon {
    width: 90px;
    height: 90px;

    flex-basis: 90px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    font-size: 14px;
  }

  .services-action-btn {
    padding-left: 12px;
    padding-right: 12px;

    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    padding: 50px 0;

    background-position: center;
  }

  .services-heading {
    margin-bottom: 30px;
  }

  .services-heading h2 {
    font-size: 38px;
  }

  .services-heading h2 span {
    display: block;
  }

  .services-cards-row {
    row-gap: 18px;
  }

  .service-card {
    max-width: 100%;

    padding: 26px 20px 32px;
  }

  .service-card-icon {
    width: 85px;
    height: 85px;

    flex-basis: 85px;

    margin-bottom: 18px;
  }

  .service-card h3 {
    margin-bottom: 14px;

    font-size: 24px;
  }

  .service-card p {
    max-width: 340px;

    font-size: 15px;
    line-height: 1.6;
  }

  .services-bottom {
    margin-top: 30px;
  }

  .services-bottom h4 {
    max-width: 400px;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;

    font-size: 19px;
    line-height: 1.35;
  }

  .services-actions-row {
    row-gap: 10px;
  }

  .services-action-btn {
    min-height: 50px;

    padding: 10px 15px;

    gap: 10px;

    font-size: 15px;
  }

  .services-action-icon {
    width: 21px;
    height: 21px;

    flex-basis: 21px;

    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .services-section {
    padding: 42px 0;
  }

  .services-heading h2 {
    font-size: 33px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-card p {
    font-size: 14px;
  }

  .services-bottom h4 {
    font-size: 17px;
  }

  .services-action-btn {
    min-height: 48px;

    padding: 10px 12px;

    font-size: 13px;
  }
}

.why-us-section {
  position: relative;
  padding: 90px 0;
  width: 100%;
  overflow: hidden;

  background-color: var(--light-bg);

  background-image: url("../img/about-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.why-us-heading {
  margin-bottom: 28px;
}

.why-us-heading h2 {
  margin: 0;

  font-family: var(--heading-font);

  font-size: 58px;
  font-weight: 400;

  line-height: 1.08;

  text-transform: uppercase;

  color: var(--white);
}

.why-us-heading h2 span {
  display: block;

  color: var(--primary);
}

.why-us-list {
  display: flex;
  flex-direction: column;

  gap: 18px;
}

.why-us-item {
  display: flex;
  align-items: flex-start;

  gap: 10px;
}

.why-us-icon {
  width: 19px;
  height: 19px;

  flex: 0 0 19px;

  margin-top: 3px;
}

.why-us-icon img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

.why-us-item-content {
  flex: 1;

  min-width: 0;
}

.why-us-item-content h3 {
  margin: 0 0 3px;
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.why-us-item-content p {
  max-width: 480px;
  margin: 0;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--white);
}

@media (max-width: 767px) {
  .why-us-section {
    position: relative;

    width: 100%;
    padding: 60px 0;

    overflow: hidden;

    background-color: var(--light-bg);
    background-image: url("../img/about-bg.webp");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
  }

  .why-us-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(247, 247, 245, 0.6);

    pointer-events: none;
  }

  .why-us-section .container {
    position: relative;
    z-index: 2;
  }

  .why-us-row {
    min-height: auto;

    flex-wrap: wrap;
  }

  .why-us-heading {
    margin-bottom: 28px;
  }

  .why-us-heading h2 {
    font-size: 43px;

    line-height: 1.05;
  }

  .why-us-list {
    gap: 20px;
  }

  .why-us-item {
    gap: 10px;
  }

  .why-us-item-content h3 {
    font-size: 17px;
  }

  .why-us-item-content p {
    max-width: 100%;

    font-size: 14px;

    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .why-us-heading h2 {
    font-size: 36px;
  }

  .why-us-icon {
    width: 18px;
    height: 18px;

    flex-basis: 18px;
  }

  .why-us-item-content h3 {
    font-size: 18px;
  }

  .why-us-item-content p {
    font-size: 16px;
  }
}

.about-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  overflow: hidden;

  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.72) 50%,
      rgba(0, 0, 0, 0.58) 100%
    ),
    url(../img/why-us-bg.webp);

  background-size: cover, 115% auto;

  background-position: center, 0% center;

  background-repeat: no-repeat;
}

.about-content {
  padding: 10px 0;
  color: var(--white);
}

.about-label {
  display: inline-block;

  margin-bottom: 8px;

  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 400;

  line-height: 1;

  letter-spacing: 0.5px;

  text-transform: uppercase;

  color: var(--primary);
}

.about-title {
  max-width: 540px;

  margin: 0;

  font-family: var(--heading-font);

  font-size: 60px;
  font-weight: 400;

  line-height: 1.02;

  text-transform: uppercase;

  color: var(--dark);
}

.about-title span {
  display: block;

  color: var(--primary);
}

.about-line {
  width: 330px;
  max-width: 80%;

  height: 3px;

  margin: 20px 0 22px;

  background-color: var(--primary);

  transform: rotate(-1deg);
}

.about-lead {
  max-width: 520px;
  margin: 0 0 20px;
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--dark);
}

.about-text {
  max-width: 540px;

  margin-bottom: 28px;
}

.about-text p {
  margin: 0 0 12px;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--dark);
}

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

.about-features {
  max-width: 520px;

  display: flex;
  flex-direction: column;

  gap: 17px;
}

.about-feature {
  display: flex;
  align-items: flex-start;

  gap: 13px;
}

.about-feature-icon {
  width: 28px;
  height: 28px;

  flex: 0 0 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 1px;

  border: 2px solid var(--primary);
  border-radius: 50%;

  color: var(--primary);

  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
}

.about-feature-content {
  flex: 1;

  min-width: 0;
}

.about-feature-content h3 {
  margin: 0 0 2px;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.about-feature-content p {
  margin: 0;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--dark);
}

.about-actions {
  margin-top: 30px;
}
.about-actions .services-btn {
  width: 56%;
}

.about-btn {
  min-height: 52px;

  padding: 12px 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 11px;

  background-color: var(--primary);
  color: var(--dark);

  font-family: var(--body-font);

  font-size: 16px;
  font-weight: 700;

  line-height: 1.2;

  text-transform: uppercase;

  transition: var(--transition);
}

.about-btn:hover {
  background-color: var(--primary-hover);
  color: var(--dark);

  transform: translateY(-2px);
}

.about-btn-icon {
  width: 22px;
  height: 22px;

  flex: 0 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid var(--dark);
  border-radius: 50%;

  font-size: 14px;
  line-height: 1;
}

.about-image-space {
  min-height: 620px;
}

@media (max-width: 767px) {
  .about-section {
    padding: 60px 0;
    background-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.72) 50%,
        rgba(0, 0, 0, 0.58) 100%
      ),
      url(../img/why-us-bg.webp);

    background-size: cover, cover;

    background-position: center, 68% center;

    background-repeat: no-repeat;
  }
  .about-content {
    max-width: 100%;

    padding-bottom: 40px;
  }

  .about-title {
    max-width: 100%;

    font-size: 43px;
  }

  .about-line {
    width: 260px;

    margin-top: 17px;
    margin-bottom: 20px;
  }

  .about-lead {
    max-width: 100%;

    font-size: 20px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-features {
    max-width: 100%;
  }

  .about-feature-content h3 {
    font-size: 17px;
  }

  .about-feature-content p {
    font-size: 16px;
  }

  .about-btn {
    width: 100%;

    min-height: 50px;

    font-size: 14px;
  }

  .about-image-space {
    min-height: 360px;

    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);

    background-image: linear-gradient(
        rgba(var(--dark-rgb), 0.05),
        rgba(var(--dark-rgb), 0.18)
      ),
      url("../img/why-us-bg.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .about-actions .services-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .about-title {
    font-size: 36px;
  }

  .about-label {
    font-size: 24px;
  }

  .about-lead {
    font-size: 18px;
  }

  .about-feature-icon {
    width: 25px;
    height: 25px;

    flex-basis: 25px;
  }

  .about-image-space {
    min-height: 300px;
  }
}

.projects-gallery-section {
  width: 100%;

  padding: 90px 0;

  background-color: var(--white);

  overflow: hidden;
}

.projects-gallery-content {
  width: 100%;
}

.projects-gallery-heading {
  margin-bottom: 45px;

  text-align: center;
}

.projects-gallery-heading h2 {
  margin: 0;

  font-family: var(--heading-font);

  font-size: 58px;
  font-weight: 400;

  line-height: 1;

  text-transform: uppercase;

  color: var(--dark);
}

.projects-gallery-heading h2 span {
  color: var(--primary);
}

.projects-gallery-row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}

.project-gallery-item {
  position: relative;

  width: 100%;

  overflow: hidden;

  aspect-ratio: 3 / 2;

  background-color: var(--light-bg);
}

.project-gallery-item > a {
  position: relative;

  width: 100%;
  height: 100%;

  display: block;

  overflow: hidden;
}

.project-gallery-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform var(--transition);
}

.project-gallery-overlay {
  position: absolute;

  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(var(--dark-rgb), 0.55);

  opacity: 0;

  transition: opacity var(--transition);
}

.project-gallery-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid var(--white);
  border-radius: 50%;

  color: var(--white);

  font-family: var(--body-font);

  font-size: 32px;
  font-weight: 300;

  line-height: 1;

  transform: scale(0.7);

  transition: transform var(--transition);
}

@media (hover: hover) {
  .project-gallery-item:hover img {
    transform: scale(1.06);
  }

  .project-gallery-item:hover .project-gallery-overlay {
    opacity: 1;
  }

  .project-gallery-item:hover .project-gallery-icon {
    transform: scale(1);
  }
}

.projects-gallery-bottom {
  margin-top: 45px;

  text-align: center;
}

.projects-gallery-bottom h3 {
  margin: 0 0 20px;

  font-family: var(--heading-font);

  font-size: 28px;
  font-weight: 400;

  line-height: 1.2;

  text-transform: uppercase;

  color: var(--dark);
}

.projects-gallery-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;

  gap: 20px;
}

.projects-gallery-btn {
  flex: 1;

  min-height: 52px;

  padding: 12px 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  background-color: var(--primary);
  color: var(--dark);

  font-family: var(--body-font);

  font-size: 17px;
  font-weight: 700;

  line-height: 1.2;

  text-align: center;
  text-transform: uppercase;

  transition: var(--transition);
}

.projects-gallery-btn:hover {
  background-color: var(--dark);
  color: var(--white);

  transform: translateY(-2px);
}

.projects-gallery-btn-icon {
  width: 22px;
  height: 22px;

  flex: 0 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid var(--dark);
  border-radius: 50%;

  font-size: 13px;
  line-height: 1;
}

@media (max-width: 767px) {
  .projects-gallery-section {
    padding: 60px 0;
  }

  .projects-gallery-heading {
    margin-bottom: 28px;
  }

  .projects-gallery-heading h2 {
    font-size: 40px;

    line-height: 1.05;
  }

  .projects-gallery-row {
    --bs-gutter-x: 6px;
    --bs-gutter-y: 6px;
  }

  .project-gallery-item {
    aspect-ratio: 1 / 1;
  }

  .project-gallery-overlay {
    background-color: rgba(var(--dark-rgb), 0.1);
  }

  .projects-gallery-bottom {
    margin-top: 30px;
  }

  .projects-gallery-bottom h3 {
    margin-bottom: 18px;

    font-size: 21px;

    line-height: 1.3;
  }

  .projects-gallery-actions {
    flex-direction: column;

    gap: 10px;
  }

  .projects-gallery-btn {
    width: 100%;

    flex: none;

    min-height: 50px;

    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .projects-gallery-heading h2 {
    font-size: 40px;
  }

  .projects-gallery-bottom h3 {
    font-size: 21px;
  }
}

.testimonials-section {
  width: 100%;

  overflow: hidden;

  background-color: var(--light-bg);
}

.testimonials-top {
  position: relative;

  padding: 90px 0;

  /* background-image:
        linear-gradient(
            90deg,
            rgba(var(--white-rgb), 0.04) 0%,
            rgba(var(--white-rgb), 0.14) 30%,
            rgba(var(--white-rgb), 0.32) 52%,
            rgba(var(--white-rgb), 0.52) 72%,
            rgba(var(--white-rgb), 0.68) 100%
        ),
        url("../img/testimonial-bg.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}

.testimonial-featured {
  max-width: 730px;

  margin-left: auto;

  text-align: center;
}

.testimonial-google-rating {
  margin-bottom: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 15px;
}

.testimonial-google-rating img:first-child {
  width: 40px;
  height: auto;

  object-fit: contain;
}

.testimonial-google-rating img:last-child {
  height: auto;

  object-fit: contain;
}

.testimonials-heading {
  margin-bottom: 28px;
}

.testimonials-heading h2 {
  margin: 0;

  font-family: var(--heading-font);

  font-size: 58px;
  font-weight: 400;

  line-height: 1;

  text-transform: uppercase;

  color: var(--dark);
}

.testimonials-heading h2 span {
  color: var(--primary);
}

.featured-review {
  max-width: 720px;

  margin: 0 auto;
}

.featured-review > p {
  margin: 0 0 23px;

  font-family: var(--body-font);

  font-size: 18px;
  font-weight: 500;

  line-height: 1.55;

  color: var(--dark);
}

.featured-review-author strong,
.featured-review-author span {
  display: block;
}

.featured-review-author strong {
  margin-bottom: 4px;

  font-family: var(--body-font);

  font-size: 15px;
  font-weight: 700;

  color: var(--dark);
}

.featured-review-author span {
  font-family: var(--body-font);

  font-size: 13px;

  color: var(--text);
}

.testimonials-carousel-wrap {
  position: relative;

  z-index: 5;

  margin-top: -58px;

  padding-bottom: 75px;
}

.testimonials-carousel-content {
  position: relative;

  width: 100%;
}

.reviews-carousel {
  position: relative;

  width: 100%;

  padding: 0 34px;
}

.reviews-carousel .owl-stage-outer {
  overflow: hidden;
}

.reviews-carousel .owl-stage {
  display: flex;
}

.reviews-carousel .owl-item {
  display: flex;

  height: auto;
}

.review-card {
  width: 100%;
  height: 100%;

  max-height: 300px;

  padding: 28px 24px;

  background-color: var(--white);

  border: 1px solid var(--border);

  border-radius: 4px;
}

.review-card-header {
  width: 100%;

  margin-bottom: 22px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 15px;
}

.review-person {
  flex: 1;

  min-width: 0;

  display: flex;
  align-items: center;

  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;

  overflow: hidden;

  border-radius: 50%;

  background-color: var(--light-bg);
}

.review-avatar img {
  display: block;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover;
}

.review-person-info {
  min-width: 0;
}

.review-person-info h3 {
  margin: 0 0 6px;

  font-family: var(--body-font);

  font-size: 16px;
  font-weight: 700;

  line-height: 1.2;

  color: var(--dark);
}

.review-stars {
  width: 70px;
}

.review-stars img {
  display: block;

  width: 100% !important;
  height: auto !important;

  object-fit: contain;
}

.review-google {
  width: 30px;
  height: 30px;
}

.review-google img {
  display: block;

  width: 100% !important;
  height: 100% !important;

  object-fit: contain;
}

.review-card-text p {
  margin: 0;

  font-family: var(--body-font);

  font-size: 15px;
  font-weight: 400;

  line-height: 1.65;

  color: var(--text);
}

.reviews-carousel .owl-nav {
  display: block !important;

  margin: 0 !important;
}

.reviews-carousel .owl-nav button.owl-prev,
.reviews-carousel .owl-nav button.owl-next {
  position: absolute;

  top: 50%;

  z-index: 30;

  width: 42px;
  height: 42px;

  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--border) !important;
  border-radius: 50% !important;

  background-color: var(--white) !important;
  color: var(--dark) !important;

  box-shadow: var(--shadow-card);

  transform: translateY(-50%);

  transition: var(--transition);
}

.reviews-carousel .owl-nav button.owl-prev {
  left: 5px;
}

.reviews-carousel .owl-nav button.owl-next {
  right: 5px;
}

.reviews-carousel .owl-nav button span {
  position: relative;

  top: -2px;

  font-family: Arial, sans-serif;

  font-size: 32px;
  font-weight: 300;

  line-height: 1;
}

.reviews-carousel .owl-nav button.owl-prev:hover,
.reviews-carousel .owl-nav button.owl-next:hover {
  border-color: var(--primary) !important;

  background-color: var(--primary) !important;

  color: var(--dark) !important;
}

.reviews-carousel .owl-dots {
  display: none !important;
}

.testimonials-action {
  margin-top: 30px;

  text-align: center;
}

.testimonials-btn {
  min-height: 52px;

  padding: 12px 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  background-color: var(--primary);
  color: var(--dark);

  font-family: var(--body-font);

  font-size: 16px;
  font-weight: 700;

  line-height: 1.2;

  text-transform: uppercase;

  transition: var(--transition);
}

.testimonials-btn:hover {
  background-color: var(--dark);

  color: var(--white);

  transform: translateY(-2px);
}

.testimonials-btn-icon {
  width: 22px;
  height: 22px;

  flex: 0 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid var(--dark);
  border-radius: 50%;

  font-size: 13px;

  line-height: 1;
}

@media (max-width: 767px) {
  .testimonials-top {
    min-height: auto;

    padding: 60px 0;

    /* background-image: linear-gradient(90deg, rgba(var(--white-rgb), 0.04) 0%, rgba(var(--white-rgb), 0.14) 30%, rgba(var(--white-rgb), 0.32) 52%, rgba(var(--white-rgb), 0.52) 72%, rgba(var(--white-rgb), 0.68) 100%), url(../img/testimonial-bg.webp);

        background-position: 25% center; */
  }

  .testimonial-featured {
    max-width: 100%;
  }

  .testimonial-google-rating {
    margin-bottom: 20px;
  }

  .testimonial-google-rating img:first-child {
    width: 48px;
  }

  .testimonial-google-rating img:last-child {
    width: 125px;
  }

  .testimonials-heading {
    margin-bottom: 20px;
  }

  .testimonials-heading h2 {
    font-size: 40px;
  }

  .featured-review > p {
    font-size: 14px;

    line-height: 1.55;
  }

  .testimonials-carousel-wrap {
    margin-top: -42px;

    padding-bottom: 60px;
  }

  .reviews-carousel {
    padding: 0 26px;
  }

  .review-card {
    min-height: auto;

    padding: 24px 20px;
  }

  .review-avatar {
    width: 45px;
    height: 45px;

    flex-basis: 45px;
  }

  .review-google {
    width: 31px;
    height: 31px;

    flex-basis: 31px;
  }

  .review-stars {
    width: 88px;
  }

  .review-person-info h3 {
    font-size: 15px;
  }

  .review-card-text p {
    font-size: 15px;
  }

  .reviews-carousel .owl-nav button.owl-prev,
  .reviews-carousel .owl-nav button.owl-next {
    width: 36px;
    height: 36px;
  }

  .reviews-carousel .owl-nav button.owl-prev {
    left: 2px;
  }

  .reviews-carousel .owl-nav button.owl-next {
    right: 2px;
  }

  .testimonials-btn {
    width: 100%;

    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .testimonials-heading h2 {
    font-size: 34px;
  }

  .review-card-header {
    gap: 9px;
  }

  .review-person {
    gap: 9px;
  }

  .review-avatar {
    width: 42px;
    height: 42px;

    flex-basis: 42px;
  }

  .review-google {
    width: 28px;
    height: 28px;

    flex-basis: 28px;
  }

  .review-stars {
    width: 80px;
  }
}

.footer-quote-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: linear-gradient(
    115deg,
    rgba(30, 41, 59, 0.98) 0%,
    rgba(44, 81, 94, 0.98) 100%
  );
}

.footer-quote-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -250px;
  border-radius: 50%;
  background: rgba(163, 199, 61, 0.11);
  pointer-events: none;
}

.footer-quote-section::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 130%;
  right: -260px;
  top: -15%;
  background: rgba(255, 255, 255, 0.025);
  transform: rotate(12deg);
  pointer-events: none;
}

.footer-quote-section .container {
  position: relative;
  z-index: 2;
}

.footer-quote-content {
  max-width: 500px;
}

.footer-quote-content .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 15px;

  color: var(--primary);

  font-family: var(--body-font);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.footer-quote-content .section-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--primary);
}

.footer-quote-content h2 {
  max-width: 470px;
  margin: 0 0 20px;

  color: var(--white);

  font-family: var(--heading-font);
  font-size: 60px;
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.footer-quote-content h2 span {
  display: block;
  color: var(--primary);
}

.footer-quote-intro {
  /* max-width: 440px; */
  margin: 0 0 35px;

  color: rgba(255, 255, 255, 0.76);

  font-size: 15px;
  line-height: 1.7;
}

.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.quote-benefit-icon {
  flex: 0 0 31px;

  width: 31px;
  height: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 1px;

  border: 1px solid rgba(163, 199, 61, 0.55);
  border-radius: 50%;

  background: rgba(163, 199, 61, 0.1);
  color: var(--primary);

  font-size: 14px;
  font-weight: 700;
}

.quote-benefit h4 {
  margin: 0 0 3px;

  color: var(--white);

  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.quote-benefit p {
  margin: 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 16px;
  line-height: 1.55;
}

.footer-quote-call {
  margin-top: 35px;
  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-quote-call span {
  display: block;

  margin-bottom: 7px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-quote-call a {
  display: inline-block;

  color: var(--primary);

  font-family: var(--heading-font);
  font-size: 30px;
  line-height: 1;
  text-decoration: none;

  transition: var(--transition);
}

.footer-quote-call a:hover {
  color: var(--white);
}

.footer-form-heading {
  margin-bottom: 27px;
}

.footer-form-heading > span {
  display: block;
  margin-bottom: 5px;

  color: var(--primary);

  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-form-heading h3 {
  margin: 0 0 6px;

  color: var(--dark);

  font-family: var(--heading-font);
  font-size: 37px;
  line-height: 1;
  font-weight: 400;
}

.footer-form-heading p {
  margin: 0;

  color: #667085;

  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 991.98px) {
  .footer-quote-section {
    padding: 70px 0;
  }

  .footer-quote-content h2 {
    font-size: 52px;
  }
}

@media (max-width: 767.98px) {
  .footer-quote-section {
    padding: 60px 0;
  }

  .footer-quote-content {
    max-width: none;
    margin-bottom: 15px;
  }

  .footer-quote-content h2 {
    font-size: 48px;
  }

  .footer-quote-intro {
    max-width: none;
    font-size: 16px;
  }

  .footer-form-heading h3 {
    font-size: 32px;
  }
}

@media (max-width: 575.98px) {
  .footer-quote-content h2 {
    font-size: 44px;
  }

  .footer-quote-call a {
    font-size: 26px;
  }
}

.services-two-section {
  position: relative;

  width: 100%;

  padding: 90px 0;

  overflow: hidden;

  background: var(--light-bg);

  color: var(--dark);
}

.services-two-heading {
  /* max-width: 760px; */

  margin: 0 auto 45px;

  text-align: center;
}

.services-two-kicker {
  display: block;

  margin-bottom: 8px;

  font-family: var(--body-font);

  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: 1px;
  text-transform: uppercase;

  color: var(--primary);
}

.services-two-heading h2 {
  margin: 0 0 14px;

  font-family: var(--heading-font);

  font-size: 60px;
  font-weight: 400;
  line-height: 1;

  text-transform: uppercase;

  color: var(--dark);
}

.services-two-heading h2 span {
  color: var(--primary);
}

.services-two-heading p {
  max-width: 720px;

  margin: 0 auto;

  font-family: var(--body-font);

  font-size: 15px;
  line-height: 1.65;

  color: #667085;
}

.services-two-cards-row {
  align-items: stretch;

  row-gap: 24px;
}

.services-two-cards-row > div {
  display: flex;
}

.services-two-card {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background: var(--white);

  border: 1px solid #e2e5e8;
  border-radius: 5px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-two-card-image {
  position: relative;

  width: 100%;
  height: 230px;

  overflow: hidden;

  background: #ddd;
}

.services-two-card-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(var(--dark-rgb), 0.45),
    rgba(var(--dark-rgb), 0) 55%
  );

  pointer-events: none;
}

.services-two-card-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s ease;
}

/* 
.services-two-card:hover .services-two-card-image img {
    transform: scale(1.04);
} */

.services-two-card-number {
  position: absolute;

  left: 20px;
  bottom: 17px;

  z-index: 2;

  font-family: var(--heading-font);

  font-size: 34px;
  font-weight: 600;
  line-height: 1;

  color: var(--white);
}

/* .services-two-card-number::after {
    content: "";

    display: inline-block;

    width: 28px;
    height: 3px;

    margin-left: 9px;
    margin-bottom: 7px;

    background: var(--primary);
} */

.services-two-card-content {
  position: relative;

  flex: 1;

  padding: 25px 25px 28px;
}

.services-two-card-content::before {
  content: "";

  position: absolute;

  top: 0;
  left: 25px;

  width: 45px;
  height: 3px;

  background: var(--primary);
}

.services-two-card-content h3 {
  margin: 0 0 11px;

  font-family: var(--heading-font);

  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;

  text-transform: uppercase;

  color: var(--dark);
}

.services-two-card-content p {
  margin: 0;

  font-family: var(--body-font);

  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;

  color: #667085;
}

.services-two-bottom {
  margin-top: 42px;

  text-align: center;
}

.services-two-bottom h4 {
  margin: 0 0 19px;

  font-family: var(--heading-font);

  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;

  text-transform: uppercase;

  color: var(--dark);
}

.services-two-bottom h4 span {
  color: var(--primary);
}

.services-two-actions-row {
  max-width: 1080px;

  margin-left: auto;
  margin-right: auto;

  row-gap: 10px;
}

.services-two-action-btn {
  width: 100%;
  min-height: 51px;

  padding: 11px 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  background: var(--primary);

  border: 2px solid var(--primary);
  border-radius: 2px;

  color: var(--dark);

  font-family: var(--body-font);

  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;

  text-align: center;
  text-transform: uppercase;
  text-decoration: none;

  transition: background-color 0.25s ease, border-color 0.25s ease,
    color 0.25s ease, transform 0.25s ease;
}

.services-two-action-btn:hover {
  background: var(--dark);

  border-color: var(--dark);

  color: var(--white);

  transform: translateY(-2px);

  text-decoration: none;
}

.services-two-action-icon {
  width: 22px;
  height: 22px;

  flex: 0 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid currentColor;
  border-radius: 50%;

  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .services-two-section {
    padding: 65px 0 55px;
  }

  .services-two-heading h2 {
    font-size: 46px;
  }

  .services-two-card-image {
    height: 200px;
  }

  .services-two-card-content {
    padding: 22px 20px 25px;
  }

  .services-two-card-content::before {
    left: 20px;
  }

  .services-two-card-content h3 {
    font-size: 25px;
  }

  .services-two-card-content p {
    font-size: 13px;
  }

  .services-two-action-btn {
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  .services-two-section {
    padding: 50px 0;
  }

  .services-two-heading {
    margin-bottom: 30px;

    padding: 0 8px;
  }

  .services-two-heading h2 {
    font-size: 39px;
  }

  .services-two-heading h2 span {
    /* display: block; */
  }

  .services-two-heading p {
    max-width: 390px;

    font-size: 14px;
  }

  .services-two-cards-row {
    row-gap: 18px;
  }

  .services-two-card {
    max-width: 420px;

    margin: 0 auto;
  }

  .services-two-card-image {
    height: 220px;
  }

  .services-two-card-content {
    padding: 22px 20px 24px;
  }

  .services-two-card-content h3 {
    font-size: 26px;
  }

  .services-two-card-content p {
    font-size: 14px;
    line-height: 1.55;
  }

  .services-two-bottom {
    margin-top: 30px;
  }

  .services-two-bottom h4 {
    max-width: 390px;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;

    font-size: 18px;
    line-height: 1.3;
  }

  .services-two-action-btn {
    min-height: 49px;

    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .services-two-section {
    padding: 60px 0;
  }

  .services-two-heading h2 {
    font-size: 36px;
  }

  .services-two-heading p {
    font-size: 15px;
  }

  .services-two-card-image {
    height: 190px;
  }

  .services-two-card-number {
    left: 16px;
    bottom: 14px;

    font-size: 30px;
  }

  .services-two-card-content {
    padding: 20px 17px 22px;
  }

  .services-two-card-content::before {
    left: 17px;
  }

  .services-two-card-content h3 {
    font-size: 24px;
  }

  .services-two-card-content p {
    font-size: 16px;
  }

  .services-two-bottom h4 {
    font-size: 24px;
  }

  .services-two-action-btn {
    font-size: 12px;
  }
}

.cta-banner-section {
  position: relative;
  width: 100%;

  padding: 90px 0;

  overflow: hidden;

  background: linear-gradient(
    115deg,
    rgba(30, 41, 59, 0.98) 0%,
    rgba(44, 81, 94, 0.98) 100%
  );

  color: var(--white);
}

.cta-banner-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    110deg,
    rgba(var(--dark-rgb), 0.35) 0%,
    transparent 55%,
    rgba(var(--primary-rgb), 0.05) 100%
  );

  pointer-events: none;
}

.cta-banner-section .container {
  position: relative;
  z-index: 2;
}

.cta-banner-wrapper {
  width: 100%;

  text-align: center;
}

.cta-banner-heading {
  /* max-width: 820px; */

  margin: 0 auto 20px;
}

.cta-banner-kicker {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-bottom: 12px;

  font-family: var(--body-font);

  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: 1.2px;
  text-transform: uppercase;

  color: var(--primary);
}

.cta-banner-kicker::before,
.cta-banner-kicker::after {
  content: "";

  width: 30px;
  height: 2px;

  background: var(--primary);
}

.cta-banner-heading h2 {
  margin: 0;

  font-family: var(--heading-font);

  font-size: 58px;
  font-weight: 400;
  line-height: 1;

  text-transform: uppercase;

  color: var(--white);
}

.cta-banner-heading h2 span {
  color: var(--primary);
}

.cta-banner-content {
  max-width: 720px;

  margin: 0 auto;
}

.cta-banner-content p {
  max-width: 600px;
  margin: 0 auto;

  font-family: var(--body-font);

  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;

  color: rgba(var(--white-rgb), 0.82);
}

.cta-banner-trust {
  margin: 28px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 0;
}

.cta-banner-trust span {
  position: relative;

  padding: 0 22px;

  font-family: var(--heading-font);

  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;

  text-transform: uppercase;

  color: var(--white);
}

.cta-banner-trust span:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 50%;
  right: 0;

  width: 5px;
  height: 5px;

  transform: translateY(-50%);

  border-radius: 50%;

  background: var(--primary);
}

.cta-banner-actions-row {
  max-width: 1050px;

  margin: 30px auto 0;

  row-gap: 10px;
}

.cta-banner-btn {
  width: 100%;
  min-height: 52px;

  padding: 11px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 11px;

  background: var(--primary);

  border: 2px solid var(--primary);
  border-radius: 3px;

  color: var(--dark);

  font-family: var(--body-font);

  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;

  text-align: center;
  text-decoration: none;
  text-transform: uppercase;

  transition: background-color 0.25s ease, border-color 0.25s ease,
    color 0.25s ease, transform 0.25s ease;
}

.cta-banner-btn:hover {
  background: var(--white);

  border-color: var(--white);

  color: var(--dark);

  transform: translateY(-2px);

  text-decoration: none;
}

.cta-banner-btn-icon {
  width: 22px;
  height: 22px;

  flex: 0 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid currentColor;
  border-radius: 50%;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.cta-banner-phone-icon {
  font-size: 11px;
}

.cta-banner-btn-text {
  display: inline-block;
}

@media (max-width: 991.98px) {
  .cta-banner-section {
    padding: 65px 0;
  }

  .cta-banner-heading h2 {
    font-size: 48px;
  }

  .cta-banner-content p {
    font-size: 15px;
  }

  .cta-banner-trust span {
    padding: 0 16px;

    font-size: 16px;
  }

  .cta-banner-btn {
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .cta-banner-section {
    padding: 50px 0;

    background-position: center;
  }

  .cta-banner-heading {
    margin-bottom: 16px;
  }

  .cta-banner-kicker {
    font-size: 9px;

    letter-spacing: 0.8px;
  }

  .cta-banner-kicker::before,
  .cta-banner-kicker::after {
    width: 20px;
  }

  .cta-banner-heading h2 {
    max-width: 390px;

    margin-left: auto;
    margin-right: auto;

    font-size: 40px;
    line-height: 0.98;
  }

  .cta-banner-heading h2 span {
    display: block;
  }

  .cta-banner-content {
    max-width: 390px;
  }

  .cta-banner-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .cta-banner-trust {
    max-width: 360px;

    margin-top: 22px;

    gap: 8px 0;
  }

  .cta-banner-trust span {
    width: 100%;

    padding: 0;

    font-size: 15px;
  }

  .cta-banner-trust span::after {
    display: none;
  }

  .cta-banner-actions-row {
    max-width: 390px;

    margin-top: 25px;
  }

  .cta-banner-btn {
    min-height: 49px;

    padding: 10px 14px;

    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .cta-banner-section {
    padding: 60px 0;
  }

  .cta-banner-heading h2 {
    font-size: 36px;
  }

  .cta-banner-content p {
    font-size: 16px;
  }

  .cta-banner-trust span {
    font-size: 14px;
  }

  .cta-banner-btn {
    font-size: 12px;
  }
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
#back-to-top {
  position: fixed;
  right: 4px;
  bottom: 45px;
  z-index: 999;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transition: bottom 0.25s ease, color 0.2s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
#back-to-top.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#back-to-top:hover {
  color: var(--dark);
}

.site-footer {
  padding: 18px 0;
  background-color: var(--dark);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 100px;

  text-align: center;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-divider {
  width: 100%;
  height: 1px;

  margin: 17px 0;

  background-color: rgba(var(--white-rgb), 0.2);
}

.footer-bottom p {
  margin: 0;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.site-footer .nav-button:hover {
  border: 1px solid var(--white);
}

@media (max-width: 767px) {
  .site-footer {
    padding: 40px 0 16px;
  }

  .footer-logo {
    min-height: auto;

    margin-bottom: 40px;
  }

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

  .footer-divider {
    margin-bottom: 15px;
  }

  .footer-bottom p {
    font-size: 9px;
    line-height: 1.5;
  }
}
@media (max-width: 575px) {
  .nav-phone {
    position: fixed;
    bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    padding: 10px 15px;
    text-align: center;
    border-radius: 56px;
    background-color: var(--dark);
    border: 4px solid var(--primary);
    visibility: visible;
    color: white;
    z-index: 998;
    font-size: 22px;
    /* margin-right: 5px; */
  }
  .nav-phone i {
    margin-right: 5px;
  }
}
