@charset "UTF-8";

:root {
  --color-primary: #7561fd;
  --color-dark-blue: #0C0A39;
  --color-white: white;
  --color-black: black;
  --font-text: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-text-2: 'Intro-Rust', Arial, Helvetica, sans-serif;
  --font-heading: 'Lexend', Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic.woff2") format("woff2"), url("../fonts/Montserrat-Italic.woff") format("woff");
  font-style: italic;
  font-weight: 400;
  display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-style: 400;
  font-weight: 700;
  display: swap;
}

@font-face {
  font-family: "Lexend";
  src: url("../fonts/Lexend-Regular.woff2") format("woff2"), url("../fonts/Lexend-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  display: swap;
}

@font-face {
  font-family: "Lexend";
  src: url("../fonts/Lexend-Bold.woff2") format("woff2"), url("../fonts/Lexend-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  display: swap;
}

@font-face {
  font-family: "Intro-Rust";
  src: url("../fonts/IntroRust-Base.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--color-dark-blue);
  background-color: var(--color-black);
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  font-size: 21.4px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 2.2rem;
}

p {
  margin-bottom: 2.2rem;
}

.container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.dot {
  color: var(--color-primary);
}

.m-0 {
  margin: 0;
}

.section {
  background-color: var(--color-white);
}

.section .container {
  position: relative;
  aspect-ratio: 1920/1080;
  overflow: hidden;
}

.section__number {
  position: absolute;
  bottom: 4.4%;
  right: 4.6%;
  font-size: 34px;
  z-index: 10;
  line-height: 1;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
}

.section-1 .container {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.section-1__bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 1;
}

.section-1__image {
  display: block;
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}

.section-1__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 56% 44%;
  grid-template-columns: 56% 44%;
  position: relative;
  z-index: 2;
}

.section-1__wrap {
  padding: 34% 14% 6% 9%;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-1__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: 60px;
}

.section-1__logo {
  height: 93px;
  width: auto;
}

.section-1__heading {
  font-size: 73px;
}

.section-1__text {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 37px;
  line-height: 1.2;
  margin: 0;
}

.section-1__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  letter-spacing: 0.07rem;
  font-size: 17px;
}

.section-1__bottom span {
  padding-left: 20px;
}

.section-1__bottom a {
  color: inherit;
  text-decoration: none;
}

.section-2 .container {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.section-2__image {
  display: block;
  width: 33.2%;
  height: auto;
  position: absolute;
  top: 6.2%;
  left: 2.4%;
  z-index: 1;
}

.section-2__heading {
  position: absolute;
  top: 21.5%;
  left: 36.4%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  font-size: 114px;
}

.section-2__table {
  font-size: 33px;
  font-family: var(--font-heading);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 5%;
  right: 5%;
  width: 40%;
  z-index: 3;
  line-height: 1.25;
}

.section-2__table > * {
  border-bottom: 1px solid var(--color-white);
  padding-top: 2%;
  padding-bottom: 3.6%;
}

.section-2__table > *:last-child {
  border-bottom: none;
}

.section-2__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  color: var(--color-white);
}

.section-3__bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 47%;
  z-index: 1;
  overflow: hidden;
}

.section-3__bg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(black));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, black 100%);
}

