/*!********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./css/src/home.scss ***!
  \********************************************************************************************************************************************************************/
.hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 39, 89, 0.8509803922);
}
.hero__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5.6rem;
  padding-bottom: 5.6rem;
}
.hero__wrapper h1 {
  text-align: center;
  max-width: 86.7rem;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 3.2rem;
}
@media (max-width: 599px) {
  .hero__wrapper h1 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
.hero__call-to-action {
  display: flex;
  gap: 2.4rem;
  margin-top: 3.2rem;
  color: #ffffff;
}
@media (max-width: 599px) {
  .hero__call-to-action {
    flex-direction: column;
  }
}
.hero__call-to-action .button {
  min-width: 26.2rem;
}

.high-contrast .hero__overlay {
  background-color: rgba(0, 0, 0, 0.85);
}
.high-contrast .hero__wrapper h1 {
  color: #ffffff;
}
.high-contrast .hero__call-to-action {
  display: flex;
  gap: 2.4rem;
  margin-top: 6.4rem;
  color: #ffffff;
}
@media (max-width: 599px) {
  .high-contrast .hero__call-to-action {
    flex-direction: column;
  }
}
.high-contrast .hero__call-to-action .button {
  min-width: 26.2rem;
}

.info {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
.info__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}
@media (min-width: 900px) {
  .info__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    flex-direction: row;
  }
}
.info__image {
  display: flex;
  align-items: center;
}
.info__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1800px) {
  .info__image img {
    max-width: 76.8rem;
  }
}
@media (min-width: 900px) {
  .info__content {
    padding-left: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .info__content {
    padding-left: 6.4rem;
  }
}
.info__content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.2rem;
}
@media (min-width: 1200px) {
  .info__content-wrapper {
    max-width: 59.2rem;
  }
}
.info__content .link {
  display: block;
  margin-left: auto;
}

.blog-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
@media (min-width: 1200px) {
  .blog-item {
    grid-template-columns: 1fr 1fr;
  }
}
.blog-item__content {
  background-color: #f8f8f8;
  padding: 5.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.blog-item__content-date {
  color: #6e7070;
}
.blog-item__image {
  max-height: 32rem;
}
.blog-item__image img {
  max-height: 32rem;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.high-contrast .blog-item__content {
  background-color: #000000;
}

.news {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
.news__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 3.2rem;
}
.news__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  width: 100%;
}
@media (min-width: 1200px) {
  .news__items .blog-item:nth-of-type(even) {
    grid-template-columns: 1fr 1fr;
  }
  .news__items .blog-item:nth-of-type(even) .blog-item__content {
    order: 2;
  }
  .news__items .blog-item:nth-of-type(even) .blog-item__image {
    order: 1;
  }
}

.onsite-office {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
.onsite-office__name, .onsite-office__working-hours, .onsite-office__phones, .onsite-office__emails {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
.onsite-office__emails a {
  font-weight: 400;
}

.mobile-offices h3 {
  margin-bottom: 2.4rem;
}
.mobile-offices .table {
  overflow-x: auto;
}
.mobile-offices .table__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.4rem;
  color: #0d2759;
}
.mobile-offices .table__header-item {
  padding: 1.6rem;
  background-color: #e3e4e4;
  margin-bottom: 0.4rem;
  min-width: 20rem;
}
.mobile-offices .table__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}
.mobile-offices .table__content-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.4rem;
}
.mobile-offices .table__content-item {
  padding: 1.6rem;
  background-color: #f8f8f8;
  color: #4a4b4b;
  display: flex;
  align-items: center;
  min-width: 20rem;
}

.high-contrast .mobile-offices .table__header {
  color: #000000;
}
.high-contrast .mobile-offices .table__header-item {
  background-color: #ffed00;
}
.high-contrast .mobile-offices .table__content-item {
  padding: 1.6rem;
  background-color: #ffed00;
  color: #000000;
}

.offices {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
.offices__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}
.offices__intro {
  max-width: 103.1rem;
  text-align: center;
  margin-bottom: 6.4rem;
}
.offices__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
.offices__content-mobile {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .offices__content {
    grid-template-columns: 2fr 3fr;
  }
}

/*# sourceMappingURL=home.min.9aeaaf2314bd932514c0.css.map*/