@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Raleway-Regular.woff2') format('woff2'),
       url('../fonts/Raleway-Regular.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Raleway-Medium.woff2') format('woff2'),
       url('../fonts/Raleway-Medium.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Raleway-SemiBold.woff2') format('woff2'),
       url('../fonts/Raleway-SemiBold.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Raleway-Bold.woff2') format('woff2'),
       url('../fonts/Raleway-Bold.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Wadik';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Wadik.woff2') format('woff2'),
       url('../fonts/Wadik.woff') format('woff');
  font-display: swap;
}

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

:root {
  --font-family: "Raleway", sans-serif;
  --second-family: "Wadik", sans-serif;
	--green: #51b948;
	--blue: #2c2973;
	--black: #232323;
	--white: #fff;
	--grey: #5a5a5a;
	--dark-grey: #363636;
	--light-grey: #d7d7d7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  overflow-x: hidden;
}

h1, h2, h3, p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h2 {
  max-width: 602px;
  margin: 0 auto;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  text-align: center;
  color: var(--black);
}

a {
  display: block;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.burger,
.mobile-menu {
  display: none;
}

.burger-wrapper__phone {
  display: none;
}

.container {
  width: 100%;
  max-width: 1504px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 100px;
  border: none;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  padding: 16px 30px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(90deg, #51b948 0%, #498b74 50.96%, #2c2973 100%);
}

.btn--secondary {
  border: 2px solid var(--blue);
  color: var(--blue);
}

.subtitle {
  max-width: 952px;
  margin: 20px auto 0 auto;
}

.paragraph--large {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 133%;
  text-align: center;
  color: var(--grey);
}

.paragraph--medium {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: var(--grey);
}

.paragraph--small {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: var(--grey);
}

.header {
  position: absolute;
  background: transparent;
  z-index: 999;
  left: 50%;
  border-radius: 0 0 30px 30px;
  transform: translateX(-50%);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
}

.header__logo img {
  max-width: 142px;
  height: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  border-radius: 0 0 60px 60px;
  background-image: url('../img/hero-BG.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.phone {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
}

.phone::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-image: url('../img/phone-icon.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.header__phone {
  color: var(--black);
}

.hero__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: var(--black);
}

.hero__title--color {
  color: var(--green);
}

.header__nav-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--black);
}

.hero__wrapper {
  max-width: 688px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero__advantages {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 448px;
}

.hero__advantage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.hero__divider {
  width: 2px;
  height: 60px;
  background-color: var(--green);
}

.hero__actions {
  display: flex;
  gap: 20px;
}

.hero__btn--secondary {
  border: 2px solid var(--blue);
  padding-right: 55px;
}

.btn-arrow::after {
  content: url('../img/arrow.svg');
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 55%;
  transform: translateY(-50%);
}

.hero__subtitle {
  text-align: left;
}

.hero__advantage-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--black);
}

.header__btn {
  background: var(--white);
  border: none;
}

.subtitle {
  max-width: 952px;
}

.recovering__subtitle {
  margin: 20px auto 0 auto;
}

.recovering__steps {
  margin: 0;
  margin-top: 40px;
}

.recovering__start {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding: 30px 0;
  border-radius: 30px;
  background: linear-gradient(90deg, #51b948 0%, #498b74 50.96%, #2c2973 100%);
}

.start__wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.recovering__steps {
  display: flex;
  gap: 20px;
}

.recovering__step {
  padding: 40px;
  background: rgba(81, 185, 72, 0.2);
  flex: 1;
  border-radius: 30px;
}

.recovering__step:last-child .recovering__step-title {
  max-width: 290px;
}

.recovering__step-head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.recovering__step-description {
  margin-top: 10px;
}

.recovering__step-link {
  width: max-content;
  position: relative;
  margin-top: 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 122%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--blue);
}

.recovering__step-link::after {
  content: url('../img/recovring-arrow.svg');
  display: inline-block;
  position: absolute;
  right: -30px;
  top: 55%;
  transform: translateY(-50%);
}

.start__paragraph {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 92%;
  color: var(--white);
}

