@font-face {
  font-family: "PFBulletinSansPro";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: local('PFBulletinSansPro Black'), local('PFBulletinSansPro-Black'),
  url("../fonts/pf-bulletin-sans-pro-black.woff2") format("woff2"),
  url("../fonts/pf-bulletin-sans-pro-black.woff") format("woff"),
  url("../fonts/pf-bulletin-sans-pro-black.ttf") format("ttf");
}

@font-face {
  font-family: "PFBulletinSansPro";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: local('PFBulletinSansPro Bold'), local('PFBulletinSansPro-Bold'),
  url("../fonts/pf-bulletin-sans-pro-bold.woff2") format("woff2"),
  url("../fonts/pf-bulletin-sans-pro-bold.woff") format("woff"),
  url("../fonts/pf-bulletin-sans-pro-bold.ttf") format("ttf");
}

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

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

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

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

html {
  box-sizing: border-box;
  height: 100%;
}

button {
  outline: unset;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --yellow: #D9E70C;
  --green: #048456;
  --light-green: #7FBA44;
  --dark-green: #096242;
  --dark-white: #F1F1F1;
  --dark-gray: #333333;
  --light-blue: #2F80ED;
  --blue: #2F58ED;
  --gray: #4F4F4F;
}

.visually-hidden:not(:focus):not(active) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
  border: none;
}

img {
  display: block;
}

svg {
  flex-shrink: 0;
}

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

h1 {
  margin: 0;
}

.body {
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: 400;
}

.container {
  max-width: 1780px;
  margin: 0 auto;
}

.container-small {
  max-width: 1540px;
  margin: 0 auto;
}

.container-x {
  padding-left: 40px;
  padding-right: 40px;
}

.container-y {
  padding-bottom: 90px;
  padding-top: 90px;
}

.head {
  background-image: url("../images/background-head.png");
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

.head__wrap {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 880px;
  position: relative;
}

.head__link {
  position: absolute;
  left: 40px;
  top: 80px;
  padding: 10px;
}

.head__sportsoft {
  opacity: 0.5;
}

.head__link:hover .head__sportsoft {
  opacity: 1;
}

.heading {
  font-family: "PFBulletinSansPro", "Arial", sans-serif;
  font-weight: 900;
  font-size: 60px;
  line-height: 66px;
  color: var(--white);
  max-width: 990px;
}

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

.heading--margin-40 {
  margin: 0 0 40px;
}

.heading__unusual {
  color: var(--yellow);
}

.heading__unusual--uppercase {
  text-transform: uppercase;
}

.heading__unusual--underline {
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-underline-offset: 1px;
  text-decoration-color: var(--green);
}

.heading-h2 {
  font-family: "PFBulletinSansPro", "Arial", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 58px;
  color: var(--white);
}

.heading-h2--dark-gray {
  color: var(--dark-gray);
}

.heading-h2--green {
  color: var(--green);
}

.heading-h2--margin-20 {
  margin: 0 0 20px;
}

.heading-h2--margin-40 {
  margin: 0 0 40px;
}

.heading-h2--margin-90 {
  margin: 0 0 90px;
}

.heading-h2__unusual {
  color: var(--yellow);
}

.heading-h2--dark-gray .heading-h2__unusual {
  color: var(--green);
}

.heading-h2__unusual--underline {
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-underline-offset: 1px;
  text-decoration-color: var(--green);
}

.heading-h2--dark-gray .heading-h2__unusual--underline {
  text-decoration-color: var(--white);
}

.answers {
  background-color: var(--white);
}

.answers__row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 130px;
}

.answers__content {
  max-width: 715px;
}

.answers__text {
  font-size: 18px;
  line-height: 38px;
  color: var(--dark-gray);
}

.answers__info {
  font-size: 18px;
  line-height: 38px;
  font-weight: 500;
  background-color: var(--dark-white);
  color: var(--dark-gray);
  padding: 20px;
  margin: 0 0 0 -20px;
}

.answers__text--margin-30 {
  margin: 0 0 30px;
}

.answers__link {
  color: var(--light-blue);
  font-weight: 500;
}

.answers__link:hover {
  color: var(--blue);
  transition: 0.3s;
}

.answers__bold {
  font-weight: 700;
}

.answers__img {
  margin: -190px 0 0;
  width: 100%;
  max-width: 650px;
}

.answers__wrap {
  display: flex;
  flex-direction: column;
  gap: 125px;
}