.section-3__image {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

.section-3__wrap {
  position: absolute;
  top: 6.3%;
  left: 5.3%;
  width: 44%;
}

.section-3__heading {
  font-size: 69px;
  line-height: 1.18;
}

.section-3__subtext {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 27px;
  line-height: 1.4;
}

.section-3 .section__number {
  color: white;
}

.section-4 .container,
.section-5 .container,
.section-6 .container {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.section-4__heading,
.section-5__heading,
.section-6__heading {
  position: absolute;
  top: 12.3%;
  left: 5.5%;
  font-size: 92px;
  z-index: 2;
}

.section-4__icon,
.section-5__icon,
.section-6__icon {
  display: block;
  position: absolute;
  left: 5.4%;
  top: 46%;
  width: 22.6%;
  height: auto;
  z-index: 1;
}

.section-4__content,
.section-5__content,
.section-6__content {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 58.6%;
  min-height: 80%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}

.section-4__row,
.section-5__row,
.section-6__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33% auto;
  grid-template-columns: 33% auto;
  gap: 55px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-4__left,
.section-5__left,
.section-6__left {
  position: relative;
}

.section-4__image-wrap,
.section-5__image-wrap,
.section-6__image-wrap {
  position: relative;
  overflow: hidden;
}

.section-4__image-wrap::after,
.section-5__image-wrap::after,
.section-6__image-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#07061f));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #07061f 100%);
}

.section-4__image,
.section-5__image,
.section-6__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-4__image-1,
.section-5__image-1,
.section-6__image-1 {
  -o-object-position: 55% 50%;
     object-position: 55% 50%;
}

.section-4__image-2,
.section-5__image-2,
.section-6__image-2 {
  -o-object-position: 40% 50%;
     object-position: 40% 50%;
}

.section-4__left-heading,
.section-5__left-heading,
.section-6__left-heading {
  position: absolute;
  z-index: 2;
  top: 95%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 130%;
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
}

.section-4__text,
.section-5__text,
.section-6__text {
  padding-right: 18px;
  line-height: 1.4;
}

.section-4__text p,
.section-5__text p,
.section-6__text p {
  margin-bottom: 2rem;
}

.section-4__text p:last-child,
.section-5__text p:last-child,
.section-6__text p:last-child {
  margin-bottom: 0;
}

.section-4 .section__number,
.section-5 .section__number,
.section-6 .section__number {
  color: white;
}

.section-5__image-1 {
  -o-object-position: 20% 50%;
     object-position: 20% 50%;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.section-5__image-2 {
  -o-object-position: 50%;
     object-position: 50%;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.section-6__image-1 {
  -o-object-position: 76% 50%;
     object-position: 76% 50%;
}

.section-6__image-2 {
  -o-object-position: 50% 85%;
     object-position: 50% 85%;
}

.section-7 .container,
.section-8 .container,
.section-9 .container {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.section-7__heading,
.section-8__heading,
.section-9__heading {
  position: absolute;
  top: 12.3%;
  left: 5.5%;
  font-size: 92px;
  z-index: 2;
}

.section-7__icon,
.section-8__icon,
.section-9__icon {
  display: block;
  position: absolute;
  left: 5.4%;
  top: 46%;
  width: 22.6%;
  height: auto;
  z-index: 1;
}

.section-7__content,
.section-8__content,
.section-9__content {
  position: absolute;
  top: 15%;
  right: 5.7%;
  width: 54.6%;
  min-height: 80%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}

.section-7__grid,
.section-8__grid,
.section-9__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 45.4% auto;
  grid-template-columns: 45.4% auto;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 3.4%;
}

.section-7__grid:last-child,
.section-8__grid:last-child,
.section-9__grid:last-child {
  border-bottom: none;
}

.section-7__grid-left-heading,
.section-8__grid-left-heading,
.section-9__grid-left-heading {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.2;
  font-family: var(--font-text-2);
  margin-top: 5px;
  margin-bottom: 0.4rem;
}

.section-7__grid-left-date,
.section-7__grid-left-total,
.section-8__grid-left-date,
.section-8__grid-left-total,
.section-9__grid-left-date,
.section-9__grid-left-total {
  font-family: var(--font-heading);
  font-size: 55px;
  margin-bottom: 1.3rem;
  line-height: 1.2;
}

.section-7__grid-left-price,
.section-8__grid-left-price,
.section-9__grid-left-price {
  font-family: var(--font-heading);
  margin-bottom: 1.2rem;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.section-7__grid-left-text,
.section-8__grid-left-text,
.section-9__grid-left-text {
  font-size: 16px;
  line-height: 1.3;
  font-style: italic;
}

.section-7__grid-right-heading,
.section-8__grid-right-heading,
.section-9__grid-right-heading {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  font-family: var(--font-heading);
  margin-bottom: 0.62rem;
}

.section-7__grid-right-text,
.section-8__grid-right-text,
.section-9__grid-right-text {
  font-size: 20px;
  line-height: 1.68;
}

.section-7__grid-right-table-wrap,
.section-8__grid-right-table-wrap,
.section-9__grid-right-table-wrap {
  margin-right: 10.8%;
}

.section-7__grid-right-table,
.section-8__grid-right-table,
.section-9__grid-right-table {
  border-collapse: collapse;
  width: 100%;
  line-height: 1.54;
  font-size: 20px;
}

.section-7__grid-right-table tr td:nth-child(2),
.section-8__grid-right-table tr td:nth-child(2),
.section-9__grid-right-table tr td:nth-child(2) {
  text-align: right;
  font-family: var(--font-text-2);
}

.section-7__grid-right-subtext,
.section-8__grid-right-subtext,
.section-9__grid-right-subtext {
  text-align: right;
  margin-top: 0.3rem;
  font-size: 20px;
}

.section-7 .section__number,
.section-8 .section__number,
.section-9 .section__number {
  color: white;
}

.section-8 .container {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.section-8 .section__number {
  color: white;
}

.section-9 .container {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.section-9 .section__number {
  color: white;
}

.section-10__heading {
  position: absolute;
  top: 8.6%;
  left: 5.5%;
  font-size: 77.5px;
  z-index: 2;
  line-height: 1.16;
}

.section-10__icon {
  display: block;
  position: absolute;
  left: 10.1%;
  top: 52%;
  width: 21.2%;
  height: auto;
  z-index: 1;
}

.section-10__grid {
  position: absolute;
  top: 10.4%;
  right: 7%;
  width: 52%;
  display: -ms-grid;
  display: grid;
  gap: 30px;
}

.section-10__grid-row {
  border-bottom: 1px solid var(--color-dark-blue);
  padding-bottom: 4%;
}

.section-10__grid-row:last-child {
  border: none;
}

.section-10__grid-heading {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 1.2rem;
}

.section-10__grid-text {
  margin: 0;
  font-size: 18.6px;
}

.section-10 .section__number {
  right: 3.5%;
}

.section-11 .container {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.section-11__map-wrap {
  position: absolute;
  top: 4%;
  left: 5.6%;
  width: 40.4%;
}

.section-11__map {
  display: block;
  width: 100%;
  height: auto;
}

.section-11__map-pin {
  position: absolute;
  width: 6.4%;
  height: auto;
}

.section-11__map-pin-primary {
  width: 8.9%;
  top: 45.2%;
  left: 66.4%;
}

.section-11__map-pin-1 {
  top: 38.7%;
  left: 24.2%;
}

.section-11__map-pin-2 {
  top: 34.6%;
  left: 33.2%;
}

.section-11__map-pin-3 {
  top: 57%;
  left: 21%;
}

.section-11__map-pin-4 {
  top: 50.5%;
  left: 59.1%;
}

.section-11__map-pin-5 {
  top: 40.3%;
  left: 73.7%;
}

.section-11__map-pin-6 {
  top: 43%;
  left: 80%;
}

.section-11__map-pin-7 {
  top: 48.8%;
  left: 76.3%;
}

.section-11__map-pin-8 {
  top: 68.3%;
  left: 73.6%;
}

.section-11__content {
  position: absolute;
  top: 12%;
  right: 5.5%;
  width: 37%;
}

.section-11__heading {
  border-bottom: 1px solid var(--color-white);
  font-size: 94px;
  line-height: 1.15;
  padding-bottom: 5.4%;
  margin-bottom: 2rem;
}

.section-11__text {
  margin-bottom: 3.7rem;
}

.section-11__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  font-size: 36px;
  font-family: var(--font-text-2);
  gap: 25px 40px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.section-11__grid > *:last-child:nth-child(odd) {
  -ms-grid-column: 2;
  grid-column: 2;
}

.section-11 .section__number {
  color: white;
  right: 3.5%;
}

.section-12__bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 32%;
  z-index: 1;
  overflow: hidden;
}

.section-12__bg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(black));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, black 100%);
}

.section-12__image {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 20% 20%;
     object-position: 20% 20%;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

.section-12__content {
  position: absolute;
  top: 11%;
  left: 4.6%;
  width: 62%;
}

.section-12__heading {
  font-size: 94px;
  line-height: 1.16;
  padding-right: 20px;
  margin-bottom: 2.7rem;
}

.section-12__text {
  padding-right: 60px;
  line-height: 1.4;
  margin-bottom: 0.7rem;
}

.section-12__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
}

.section-12__grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 40px;
  position: relative;
}

.section-12__grid-item::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 18%;
  bottom: 0;
  width: 1px;
  height: auto;
  background: var(--color-dark-blue);
}

.section-12__grid-item:last-child::after {
  display: none;
}

.section-12__grid-image {
  width: 100%;
  height: 146px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-12__grid-text {
  font-size: 19px;
  line-height: 1.4;
}

.section-12__image-1 {
  width: 100%;
  height: auto;
  aspect-ratio: 3.5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-12__image-2 {
  width: 76%;
  height: auto;
}

.section-12__image-3 {
  width: 54%;
  height: auto;
}

.section-12__link {
  display: inline-block;
  color: var(--color-dark-blue);
  border: 1px solid var(--color-dark-blue);
  padding: 14px 44px;
  border-radius: 40px;
  text-decoration: none;
  line-height: 1;
  margin-top: auto;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-size: 18.6px;
  font-weight: 500;
}

.section-12__link:hover {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}

.section-12 .section__number {
  color: white;
  right: 3.5%;
}

.section-13 .container {
  background-color: var(--color-black);
  color: var(--color-white);
}

.section-13__content {
  position: absolute;
  left: 5%;
  top: 32.2%;
  width: 25%;
  z-index: 2;
}

.section-13__uptext {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1.2;
}

.section-13__icon {
  display: block;
  position: absolute;
  z-index: 1;
  top: 15%;
  left: 0;
  -webkit-transform: translateX(-34%);
          transform: translateX(-34%);
  width: 39%;
  height: auto;
  opacity: 0.13;
}

.section-13__heading {
  font-size: 86px;
  line-height: 1.16;
  padding-right: 20px;
  margin-bottom: 3.4rem;
}

.section-13__text {
  line-height: 1.45;
}

.section-13__grid {
  position: absolute;
  width: 66.6%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.section-13__grid-item {
  position: relative;
  overflow: hidden;
}

.section-13__grid-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(black));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, black 100%);
  z-index: 2;
}

.section-13__grid-image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-13__grid-image-1 {
  -o-object-position: 60% 50%;
     object-position: 60% 50%;
  -webkit-transform: scale(1.18);
          transform: scale(1.18);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.section-13__grid-image-2 {
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.section-13__grid-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  padding: 4.2% 5% 10% 11.4%;
  z-index: 3;
}

.section-13__grid-heading {
  font-size: 50px;
  margin-bottom: 1.2rem;
}

.section-13__grid-position {
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 1.2rem;
}

.section-13__grid-text {
  line-height: 1.4;
}

.section-14 .container {
  background-color: var(--color-black);
  color: var(--color-white);
}

.section-14__content {
  position: absolute;
  left: 5.6%;
  top: 29.2%;
  width: 25%;
  z-index: 2;
}

.section-14__uptext {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1.2;
}

.section-14__icon {
  display: block;
  position: absolute;
  z-index: 1;
  top: 15%;
  left: 0;
  -webkit-transform: translateX(-34%);
          transform: translateX(-34%);
  width: 39%;
  height: auto;
  opacity: 0.13;
}

.section-14__heading {
  font-size: 86px;
  line-height: 1.16;
  padding-right: 20px;
  margin-bottom: 3.4rem;
}

.section-14__text {
  line-height: 1.4;
  padding-right: 70px;
}

.section-14__grid {
  position: absolute;
  width: 66.6%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.section-14__grid-item {
  position: relative;
  overflow: hidden;
}

.section-14__grid-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(black));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, black 100%);
  z-index: 2;
}

