@charset "UTF-8";
/**
 * Part of earth project.
 *
 * @copyright  Copyright (C) 2018 {ORGANIZATION}. All rights reserved.
 * @license    GNU General Public License version 2 or later;
 */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 99px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
}
.btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
}

.badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 99px;
  background-color: #dbeafe;
  color: #1e40af;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  height: 100%;
}
.card:hover {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.c-service-card {
  padding: 1.5rem;
  text-align: center;
}
.c-service-card__icon {
  width: 3rem;
  height: 3rem;
  color: #16a34a;
  margin: 0 auto 1rem;
}
.c-service-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.75rem;
}
.c-service-card__description {
  color: #4b5563;
  line-height: 1.625;
}

.c-contact-card {
  padding: 2rem;
  text-align: center;
}
.c-contact-card__icon {
  width: 3rem;
  height: 3rem;
  color: #16a34a;
  margin: 0 auto 1rem;
}
.c-contact-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.5rem;
}
.c-contact-card__subtitle {
  color: #4b5563;
  margin-bottom: 1rem;
}
.c-contact-card__info {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2563eb;
}

.c-value-card {
  padding: 1.5rem;
  text-align: center;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.c-value-card:hover {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.c-value-card__icon {
  width: 3rem;
  height: 3rem;
  color: #16a34a;
  margin: 0 auto 1rem;
}
.c-value-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.75rem;
}
.c-value-card__description {
  color: #4b5563;
  line-height: 1.625;
  margin: 0;
}

.c-benefit-card {
  padding: 1.5rem;
  height: 100%;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  background-color: #ffffff;
  border: 1px solid #e9ecef;
}
.c-benefit-card:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #b9d4ff;
}
.c-benefit-card__header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f8f9fa;
}
.c-benefit-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 0.75rem;
}
.c-benefit-card__icon svg {
  color: white;
  width: 1.25rem;
  height: 1.25rem;
}
.c-benefit-card__icon--legal {
  background-color: #2563eb;
}
.c-benefit-card__icon--bonus {
  background-color: #16a34a;
}
.c-benefit-card__icon--insurance {
  background-color: #f59e0b;
}
.c-benefit-card__icon--other {
  background-color: #8b5cf6;
}
.c-benefit-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2563eb;
  margin: 0;
}
.c-benefit-card__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-benefit-card__list li {
  position: relative;
  padding: 0.25rem 0 0.25rem 1rem;
  color: #495057;
  font-size: 0.875rem;
  line-height: 1.625;
}
.c-benefit-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}
.c-benefit-card__list li:not(:last-child) {
  border-bottom: 1px solid #f8f9fa;
}

.c-work-card {
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.c-work-card:hover {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.c-work-card__icon {
  width: 3rem;
  height: 3rem;
  color: #16a34a;
  margin: 0 auto 1rem;
}
.c-work-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.75rem;
}
.c-work-card__description {
  color: #4b5563;
  line-height: 1.625;
  margin: 0;
}

.section {
  padding: 2rem 0;
}
.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 991.98px) {
  .section__header {
    margin-bottom: 1.5rem;
  }
}
.section__header-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1rem;
}
@media (max-width: 991.98px) {
  .section__header-title {
    font-size: 1.875rem;
  }
}
.section__header-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.625;
}
@media (max-width: 991.98px) {
  .section__header-subtitle {
    font-size: 1.125rem;
  }
}

section {
  padding: 2rem 0;
}

body {
  padding-top: 92px;
  line-height: 180%;
}
@media (max-width: 991.98px) {
  body {
    padding-top: 84px;
  }
}

[uni-cloak] * {
  pointer-events: none;
}

main {
  overflow: hidden;
}

.navbar-brand img, .l-main-footer__brand-logo img {
  height: 60px;
}
@media (max-width: 991.98px) {
  .navbar-brand img, .l-main-footer__brand-logo img {
    height: 30px;
  }
}

