@charset "UTF-8";
/*!Обнуляющй стиль*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

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

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

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

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

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

button {
  cursor: pointer;
}

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-size: inherit;
  font-weight: 400;
}

/*Конец обнуления*/
.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container {
  max-width: 1300px;
  padding: 0 10px;
  margin: 0 auto;
}

.content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

body {
  font-family: "Playfair Display", sans-serif;
  color: #2f2e2e;
}

body a {
  color: #2f2e2e;
}

._lock {
  overflow: hidden;
}

.title {
  font-size: clamp(31px, 4vw, 51px);
  font-weight: 900;
  font-family: "Playfair Display", sans-serif;
}

.header__container {
  padding: clamp(30px, 5vw, 47px) 10px clamp(30px, 5vw, 97px);
  position: relative;
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__title {
  font-family: Barlow, sans-serif;
  font-size: 42px;
  font-weight: 600;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke: 1.5px #000;
}

.header__menu {
  font-family: Inter, sans-serif;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.header__link {
  font-size: 20px;
  font-weight: 400;
  display: block;
  margin: 0 106px 0 0;
}

.header__link:last-child {
  margin: 0 64px 0 0;
}

.header__link._link-active {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  -webkit-text-stroke: 1px #000;
}

.header__button {
  cursor: pointer;
  width: 25px;
  height: 22px;
  margin: 0;
  font-family: Inter, sans-serif;
}

.header__search {
  position: absolute;
  right: 10px;
  top: -100%;
  -webkit-transition: top 0.5s ease 0s;
  transition: top 0.5s ease 0s;
}

.header__search._button-active {
  top: 50%;
}

.header__burger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.header__burger::before, .header__burger::after {
  content: '';
  width: 100%;
  height: 1.5px;
  background-color: #2f2e2e;
  position: absolute;
  left: 0;
}

.header__burger::after {
  bottom: 1px;
}

.header__burger::before {
  top: 1px;
}

.header__burger span {
  position: absolute;
  width: 100%;
  height: 100%;
}

.header__burger span::before {
  content: '';
  width: 100%;
  height: 1.5px;
  background-color: #2f2e2e;
  position: absolute;
  left: 0;
  bottom: 50%;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}

.header__burger._burger-active span {
  opacity: 0;
}

.header__burger._burger-active::after {
  background-color: #fff;
  top: 50%;
  -webkit-transform: rotate(45deg) translate(0, -50%);
          transform: rotate(45deg) translate(0, -50%);
}

.header__burger._burger-active::before {
  background-color: #fff;
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0, -50%);
          transform: rotate(-45deg) translate(0, -50%);
}

@media (max-width: 1280px) {
  .header__link {
    margin: 0 60px 0 0;
  }
  .header__link:last-child {
    margin: 0 40px 0 0;
  }
}

@media (max-width: 768px) {
  .header__menu {
    display: block;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2f2e2e;
    z-index: 9;
    -webkit-transition: top 500ms ease 0s;
    transition: top 500ms ease 0s;
    overflow: auto;
  }
  .header__menu._burger-active {
    top: 0;
  }
  .header__link {
    color: #eee;
    font-size: 32px;
    margin: 18px;
    display: block;
  }
  .header__link:last-child {
    margin: 18px;
  }
  .header__link._link-active {
    text-shadow: 0 4px 4px rgba(255, 255, 255, 0.4);
    -webkit-text-stroke: 1px #fff;
  }
  .header__burger {
    display: block;
    position: relative;
    z-index: 9;
  }
  .header__burger:before, .header__burger::after {
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
  .header__burger._burger-active {
    top: 0;
  }
  .header__button {
    margin: 0 32px 0 0;
  }
}

@media (max-width: 480px) {
  .header__title {
    font-size: 36px;
  }
}

.block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.block__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
}

.block__column_big {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 80%;
          flex: 0 1 80%;
  position: relative;
}

.block__switches {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
}

.block__arrow {
  padding: 16px 33px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  cursor: pointer;
  height: 100%;
  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;
  -o-object-fit: contain;
     object-fit: contain;
}

.block__arrow_right {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.block__body {
  position: absolute;
  max-width: 691px;
  max-height: 550px;
  padding: clamp(5px, 4vw, 138px) clamp(5px, 4vw, 155px) clamp(5px, 4vw, 139px) clamp(5px, 4vw, 100px);
  top: 50%;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.block__title {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke: 1.5px #000;
  margin: 0 0 25px 0;
}

.block__text {
  font-size: clamp(19px, 3vw, 32px);
  font-weight: 200;
  font-family: Inter, sans-serif;
  max-width: 440px;
}

.block__slider {
  position: relative;
  padding: 0 0 48.213% 0;
  overflow: hidden;
}

.block__image {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: right 1s ease 0s;
  transition: right 1s ease 0s;
  opacity: 0;
}

.block__image img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.block__image[data-active] {
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s;
  transition: opacity 1s ease 0s;
}

@media (max-width: 768px) {
  .block__title {
    font-size: clamp(24px, 5vw, 31px);
  }
  .block__text {
    font-size: clamp(16px, 5vw, 32px);
  }
  .block__arrow {
    padding: 8px 16.5px;
  }
}

@media (max-width: 640px) {
  .block__row {
    display: block;
  }
  .block__body {
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    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;
    text-align: center;
  }
  .block__title {
    line-height: 28px;
    margin: 0 0 20px 0;
  }
  .block__text {
    font-weight: normal;
  }
  .block__slider {
    background-color: #fff;
  }
}

@media (max-width: 425px) {
  .block__arrow {
    display: none;
  }
}

.services {
  font-family: "Playfair Display", sans-serif;
  background-color: #d3dbdb;
}

.services__container {
  padding: 16px 10px 65px;
}

.services__title {
  text-align: center;
  margin: 0 0 45px 0;
}

.services__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.services__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
}

.services__image {
  background-color: #254d4d;
  border-radius: 50%;
  width: 103px;
  height: 103px;
  padding: 24px;
  margin: 0 auto 8px auto;
}

.services__image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.services__sub-title {
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 900;
  margin: 0 0 9px 0;
}

.services__text {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  max-width: 165px;
  margin: 0 auto;
  line-height: 22px;
}

@media (max-width: 768px) {
  .services__image {
    background-color: #254d4d;
    border-radius: 50%;
    width: 63px;
    height: 63px;
    padding: 17px;
    margin: 0 auto 8px auto;
  }
  .services__image img {
    max-width: 36px;
    max-height: 35px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .services__image img_1 {
    width: 40px;
    height: 45px;
  }
  .services__image img_2 {
    width: 47px;
    height: 45px;
  }
  .services__image img_3 {
    width: 43px;
    height: 44px;
  }
}

@media (max-width: 425px) {
  .services__image {
    width: 51px;
    height: 51px;
    padding: 10.25px 0;
  }
  .services__image img {
    width: 100%;
    height: 100%;
  }
  .services__container {
    padding: 20px;
  }
  .services__title {
    font-size: 29px;
    margin: 0 0 32px 0;
  }
  .services__row {
    display: block;
  }
  .services__column {
    margin: 0 0 25px 0;
  }
  .services__text {
    line-height: 14px;
  }
}

.about {
  position: relative;
}

.about__container {
  padding: 68px 15px 111px;
}

.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -42.5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about__column {
  margin: 0 42.5px;
}

.about__column_1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
}

.about__column_2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}

.about__image {
  max-width: 735px;
  max-height: 571px;
}

.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__title {
  margin: 0 0 27px 0;
}

.about__text {
  font-size: clamp(16px, 3vw, 31px);
  line-height: clamp(26px, 5vw, 51px);
  margin: 0 0 36px 0;
}

.about__btn {
  font-weight: 600;
  font-size: clamp(16px, 3vw, 24px);
  font-family: Inter, sans-serif;
  background-color: transparent;
}

.about__info-about {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: left 500ms ease 0s;
  transition: left 500ms ease 0s;
  z-index: 0;
}

.about__info-about._info-active {
  left: 0;
}

.info-about {
  z-index: 9;
}

.info-about__body {
  width: 700px;
  height: 100%;
  max-height: 500px;
  margin: 0 auto;
  background-color: #fff;
  overflow: auto;
}

.info-about__exit {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.info-about__exit:before, .info-about__exit:after {
  content: '';
  width: 2px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0 -1px;
}

.info-about__exit:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.info-about__exit:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.info-about__text {
  overflow: auto;
  height: 100%;
  padding: 10px;
}

.info-about__text p {
  margin: 0 0 25px 0;
  color: #2F2E2E;
  font-size: 28px;
  text-align: justify;
  font-family: Inter, sans-serif;
}

.info-about__text p:last-child {
  margin: 0;
}

@media (max-width: 1024px) {
  .about__row {
    margin: 0 -20px;
  }
  .about__column {
    margin: 0 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
  .info-about {
    padding: 5px 0;
  }
  .info-about__body {
    padding: 60px 10px 10px 10px;
    position: relative;
  }
  .info-about__exit {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
  }
  .info-about__exit::before, .info-about__exit::after {
    background-color: #000;
  }
}

@media (max-width: 425px) {
  .about__container {
    padding: 0 10px 50px;
  }
  .about__row {
    display: block;
    text-align: center;
  }
  .about__column {
    margin: 0 0 25px 0;
  }
  .about__column_2 {
    padding: 0 15px;
  }
  .about__title {
    margin: 0 0 15px 0;
  }
  .about__text {
    margin: 0 0 20px 0;
  }
}

.projects {
  font-family: "Playfair Display", sans-serif;
}

.projects__container {
  margin: 0 auto 90px auto;
}

.projects__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Inter, sans-serif;
  margin: 0 0 71px 0;
}

.projects__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
}

.projects__burger {
  min-width: 35px;
  min-height: 30px;
  position: relative;
  display: none;
}

.projects__burger::before, .projects__burger::after {
  content: '';
  width: 100%;
  height: 1.5px;
  min-height: 1.5px;
  max-height: 1.5px;
  background-color: #2F2E2E;
}

.projects__burger::before {
  position: absolute;
  top: 3px;
  right: 0;
}

.projects__burger::after {
  position: absolute;
  bottom: 3px;
  right: 0;
}

.projects__burger span {
  position: absolute;
  width: 35px;
  height: 30px;
}

.projects__burger span::before {
  content: '';
  -webkit-transition: width .5s ease 0s;
  transition: width .5s ease 0s;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 50%;
  height: 1.5px;
  min-height: 1.5px;
  max-height: 1.5px;
  background-color: #2F2E2E;
}

.projects__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 135px 0 0;
}