.section-14__grid-image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.section-14__grid-image-1 {
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
  -webkit-transform-origin: 100% 85%;
          transform-origin: 100% 85%;
}

.section-14__grid-image-2 {
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
  -webkit-transform-origin: 60% 88%;
          transform-origin: 60% 88%;
}

.section-14__grid-image-4 {
  -webkit-transform: scale(1.16);
          transform: scale(1.16);
  -webkit-transform-origin: 34% 89%;
          transform-origin: 34% 89%;
}

.section-14__grid-image-5 {
  -webkit-transform: scale(1.18);
          transform: scale(1.18);
  -webkit-transform-origin: 68% 80%;
          transform-origin: 68% 80%;
}

.section-14__grid-image-6 {
  -o-object-position: 125% 86%;
     object-position: 125% 86%;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transform-origin: 46% 87%;
          transform-origin: 46% 87%;
}

.section-14__grid-image-7 {
  -o-object-position: 30% 50%;
     object-position: 30% 50%;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  -webkit-transform-origin: 0% 98%;
          transform-origin: 0% 98%;
}

.section-14__grid-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  padding: 0% 15% 16% 0;
  z-index: 3;
  text-align: right;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.section-14__grid-heading {
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 0.6rem;
}

.section-14__grid-position {
  line-height: 1.4;
  margin: 0;
  font-size: 16px;
}

