@font-face {
  font-family: AllRoundGothic;
  font-display: swap;
  src: url("../fonts/AllRoundGothic-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: LiberationSans;
  font-display: swap;
  src: url("../fonts/LiberationSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: LiberationSans;
  font-display: swap;
  src: url("../fonts/LiberationSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  min-width: 320;
}

body {
  line-height: 1;
  font-size: 14px;
  font-family: LiberationSans;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: LiberationSans;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

[class*=__container] {
  max-width: 90rem;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media screen and (max-width: 48.06125em) {
  [class*=__container] {
    padding: 0 14px;
  }
}

body {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
}
body._lock {
  overflow: hidden;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --red: #e83b34;
  --primary: #000069;
  --dark: #00002d;
  --text: #222a22;
}

.header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 48.06125em) {
  .header__container {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 48.06125em) {
  .header__logo img {
    width: 170px;
    height: 38.36px;
  }
}
.menu__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 48.06125em) {
  .menu__body {
    display: none;
  }
}
.menu__list {
  display: flex;
}
.menu__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--dark);
  padding: 34.5px 20px;
  display: block;
  position: relative;
  transition: 0.2s;
}
.menu__link::before {
  content: "";
  position: absolute;
  height: 28px;
  width: 2px;
  background-color: var(--red);
  left: 50%;
  transform: translateX(-50%);
  bottom: -100%;
  transition: 0.2s;
}
.menu__link:hover, .menu__link._active {
  color: var(--red);
  font-weight: 700;
}
.menu__link:hover::before, .menu__link._active::before {
  bottom: 0;
}
.lang__items {
  display: flex;
  gap: 22px;
}
@media screen and (max-width: 48.06125em) {
  .lang__items {
    gap: 10px;
  }
}
.lang__button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--dark);
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang__button:hover, .lang__button_active {
  background-color: var(--dark);
  color: var(--white);
}
@media screen and (max-width: 48.06125em) {
  .lang__button {
    width: 32px;
    height: 30px;
  }
}

.main-slider {
  height: 712px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 48.06125em) {
  .main-slider {
    height: 500px;
  }
}
@media screen and (max-width: 29.99875em) {
  .main-slider {
    height: 274px;
  }
}
.main-slider__swiper {
  height: 100%;
  position: absolute;
  z-index: 0;
  width: 100%;
  inset: 0;
}
.main-slider__slide {
  height: 100%;
  position: relative;
}
.main-slider__background {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  left: 0;
  top: 0;
}
.main-slider__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-slider__container {
  height: 100%;
}
.main-slider__box {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-slider__title {
  font-family: AllRoundGothic;
  font-size: 60px;
  line-height: 70px;
  color: var(--dark);
}
@media screen and (max-width: 48.06125em) {
  .main-slider__title {
    font-size: 45px;
    line-height: 55px;
  }
}
@media screen and (max-width: 29.99875em) {
  .main-slider__title {
    font-size: 30px;
    line-height: 35px;
  }
}
.main-slider__sub-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--dark);
  margin-top: 4px;
}
@media screen and (max-width: 48.06125em) {
  .main-slider__sub-title {
    font-size: 18px;
    line-height: 22px;
  }
}
@media screen and (max-width: 29.99875em) {
  .main-slider__sub-title {
    font-size: 16px;
    line-height: 19px;
  }
}
.main-slider__button {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--dark);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 60px;
  border: 1px solid var(--dark);
  transition: 0.2s;
  border-radius: 14px;
  margin-top: 28px;
}
.main-slider__button:hover {
  background-color: var(--dark);
  color: var(--white);
}
@media screen and (max-width: 48.06125em) {
  .main-slider__button {
    font-size: 16px;
    line-height: 19px;
    padding: 17px 42px;
  }
}
.main-slider .swiper-wrapper {
  display: flex;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
}
.main-slider .swiper-pagination {
  position: absolute;
  z-index: 1;
  bottom: 23px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.main-slider .swiper-pagination-bullet {
  background: var(--white);
  border: 1px solid var(--dark);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  cursor: pointer;
}
.main-slider .swiper-pagination-bullet-active {
  background-color: var(--dark);
  border-color: var(--white);
}

.blockquote {
  margin-bottom: 200px;
  position: relative;
}
@media screen and (max-width: 48.06125em) {
  .blockquote {
    margin-bottom: 82px;
  }
}
.blockquote__container {
  height: 100%;
}
.blockquote__wrapper {
  height: 100%;
  width: 100%;
}
.blockquote__background {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: -414px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.blockquote__background img {
  width: 100%;
  height: 1395.63px;
}
.blockquote__background img:last-child {
  display: none;
}
@media screen and (max-width: 29.99875em) {
  .blockquote__background {
    width: 100%;
    height: 783.42px;
    left: 0;
    top: -287px;
  }
  .blockquote__background img {
    width: 100%;
    height: 100%;
    display: none;
  }
  .blockquote__background img:last-child {
    display: block;
  }
}
.blockquote__box {
  height: 100%;
  width: 100%;
  padding-top: 191px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 48.06125em) {
  .blockquote__box {
    padding-top: 55px;
  }
}
@media screen and (max-width: 48.06125em) {
  .blockquote__logo img {
    width: 168.91px;
    height: 150.8px;
  }
}
.blockquote__text {
  font-family: AllRoundGothic;
  font-size: 40px;
  line-height: 47px;
  text-align: center;
  color: var(--primary);
  margin-top: 63px;
}
@media screen and (max-width: 48.06125em) {
  .blockquote__text {
    font-size: 20px;
    line-height: 23px;
    margin-top: 40px;
  }
}

.about-us {
  background: #f7f8fc;
}
.about-us__wrapper {
  display: flex;
  align-items: center;
  padding: 77px 134px;
  gap: 70px;
}
@media screen and (max-width: 61.99875em) {
  .about-us__wrapper {
    padding: 40px 0;
  }
}
@media screen and (max-width: 48.06125em) {
  .about-us__wrapper {
    flex-direction: column;
    gap: 0;
  }
}
.about-us__images {
  padding: 33px 43px;
  position: relative;
}
@media screen and (max-width: 48.06125em) {
  .about-us__images {
    padding: 20px 30px;
  }
}
.about-us__image {
  width: 400px;
  height: 500px;
  border-radius: 30px;
}
@media screen and (max-width: 61.99875em) {
  .about-us__image {
    width: 297.96px;
    height: 372.45px;
  }
}
.about-us__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 30px;
}
.about-us__image:last-child {
  position: absolute;
  transform: rotate(-10.71deg);
  left: 27px;
  top: 27px;
  opacity: 0.1;
}
.about-us__mobile-title {
  font-family: AllRoundGothic;
  font-size: 30px;
  line-height: 35px;
  color: var(--primary);
  display: none;
  margin-bottom: 10px;
  width: 100%;
}
@media screen and (max-width: 48.06125em) {
  .about-us__mobile-title {
    display: block;
  }
}
.about-us__title {
  font-family: AllRoundGothic;
  font-size: 40px;
  line-height: 47px;
  color: var(--primary);
}
@media screen and (max-width: 48.06125em) {
  .about-us__title {
    display: none;
  }
}
.about-us__text {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  color: var(--dark);
  margin-top: 30px;
}
@media screen and (max-width: 48.06125em) {
  .about-us__text {
    font-size: 16px;
    line-height: 26px;
    margin-top: 25px;
  }
}

.gallery__wrapper {
  padding: 100px 0;
}
@media screen and (max-width: 48.06125em) {
  .gallery__wrapper {
    padding: 60px 0;
  }
}
.gallery__main-title {
  font-family: AllRoundGothic;
  font-size: 40px;
  line-height: 47px;
  color: var(--primary);
}
@media screen and (max-width: 48.06125em) {
  .gallery__main-title {
    font-size: 30px;
    line-height: 35px;
  }
}
.gallery__row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 50px 40px;
}
@media screen and (max-width: 48.06125em) {
  .gallery__row {
    margin-top: 20px;
    grid-gap: 26px;
  }
}
.gallery__col {
  grid-column-start: span 6;
}
.gallery__col_big {
  grid-column-start: span 4;
}
.gallery__col_small {
  grid-column-start: span 2;
}
.gallery__col_medium {
  grid-column-start: span 3;
}
@media screen and (max-width: 48.06125em) {
  .gallery__col_big {
    grid-column-start: span 6;
  }
  .gallery__col_small {
    grid-column-start: span 6;
  }
  .gallery__col_medium {
    grid-column-start: span 6;
  }
}
.gallery__box {
  width: 100%;
}
.gallery__img {
  height: 460px;
  border-radius: 30px;
}
.gallery__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 30px;
}
.gallery__content {
  margin-top: 20px;
  padding: 0 20px;
}
@media screen and (max-width: 48.06125em) {
  .gallery__content {
    margin-top: 10px;
    padding: 0;
  }
}
.gallery__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--primary);
}
@media screen and (max-width: 48.06125em) {
  .gallery__title {
    font-size: 18px;
    line-height: 22px;
  }
}
.gallery__sub-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--dark);
  margin-top: 6px;
}
@media screen and (max-width: 48.06125em) {
  .gallery__sub-title {
    font-size: 14px;
    line-height: 17px;
  }
}