.difference {
  background-image: url("../images/background-difference.svg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.difference:before {
  content: url("../images/difference-img.png");
  position: absolute;
  right: -170px;
  top: 120px;
}

.difference__content {
  padding-top: 340px;
}

.difference__wrap {
  margin: 0 0 90px;
  max-width: 820px;
}

.difference__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 38px;
  color: var(--dark-white);
  max-width: 770px;
}

.difference__info {
  margin: 0 auto 90px;
  text-align: center;
  max-width: 1130px;
}

.difference__info .heading {
  max-width: none;
}

.difference__info .difference__text {
  max-width: 790px;
  margin: 0 auto;
}

.difference__list {
  max-width: 760px;
  margin: 0 auto 90px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.difference__item {
  display: flex;
  font-weight: 600;
  font-size: 24px;
  line-height: 50px;
  color: var(--dark-white);
}

.difference__icon {
  margin: 5px 30px 0 0;
}

.slider {
  position: relative;
}

.slider__list {
  margin: 0 0 90px;
}

.slider__arrows-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.slider__arrows-link {
  display: block;
  position: absolute;
  bottom: -21px;
  padding: 15px;
}

.slider__arrows-link--left {
  left: calc(50% - 98px);
}

.slider__arrows-link--right {
  right: calc(50% - 98px);
}

.slider__arrows-link--left .slider__arrow {
  transform: rotate(180deg);
}

.slider--green .slider__arrow {
  fill: var(--yellow);
}

.slider--green .slider__arrows-link:hover .slider__arrow {
  fill: var(--light-green);
  transition: 0.3s;
}

.slider--yellow .slider__arrow {
  fill: var(--green);
}

.slider--yellow .slider__arrows-link:hover .slider__arrow {
  fill: var(--dark-green);
  transition: 0.3s;
}

.slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0 25px;
}

.slider__nav-item {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
}

.slider--green .slider__nav-item {
  border: 1px solid var(--white);
}

.slider--green .slider__nav-item.tns-nav-active,
.slider--green .slider__nav-item:hover {
  background-color: var(--white);
  transition: 0.3s;
}

.slider--yellow .slider__nav-item {
  border: 1px solid var(--dark-gray);
}

.slider--yellow .slider__nav-item.tns-nav-active,
.slider--yellow .slider__nav-item:hover {
  background-color: var(--dark-gray);
  transition: 0.3s;
}

.info {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 90px;
}

.info__block {
  border: 1px solid var(--dark-gray);
  border-radius: 10px;
  height: 405px;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.info__block::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.info__picture {
  display: block;
  width: 100%;
  height: auto;
}

.info__img {
  width: 100%;
  height: auto;
}

.info__text {
  font-family: "PFBulletinSansPro", "Arial", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 80px;
  position: absolute;
  bottom: -90px;
}

.slider--green .info__text {
  color: var(--white);
}

.slider--yellow .info__text {
  color: var(--dark-gray);
}

.advantages {
  background-color: var(--yellow);
}

.advantages__wrap {
  padding-top: 150px;
  padding-bottom: 150px;
}

.advantages .heading-h2 {
  max-width: 920px;
}

.advantages__list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 50px;
  margin: 0 0 90px;
}

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

.advantages__icon {
  margin: 0 0 30px;
}

.advantages__text {
  font-size: 18px;
  line-height: 36px;
  color: var(--gray);
  text-align: center;
}

.advantages__bold {
  font-weight: 700;
}

.advantages__infos {
  display: flex;
  align-items: center;
  max-width: 1205px;
  margin: 0 auto 130px;
  border: 1px solid var(--dark-gray);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 50px 30px;
  background-color: var(--light-green);
}

.advantages__goal {
  flex-shrink: 0;
}

.advantages__info {
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  color: var(--dark-gray);
  padding: 0 100px 0 15px;
  text-align: center;
  max-width: 1010px;
  margin: 0 auto;
}

