@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800;900&display=swap");
html {
  font-family: "Golos Text", sans-serif;
  color: #212529;
}

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

body {
  margin: 0;
}

.wrapper {
  margin-top: 98px;
}

a {
  text-decoration: none; /* Убираем подчеркивание ссылок */
  color: inherit; /* Наследуем цвет текста от родительского элемента */
}

a:hover {
  color: inherit;
}

a:focus {
  color: inherit;
}

a:visited {
  color: inherit;
}

.content {
  max-width: 1266px;
  margin: 0 auto;
  margin-bottom: 160px;
}

.logo {
  width: -moz-fit-content;
  width: fit-content;
}

.text--primary {
  color: #069cff;
}

.text--bold {
  font-weight: bold;
}

.bg--black {
  background: #353535;
  color: #fff;
}

@media screen and (max-width: 1266px) {
  .content {
    padding: 0 40px;
    margin-bottom: 96px;
  }
  img {
    max-width: 240px;
  }
}
@media screen and (max-width: 925px) {
  .content {
    padding: 0 20px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 680px) {
  img {
    max-width: 140px;
  }
}
.advantages {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.advantages__icon {
  padding: 8px;
  border-radius: 8px;
  background: #eaf6ff;
}
.advantages__heading {
  max-width: 400px;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px; /* 130% */
}
.advantages__title {
  max-width: 400px;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px; /* 137.5% */
}
.advantages__content {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 145.455% */
}
.advantages__description {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}
.advantages__list {
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.advantages__item {
  display: inline-flex;
  gap: 16px;
  flex-basis: calc(50% - 16px);
}
.advantages__buttons {
  display: flex;
  gap: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 162.5% */
  letter-spacing: 0.16px;
}
@media screen and (max-width: 925px) {
  .advantages {
    flex-direction: column;
    align-items: start;
    gap: 32px;
  }
  .advantages__heading {
    max-width: 100%;
    align-self: center;
  }
  .advantages__heading--bottom {
    align-self: start;
  }
  .advantages__list {
    align-self: start;
    margin: 0 auto;
  }
  .advantages__list--bottom {
    flex-direction: column;
    margin: inherit;
  }
  .advantages__content {
    text-align: start;
  }
}
@media screen and (max-width: 680px) {
  .advantages__heading {
    align-self: start;
  }
  .advantages__list {
    flex-direction: column;
    margin: inherit;
  }
  .advantages__buttons {
    flex-direction: column;
  }
}

.benefits__list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
.benefits__item {
  display: flex;
  padding: 24px;
  gap: 16px;
  background: #f7f7f7;
  border-radius: 16px;
  align-items: center;
  justify-content: space-between;
}
.benefits__heading {
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px; /* 130% */
  margin-bottom: 32px;
  text-align: center;
}
.benefits__title {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 145.455% */
  letter-spacing: 0.22px;
  margin: 16px 0;
}
.benefits__description {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

@media screen and (max-width: 925px) {
  .benefits__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 680px) {
  .benefits__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .benefits__item {
    align-items: start;
    flex-direction: column;
  }
  .benefits__image {
    order: -1;
    max-width: 140px;
  }
}
.box {
  display: flex;
  padding: 32px 24px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 20px;
  background: #069cff;
  gap: 32px;
}
.box__title, .box__content {
  color: #fff;
}
.box__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px; /* 130% */
  margin: 0;
}
.box__content {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 145.455% */
  margin: 0;
}

.button-join-us {
  display: flex;
  flex: 1;
  gap: 8px;
  border-radius: 14px;
  border: 2px solid #069cff;
  background: #eaf6ff;
  cursor: pointer;
}
.button-join-us__dog-image {
  border-radius: 18px;
  align-self: end;
}
.button-join-us__text {
  color: #353535;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 145.455% */
  letter-spacing: 0.22px;
}
.button-join-us:hover {
  opacity: 0.8;
}
@media screen and (max-width: 925px) {
  .button-join-us {
    width: auto !important;
  }
}

@media screen and (max-width: 680px) {
  .box {
    padding: 24px 16px;
    gap: 24px;
  }
  .box__title {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 142.857% */
  }
  .box__content {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
  }
}
.button {
  display: flex;
  min-height: 40px;
  padding: 9px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.button--primary {
  background: #069cff;
  color: #fff !important;
}
.button--black {
  background: #353535;
  color: #fff !important;
}
.button:hover {
  opacity: 0.8;
}

.cards {
  border-radius: 16px;
}
.cards__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.cards__item {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
  background: #f7f7f7;
  border-radius: 16px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 253px;
}
.cards__item:hover {
  background: #e9e9e9;
  cursor: pointer;
  opacity: 1;
}
.cards__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.cards__title {
  color: #212529;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 145.455% */
  letter-spacing: 0.22px;
}
.cards__description {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}
.cards__button {
  display: flex;
  height: 48px;
  padding: 0px 24px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 162.5% */
  letter-spacing: 0.16px;
}

@media screen and (max-width: 680px) {
  .cards__item {
    max-width: 100%;
  }
  .cards__image {
    order: -1;
    width: 140px;
  }
}
.copyrite {
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 680px) {
  .copyrite {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}

footer .content {
  margin-bottom: 0;
}

.footer {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 24px;
}
.footer .menu__link {
  color: #fff;
}
@media screen and (max-width: 680px) {
  .footer .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: auto;
  }
  .footer .menu__list {
    flex-direction: column;
    gap: 16px;
  }
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  border-radius: 0 0 16px 16px;
}
header .content {
  margin-bottom: 0;
}

.header {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  position: sticky;
  top: 0;
  flex-direction: row;
  background-color: #fff;
  border-radius: 0 0 16px 16px;
}
@media screen and (max-width: 925px) {
  .header {
    flex-direction: column;
    gap: 25px;
  }
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 19px;
  flex-wrap: wrap;
  color: #000;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  max-width: 520px;
}
.hero__buttons-block {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.hero__buttons-block div {
  display: flex;
  width: -moz-min-content;
  width: min-content;
  align-items: center;
  min-height: 50px;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 145.455% */
  letter-spacing: 0.22px;
}
@media screen and (max-width: calc(1266px + 22px)) {
  .hero {
    justify-content: center;
  }
  .hero__img {
    display: none;
  }
  .hero__content {
    max-width: none;
  }
  .hero__buttons-block div,
  .hero__buttons-block a {
    flex: 1;
  }
  .hero .button {
    padding: 0;
  }
}
@media screen and (max-width: 680px) {
  .hero__buttons-block {
    flex-direction: column;
  }
  .hero__buttons-block div,
  .hero__buttons-block a {
    width: inherit;
    flex: auto;
  }
  .hero .button {
    padding: 9px 24px;
  }
}

.media {
  display: flex;
  gap: 18px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.menu__list {
  display: flex;
  gap: 32px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.menu__item {
  margin: 0;
  padding: 0;
}
.menu__link {
  text-decoration: none;
  color: #212529;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 162.5% */
  letter-spacing: 0.16px;
  transition: color 0.3s;
}
.menu__link:hover, .menu__link:focus {
  opacity: 0.8;
}
.menu__button {
  display: flex;
  padding: 9px 16px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 157.143% */
  letter-spacing: 0.14px;
}
.menu__button--primary {
  background: #069cff;
  color: #fff !important;
}
.menu__button:hover {
  opacity: 0.8;
}

.header .menu .logo {
  display: none;
}

.hamburger {
  display: none;
  z-index: 1;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 20px;
  margin: 16px 15px;
  position: fixed;
  top: 5px;
  right: 0px;
  z-index: 1;
  border: 8px solid white;
  background-color: white;
  border-radius: 5px;
  cursor: pointer;
}
.hamburger span {
  height: 2px;
  width: 100%;
  transform: scale(1);
  background-color: #8f8f8f;
  transition: all 0.3s ease 0s;
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #8f8f8f;
  transition: all 0.3s ease 0s;
}
.hamburger::before {
  top: 0;
}
.hamburger::after {
  bottom: -1px;
}

@media screen and (max-width: 925px) {
  .header .menu {
    background-color: #fff;
    border-radius: 0 0 16px 16px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: auto;
    display: none;
  }
  .header .menu__list {
    flex-direction: column;
    gap: 16px;
  }
  .header .menu .logo {
    display: block;
  }
  .hamburger {
    display: flex;
    margin: 15px 15px;
  }
}
@media screen and (max-width: 680px) {
  .hamburger {
    margin: 15px 15px;
  }
}
#hamburger-toggle {
  display: none;
}

#hamburger-toggle:checked + .hamburger span {
  transform: scaleX(0);
}

#hamburger-toggle:checked + .hamburger::before {
  top: 56%;
  transform: rotate(-45deg) translate(0, -50%);
}

#hamburger-toggle:checked + .hamburger::after {
  top: 50%;
  transform: rotate(45deg) translate(0, 50%);
}

#hamburger-toggle:checked ~ .menu {
  display: flex;
}

.modal::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 10;
  overflow: auto;
  text-align: center; /* Выравниваем по центру горизонтально */
}
.modal__wrapper {
  display: inline-flex;
  flex-direction: column;
  width: -webkit-fill-available;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  margin: 0 auto;
  vertical-align: middle;
  text-align: left;
  position: relative;
}
.modal__content {
  max-width: 586px;
  margin: 0px auto;
  padding: 30px 0;
}
.modal__title {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
}
.modal__title h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px; /* 130% */
  margin: 0px;
}
.modal__close-wrapper {
  padding: 5px;
  position: absolute;
  right: 0;
  top: -15px;
}
.modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.modal__close span {
  display: block;
  width: 100%;
  height: 0x;
  background-color: #8f8f8f;
  position: relative;
}
.modal__close span::before, .modal__close span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #8f8f8f;
}
.modal__close span::before {
  top: 0.4px;
  transform: rotate(-45deg) translate(0, -50%);
}
.modal__close span::after {
  top: -1px;
  transform: rotate(45deg) translate(0, 50%);
}
.modal .form__group {
  margin-bottom: 16px;
  display: flex;
  position: relative;
}
.modal .form__group #resumeFile {
  display: none;
}
.modal .form__group .file--input {
  width: 50%;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 162.5% */
  letter-spacing: 0.16px;
}
.modal .form__label {
  font-weight: bold;
}
.modal .form__label--required {
  position: relative;
}
.modal .form__label--required:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: red;
  top: 6px;
  left: 6px;
  border-radius: 50%;
}
.modal .form__input, .modal .form__textarea {
  display: flex;
  padding: 8px 12px;
  width: 100%;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
.modal .form__textarea {
  height: auto;
  min-height: 146px;
}
.modal .form__file-note {
  color: #777;
  width: 50%;
  text-align: center;
  align-self: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
.modal .form input::-moz-placeholder, .modal .form textarea::-moz-placeholder {
  color: #8f8f8f;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
.modal .form input::placeholder,
.modal .form textarea::placeholder {
  color: #8f8f8f;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
.modal .form__submit-button {
  background: #069cff;
  width: 100%;
  display: inline-block;
  padding: 16px 32px;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 162.5% */
  letter-spacing: 0.16px;
}
.modal .form__submit-button:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
.modal .form__submit-button:hover {
  opacity: 0.8;
}
.modal .form__checkbox {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #bcbcbc;
}
.modal .form__checkbox-label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
.modal .form__checkbox--policy {
  border-bottom: 1px solid black;
  cursor: pointer;
}

.policy-popup {
  display: none;
  max-width: 600px;
  padding: 24px;
  bottom: 36px;
  width: -webkit-fill-available;
  position: absolute;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 20px 28px -6px rgba(0, 0, 0, 0.08), 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 925px) {
  .modal__close-wrapper {
    right: 15px;
    top: 15px;
  }
}
@media screen and (max-width: 600px) {
  .file--input {
    width: -webkit-fill-available !important;
  }
  .form__file-note {
    width: -webkit-fill-available !important;
    text-align: inherit;
  }
  .file--group {
    flex-direction: column;
    gap: 8px;
  }
  .modal__title {
    justify-content: space-between;
  }
  .modal__title h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 142.857% */
  }
  .modal__close-wrapper {
    position: initial;
  }
}/*# sourceMappingURL=style.css.map */