.services {
  background: #f7f8fc;
}
.services__gallery .gallery__wrapper {
  padding: 40px 0;
}

.contacts {
  margin-top: 100px;
}
@media screen and (max-width: 48.06125em) {
  .contacts {
    margin-top: 40px;
  }
}
.contacts__wrapper {
  background: var(--primary);
  border-radius: 54px;
  position: relative;
  padding: 40px;
  overflow: hidden;
}
@media screen and (max-width: 48.06125em) {
  .contacts__wrapper {
    padding: 40px 14px;
  }
}
.contacts__background {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  z-index: 0;
}
@media screen and (max-width: 500px) {
  .contacts__background {
    left: 0;
    width: 100%;
    height: calc(100vw - 28px);
    right: 0;
    top: -70px;
    transform: none;
  }
  .contacts__background img {
    width: 100%;
    height: 100%;
    transform: rotate(90deg);
  }
}
.contacts__title {
  font-family: AllRoundGothic;
  font-size: 40px;
  line-height: 47px;
  text-align: center;
  color: var(--white);
}
@media screen and (max-width: 48.06125em) {
  .contacts__title {
    font-size: 30px;
    line-height: 35px;
  }
}
.contacts__box {
  margin: 0 auto;
  margin-top: 60px;
  max-width: 950px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 48.06125em) {
  .contacts__box {
    flex-direction: column-reverse;
    margin-top: 20px;
  }
}
.contacts__content {
  max-width: 356px;
}
@media screen and (max-width: 48.06125em) {
  .contacts__content {
    max-width: 100%;
    margin-top: 40px;
  }
}
.contacts__contact {
  display: flex;
  gap: 8px;
}
.contacts__contact p {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--white);
}
@media screen and (max-width: 48.06125em) {
  .contacts__contact p {
    font-size: 16px;
    line-height: 19px;
  }
}
.contacts__contact:not(:first-child) {
  margin-top: 30px;
}
.contacts__form {
  width: 498px;
}
@media screen and (max-width: 500px) {
  .contacts__form {
    width: 100%;
  }
}
.contacts__input {
  display: block;
  height: 56px;
  background: var(--white);
  border-radius: 14px;
  width: 100%;
  padding: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #222a22;
  margin-bottom: 20px;
}
.contacts__textarea {
  display: block;
  height: 118px;
  background: var(--white);
  border-radius: 14px;
  width: 100%;
  padding: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #222a22;
  margin-bottom: 30px;
}
.contacts__submit {
  border: 1px solid var(--white);
  border-radius: 14px;
  background-color: transparent;
  width: 100%;
  padding: 19px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--white);
  transition: 0.2s;
}
.contacts__submit:hover {
  background-color: var(--white);
  color: var(--primary);
}

.footer {
  padding: 30px;
}
.footer__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: var(--primary);
}