.section-15__content {
  position: absolute;
  left: 5.8%;
  top: 12%;
  width: 25%;
  z-index: 2;
}

.section-15__heading {
  font-size: 94px;
  line-height: 1.16;
  margin-bottom: 3.8rem;
}

.section-15__text {
  line-height: 1.4;
  font-size: 19px;
}

.section-15__right {
  position: absolute;
  top: 10%;
  right: 4%;
  width: 62.6%;
  min-height: 80%;
  display: -ms-grid;
  display: grid;
  gap: 10px;
}

.section-15__right-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 38% auto;
  grid-template-columns: 38% auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-15__right-logo-wrap {
  position: relative;
  height: 120px;
  width: 100%;
  overflow: hidden;
}

.section-15__right-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-15__right-content {
  padding-top: 15px;
  padding-right: 30px;
}

.section-15__right-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.section-15__right-text {
  margin: 8px 22px 0 0;
  text-align: right;
  font-size: 16px;
}

.section-15__link {
  display: inline-block;
  color: var(--color-dark-blue);
  border: 1px solid var(--color-dark-blue);
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  line-height: 1;
  margin-top: auto;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-size: 20px;
  font-weight: 500;
}

.section-15__link:hover {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}

.section-15__grid {
  display: -ms-grid;
  display: grid;
  row-gap: 16px;
}

