@font-face {
  font-family: 'Museo Sans';
  src: url('./MuseoSansCyrl-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./Inter28pt-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./Inter28pt-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* 🔤 Шрифты */
  --font-museo: 'Museo Sans', sans-serif;
  --font-inter: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, system-ui, -apple-system, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  --font-base: var(--font-inter);
  --font-heading: var(--font-museo);

  /* 🎨 Цвета */
  --border-color: #595959;
  --bg: #f1f2f4;
  --color-blue: #034EA2;
  --link-color: var(--color-blue);
  --gray-light: #ECECEC;
  --gray-medium: #D0D4D9;
  --gray-bg: #F1F2F3;
  --black-50: #5151514D;

  /* 📏 Шрифты и линии */
  --fz-base: 16px;
  --fz-small: 18px;
  --fz-medium: 20px;
  --fz-large: 22px;
  --fz-xlarge: 23px;
  --fz-xxlarge: 24px;

  --lh-base: 21px;
  --lh-medium: 22px;
  --lh-large: 28px;

  --fw-light: 250;
  --fw-regular: 300;
  --fw-medium: 400;
  --fw-semibold: 600;

  /* 🧱 Отступы и gap */
  --gap-sm: 15px;
  --gap-md: 20px;
  --gap-lg: 25px;
  --gap-xl: 30px;
  --gap-xxl: 45px;
  --gap-xxxl: 60px;
  --gap-ultra: 90px;

  /* ⭕ Радиусы */
  --br-sm: 4px;
  --br-md: 8px;

  /* ⏱ Анимации */
  --delay: .2s;
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: var(--fz-base);
  font-family: var(--font-base);
  line-height: var(--lh-base);
  font-weight: normal;
}

body {
  min-width: 320px;
  overflow-y: scroll;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.btn {
  border-radius: 36px;
  color: #fff;
  text-decoration: none;
  padding: 20px 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: var(--color-blue);
  font-size: 24px;
  line-height: 24px;

  svg {
    fill: #fff;
  }
}
.btn-grey {
  border-radius: 36px;
  color: #fff;
  text-decoration: none;
  padding: 20px 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(71, 71, 71, 1);
  font-size: 24px;
  line-height: 24px;
  border: 0;
  cursor: pointer;

  svg {
    fill: #fff;
  }
}

h2 {
  line-height: 110%;
  font-size: 40px;
  margin-bottom: 30px;
  font-family: var(--font-heading);
}

@media (width <=1200px) {
  .container {
    padding-left: 35px;
    padding-right: 35px;
  }
}

/*---------------------------Header*/
.header {
  background-image: url('img/head.jpg');
  padding-bottom: 100px;
  background-color: #fff;
  background-position: top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.header__logo {
  padding-bottom: 30px;
}

.header__text {
  max-width: 680px;
  padding: var(--gap-lg) var(--gap-md);
  padding-top: 64px;

  h1 {
    font-size: 46px;
    line-height: 46px;
    margin-bottom: 18px;
    text-transform: uppercase;
    margin-bottom: 55px;
    font-family: var(--font-heading);
  }

  ul {
    list-style: none;

    &:not(:last-child) {
      margin-bottom: 18px;
    }
  }
}

.mb {
  margin-bottom: 100px;
}

.radius {
  border-radius: 38px;
}

img {
  max-width: 100%;
}

.grids {
  gap: 30px;
  display: flex;
  flex-direction: column;
}
.section-line {
  display: flex;
  gap: 30px;
}
.section-line h2 {
  width: 50%;
  margin-bottom: 0;
  font-family: var(--font-heading);
}
.section-line__content {
  width: 50%;
}
.section-line__text-block {
  border-bottom: 1px solid #000;
  font-size: 20px;
  line-height: 147%;

  &:not(:last-child) {
    margin-bottom: 20px;
  }
}
.section-line__content--grey {
  background-color: #EBEBEB;
  flex: 1;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-line__content--blue {
  background-color: #E4F1FF;
  flex: 1;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.check-item {
  position: relative;
  background-image: url('img/check.png');
  background-repeat: no-repeat;
  padding-left: 45px;
  background-position: 0 8px;
  font-size: 20px;
  line-height: 127%;

  &:not(:last-child) {
    margin-bottom: 20px;
  }
}

.adv-list {
  display: flex;
  gap: 30px;
}
.adv-list__item {
  border-radius: 38px;
  background-color: #EBEBEB;
  padding: 30px;
  width: 33.3333%;
}
.adv-list__img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 30px;
}
.adv-list__name {
  font-size: 30px;
  line-height: 110%;
  margin-bottom: 50px;
  font-family: var(--font-heading);
}
.adv-list__desc {
  font-size: 20px;
  line-height: 112%;
}

.who-block {
  background-image: url('img/who.png');
  background-size: cover;
  padding: 50px;
  border-radius: 38px;
}
.who-block__title {
  font-size: 30px;
  margin-bottom: 30px;
  font-family: var(--font-heading);
}
.who-block__list {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.who-block__item {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 38px;
  line-height: 112%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vac-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
.vac-list__item {
  border-radius: 38px;
  background-color: rgba(228, 241, 255, 1);
  padding: 25px;
}
.vac-list__name {
  font-size: 30px;
  line-height: 110%;
  font-weight: 600;
  margin-bottom: 20px;
}
.vac-list__city {
  background-image: url('img/location.svg');
  padding-left: 25px;
  background-repeat: no-repeat;
  background-size: 15px 20px;
  margin-bottom: 20px;
}
.vac-list__desc {
  margin-bottom: 80px;
}

/*---------------------------Footer*/
.footer {
  background-color: var(--gray-bg);
  padding-block: 44px 100px;

  .container {
    padding-left: var(--gap-md);
    padding-right: var(--gap-md);
  }

  a {
    color: inherit;
    text-decoration: none;

    &:hover {
      text-decoration: underline;
    }
  }
}

.footer__list {
  display: flex;
  gap: 48px;
}

.footer__logo {
  flex-shrink: 0;
}

.footer__item {
  min-width: 0;
  padding-left: 30px;
  flex: 1;
  position: relative;

  svg {
    left: 0;
    top: 3px;
    position: absolute;
  }
}

@media (width <=1200px) {
  .footer__list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--gap-lg);
  }
}

.drop-area {
  width: 100%;

  @media(width <=550px) {
    padding: 20px 50px;
  }
}

.drop-area__input {
  opacity: 0;
  position: absolute;
  height: 1px;
  width: 1px;
  z-index: -1;
  overflow: hidden;
}

.drop-area__wrap {
  border: 2px dashed #ddd;
  position: relative;
  padding: 24px;
  margin: 0;
  display: block;
  border-radius: 5px;
  transition: border-color .2s;

  &:hover {
    border-color: #a5a5a5;
  }

  &:active {
    border-color: var(--border-color);
  }
}

.drop-area__info {
  text-align: center;
}

.drop-area__icon {
  width: 50px;
  height: 50px;
  z-index: 1;
  fill-opacity: .5;
  fill: #000;
}

.drop-area__text {
  display: block;
}

.drop-area__files {
  margin-top: 10px;
}

.drop-area__file {
  align-items: center;
  display: flex;

  &:not(:last-child) {
    margin-bottom: 10px;
  }

  svg {
    margin-right: 10px;
    fill: var(--border-color);
  }
}

.custom-check {
  display: flex;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  flex-shrink: 0;
  margin-bottom: 0;
  align-items: flex-start;

  a {
    color: inherit;

    &:hover {
      text-decoration: none;
    }
  }
}

.custom-check__input {
  height: 1px;
  width: 1px;
  outline: none;
  opacity: 0;
}

.custom-check__checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: solid 1px var(--border-color);
  margin-right: 10px;
  transition: background-color 0.2s;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    opacity: 0;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAALAQMAAACaiUUfAAAABlBMVEUAAAD///+l2Z/dAAAAAXRSTlMAQObYZgAAACdJREFUCNdjYGBjYOBjYOBhYJBgYDBgOJDAkHCAwbCBQZqBQQ4kDAAzkAOfph33agAAAABJRU5ErkJggg==");
    background-position: center;
    background-size: 12px 10px;
    transition: opacity 0.4s;
  }
}

.custom-check__input:checked+.custom-check__checkbox {
  background-color: var(--border-color);

  &::after {
    opacity: 1;
  }
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
}

.checkbox-group--verical {
  flex-direction: column;
}

.checkbox-group .custom-check {
  margin-bottom: 15px;

  &:not(:last-child) {
    margin-right: 15px;
  }
}

.feedback__row:has(+ .feedback__row) {
  margin-bottom: 12px;
}
.feedback__footer {
  margin-top: 12px;
  display: flex;
  gap: 12px;

  .btn {
    padding: 10px 25px;
    border-radius: 15px;
    width: 100%;
    justify-content: center;
  }
}
.feedback__row--flex {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  .feedback__col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

label {
  display: block;
  margin-bottom: 5px;
}
input, textarea {
  width: 100%;
  resize: none;
  border: 1px solid var(--border-color);
  font-size: 18px;
  font-family: inherit;
  line-height: inherit;
  padding: 10px;
  border-radius: 15px;
  outline: none;
}
textarea {
  height: 123px;
}
.feedback-form {
  background: #f1f2f3;
  padding: 50px 100px;
  border-radius: 30px;
}