.start__btn {
  padding-right: 80px;
  background: var(--white);
  border: none;
}

.start__btn.btn-arrow::after {
  right: 40px;
}

.recovering {
  padding: 100px 0;
}

.recovering__step-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
}

.advantages {
  padding: 100px 0;
  border-radius: 60px;
  background: linear-gradient(90deg, #c4e3c1 0%, #bec7f4 100%);
}

.advantages--reverse {
  background: linear-gradient(90deg, #bec7f4 0%, #c4e3c1 100%);
}

.advantages__item-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
}

.advantages__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advantages__item {
  padding: 40px;
  background: var(--white);
  border-radius: 30px;
}

.advantages__item-head {
  display: flex;
  gap: 15px;
  align-items: center;
}

.advantages__item-description {
  margin-top: 10px;
}

.advantages__btn {
  margin: 40px auto 0;
  width: max-content;
}

.props {
  padding: 100px 0;
}

.props__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.message__text.paragraph--small {
  color: var(--white);
  display: block;
  height: 0;
  margin-top: 15px;
  opacity: 0;
  transition: max-height .3s ease, opacity 0.3s ease;
}

.message__text.active {
  opacity: 1;
}

.props__item {
  padding-left: 40px;
  display: flex;
  gap: 60px;
  align-items: center;
  background: rgba(81, 185, 72, 0.2);
  border-radius: 30px;
}

.props__item:nth-child(even) {
  padding-left: 0;
  padding-right: 40px;
  flex-direction: row-reverse;
}

.props__item-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 119%;
  color: var(--black);
}

.props__paragraph {
  margin-top: 10px;
}

.advantages--reverse {
  background: linear-gradient(90deg, #b8b8ce 0%, #c4e3c1 100%);
}

.reviews__experience {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  padding-left: 30px;
}

.reviews__experience-number {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 96px;
  color: var(--blue);
}

.reviews__experience-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  color: var(--dark-grey);
}

.reviews__stars {
  display: flex;
  gap: 5px;
}

.reviews__experience-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 30px;
  border-left: 10px solid #dcf1da;
}

.reviews {
  padding-top: 100px;
  padding-bottom: 50px;
}

.reviews__item {
  border-radius: 30px;
  padding: 40px;
  background: rgba(81, 185, 72, 0.2);
}

.reviews__list {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.reviews__item-text {
  margin-top: 20px;
}

.request__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px;
  border-radius: 60px;
  background: linear-gradient(90deg, #51b948 0%, #498b74 50.96%, #2c2973 100%);
}

.request__form {
  margin-top: 40px;
  max-width: 1196px;
  width: 100%;
}

.form__fields {
  display: flex;
  gap: 20px;
}

.form__part {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.form__button {
  width: max-content;
  margin: 40px auto 0;
  padding: 16px 62px;
  background: var(--blue);
  color: var(--white);
}

.form__field {
  width: 100%;
  height: 50px;
  border-radius: 100px;
  border: none;
  padding: 10px 20px;
  background: var(--white);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  text-align: left;
  color: var(--grey);
  transition: background 0.3s ease;
}

.form__field:focus {
  outline: 2px solid var(--blue);
}

.form__field::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  color: var(--grey);
  text-align: left;
}

.form__field:hover {
  background: rgba(255, 255, 255, 0.8);
}

.form__textarea {
  padding: 20px;
  border-radius: 30px;
  height: 115px;
  resize: none;
}

.request__title,
.request__subtitle {
  color: var(--white);
}

.request__subtitle {
  max-width: 755px;
}

.form__select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form__select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form__select-wrapper::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='15' viewBox='0 0 26 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.5L13 13.5L24.5 1.5' stroke='%235A5A5A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.form__date-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form__date {
  position: relative;
  cursor: pointer;
}

.certificate__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.certificate__item {
  display: flex;
  justify-content: center;
  padding: 25px 0;
  border: 2px solid var(--light-grey);
  border-radius: 30px;
  transition: border-color 0.3s ease;
}

.certificate__item:hover {
  border-color: var(--green);
}

.certificate__image {
  width: 190px;
  height: 190px;
}