.l-main-header__logo-title {
  letter-spacing: 13px;
}
@media (max-width: 991.98px) {
  .l-main-header__logo-title {
    font-size: 16px;
    letter-spacing: 4px;
  }
}
.l-main-header .navbar {
  padding: 16px 0;
  background-color: #111827;
  -webkit-box-shadow: 0 6px 16px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0 6px 16px 2px rgba(0, 0, 0, 0.25);
}
.l-main-header .nav-item .nav-link,
.l-main-header .nav-item .btn {
  font-size: 18px;
  border-bottom: 1px solid transparent;
}
.l-main-header .nav-item .nav-link:hover {
  border-bottom: 1px solid #fbbf24;
}
.l-main-header .nav-item .btn.active {
  background: #fbbf24;
  color: #ffffff;
}
.l-main-header .dropdown-toggle:after {
  display: none;
}
.l-main-header .dropdown-menu {
  text-align: center;
}
.l-main-header .dropdown-menu-dark {
  background-color: #111827;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #495057;
  --bs-dropdown-min-width: unset;
}

.l-banner {
  background-color: #111827;
  overflow: hidden;
}
.l-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .l-banner__title {
    font-size: 1.5rem;
  }
}
.l-banner__description {
  font-size: 1.25rem;
  color: #4b5563;
}
@media (max-width: 991.98px) {
  .l-banner__description {
    font-size: 1rem;
  }
}
.l-banner__img {
  position: relative;
  max-height: 350px;
  overflow: hidden;
}
.l-banner__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(17, 24, 39)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(17, 24, 39) 100%);
}