.section-15__grid-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 61.2% auto;
  grid-template-columns: 61.2% auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.section-15__grid-top .section-15__grid-item {
  height: 350px;
}

.section-15__grid-bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33.2% 30.4% auto;
  grid-template-columns: 33.2% 30.4% auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.section-15__grid-bottom .section-15__grid-item {
  height: 370px;
}

.section-15__grid-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-16__content {
  position: absolute;
  left: 5.8%;
  top: 12%;
  width: 25%;
  z-index: 2;
}

.section-16__heading {
  font-size: 94px;
  line-height: 1.16;
  margin-bottom: 3.8rem;
}

.section-16__text {
  line-height: 1.4;
  font-size: 19px;
}

.section-16__right {
  position: absolute;
  top: 10%;
  right: 4%;
  width: 62.6%;
  min-height: 80%;
  display: -ms-grid;
  display: grid;
  gap: 10px;
}

.section-16__right-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 38% auto;
  grid-template-columns: 38% auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-16__right-logo-wrap {
  position: relative;
  height: 120px;
  width: 100%;
  overflow: hidden;
}

.section-16__right-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(2.05);
          transform: scale(2.05);
  -webkit-transform-origin: 11% -29%;
          transform-origin: 11% -29%;
}

.section-16__right-content {
  padding-top: 15px;
  padding-right: 30px;
}