.projects__body:last-child {
  margin: 0;
}

.projects__sub-menuText {
  margin: 0 94px 0 0;
}

.projects__sub-menuText:last-child {
  margin: 0;
}

.projects__sub-menuText_active {
  font-weight: bold;
}

.projects__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -43px -52px;
}

.projects__column {
  margin: 43px 52px;
}

.projects__image {
  max-width: 344px;
  max-height: 193px;
  margin: 0 0 13px 0;
}

.projects__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects__text {
  text-align: center;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .projects__body {
    margin: 0 60px 0 0;
  }
  .projects__sub-menuText {
    margin: 0 40px 0 0;
  }
  .projects__row {
    margin: -30px -20px;
  }
  .projects__column {
    margin: 30px 20px;
  }
}

@media (max-width: 768px) {
  .projects__menu {
    font-size: 16px;
    position: absolute;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    top: -10000%;
    margin: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transition: top .5s ease 0s;
    transition: top .5s ease 0s;
  }
  .projects__menu._project-active {
    top: 50px;
  }
  .projects__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .projects__item {
    position: relative;
  }
  .projects__title {
    margin: 0 30px 0 0;
  }
  .projects__burger {
    display: block;
    z-index: 2;
  }
  .projects__burger._project-burger span::before {
    -webkit-transition: width .5s ease 0s;
    transition: width .5s ease 0s;
    width: 100%;
  }
}