.l-main-footer {
  background-color: #111827;
  color: #ffffff;
  padding: 20px 0 12px 0;
}
.l-main-footer__brand a {
  color: #fbbf24;
}
.l-main-footer__brand-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
.l-main-footer__brand-logo-icon {
  width: 2rem;
  height: 2rem;
  color: #60a5fa;
}
.l-main-footer__brand-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
.l-main-footer__brand-description {
  color: #9ca3af;
  line-height: 1.625;
}
.l-main-footer__social-links a {
  font-size: 28px;
  color: #fbbf24;
}
.l-main-footer__copyright {
  margin-top: 0.75rem;
  border-top: 1px solid #343a40;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

.l-home .l-banner {
  background-color: #ffffff;
  padding: 5rem 0;
}
.l-home .l-banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 991.98px) {
  .l-home .l-banner__content {
    gap: 0.75rem;
  }
}
.l-home .l-banner__title {
  font-size: 2.5erm;
  font-weight: 700;
  color: #1e40af;
}
@media (max-width: 991.98px) {
  .l-home .l-banner__title {
    font-size: 1.5rem;
  }
}
.l-home .l-banner__subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: #3886dc;
}
@media (max-width: 991.98px) {
  .l-home .l-banner__subtitle {
    font-size: 1.125rem;
  }
}
.l-home .l-banner__description {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.625;
}
@media (max-width: 991.98px) {
  .l-home .l-banner__description {
    font-size: 1rem;
  }
}
.l-home .l-banner__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding-top: 1rem;
}
.l-home .l-banner__stats-item {
  text-align: center;
}
.l-home .l-banner__stats-item-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  display: block;
}
.l-home .l-banner__stats-item-label {
  font-size: 0.875rem;
  color: #4b5563;
}
.l-home .l-banner__logo {
  max-height: 64px;
}
@media (max-width: 991.98px) {
  .l-home .l-banner__logo {
    max-height: 40px;
  }
}
.l-home .l-banner__image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.l-home .l-info {
  background-color: #f9fafb;
}
.l-home .l-info__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2563eb;
}
.l-home .l-info__card {
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.l-home .l-info__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.l-home .l-info__card--mission::before {
  background: #2563eb;
}
.l-home .l-info__card--vision::before {
  background: #16a34a;
}
.l-home .l-info__card-icon {
  color: #2563eb;
}
.mission-vision__card--vision .l-home .l-info__card-icon {
  color: #16a34a;
}
.l-home .l-info__card-icon svg {
  width: 3rem;
}
.l-home .l-info__card-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0;
}
.mission-vision__card--vision .l-home .l-info__card-title {
  color: #16a34a;
}
.l-home .l-info__card-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.625;
  margin-top: auto;
  margin-bottom: 0;
}
.l-home .l-info__image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.l-home .l-service-scope {
  background-color: #f9fafb;
}
.l-home .l-service-scope__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (max-width: 991.98px) {
  .l-home .l-service-scope__content {
    gap: 0.75rem;
  }
}
.l-home .l-service-scope__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2563eb;
}
.l-home .l-service-scope__description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.625;
}
.l-home .l-service-scope__locations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.l-home .l-service-scope__location {
  padding: 1rem;
}
.l-home .l-service-scope__location-region {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.5rem;
}
.l-home .l-service-scope__location-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
.l-home .l-service-scope__location-stats span {
  font-size: 0.875rem;
  color: #4b5563;
}
.l-home .l-service-scope__location-stats span:first-child {
  color: #16a34a;
  font-weight: 500;
}
.l-home .l-service-scope__image {
  margin: 0 5rem;
  border-radius: 1rem;
  overflow: hidden;
}
.l-home .l-service-scope__image img {
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.l-home .l-contact-us {
  background: -webkit-gradient(linear, left top, right top, from(#2563eb), to(#16a34a));
  background: linear-gradient(to right, #2563eb, #16a34a);
  text-align: center;
  color: #ffffff;
}
.l-home .l-contact-us__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.l-home .l-contact-us__description {
  font-size: 1.25rem;
  color: #dbeafe;
  margin-bottom: 2rem;
  line-height: 1.625;
}
.l-home .l-contact-us__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-home .c-round-img {
  border-radius: 0.75rem;
}

.l-about .l-company-story {
  padding: 5rem 0;
  background-color: #f9fafb;
}
@media (max-width: 991.98px) {
  .l-about .l-company-story {
    padding: 2.5rem 0;
  }
}
.l-about .l-company-story__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media (max-width: 991.98px) {
  .l-about .l-company-story__content {
    gap: 0.75rem;
  }
}
.l-about .l-company-story__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2563eb;
}
.l-about .l-company-story__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.l-about .l-company-story__text p,
.l-about .l-company-story__text ul {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.625;
  margin: 0;
}
.l-about .l-company-story__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.l-about .l-company-story__stat {
  text-align: center;
}
.l-about .l-company-story__stat-number {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.25rem;
}
.l-about .l-company-story__stat-label {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}
.l-about .l-company-story__image {
  padding-right: 4rem;
}
.l-about .l-company-story__image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.l-about .l-values-section {
  padding: 5rem 0;
  background-color: #eff6ff;
}
@media (max-width: 991.98px) {
  .l-about .l-values-section {
    padding: 2.5rem 0;
  }
}

.l-service .l-services {
  background-color: #f9fafb;
}
.l-service .l-features {
  padding: 5rem 0;
}
@media (max-width: 991.98px) {
  .l-service .l-features {
    padding: 2.5rem 0;
  }
}
.l-service .l-features__row {
  --bs-gutter-x: 80px;
}
.l-service .l-features__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (max-width: 991.98px) {
  .l-service .l-features__content {
    gap: 0.75rem;
  }
}
.l-service .l-features__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2563eb;
}
.l-service .l-features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.l-service .l-features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
.l-service .l-features__item-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #16a34a;
  margin-top: 0.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-service .l-features__item-content h3 {
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.5rem;
}
.l-service .l-features__item-content p {
  color: #4b5563;
  line-height: 1.625;
  margin: 0;
}
.l-service .l-features__image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.l-invite .l-benefits {
  padding: 4rem 0;
  background-color: #f9fafb;
}
.l-invite .l-why-work {
  padding: 5rem 0;
  background-color: #ffffff;
}
@media (max-width: 991.98px) {
  .l-invite .l-why-work {
    padding: 2.5rem 0;
  }
}
.l-invite .l-why-work__link:hover {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-transform: translateY(-12px);
      -ms-transform: translateY(-12px);
          transform: translateY(-12px);
}
.l-invite .l-benefits__image,
.l-invite .l-why-work__image {
  border-radius: 1rem;
  overflow: hidden;
}
.l-invite .l-benefits__image img,
.l-invite .l-why-work__image img {
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.l-contact {
  background-color: #f9fafb;
  padding: 5rem 0;
}
@media (max-width: 991.98px) {
  .l-contact {
    padding: 2.5rem 0;
  }
}

.l-map {
  overflow: hidden;
  padding: 2.5rem 0;
}
.l-map__wrapper {
  margin: 0 2.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background-color: #f9fafb;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 991.98px) {
  .l-map__wrapper {
    margin: 0 1.5rem;
  }
}
.l-map__info {
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.l-map .c-photo-map {
  width: 100%;
  min-height: 400px;
}
.l-map .c-road-map {
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
/*# sourceMappingURL=main.css.map */
