@charset "UTF-8";
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

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

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

.none {
  display: none;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

body {
  font-family: "Manrope", sans-serif;
}

.page {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  color: rgb(101, 117, 139);
  font-family: "Manrope", sans-serif;
  background-color: rgb(244, 248, 254);
}

.conteiner {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1620px;
}

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

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

.header {
  position: relative;
  padding-top: 25px;
  z-index: 1;
}

.header__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

.header__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.img_countries {
  position: absolute;
  right: 5px;
  top: 100px;
}

.block_main {
  gap: 21px;
}

.man ul {
  padding: 18px 25px;
  border-radius: 50px;
  box-shadow: 0px 2px 12px 0px rgba(20, 34, 81, 0.12);
  gap: 24px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
}
.man ul a {
  font-size: calc(9px + 9 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(101, 117, 139);
}
.man ul a:hover {
  color: rgb(0, 0, 92);
}

.block_contacts {
  padding: 6px 8px;
  border-radius: 50px;
  box-shadow: 0px 2px 12px 0px rgba(20, 34, 81, 0.12);
  background-color: rgb(255, 255, 255);
}
.block_contacts a {
  font-size: calc(9px + 7 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(15, 23, 41);
}

.btn_consultation {
  border-radius: 50px;
  font-size: calc(9px + 5 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(0, 0, 92);
  border: 1px solid rgb(0, 0, 92);
  padding: 14px 11px;
}

.btn_consultation:hover {
  transition: 0.8s;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 92);
}

/* скрываем чекбокс */
#menu__toggle {
  opacity: 0;
}

/* стилизуем кнопку */
.menu__btn {
  display: flex; /* используем flex для центрирования содержимого */
  align-items: center; /* центрируем содержимое кнопки */
  position: absolute;
  top: 20px;
  left: 10px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
  display: none;
}

/* добавляем "гамбургер" */
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
}

.menu__btn > span::before {
  content: "";
  top: -8px;
}

.menu__btn > span::after {
  content: "";
  top: 8px;
}

/* контейнер меню */
.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
}

/* элементы меню */
.menu__item {
  display: block;
  padding: 12px 24px;
  color: rgb(101, 117, 139);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.menu__item:hover {
  color: rgb(0, 0, 92);
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}

#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  transition-duration: 0.25s;
}

.menu__box {
  transition-duration: 0.25s;
}

.menu__item {
  transition-duration: 0.25s;
}