.section-16__right-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.section-16__right-text {
  margin: 8px 22px 0 0;
  text-align: right;
  font-size: 16px;
}

.section-16__link {
  display: inline-block;
  color: var(--color-dark-blue);
  border: 1px solid var(--color-dark-blue);
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  line-height: 1;
  margin-top: auto;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-size: 20px;
  font-weight: 500;
}

.section-16__link:hover {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}

.section-16__grid {
  display: -ms-grid;
  display: grid;
  row-gap: 16px;
}

.section-16__grid-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 61.2% auto;
  grid-template-columns: 61.2% auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.section-16__grid-top .section-16__grid-item {
  height: 350px;
}

.section-16__grid-bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33.2% 30.4% auto;
  grid-template-columns: 33.2% 30.4% auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.section-16__grid-bottom .section-16__grid-item {
  height: 370px;
}

.section-16__grid-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-16__grid-image-3 {
  -o-object-position: center 91%;
     object-position: center 91%;
}

.section-16__grid-image-5 {
  -o-object-position: center 89%;
     object-position: center 89%;
}

.section-17__content {
  position: absolute;
  left: 5.8%;
  top: 12%;
  width: 25%;
  z-index: 2;
}

.section-17__heading {
  font-size: 94px;
  line-height: 1.16;
  margin-bottom: 3.8rem;
}

.section-17__text {
  line-height: 1.4;
  font-size: 19px;
}

.section-17__right {
  position: absolute;
  top: 10%;
  right: 4%;
  width: 62.6%;
  min-height: 80%;
  display: -ms-grid;
  display: grid;
  gap: 10px;
}

.section-17__right-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 46% auto;
  grid-template-columns: 46% auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-17__right-logo-wrap {
  position: relative;
  height: 110px;
  width: 100%;
  overflow: hidden;
}

.section-17__right-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: translate(-2%, 20%);
          transform: translate(-2%, 20%);
}

.section-17__right-content {
  padding-top: 15px;
  padding-right: 30px;
}

.section-17__right-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.section-17__right-text {
  margin: 8px 22px 0 0;
  text-align: right;
  font-size: 16px;
}

.section-17__link {
  display: inline-block;
  color: var(--color-dark-blue);
  border: 1px solid var(--color-dark-blue);
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  line-height: 1;
  margin-top: auto;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-size: 20px;
  font-weight: 500;
}

.section-17__link:hover {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}

.section-17__grid {
  display: -ms-grid;
  display: grid;
  row-gap: 16px;
}

.section-17__grid-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 61.2% auto;
  grid-template-columns: 61.2% auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.section-17__grid-top .section-17__grid-item {
  height: 350px;
}

.section-17__grid-bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33.2% 30.4% auto;
  grid-template-columns: 33.2% 30.4% auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.section-17__grid-bottom .section-17__grid-item {
  height: 370px;
}

.section-17__grid-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-17__grid-image-3 {
  -o-object-position: 21% center;
     object-position: 21% center;
}

.section-18__content {
  position: absolute;
  left: 5.8%;
  top: 12%;
  width: 25%;
  z-index: 2;
}

.section-18__heading {
  font-size: 94px;
  line-height: 1.16;
  margin-bottom: 3.8rem;
}

.section-18__text {
  line-height: 1.4;
  font-size: 19px;
}