@media (max-width: 320px) {
  .projects__body {
    margin: 0 20px 0 0;
  }
}

.testimonial__container {
  margin: 0 auto 51px auto;
  overflow: hidden;
  padding: 0;
}

.testimonial__title {
  text-align: center;
  margin: 0 0 91px 0;
}

.testimonial__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -7.5px 67px;
  position: relative;
  left: 0;
  -webkit-transition: left 500ms ease 0s;
  transition: left 500ms ease 0s;
  max-width: 100%;
}

.testimonial__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  margin: 0 7.5px;
  padding: 0 10px;
  min-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial__column:last-child {
  margin: 0;
}

.testimonial__image {
  margin: 0 29px 0 0;
  max-width: 151px;
  max-height: 151px;
  min-width: 110px;
  min-height: 110px;
  border-radius: 50%;
}

.testimonial__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial__sub-title {
  font-size: 28px;
  margin: 0 0 16px 0;
  font-weight: 700;
}

.testimonial__text {
  max-width: 307px;
  font-size: clamp(14px, 5vw, 17px);
  line-height: clamp(16px, 5vw, 22px);
}

.testimonial__part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 15px 0;
  padding: 0 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.testimonial__circle {
  width: 12px;
  height: 12px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #E9E9E9;
  margin: 0 20px 25px 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: transform, background-color;
  transition-property: transform, background-color, -webkit-transform;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}

