@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap);
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: var(--body-font);
}
html {
  scroll-behavior: smooth;
  font-size: 10px;
}
body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 16px;
  background: var(--white-color);
  color: var(--text-color);
}
img {
  height: auto;
  max-width: 100%;
}
a {
  text-decoration: none;
  font-family: var(--body-font);
  color: var(--white-color);
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  color: var(--text-color);
  font-weight: var(--title-weight);
  line-height: var(--line-big);
}
button,
input {
  border: none;
  outline: 0;
  background: 0 0;
}
button {
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  line-height: var(--line-base);
}
:root {
  --header-height: 5rem;
  --text-color: #333;
  --white-color: #fff;
  --yellow-color: rgb(255, 255, 0);
  --orange-color: rgb(220, 185, 4);
  --main-bg-color: rgba(61, 115, 133, 0.5);
  --brand-color: rgb(255, 0, 0);
  --brand-color-darken-10: rgb(210, 0, 0);
  --link-color: rgb(25, 179, 230);
  --dark-bg-color: rgb(36, 36, 36);
  --body-font: 'Open Sans', sans-serif;
  --biggest-font-size: 4rem;
  --h1-font-size: 2.8rem;
  --h2-font-size: 3.2rem;
  --h3-font-size: 1.9rem;
  --phone-font-size: 2.2rem;
  --normal-font-size: 1.6rem;
  --small-font-size: 1.4rem;
  --smaller-font-size: 1.2rem;
  --border-radius-1: 4px;
  --border-radius-2: 8px;
  --border-radius-3: 12px;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-black: 900;
  --line-base: 1;
  --line-normal: 1.2;
  --line-big: 1.35;
  --line-large: 1.45;
}
.section {
  padding: 2.4rem 0 3.6rem;
}
@media screen and (max-width: 568px) {
  .section {
    padding: 2rem 0;
  }
}
.section__title {
  margin: 0 auto 2rem;
  width: 100%;
  max-width: 1170px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: var(--h2-font-size);
  text-align: center;
}
.container {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: 1170px;
}
.text-accent {
  color: var(--yellow-color);
}
.label {
  margin-bottom: 1.6rem;
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 1.4rem;
}
.input {
  margin-top: 0.4rem;
  padding: 1.2rem 1.2rem;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  font-size: 1.4rem;
  border-radius: 4px;
}
.button {
  padding: 1.2rem 1.6rem;
  background-color: var(--brand-color);
  color: var(--white-color);
  border-radius: 8px;
  border-width: 1px 1px 5px 1px;
  border-style: solid;
  border-color: var(--brand-color-darken-10);
  font-weight: 600;
  font-size: 1.8rem;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 568px) {
  .button {
    font-size: 1.6rem;
  }
}
.button:hover {
  background-color: #ef0505;
}
.button:active {
  border-top-width: 5px;
  border-bottom-width: 1px;
}
.form {
  padding: 1.6rem;
  margin-top: 1.2rem;
  width: 100%;
  max-width: 360px;
  background-color: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.form-title {
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}
.form-button {
  margin-top: 0.8rem;
  padding: 1.2rem;
  border-width: 1px 1px 4px 1px;
}
.tel {
  color: var(--link-color);
  font-size: 2.2rem;
  font-weight: 700;
}
.primary {
  padding: 2.4rem 0 3.6rem;
  background: url(../img/main-bg.jpg) center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.primary::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.primary-content {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .primary-content {
    margin-top: 32px;
  }
}
.primary-content__subtitle {
  padding: 0 0.8rem;
  background-color: var(--yellow-color);
  color: #000;
  font-size: var(--h3-font-size);
  display: inline;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .primary-content__subtitle {
    text-align: center;
  }
}
.primary-content__list {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .primary-content__list {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.primary-content__item {
  margin-bottom: 2px;
  padding-left: 2rem;
  background: url(../img/ok.png) no-repeat center;
  background-position: 0 center;
}
.primary-content__item:last-child {
  margin-bottom: 0;
}
.primary-content__text {
  padding: 0 0.4rem;
  background-color: var(--yellow-color);
  font-weight: 600;
  font-size: 1.9rem;
  color: #000;
}
.primary-content__wrap {
  margin-top: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .primary-content__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.primary-content__left {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .primary-content__left {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
}
.primary-content__right {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .primary-content__right {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.primary-content__legend {
  padding: 1.2rem;
  margin-top: 60px;
  width: 100%;
  max-width: 360px;
  background-color: var(--main-bg-color);
  border-radius: 8px;
  color: var(--yellow-color);
  text-align: center;
  font-size: 1.6rem;
}
.primary-content__form {
  padding: 1.6rem;
  margin-top: 1.2rem;
  width: 100%;
  max-width: 360px;
  background-color: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.primary-title {
  padding: 1.6rem 5rem;
  text-align: center;
  background-color: var(--main-bg-color);
  color: var(--white-color);
  border-radius: 8px;
  font-size: var(--biggest-font-size);
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .primary-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .primary-title {
    font-size: 2.1rem;
  }
}
.header {
  padding: 1.6rem;
  background-color: var(--main-bg-color);
  border-radius: var(--border-radius-2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.header-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.header-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .header-right {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 568px) {
  .header-right {
    margin-top: 1.2rem;
  }
}
.header-phone {
  color: var(--yellow-color);
  font-size: 2.6rem;
  font-weight: var(--font-bold);
  white-space: nowrap;
}
.header__button {
  padding: 0.8rem 2rem;
  border-width: 1px 1px 4px 1px;
  margin-top: 0.8rem;
}
.logo {
  margin-right: 2.4rem;
}
@media screen and (max-width: 568px) {
  .logo {
    margin-bottom: 0.8rem;
  }
}
.nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
@media screen and (max-width: 568px) {
  .nav__list {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.nav__item {
  padding: 12px 16px;
}
@media screen and (max-width: 568px) {
  .nav__item {
    padding: 0.8rem 1.6rem;
  }
}
.nav__link {
  color: var(--white-color);
  font-family: var(--body-font);
  font-weight: var(--font-bold);
}
.example__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .example__list {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 568px) {
  .example__list {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.example__item {
  padding: 1.2rem 1.2rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.example__img {
  width: 100%;
  height: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
  object-fit: cover;
}
.example__title {
  padding: 1.2rem 0 0.8rem;
  font-weight: 700;
}
.example__action {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.share {
  padding: 80px 0;
  position: relative;
  background-attachment: fixed;
  background-image: url(../img/share-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 568px) {
  .share {
    padding: 24px 0;
  }
}
.share::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.44);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.share__container {
  padding: 3.2rem 1.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(48, 48, 48, 0.5);
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .share__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.share-left {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .share-left {
    width: 100%;
  }
}
.share-right {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .share-right {
    width: 100%;
  }
}
.share__title {
  color: #fff;
}
.share__accent {
  margin-bottom: 0.8rem;
  padding: 0 0.8rem;
  background-color: var(--yellow-color);
  color: #000;
  display: inline;
  font-weight: 700;
}
.share__accent:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .share-form {
    margin-top: 2.4rem;
  }
}
.trust__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .trust__container {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 568px) {
  .trust__container {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8rem;
  }
}
.trust__item {
  padding: 2rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.trust__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.trust__text {
  text-align: center;
}
.how {
  padding: 4rem 0 5.6rem;
  color: #fff;
  background-image: url(../img/how-bg.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: 1;
  position: relative;
}
.how::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.how__title {
  color: #fff;
}
.how__container {
  margin-top: 4.8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
  grid-template-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .how__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
  }
}
.how-item {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.how-item__img {
  margin-bottom: 0.8rem;
  height: 126px;
  width: 126px;
  -o-object-fit: cover;
  object-fit: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.how-item__title {
  font-size: 1.9rem;
  font-weight: 500;
}
.how-item__text {
  margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .how-item__text {
    margin-bottom: 2rem;
  }
}
.how-arrow {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .how-arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.ask {
  padding: 3.2rem;
}
.ask__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.ask__text {
  margin-bottom: 0.4rem;
  font-size: 1.9rem;
}
.ask__link {
  margin-bottom: 0.4rem;
  color: var(--link-color);
}
.ask-button {
  margin-top: 2.8rem;
}
.map {
  margin-top: 2.4rem;
  width: 100%;
  height: 400px;
  position: relative;
}
.map__wrap {
  padding: 2.4rem;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 500px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .map__wrap {
    padding: 1.6rem;
  }
}
.map__iframe {
  height: 100%;
  width: 100%;
}
.map__title {
  font-size: 6rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .map__title {
    font-size: 4rem;
  }
}
.map__subtitle {
  margin-top: 1.2rem;
  font-size: 1.9rem;
}
.footer {
  padding: 3.2rem 0;
  background-color: var(--dark-bg-color);
  color: #fff;
}
.footer__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .footer__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.footer-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer-left {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.8rem;
  }
}
.footer-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .footer-right {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.8rem;
  }
}
.footer__text:last-of-type {
  margin-bottom: 0;
}
.footer__email {
  font-size: 1.9rem;
  color: var(--link-color);
  text-decoration: underline;
}
.footer-adress {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer-adress {
    margin-bottom: 1.2rem;
  }
}
.footer-adress__icon {
  height: 32px;
  width: 32px;
}
.footer__icon {
  height: 32px;
  width: 32px;
}
.footer-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__button {
  margin-top: 1.2rem;
  font-size: 1.6rem;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: none;
}
.popup.visible {
  display: block;
}
.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.popup-close {
  padding: 0.4rem;
  position: absolute;
  top: 12px;
  right: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.popup-close:hover {
  color: var(--brand-color);
}
.popup__form {
  padding: 2.4rem 2rem;
  max-width: 400px;
  position: relative;
}
.popup__form-title {
  font-size: 1.9rem;
  text-align: left;
}