.section-18__right {
  position: absolute;
  top: 10%;
  right: 4%;
  width: 62.6%;
  min-height: 80%;
  display: -ms-grid;
  display: grid;
  gap: 10px;
}

.section-18__right-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 38% auto;
  grid-template-columns: 38% auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-18__right-logo-wrap {
  position: relative;
  height: 120px;
  width: 100%;
  overflow: hidden;
}

.section-18__right-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(0.92);
          transform: scale(0.92);
  -webkit-transform-origin: -185% 118%;
          transform-origin: -185% 118%;
}

.section-18__right-content {
  padding-top: 15px;
  padding-right: 30px;
}

.section-18__right-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.section-18__right-text {
  margin: 8px 22px 0 0;
  text-align: right;
  font-size: 16px;
}

.section-18__link {
  display: inline-block;
  color: var(--color-dark-blue);
  border: 1px solid var(--color-dark-blue);
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  line-height: 1;
  margin-top: auto;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-size: 20px;
  font-weight: 500;
}

.section-18__link:hover {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}

.section-18__grid {
  display: -ms-grid;
  display: grid;
  row-gap: 16px;
}

.section-18__grid-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 61.2% auto;
  grid-template-columns: 61.2% auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.section-18__grid-top .section-18__grid-item {
  height: 350px;
}

.section-18__grid-bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33.2% 30.4% auto;
  grid-template-columns: 33.2% 30.4% auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.section-18__grid-bottom .section-18__grid-item {
  height: 370px;
}

.section-18__grid-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-18__grid-image-1 {
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
}

.section-18__grid-image-2 {
  -o-object-position: 52% 96%;
     object-position: 52% 96%;
}

.section-19__content {
  position: absolute;
  left: 5.8%;
  top: 12%;
  width: 25%;
  z-index: 2;
}

.section-19__heading {
  font-size: 94px;
  line-height: 1.16;
  margin-bottom: 3.8rem;
}

.section-19__text {
  line-height: 1.4;
  font-size: 19px;
}

.section-19__right {
  position: absolute;
  top: 10%;
  right: 4%;
  width: 62.6%;
  min-height: 80%;
  display: -ms-grid;
  display: grid;
  gap: 10px;
}

.section-19__right-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 27% auto;
  grid-template-columns: 27% auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-19__right-logo-wrap {
  position: relative;
  height: 120px;
  width: 100%;
  overflow: hidden;
}

.section-19__right-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transform-origin: -2% 22%;
          transform-origin: -2% 22%;
}

.section-19__right-content {
  padding-top: 15px;
  padding-right: 30px;
}

.section-19__right-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.section-19__right-text {
  margin: 8px 22px 0 0;
  text-align: right;
  font-size: 16px;
}

.section-19__link {
  display: inline-block;
  color: var(--color-dark-blue);
  border: 1px solid var(--color-dark-blue);
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  line-height: 1;
  margin-top: auto;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-size: 20px;
  font-weight: 500;
}

.section-19__link:hover {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}

.section-19__grid {
  display: -ms-grid;
  display: grid;
  row-gap: 16px;
}

.section-19__grid-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 61.2% auto;
  grid-template-columns: 61.2% auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.section-19__grid-top .section-19__grid-item {
  height: 350px;
}

.section-19__grid-bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33.2% 30.4% auto;
  grid-template-columns: 33.2% 30.4% auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.section-19__grid-bottom .section-19__grid-item {
  height: 370px;
}

.section-19__grid-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.section-19__grid-image-3 {
  -o-object-position: center 79%;
     object-position: center 79%;
}

.section-20 .container {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.section-20__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  background-color: var(--color-black);
  gap: 10px;
}

.section-20__grid-item {
  position: relative;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 12%;
}

.section-20__grid-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 10, 57, 0.8);
  z-index: 2;
}

.section-20__grid-content {
  position: relative;
  z-index: 3;
}

.section-20__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}

.section-20__heading {
  font-size: 94px;
  line-height: 1.16;
  margin-bottom: 3.6rem;
}