.request {
  padding-top: 50px;
  padding-bottom: 100px;
}

.footer {
  padding: 100px 0;
  background: var(--black);
}

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

.footer__logo img {
  max-width: 217px;
  height: auto;
}

.footer__text {
  max-width: 467px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__paragraph {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  letter-spacing: 0.05em;
  color: #cecece;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__nav-list {
  display: flex;
  gap: 60px;
}

.footer__nav-part {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__connection {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__connection .phone {
  color: var(--white);
}

.footer__connection .phone::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-image: url(../img/phone-icon-light.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__part:first-child {
  padding-bottom: 60px;
  border-bottom: 2px solid var(--dark-grey);
}

.footer__part:last-child {
  padding-top: 30px;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer__rights {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--light-grey);
}

.footer__privacy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--light-grey);
}

.footer__nav-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 122%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #cecece;
}

.footer__nav span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: var(--white);
}

.request__certificate {
  margin-top: 60px;
}

.burger-wrapper {
  display: none;
}

.header--sticky {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 100%;
  background: var(--white);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.header--sticky.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.header--sticky .header__btn {
  border: 2px solid var(--blue);
}

.visually-hidden {
  position: absolute ;
  width: 1px ;
  height: 1px ;
  padding: 0 ;
  margin: -1px ;
  overflow: hidden ;
  clip: rect(0, 0, 0, 0) ;
  white-space: nowrap ;
  border: 0 ;
}

nav a {
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--green);
}