.actual {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.actual__wrap {
  padding-top: 210px;
  padding-bottom: 210px;
}

.actual .heading {
  max-width: 1000px;
}

.actual__texts {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
}

.actual__text {
  font-size: 18px;
  line-height: 36px;
  font-weight: 500;
  color: var(--dark-gray);
}

.actual__bold {
  font-weight: 700;
}

.actual__link {
  color: var(--light-blue);
}

.actual__link:hover {
  color: var(--blue);
  transition: 0.3s;
}

.actual__decor {
  position: absolute;
  right: -350px;
  bottom: -350px;
}

.footer {
  background-color: var(--dark-gray);
}

.footer__blocks {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  margin: 0 0 60px;
}

.footer__info {
  max-width: 595px;
}

.footer__text {
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 30px;
  color: var(--dark-white);
  max-width: 460px;
}

.footer__link {
  color: var(--dark-white);
}

.footer__link:hover {
  transition: 0.3s;
  color: var(--green);
}

.form__list {
  display: grid;
  gap: 20px;
  margin: 0 0 60px;
}

.form__group {
  position: relative;
}

.form__input {
  outline: none;
  background-color: var(--white);
  outline: none;
  border: none;
}

.form__input,
.form__placeholder {
  font-size: 14px;
  line-height: 18px;
  width: 100%;
  padding: 19px;
  color: var(--gray);
}

.form__group--file .form__input {
  padding: 17px 19px;
  cursor: pointer;
}

.form__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.form__required {
  color: var(--green);
  margin: 0 0 0 5px;
}

.form__group--file .form__placeholder {
  background-color: var(--white);
  padding: 12px 19px;
}

.form__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form__text {
  font-size: 12px;
  line-height: 22px;
  color: var(--white);
  max-width: 460px;
}

.form__link {
  font-weight: 700;
  color: var(--white);
}

.form__link:hover {
  transition: 0.3s;
  color: var(--green);
}

.form__button {
  min-width: 265px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--dark-white);
  border-radius: 50px;
  background-color: var(--green);
  padding: 15px;
}

.form__button:hover {
  transition: 0.3s;
  background-color: var(--dark-green);
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
}

.footer__title {
  font-weight: 900;
  font-size: 30px;
  line-height: 44px;
  color: var(--green);
  margin: 0 0 25px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 50px;
}

.socials__item {
  flex-shrink: 0;
}

.socials__link {
  display: block;
}

.socials__icon {
  fill: var(--white);
}

.socials__link:hover .socials__icon {
  fill: var(--green);
  transition: 0.3s;
}