.section-20__link {
  display: inline-block;
  color: var(--color-dark-blue);
  background-color: var(--color-white);
  padding: 14px 52px;
  border-radius: 40px;
  text-decoration: none;
  line-height: 1;
  margin-top: auto;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-size: 20px;
  font-weight: 400;
}

.section-20__link:hover {
  opacity: 0.8;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}

.section-20 .section__number {
  color: white;
}

.section-21 .container {
  padding: 5% 6%;
}

.section-21__heading {
  font-size: 72px;
  line-height: 1.16;
  padding-bottom: 2.7rem;
  margin-bottom: 3.2rem;
  border-bottom: 3px solid var(--color-primary);
}

.section-21__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-21__image {
  max-width: 180px;
  max-height: 100px;
}

.section-22 .container {
  background-color: var(--color-black);
  color: var(--color-white);
}

.section-22__heading {
  font-size: 84px;
  line-height: 1.16;
  margin-bottom: 9.5rem;
}

.section-22__bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 44.7%;
  z-index: 1;
  overflow: hidden;
}

.section-22__image {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.section-22__content {
  position: absolute;
  top: 11%;
  left: 4.6%;
  width: 50%;
}

.section-22__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 100px;
}

.section-22__grid-heading {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 1rem;
}

.section-22__grid-text {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.section-22__contacts {
  display: -ms-grid;
  display: grid;
  gap: 18px;
}

.section-22__contacts a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 17px;
  line-height: 1.2;
}

.section-22__contacts a:hover {
  text-decoration: underline;
}

.section-22__contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.section-22__contacts-phone,
.section-22__contacts-email {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section-22__contacts-phone {
  background-image: url("../images/icon-phone.svg");
}

.section-22__contacts-email {
  background-image: url("../images/icon-email.svg");
}

.section-22 .section__number {
  color: white;
}

.section-23 .container {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.section-23__image {
  display: block;
  width: 29%;
  height: auto;
  position: absolute;
  top: 11.4%;
  left: 0;
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
  z-index: 1;
}

.section-23__content {
  position: absolute;
  top: 21%;
  left: 31%;
  width: 56%;
  z-index: 2;
}

.section-23__heading {
  font-size: 29.6px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-23__text {
  position: relative;
  font-size: 47px;
  line-height: 1.15;
  margin-bottom: 3.6rem;
  font-weight: 300;
}

.section-23__text:before,
.section-23__text::after {
  position: absolute;
  font-size: 72px;
  font-family: var(--font-heading);
  font-size: 190px;
  line-height: 1;
}

.section-23__text:before {
  content: "“";
  top: -100px;
}

.section-23__text::after {
  content: "”";
  right: 0;
  bottom: -200px;
}

.section-23 .section__number {
  color: white;
}

.section-24 .container {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.section-24__heading {
  font-size: 70px;
  line-height: 1.16;
  margin-bottom: 2rem;
}

.section-24__text {
  padding-right: 40px;
  line-height: 1.4;
  margin-bottom: 3.2rem;
}

.section-24__bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 51%;
  z-index: 1;
  overflow: hidden;
}

.section-24__image {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
}

.section-24__content {
  position: absolute;
  top: 7%;
  left: 58.5%;
  width: 40%;
}

.section-24__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 54.2% auto;
  grid-template-columns: 54.2% auto;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 20px;
}

.section-24__grid a {
  text-decoration: none;
  color: var(--color-white);
}

.section-24__grid a:hover {
  text-decoration: underline;
}

.section-24__grid-heading {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 1rem;
}

.section-24__grid-text {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.section-24__grid-emails {
  line-height: 1.8;
}

.section-24__grid-socials a {
  text-decoration: underline;
}

.section-24__grid-locations {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding-left: 30px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.section-24__grid-locations > *:last-child:nth-child(odd) {
  -ms-grid-column: 2;
  grid-column: 2;
}

.section-24 .section__number {
  color: white;
}