.testimonial__circle:last-child {
  margin: 0 0 25px 0;
}

.testimonial__circle_active {
  background-color: #C4C4C4;
}

@media (hover: hover) {
  .testimonial__circle:hover {
    background-color: #C4C4C4;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@media (max-width: 768px) {
  .testimonial__sub-title {
    font-size: 18px;
    margin: 0 0 10px 0;
  }
  .testimonial__text {
    font-size: 14px;
    line-height: 18px;
  }
  .testimonial__image {
    margin: 0 15px 0 0;
  }
}

@media (max-width: 551px) {
  .testimonial__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

.footer {
  background-color: #2E2F32;
  color: #FAFAFA;
  font-family: Inter, sans-serif;
}

.footer a {
  color: #FAFAFA;
}

.footer__container {
  padding: 44px 10px;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -7.5px;
}

.footer__column {
  margin: 0 7.5px;
}

.footer__title {
  font-size: clamp(24px, 5vw, 42px);
  font-family: Barlow, sans-serif;
  margin: 0 0 7px 0;
  font-weight: 600;
}

.footer__text {
  max-width: 300px;
  font-size: clamp(14px, 5vw, 17px);
  line-height: 29px;
  margin: 0 0 50px 0;
}

.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__icon {
  display: block;
  margin: 0 36px 0 0;
  max-width: 25px;
  max-height: 25px;
}

.footer__icon:last-child {
  margin: 0;
}

.footer__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__sub-title {
  font-size: clamp(18px, 5vw, 24px);
  margin: 0 0 18px 0;
  font-weight: 900;
}

.footer__list {
  margin: 0 0 15px 0;
  display: block;
  font-size: clamp(14px, 5vw, 17px);
  line-height: 21px;
  margin: 0 0 15px 0;
  max-width: 205px;
}

.footer__map {
  max-width: 295px;
  height: 82.5%;
}

.footer__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .footer__container {
    padding: 44px 10px 14px;
  }
  .footer__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__column {
    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;
    text-align: center;
    margin: 0 0 30px 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}

@media (max-width: 425px) {
  .footer__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