.header__content {
  position: relative;
  z-index: 0;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.header__content h1 {
  margin-bottom: 10px;
  max-width: 550px;
  font-size: calc(30px + 34 * (100vw - 320px) / 1600);
  font-weight: 500;
  line-height: 0.8;
  color: rgb(101, 117, 139);
}
.header__content p {
  font-size: calc(16px + 8 * (100vw - 320px) / 1600);
  font-weight: 500;
  line-height: 1.2;
  color: rgb(101, 117, 139);
  max-width: 525px;
}

.header__content_man {
  display: flex;
  gap: 12px;
}

.pick,
.plans {
  border-radius: 50px;
  font-size: calc(10px + 4 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(0, 0, 92);
  border: 1px solid rgb(0, 0, 92);
  padding: 14px 30px;
}

.plans {
  padding: 14px 47.5px;
}

.pick:hover,
.plans:hover {
  transition: 0.8s;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 92);
}

.text_span {
  color: rgb(20, 34, 81);
}

.header__block_iconck {
  margin-top: 300px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.iconck {
  display: flex;
  align-items: center;
  gap: 4px;
}
.iconck p {
  font-size: calc(9px + 9 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(101, 117, 139);
}

@media (max-width: 1150px) {
  .man ul {
    padding: 18px 25px;
    gap: 15px;
  }
  .block_contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }
  .header__img {
    top: 300px;
  }
  .header__content {
    margin-top: 30px;
  }
  .img_countries {
    top: 400px;
  }
  .header__block_iconck {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 50px;
    margin-top: 80px;
  }
  .header__block_iconck .iconck {
    max-width: 30px;
  }
}
@media (max-width: 700px) {
  .menu__btn {
    display: block;
    top: 26px;
    left: 10px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
  }
  .btn_consultation {
    padding: 10px 6px;
  }
  .man {
    display: none;
  }
  .header__top {
    padding-left: 50px;
    justify-content: space-around;
  }
}
@media (max-width: 650px) {
  .man {
    display: none;
  }
}
@media (max-width: 600px) {
  .pick,
  .plans {
    padding: 10px 20px;
  }
  .header__img {
    top: 300px;
  }
  .header__block_iconck img {
    width: 15px;
  }
  .header__content {
    margin-top: 10px;
  }
  .img_countries {
    width: 130px;
  }
}
@media (max-width: 350px) {
  .img_countries {
    width: 100px;
  }
  .img_countries {
    top: 330px;
  }
}
.infrastructure {
  background-color: rgb(255, 255, 255);
  padding-top: 80px;
}
.infrastructure h2 {
  font-size: calc(32px + 0 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1;
  color: rgb(0, 0, 92);
  margin-bottom: 12px;
}
.infrastructure p {
  max-width: 580px;
  font-size: calc(18px + 0 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(101, 117, 139);
}

.infrastructure__fon {
  background-image: url(.././img/infrastructure/fon.png);
  background-repeat: no-repeat;
  background-position: right top;
  margin-top: 300px;
  position: relative;
  z-index: 1;
}

.infrastructure__countries {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.country {
  background-color: rgb(255, 255, 255);
  width: 210px;
  height: 160px;
  box-shadow: 0px 2px 12px 0px rgba(20, 34, 81, 0.04);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.country h3 {
  margin-top: 10px;
  font-size: calc(24px + 0 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1;
  color: rgb(0, 0, 92);
}
.country p {
  font-size: calc(18px + 0 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(152, 158, 177);
}

.map {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.text_buttom p {
  font-size: calc(18px + 0 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(101, 117, 139);
}
.text_buttom {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  padding-bottom: 75px;
  text-align: center;
}

.infrastructure__fon-img {
  position: absolute;
  top: -25px;
  right: 51px;
  z-index: 0;
}

@media (max-width: 1150px) {
  .infrastructure__fon {
    margin-top: 400px;
  }
}
@media (max-width: 700px) {
  .infrastructure__fon {
    margin-top: 300px;
  }
}
@media (max-width: 600px) {
  .infrastructure__fon {
    margin-top: 230px;
  }
}
@media (max-width: 470px) {
  .infrastructure__fon {
    margin-top: 150px;
  }
  .infrastructure h2 {
    text-align: center;
  }
  .infrastructure p {
    text-align: center;
  }
}
@media (max-width: 440px) {
  .infrastructure__fon {
    margin-top: 70px;
  }
  .infrastructure__countries {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
  }
}
@media (max-width: 360px) {
  .infrastructure__fon {
    margin-top: 20px;
  }
}
.rate__fon {
  background-image: url(.././img/rate/fon.png);
  background-repeat: no-repeat;
  background-position: right top;
  position: relative;
  z-index: 1;
  margin-top: 80px;
}
.rate__fon h3 {
  font-size: calc(32px + 0 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1;
  color: rgb(0, 0, 92);
}
.rate__fon .rate__fon-text-p {
  margin-top: 12px;
  margin-bottom: 44px;
  max-width: 470px;
  font-size: calc(18px + 0 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1.2;
  color: rgb(101, 117, 139);
}

.rate__fon-img {
  position: absolute;
  z-index: 0;
  top: -48px;
  right: 0;
}

.plans__block {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 120px;
}

.block_one,
.block_two,
.block_three,
.block_four {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  border-radius: 24px;
  width: 260px;
  height: 460px;
  padding: 24px;
  box-shadow: 0px 2px 12px 0px rgba(20, 34, 81, 0.08);
}
.block_one h4,
.block_two h4,
.block_three h4,
.block_four h4 {
  text-align: center;
  font-size: calc(24px + 0 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1;
  color: rgb(0, 0, 92);
}
.block_one p,
.block_two p,
.block_three p,
.block_four p {
  text-align: center;
}
.block_one h5,
.block_two h5,
.block_three h5,
.block_four h5 {
  text-align: center;
}
.block_one .prais,
.block_two .prais,
.block_three .prais,
.block_four .prais {
  font-size: calc(30px + 0 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1;
  color: rgb(0, 0, 92);
}
.block_one .month,
.block_two .month,
.block_three .month,
.block_four .month {
  font-size: calc(16px + 0 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(101, 117, 139);
}

.block_hover:hover {
  border: 1px solid rgb(0, 0, 92);
  transition: 0.5s;
  transform: scale(1.05);
}
.block_hover:hover .block__btn {
  background-color: rgb(0, 0, 92);
  color: rgb(255, 255, 255);
}

.block__btn:hover {
  border: 1px solid rgb(0, 0, 92);
  background-color: rgb(255, 255, 255);
}

.block_one__text_top,
.block_two__text_top,
.block_three__text_top,
.block_four__text_top {
  position: absolute;
  padding: 4px 16px;
  background-color: rgb(0, 0, 92);
  border-radius: 24px;
  top: -10px;
  left: 27%;
}
.block_one__text_top h3,
.block_two__text_top h3,
.block_three__text_top h3,
.block_four__text_top h3 {
  font-size: calc(14px + 0 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(255, 255, 255);
}

.plans__specifications {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.line {
  display: flex;
  align-items: center;
  gap: 12px;
}
.block_one__btn,
.block_two__btn,
.block_three__btn,
.block_four__btn {
  margin-top: 20px;
  padding: 10px 67px;
  background-color: rgb(244, 248, 254);
  border-radius: 24px;
  align-self: flex-end;
  font-size: calc(18px + 0 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(0, 0, 92);
}

@media (max-width: 550px) {
  .rate__fon h3 {
    text-align: center;
  }
  .rate__fon .rate__fon-text-p {
    text-align: center;
  }
  .plans__block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.about {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: rgb(255, 255, 255);
}

.about__block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  border-bottom-left-radius: 32px;
  background-image: url(.././img/about/fon.png), url(.././img/about/fon1.png), url(.././img/about/fon2.png);
  background-size: cover, cover, contain;
  background-position: 0, 0, right;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-repeat: no-repeat;
}
.about__block h2 {
  font-size: calc(24px + 8 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1;
  color: rgb(255, 255, 255);
}
.about__block p {
  max-width: 800px;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1.1;
  color: rgb(255, 255, 255);
}

.about__questions {
  margin-top: 80px;
}

.about__questions_text-p {
  margin-bottom: 24px;
  font-size: calc(20px + 12 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1;
  color: rgb(0, 0, 92);
}

.line_one,
.line_two,
.line_three,
.line_four,
.line_sex {
  border: 2px solid rgb(248, 248, 248);
}

.questions_block_one,
.questions_block_two,
.questions_block_three,
.questions_block_four {
  padding-top: 23px;
  padding-bottom: 76px;
  display: flex;
  justify-content: space-between;
}

.questions {
  display: flex;
  align-items: flex-start;
  font-size: calc(16px + 8 * (100vw - 320px) / 1600);
  font-weight: 500;
  line-height: 1;
  color: rgb(0, 0, 92);
  width: 600px;
  margin-left: 100px;
}

.block_click_one,
.block_click_two,
.block_click_three,
.block_click_four {
  background-color: rgb(244, 248, 254);
  border-radius: 24px;
  border: 1px solid rgb(244, 248, 254);
}

.questions_block_one_active_click,
.questions_block_two_active_click,
.questions_block_three_active_click,
.questions_block_four_active_click {
  padding: 23px 40px 23px 24px;
  display: flex;
  justify-content: space-between;
}

.questions_click {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.questions_click h3 {
  align-self: flex-start;
  font-size: calc(20px + 4 * (100vw - 320px) / 1600);
  font-weight: 500;
  line-height: 1;
  color: rgb(0, 0, 92);
}
.questions_click p {
  margin-top: 15px;
  margin-bottom: 60px;
  align-self: flex-start;
  max-width: 440px;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1.3;
  color: rgb(101, 117, 139);
}

.questions_btn_close_one,
.questions_btn_close_two,
.questions_btn_close_three,
.questions_btn_close_four {
  align-self: start;
}

@media (max-width: 550px) {
  .about__questions_text-p {
    text-align: center;
  }
  .questions {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
  }
  .questions_click {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .questions_click h3 {
    align-self: center;
    text-align: center;
  }
  .questions_click p {
    text-align: center;
  }
}
.application {
  background-color: rgb(255, 255, 255);
  padding-bottom: 80px;
}

.application__block {
  display: flex;
  justify-content: space-between;
  background-image: url(.././img/application/Img2.png), url(.././img/application/img.png);
  background-size: cover, cover;
  background-repeat: no-repeat;
  border-radius: 32px;
  padding: 26px 40px;
}

.application__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.application__content h3 {
  font-size: calc(24px + 8 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1;
  color: rgb(255, 255, 255);
}
.application__content p {
  max-width: 400px;
  font-size: calc(13px + 5 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1.2;
  color: rgb(255, 255, 255);
}

.application__block_form {
  background-color: rgb(255, 255, 255);
  max-width: 570px;
  border-radius: 24px;
  padding: 19px 25px;
}

.form_top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.input_block {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 12px;
  width: 100%;
}
.input_block .text {
  width: 100%;
  height: 100px;
}

.label {
  font-size: calc(12px + 0 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(0, 0, 92);
}

.input {
  background-color: rgb(244, 248, 254);
  border-radius: 24px;
  padding: 10px 10px;
}

.input:focus {
  color: #212529;
  box-shadow: 0 0 0 0.05rem rgb(0, 0, 92);
}

.textarea {
  resize: none;
  width: 100%;
  height: 100px;
  padding: 5px;
}

.input-file-row {
  display: inline-block;
}

.input-file {
  position: relative;
  display: inline-block;
}

.input-file span {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  font-size: calc(14px + 0 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(255, 255, 255);
  text-align: center;
  border-radius: 18px;
  background-color: rgb(0, 0, 92);
  border: 1px solid rgb(0, 0, 92);
  padding: 13px 34px;
  margin: 0;
  transition: background-color 0.2s;
}

.input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

/* Focus */
.input-file input[type=file]:focus + span {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Hover/Active */
.input-file:hover span {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 92);
  border: 1px solid rgb(0, 0, 92);
  transition: 0.6s;
}

/* Disabled */
.input-file input[type=file]:disabled + span {
  background-color: #eee;
}

/* Список файлов */
.input-file-list {
  padding: 10px 0;
}

.input-file-list-item {
  margin-bottom: 10px;
}

.input-file-list-remove {
  color: red;
  text-decoration: none;
  display: inline-block;
  margin-left: 5px;
}

.form_btn {
  background-color: rgb(0, 0, 92);
  border: 1px solid rgb(0, 0, 92);
  border-radius: 18px;
  padding: 20px 200px;
  margin-top: 15px;
  font-size: calc(14px + 0 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1;
  color: rgb(255, 255, 255);
}

.form_btn:hover {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 0, 92);
  color: rgb(0, 0, 92);
  transition: 0.6s;
}

.input_radio {
  border: 1px solid rgb(0, 0, 92);
  width: 24px;
  height: 24px;
}

.input_radio:hover {
  border: 1px solid rgb(0, 0, 92);
  width: 24px;
  height: 24px;
}

.label_radio {
  cursor: context-menu;
  display: flex;
  gap: 4px;
  font-size: calc(9px + 2 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(0, 0, 92);
}

@media (max-width: 1050px) {
  .application__block {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
@media (max-width: 650px) {
  .form_btn {
    background-color: rgb(0, 0, 92);
    border: 1px solid rgb(0, 0, 92);
    border-radius: 18px;
    width: 100%;
    padding: 15px 0 15px 0;
    margin-top: 15px;
    font-size: calc(14px + 0 * (100vw - 320px) / 1600);
    font-weight: 600;
    line-height: 1;
    color: rgb(255, 255, 255);
  }
}
@media (max-width: 550px) {
  .form_top {
    flex-direction: column;
  }
  .application__content {
    gap: 12px;
  }
  .application__content h3 {
    text-align: center;
  }
  .application__content p {
    text-align: center;
  }
}
.footer {
  padding-top: 40px;
  background-color: rgb(63, 63, 230);
  padding-bottom: 40px;
  width: 100%;
}

.footer__content {
  display: flex;
  justify-content: space-between;
}

.footer__block_service {
  display: flex;
  gap: 20px;
}
.footer__block_service a {
  font-size: calc(16px + 0 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(255, 255, 255);
}

.footer__block_left,
.footer__block_ridth {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__block_left .text_top,
.footer__block_ridth .text_top {
  font-family: "Inter", sans-serif;
  margin-bottom: 5px;
  font-size: calc(13px + 3 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1;
  color: rgb(255, 255, 255);
}
.footer__block_left a,
.footer__block_ridth a {
  font-size: calc(13px + 3 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
}

.footer__content_block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__content_block img {
  align-self: start;
}
.footer__content_block p {
  font-family: "Inter", sans-serif;
  max-width: 400px;
  font-size: calc(13px + 3 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.footer__block_contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__block_contacts a {
  font-size: calc(13px + 3 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
}
.footer__block_contacts .text_top {
  font-family: "Inter", sans-serif;
  margin-bottom: 5px;
  font-size: calc(13px + 3 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: 1;
  color: rgb(255, 255, 255);
}

.footer__icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__line {
  margin-top: 120px;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255);
}

.footer__bottom {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}

.footer__bottom_text_left p {
  font-size: calc(10px + 4 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottom_text_ridth {
  display: flex;
  gap: 24px;
}
.footer__bottom_text_ridth a {
  font-size: calc(10px + 4 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .footer__content_block p {
    max-width: 250px;
  }
  .footer__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
}
@media (max-width: 500px) {
  .footer__bottom {
    position: relative;
    flex-direction: column;
    gap: 10px;
  }
  .footer__bottom_text_left {
    position: absolute;
    bottom: -25px;
    right: 20px;
  }
}

/*# sourceMappingURL=index.css.map */