.footer__author {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__logo {
  flex-shrink: 0;
  margin: 0 0 15px;
  fill: var(--white);
}

.footer__author:hover .footer__logo {
  fill: var(--green);
  transition: 0.3s;
}

.footer__name {
  font-size: 20px;
  line-height: 24px;
  color: var(--white);
  font-family: "Roboto", sans-serif;
}

.footer__author:hover .footer__name {
  color: var(--green);
  transition: 0.3s;
}

.footer__success {
  color: var(--dark-white);
  font-size: 18px;
  line-height: 30px;
}

.help-block {
  font-family: "Roboto", sans-serif;
  padding: 5px 0;
  color: var(--green);
  font-size: 14px;
  line-height: 16px;
  display: none;
}

@media (max-width: 1780px) {
  .heading {
    font-size: 52px;
    line-height: 56px;
  }

  .heading-h2 {
    font-size: 48px;
    line-height: 52px;
  }

  .head__wrap {
    min-height: 780px;
  }

  .head__link {
    left: 20px;
    top: 60px;
  }

  .answers__row {
    gap: 35px;
  }

  .answers__wrap {
    gap: 75px;
  }

  .difference__content {
    padding-top: 280px;
  }

  .difference:before {
    right: -300px;
    top: 60px;
  }

  .info {
    gap: 35px;
  }

  .advantages__wrap {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .advantages__infos {
    margin: 0 auto 110px;
  }

  .actual__wrap {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .socials {
    gap: 35px;
  }
}

@media (max-width: 1480px) {
  .head {
    background-position: top center;
  }

  .heading {
    font-size: 44px;
    line-height: 48px;
  }

  .heading-h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .head__wrap {
    min-height: 680px;
  }

  .answers__img {
    margin: 0;
    height: auto;
  }

  .difference:before {
    right: -430px;
    top: 30px;
  }

  .difference__content {
    padding-top: 230px;
  }

  .difference__item {
    font-size: 22px;
    line-height: 26px;
  }

  .difference__icon {
    margin: -5px 30px 0 0;
  }

  .info__block {
    height: 340px;
  }

  .info__text {
    font-size: 34px;
    line-height: 40px;
    bottom: -65px;
  }

  .advantages__wrap {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .advantages__infos {
    margin: 0 auto 90px;
  }

  .actual__wrap {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .actual__decor {
    right: -580px;
    bottom: -430px;
  }

  .form__button {
    min-width: 210px;
  }

  .footer__title {
    font-size: 28px;
    line-height: 32px;
  }
}

@media (max-width: 1180px) {
  .container-x {
    padding-left: 30px;
    padding-right: 30px;
  }

  .container-y {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .head__wrap {
    min-height: 580px;
  }

  .heading {
    font-size: 36px;
    line-height: 40px;
  }

  .heading-h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .heading--margin-40 {
    margin: 0 0 30px;
  }

  .heading-h2--margin-90 {
    margin: 0 0 60px;
  }

  .heading-h2--margin-40 {
    margin: 0 0 30px;
  }

  .answers__row {
    grid-template-columns: repeat(1,1fr);
    align-items: center;
    gap: 55px;
    text-align: center;
  }

  .answers__img {
    order: 1;
    margin: 0 auto;
  }

  .answers__content {
    order: 2;
    margin: 0 auto;
  }

  .answers__info {
    margin: 0 -20px;
  }

  .answers__wrap {
    gap: 55px;
  }

  .difference:before {
    display: none;
  }

  .difference__content {
    padding-top: 180px;
  }

  .difference__wrap {
    margin: 0 0 60px;
  }

  .difference__list {
    margin: 0 auto 60px;
  }

  .difference__info {
    margin: 0 auto 60px;
  }

  .difference__item {
    font-size: 20px;
    line-height: 24px;
  }

  .difference__icon {
    margin: -7px 30px 0 0;
  }

  .slider__list {
    margin: 0 0 60px;
  }

  .info {
    gap: 25px;
  }

  .info__block {
    height: 220px;
  }

  .info__text {
    font-size: 28px;
    line-height: 34px;
    bottom: -45px;
  }

  .advantages__list {
    grid-template-columns: repeat(2,1fr);
    margin: 0 0 60px;
  }

  .advantages__goal {
    margin: 0 15px 0 0;
  }

  .advantages__infos {
    padding: 45px 25px;
    margin: 0 auto 60px;
  }

  .advantages__info {
    padding: 0;
  }

  .actual__decor {
    display: none;
  }

  .footer__blocks {
    gap: 30px;
    margin: 0 0 40px;
  }

  .form__list {
    margin: 0 0 40px;
  }

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

  .form__text {
    text-align: center;
  }

  .form__input,
  .form__placeholder {
    padding: 15px;
  }

  .form__group--file .form__input {
    padding: 13px 15px;
  }

  .form__group--file .form__placeholder {
    padding: 8px 15px;
  }

  .socials {
    gap: 25px;
  }

  .footer__title {
    font-size: 24px;
    line-height: 28px;
  }

  .footer__name {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width: 780px) {
  .container-y {
    padding-bottom: 50px;
    padding-top: 50px;
  }

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

  .head__wrap {
    min-height: 480px;
  }

  .head__link {
    left: 10px;
    top: 40px;
  }

  .head__sportsoft {
    width: 300px;
    height: auto;
  }

  .heading {
    font-size: 28px;
    line-height: 32px;
  }

  .heading-h2 {
    font-size: 24px;
    line-height: 28px;
  }

  .heading-h2--margin-90 {
    margin: 0 0 40px;
  }

  .answers__row {
    gap: 35px;
  }

  .answers__text {
    font-size: 16px;
    line-height: 20px;
  }

  .answers__text--margin-30 {
    margin: 0 0 25px;
  }

  .answers__info {
    font-size: 16px;
    line-height: 20px;
  }

  .answers__wrap {
    gap: 35px;
  }

  .difference__content {
    padding-top: 180px;
  }

  .difference__text {
    font-size: 16px;
    line-height: 20px;
  }

  .difference__wrap {
    margin: 0 0 40px;
    text-align: center;
  }

  .difference__list {
    margin: 0 auto 40px;
  }

  .difference__info {
    margin: 0 auto 40px;
  }

  .difference__icon {
    margin: 0 15px 0 0;
    width: 20px;
    height: 20px;
  }

  .difference__item {
    font-size: 18px;
    line-height: 22px;
  }

  .slider__list {
    margin: 0 0 40px;
  }

  .info {
    grid-template-columns: repeat(1,1fr);
    gap: 40px;
  }

  .info__block {
    height: 280px;
  }

  .info__text {
    font-size: 22px;
    line-height: 28px;
    position: static;
  }

  .advantages__list {
    gap: 20px;
    margin: 0 0 40px;
  }

  .advantages__text {
    font-size: 16px;
    line-height: 22px;
  }

  .advantages__infos {
    padding: 40px 20px;
    margin: 0 auto 40px;
  }

  .advantages__info {
    font-size: 16px;
    line-height: 22px;
  }

  .actual__texts {
    gap: 20px;
  }

  .actual__text {
    font-size: 16px;
    line-height: 24px;
  }

  .form__list {
    margin: 0 0 25px;
  }

  .footer__blocks {
    margin: 0 0 25px;
    gap: 30px;
    grid-template-columns: repeat(1,1fr);
  }

  .footer__text {
    font-size: 16px;
    line-height: 22px;
  }

  .form__button {
    font-size: 16px;
    line-height: 20px;
    min-width: 265px;
  }

  .form__text {
    line-height: 20px;
  }

  .socials {
    gap: 20px;
  }

  .footer__title {
    font-size: 20px;
    line-height: 24px;
  }

  .footer__name {
    font-size: 16px;
    line-height: 20px;
  }

  .footer__logo {
    width: 130px;
    height: auto;
  }

  .heading__unusual--underline {
    text-decoration-thickness: 4px;
    text-underline-offset: 2px;
  }

  .heading-h2__unusual--underline {
    text-decoration-thickness: 4px;
    text-underline-offset: 2px;
  }
}

@media (max-width: 480px) {
  .container-y {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .container-x {
    padding-left: 15px;
    padding-right: 15px;
  }

  .head__wrap {
    min-height: 380px;
  }

  .head__link {
    top: 20px;
  }

  .head__sportsoft {
    width: 200px;
  }

  .heading {
    font-size: 20px;
    line-height: 24px;
  }

  .heading-h2 {
    font-size: 18px;
    line-height: 22px;
  }

  .heading__unusual--underline {
    text-decoration-thickness: 2px;
  }

  .heading-h2__unusual--underline {
    text-decoration-thickness: 2px;
  }

  .heading--margin-40 {
    margin: 0 0 20px;
  }

  .heading-h2--margin-90 {
    margin: 0 0 20px;
  }

  .heading-h2--margin-40 {
    margin: 0 0 20px;
  }

  .answers__row {
    gap: 25px;
  }

  .answers__text {
    font-size: 14px;
    line-height: 18px;
  }

  .answers__text--margin-30 {
    margin: 0 0 20px;
  }

  .answers__info {
    font-size: 14px;
    line-height: 18px;
    padding: 15px;
    margin: 0 -15px;
  }

  .answers__wrap {
    gap: 25px;
  }

  .difference__content {
    padding-top: 160px;
  }

  .difference__text {
    font-size: 14px;
    line-height: 18px;
  }

  .difference__wrap {
    margin: 0 0 25px;
  }

  .difference__info {
    margin: 0 auto 25px;
  }

  .difference__list {
    gap: 20px;
    margin: 0 auto 25px;
  }

  .difference__icon {
    margin: 0 10px 0 0;
  }

  .difference__item {
    font-size: 16px;
    line-height: 20px;
  }

  .slider__list {
    margin: 0 0 25px;
  }

  .info {
    gap: 20px;
  }

  .info__block {
    height: 180px;
    border-radius: 5px;
  }

  .info__text {
    font-size: 16px;
    line-height: 22px;
  }

  .advantages__list {
    gap: 25px;
    grid-template-columns: repeat(1,1fr);
    margin: 0 0 25px;
  }

  .advantages__icon {
    margin: 0 0 15px;
    width: 100px;
    height: auto;
  }

  .advantages__text {
    font-size: 14px;
    line-height: 20px;
  }

  .advantages__infos {
    padding: 25px 15px;
    flex-direction: column;
    margin: 0 0 25px;
  }

  .advantages__goal {
    margin: 0 0 10px;
  }

  .advantages__info {
    font-size: 14px;
    line-height: 20px;
  }

  .actual__texts {
    gap: 15px;
  }

  .actual__text {
    font-size: 14px;
    line-height: 20px;
  }

  .form__list {
    margin: 0 0 20px;
    gap: 15px;
  }

  .footer__blocks {
    gap: 15px;
    margin: 0 0 20px;
  }

  .footer__text {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 20px;
  }

  .form__input,
  .form__placeholder {
    padding: 10px;
  }

  .form__group--file .form__input {
    padding: 8px 10px;
  }

  .form__placeholder {
    font-size: 13px;
    line-height: 17px;
  }

  .form__group--file .form__placeholder {
    padding: 3px 10px;
  }

  .form__wrap {
    gap: 20px;
  }

  .form__button {
    font-size: 14px;
    line-height: 18px;
    padding: 10px;
  }

  .form__text {
    line-height: 16px;
  }

  .socials {
    gap: 15px;
  }

  .footer__title {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 15px;
  }

  .footer__logo {
    margin: 0 0 10px;
    width: 120px;
  }

  .footer__name {
    font-size: 14px;
    line-height: 18px;
  }

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

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

  .footer__author {
    text-align: center;
    align-items: center;
  }

  .help-block {
    font-size: 12px;
    line-height: 14px;
  }
}