@media (max-width: 1024px) {
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .burger:focus {
    outline: none;
  }

  .burger span {
    display: block;
    width: 100%;
    height: 5px;
    background: var(--blue);;
    border-radius: 4px;
    transition: all 0.4s ease;
  }

  .burger.active span {
    display: block;
    top: 50%;
    left: 0;
    transform-origin: 50% 50%;
    transform: translateY(-50%);
  }

  .burger.active span:nth-child(1) {
    transform: translateY(15px) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 512px;
    height: 100vh;
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(512px);
    box-shadow: 0 -10px 20px 10px rgba(141, 141, 141, 0.2);
        background: linear-gradient(90deg, #c4e3c1 0%, #bec7f4 100%);
    transition: transform 0.4s ease;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .header__nav,
  .header__phone,
  .header__btn {
    display: none;
  }

  .mobile-menu .header__nav {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
  }

  .header__phone {
    display: none;
  }

  .mobile-menu__phone {
    display: flex;
  }

  .burger-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .burger-mobile {
    display: flex;
  }

  .header__nav {
    display: none;
  }

  .header__btn {
    display: none;
  }

  .mobile-menu__btn.header__btn {
    display: flex;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 40px;
    background-image: url(../img/BG-tablet.webp);
  }

  .hero__title {
    font-size: 32px;
  }

  .paragraph--large {
    font-size: 20px;
  }

  .hero__advantage svg {
    width: 40px;
    height: 40px;
  }

  .hero__advantage-title {
    font-size: 18px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 18px;
  }

  .hero__btn--secondary {
    padding-right: 55px;
  }

  .hero__wrapper {
    max-width: 542px;
  }

  h2 {
    font-size: 24px;
  }

  .subtitle {
    max-width: 618px;
  }

  .recovering__subtitle {
    margin-top: 15px;
  }

  .recovering__steps {
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .recovering__step {
    width: calc(50% - 10px);
    flex: none;
  }

  .recovering__start {
    margin-top: 30px;
  }

  .start__paragraph {
    font-size: 20px;
    text-align: center;
  }

  .start__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 310px;
  }

  .start__paragraph,
  .start__btn {
    max-width: 310px;
    width: 100%;
  }

  .advantages__list {
    margin-top: 30px;
  }

  .advantages__item {
    padding: 30px;
  }

  .advantages__item-title {
    font-size: 20px;
    width: min-content;
  }

  .advantages__btn {
    margin-top: 30px;
  }

  .props__list {
    margin-top: 30px;
  }

  .props__item {
    padding-left: 30px;
    gap: 30px;
  }

  .props__item:nth-child(even) {
    padding-right: 30px;
  }

  .props__item-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    color: var(--black);
  }

  .paragraph--medium {
    font-size: 20px;
  }

  .props__image {
    min-height: 282px;
    object-fit: cover;
    border-radius: 30px;
    width: 50%;
  }

  .reviews__experience-number {
    font-size: 48px;
  }

  .reviews__experience-text {
    font-size: 20px;
  }

  .reviews__experience {
    margin-top: 30px;
    gap: 30px;
  }

  .reviews__experience-item {
    gap: 10px;
  }

  .reviews__list {
    margin-top: 30px;
  }

  .reviews__item {
    padding: 30px;
  }

  .reviews__stars svg {
    width: 20%;
    height: 35px;
  }

  .reviews__item-text {
    margin-top: 15px;
  }

  .request__subtitle {
    text-align: center;
  }

  .request__form {
    margin-top: 30px;
  }

  .form__field {
    height: 48px;
  }

  .form__textarea {
    height: 113px;
  }

  .form__button {
    margin-top: 30px;
  }

  .certificate__image {
    height: 160px;
    width: 160px;
  }

  .footer__text {
    max-width: 412px;
  }

  .footer__nav-list {
    gap: 20px;
  }

  .footer__part:first-child {
    padding-bottom: 40px;
  }

  .footer__part:last-child {
    padding-top: 40px;
  }

  .footer__rights,
  .footer__privacy {
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
  }

  .header__container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero__wrapper {
    gap: 20px;
  }

  .hero__actions {
    gap: 10px;
  }

  .recovering__step {
    padding: 30px;
  }

  .advantages {
    border-radius: 40px;
  }

  .request__wrapper {
    border-radius: 40px;
    padding: 40px;
  }

  .mobile-menu .header__btn {
    border: none;
  }
}

@media (max-width: 767px) {
  .burger-wrapper__phone {
    display: flex;
  }

  .mobile-menu {
    width: 100vw;
    transform: translateX(100vw);
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .hero {
    background-image: none;
    padding-top: 110px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn-arrow::after {
    right: 75px;
  }

  .header__phone.burger-mobile {
    display: none;
  }

  .burger-wrapper {
    gap: 20px;
  }

  .hero {
    padding-bottom: 40px;
  }

  .recovering {
    padding: 40px 0 80px;
  }

  .recovering__step {
    width: 100%;
  }

  .recovering__start {
    padding: 30px 20px;
  }

  .start__btn.btn-arrow::after {
    right: 25px;
  }

  .advantages {
    padding: 80px 0;
  }

  .advantages__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .advantages__item {
    min-height: 202px;
  }

  .props {
    padding: 80px 0;
  }

  .props__item:nth-child(even) {
    padding: 0;
    flex-direction: column;
    padding-top: 30px;
    gap: 20px;
  }

  .props__item {
    flex-direction: column;
    padding: 0;
    padding-top: 30px;
    gap: 20px;
  }

  .props__image {
    width: 100%;
    min-height: auto;
  }

  .props__description {
    padding: 0 30px;
  }

  .reviews {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .reviews__experience {
    flex-direction: column;
    padding: 0;
  }

  .reviews__container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .reviews__list {
    flex-direction: column;
  }

  .reviews__stars svg {
    width: auto;
    height: auto;
  }

  .request {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .request__wrapper {
    border-radius: 40px;
    padding: 80px 20px;
  }

  .form__fields {
    flex-direction: column;
  }

  .certificate__list {
    padding: 0 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .certificate__image {
    width: 130px;
    height: 130px;
  }

  .certificate__item {
    padding: 17px;
  }

  .requesr__container {
    padding: 0;
  }

  .footer__part {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__logo {
    text-align: center;
  }

  .footer__nav {
    margin-top: 40px;
    align-items: center;
  }

  .footer__nav-list {
    gap: 60px;
  }

  .footer__connection {
    margin-top: 40px;
    align-items: center;
  }

  .footer {
    padding: 80px 0;
  }

  .advantages__item-title {
    width: auto;
  }

  .header {
    position: fixed;
    background: var(--white);
  }

  .header--sticky {
    display: none;
  }
}
