@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100..900&family=Unbounded:wght@200..900&display=swap");
:root {
  --accent-color: #4A0CB6;
  --box-shadow-color: rgba(74, 12, 182, 0.3);
  --box-shadow-extra-color: rgba(74, 12, 182, 0.15);
  --gradient-back: linear-gradient(139deg, #fcfbff 0%, #f5f6ff 44.94%, #f7f1ff 74.42%, #e7d9ff 100%);
  --gradient-back-extra: linear-gradient(180deg, #f9f8ff 0%, #fefcff 14%, #fefcff 88.25%, #f9f8ff 100%);
  --gradient-text: linear-gradient(90deg, #4a0cb6 0%, #4aa3f9 100%);
  --main-back-color: #FFFFFF;
  --main-text-color: #555555;
  --main-title-color: #252525;
}

body {
  background: #FFFFFF;
  min-height: 100vh;
  color: var(--main-text-color);
  font-family: "Raleway", sans-serif;
  font-feature-settings: "pnum" on, "lnum" on !important;
  font-size: clamp(1rem, 1.25vmax, 5rem);
  font-weight: 400;
  overflow-x: hidden;
  overflow-y: overlay;
}
body.no-scroll {
  pointer-events: none;
}

.header {
  padding: 25px 85px;
  width: 100%;
}
.header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.header__logo {
  flex: 0 0 auto;
  width: max(170px, 10.8vmax);
}
.header__logo-icon {
  height: 100%;
  width: 100%;
}
.header__nav {
  margin: 0px 30px;
  width: max(525px, 36vmax);
}
.header__menu {
  display: flex;
  justify-content: space-between;
}
.header__menu-el {
  color: var(--main-title-color);
  cursor: pointer;
  font-size: clamp(1rem, 1.11vmax, 2rem);
  transition: all 0.2s linear;
  text-transform: capitalize;
}
.header__burger {
  display: none;
}
.header__burger path {
  transition: all 0.2s linear;
}
.header__button {
  flex: 0 0 auto;
}
.header__popup {
  background: #FFFFFF;
  align-items: center;
  display: none;
  flex-direction: column;
  padding: 20px 60px;
  position: fixed;
  left: 0px;
  top: -100%;
  transition: all 0.3s linear;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.header__popup.active {
  top: 0px;
}

.button {
  background-color: var(--accent-color);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: clamp(1rem, 1.11vmax, 2rem);
  font-weight: 600;
  padding: max(8px, 0.5vmax) max(25px, 1.7vmax);
  transition: all 0.2s linear;
  text-transform: capitalize;
}

.title {
  color: var(--main-title-color);
  font-family: "Unbounded", sans-serif;
  font-size: max(36px, 2.5vmax);
  font-weight: 600;
  line-height: 150%;
  text-transform: capitalize;
}
.title--gradient {
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home {
  background: #FFFFFF url("../assets/images/backgrounds/main-back.png") center center no-repeat;
  background-size: cover;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  padding: max(140px, 9.7vmax) max(150px, 10.4vmax);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
}
.home__title {
  font-size: clamp(1rem, 3.75vmax, 5rem);
  width: max(760px, 52.8vmax);
  margin-bottom: 25px;
  z-index: 1;
}
.home__text {
  margin-bottom: 25px;
  margin-left: 100px;
  width: max(560px, 39vmax);
  z-index: 1;
}
.home__button {
  margin-left: 100px;
  z-index: 1;
}
.home__wrapper {
  position: absolute;
  right: 150px;
  top: 60px;
  height: max(480px, 33.3vmax);
  width: max(330px, 23vmax);
  z-index: 1;
}
.home__wrapper-image {
  pointer-events: none;
  height: 100%;
  width: 100%;
}
.home__icon {
  position: absolute;
  z-index: 0;
}
.home__icon--dizzy {
  top: 30px;
  right: 40%;
  height: 72px;
  width: 72px;
}
.home__icon--sparkles {
  bottom: 70px;
  left: 30%;
}
.home__icon img {
  pointer-events: none;
  transition: all 0.1s ease;
  height: 100%;
  width: 100%;
}

.platforms {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: max(130px, 9vmax) max(140px, 9.7vmax) max(65px, 4.5vmax);
}
.platforms__title {
  margin-bottom: 50px;
  text-align: center;
}
.platforms__wrapper {
  background: var(--gradient-back);
  border-radius: 25px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 60px 35px;
  width: max(1115px, 78vmax);
}

.services,
.about {
  display: flex;
  flex-direction: column;
  padding: max(65px, 4.5vmax) max(140px, 9.7vmax) 0px;
  overflow: hidden;
}
.services__section,
.about__section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
  position: relative;
}
.services__wrapper,
.about__wrapper {
  align-self: flex-start;
  flex: 0 0 35%;
}
.services__wrapper-image,
.about__wrapper-image {
  pointer-events: none;
  height: 100%;
  width: 100%;
}
.services__block,
.about__block {
  flex: 0 0 45%;
}
.services__block-title,
.about__block-title {
  color: var(--accent-color);
  font-size: max(24px, 1.7vmax);
  margin-bottom: 25px;
}
.services__block-text,
.about__block-text {
  margin-bottom: 25px;
}

.about {
  background: #FFF var(--gradient-back-extra);
  padding: max(130px, 9vmax) max(140px, 9.7vmax) max(65px, 4.5vmax);
}
.about__section {
  background: #FFFFFF;
  border-radius: 25px;
  margin-bottom: 25px;
}
.about__section:first-child {
  align-items: center;
  padding-right: 40px;
}
.about__section:last-child {
  padding: 65px 0px 65px 40px;
}
.about__wrapper {
  flex: 0 0 50%;
}
.about__block {
  flex: 0 0 45%;
  position: relative;
}
.about__block-title {
  color: var(--main-title-color);
  font-size: max(24px, 1.7vmax);
  line-height: 130%;
  text-transform: none;
}
.about__block-title--henriko {
  width: max(360px, 25vmax);
}
.about__icon {
  position: absolute;
}
.about__icon img {
  height: 100%;
  width: 100%;
}
.about__icon--hand {
  right: 0px;
  top: 0px;
  height: 50px;
  width: 50px;
  z-index: 0;
}
.about__icon--star {
  bottom: -95px;
  left: -80px;
  height: 72px;
  width: 72px;
}

.item {
  cursor: pointer;
  margin-bottom: 20px;
  width: 100%;
}
.item:last-child {
  margin-bottom: 0px;
}
.item__row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  transition: all 0.2s linear;
}
.item__row.active {
  margin-bottom: 10px;
}
.item__title {
  cursor: pointer;
  color: var(--main-title-color);
  font-weight: 600;
}
.item__icon {
  cursor: pointer;
  transition: all 0.2s linear;
}
.item__icon.active {
  transform: rotate(180deg);
}
.item__icon path {
  transition: all 0.2s linear;
}
.item__content {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.2s linear;
}
.item__text {
  line-height: 115%;
}

.reasons {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: max(130px, 9vmax) max(140px, 9.7vmax) max(65px, 4.5vmax);
  overflow: hidden;
}
.reasons__title {
  line-height: 130%;
  margin-bottom: 25px;
  text-align: center;
  width: max(560px, 39vmax);
}
.reasons__text {
  margin-bottom: 65px;
  text-align: center;
  width: max(960px, 66.7vmax);
}
.reasons__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.reasons__item {
  box-shadow: 0 0 64px 24px var(--box-shadow-extra-color);
  border-radius: 25px;
  display: flex;
  flex: 0 0 32%;
  flex-direction: column;
  padding: 50px 25px;
  height: max(350px, 24.4vmax);
}
.reasons__item-wrapper {
  margin-bottom: 25px;
  height: max(72px, 5vmax);
  width: max(72px, 5vmax);
}
.reasons__item-wrapper img {
  pointer-events: none;
  height: 100%;
  width: 100%;
}
.reasons__item-title {
  color: var(--main-title-color);
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 10px;
}
.reasons__item--last {
  align-items: center;
  flex: 0 0 100%;
  margin-top: 20px;
  margin-bottom: 50px;
  height: max(260px, 18vmax);
  width: 100%;
}
.reasons__item--last .reasons__item-text {
  text-align: center;
  width: max(620px, 43vmax);
}

.how {
  display: flex;
  flex-direction: column;
  padding: max(65px, 4.5vmax) max(140px, 9.7vmax);
}
.how__title {
  margin-bottom: 25px;
}
.how__row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}
.how__text {
  flex: 0 0 75%;
}
.how__content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.how__item {
  flex: 0 0 48%;
  position: relative;
  z-index: 1;
}
.how__item-wrapper {
  background: #FFFFFF;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  padding: 50px 25px 40px;
  height: 100%;
}
.how__item-gradient {
  background: var(--gradient-text);
  border-radius: 26px;
  position: absolute;
  left: -1px;
  top: -1px;
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  z-index: -1;
}
.how__item-title {
  color: var(--main-title-color);
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.how__item-text {
  margin-bottom: 25px;
  text-align: center;
}
.how__item-list {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}
.how__item-el {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
}
.how__item-el::before {
  content: url("../assets/images/emojis/Circle.png");
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
}

.ready {
  box-shadow: 0 0 128px 24px var(--box-shadow-color);
  border-radius: 25px;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 65px auto 130px;
  position: relative;
  padding: 90px 130px;
  width: max(700px, 48.6vmax);
}
.ready__title, .ready__text {
  margin-bottom: 25px;
  text-align: center;
  width: max(430px, 28.9vmax);
}
.ready__icon {
  position: absolute;
  height: 72px;
  width: 72px;
}
.ready__icon img {
  pointer-events: none;
  height: 100%;
  width: 100%;
}
.ready__icon--star {
  right: -35px;
  top: -35px;
}
.ready__icon--rocket {
  bottom: 20px;
  left: 35px;
}

.footer {
  background: var(--accent-color);
  padding: 35px 80px;
}
.footer__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer__logo {
  flex: 0 0 auto;
  width: max(170px, 10.8vmax);
}
.footer__logo-icon {
  height: 100%;
  width: 100%;
}
.footer__nav {
  margin: 0px 30px;
  width: max(525px, 36vmax);
}
.footer__menu {
  display: flex;
  justify-content: space-between;
}
.footer__menu-el {
  color: #FFFFFF;
  cursor: pointer;
  font-size: clamp(1rem, 1.11vmax, 5rem);
  transition: all 0.2s linear;
  text-transform: capitalize;
}
.footer__social {
  display: flex;
  gap: 25px;
}
.footer__social-icon {
  height: max(24px, 1.6vmax);
  width: max(24px, 1.6vmax);
}
.footer__social-icon span {
  transition: all 0.2s linear;
}

.blackout {
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  display: flex;
  justify-content: center;
  pointer-events: none;
  position: fixed;
  opacity: 0;
  left: 0px;
  top: 0px;
  transition: all 0.2s linear;
  height: 100%;
  width: 100%;
  z-index: 4;
}
.blackout.active {
  pointer-events: auto;
  opacity: 1;
}

.popup {
  background: #FFFFFF;
  box-shadow: 0 0 128px 24px rgba(74, 12, 182, 0.3);
  border-radius: 25px;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: max(65px, 4.5vmax) max(130px, 9vmax);
  pointer-events: none;
  position: relative;
  opacity: 0;
  transition: all 0.2s linear;
}
.popup.active {
  pointer-events: auto;
  opacity: 1;
}
.popup__icon {
  cursor: pointer;
  position: absolute;
  transition: all 0.2s linear;
  right: 20px;
  top: 20px;
}
.popup__title {
  margin-bottom: 15px;
}
.popup__text {
  margin-bottom: 25px;
  text-align: center;
  max-width: max(430px, 30vmax);
  width: 100%;
}
.popup__form {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: max(610px, 42.3vmax);
  width: 100%;
}
.popup__form-border {
  border-radius: 10px;
  position: absolute;
  left: -1px;
  top: -1px;
  height: calc(100% + 2px);
  width: calc(100% + 2px);
}
.popup__form-wrapper {
  position: relative;
  margin-bottom: 5px;
  width: 100%;
}
.popup__form-wrapper--last {
  margin-bottom: 25px;
}
.popup__form-input {
  background: #FFFFFF;
  border-radius: 10px;
  font-size: max(16px, 1vmax);
  position: relative;
  padding: 15px;
  height: 50px;
  width: 100%;
  z-index: 1;
}
.popup__form-input::-webkit-scrollbar {
  width: 0px;
}
.popup__form-border {
  background: var(--gradient-text);
  border-radius: 11px;
  position: absolute;
  left: -1px;
  top: -1px;
  height: 52px;
  width: calc(100% + 2px);
  z-index: 0;
}
.popup__form-checkbox {
  align-items: flex-start;
  display: flex;
  margin-bottom: 25px;
}
.popup__form-check {
  border: 1px solid rgb(195, 195, 195);
  flex: 0 0 auto;
  margin-right: 25px;
  height: 24px;
  width: 24px;
}
.popup__form-text {
  color: rgb(174, 174, 174);
  font-size: clamp(1rem, 1.1vmax, 5rem);
}
.popup__form-text a {
  color: var(--accent-color);
  text-decoration: underline;
}
.popup__form-button {
  align-self: center;
}

@media (hover: hover) {
  .button:hover {
    background: #6E3EC5;
  }
  .button:active {
    background: #3B0A92;
  }
  .button:disabled {
    background: #D2D1D3;
    color: #8F8C91;
  }
  .header__burger:hover path {
    fill: #4A0CB6;
  }
  .header__menu-el:hover {
    color: #6E3EC5;
  }
  .footer__menu-el:hover {
    color: #d9d9d9;
  }
  .footer__social-icon:hover path {
    fill: #d9d9d9;
  }
  .footer__social-icon--twitter:hover path {
    stroke: #d9d9d9;
  }
  .item__icon:hover path {
    stroke: #6E3EC5;
  }
  .popup__icon:hover path {
    stroke: var(--accent-color);
  }
}
@media (max-width: 1200px) {
  .header {
    padding: 25px 45px;
  }
  .home {
    padding: 140px 80px;
  }
  .home__title {
    max-width: 580px;
    width: 100%;
  }
  .home__button, .home__text {
    margin-left: 50px;
  }
  .home__text {
    max-width: 470px;
    width: 100%;
  }
  .home__wrapper {
    right: 80px;
  }
  .home__icon {
    height: 50px;
    width: 50px;
  }
  .platforms {
    padding: 130px 80px 65px;
  }
  .platforms__wrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1000px;
    width: 100%;
  }
  .services {
    padding: 65px 80px 0px;
  }
  .about {
    padding: 130px 80px 65px;
  }
  .reasons {
    padding: 130px 80px 65px;
  }
  .reasons__item {
    flex: 0 0 31%;
  }
  .how {
    padding: 65px 80px;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 20px 60px;
  }
  .header__button, .header__nav {
    display: none;
  }
  .header__burger {
    display: block;
  }
  .header__popup {
    display: flex;
  }
  .header__popup .header__row {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    width: 100%;
  }
  .header__popup .header__button, .header__popup .header__nav {
    display: block;
  }
  .header__popup .header__menu {
    align-items: center;
    flex-direction: column;
  }
  .header__popup .header__menu-el {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
  }
  .header__popup .header__button {
    margin-top: 25px;
    max-width: 150px;
  }
  .title {
    font-size: 36px;
    font-weight: 500;
    line-height: 110%;
  }
  .home {
    align-items: center;
    padding: 60px 60px 65px;
  }
  .home__title {
    order: 1;
    margin-bottom: 50px;
  }
  .home__title, .home__text {
    max-width: 100%;
    text-align: center;
  }
  .home__button, .home__text {
    margin-left: 0px;
  }
  .home__text {
    order: 3;
  }
  .home__button {
    order: 4;
  }
  .home__wrapper {
    order: 2;
    position: static;
    margin-bottom: 65px;
  }
  .home__icon--dizzy {
    right: 60px;
    top: 210px;
  }
  .home__icon--sparkles {
    bottom: 240px;
    left: 75px;
  }
  .platforms {
    padding: 65px 25px 25px;
  }
  .platforms__title {
    max-width: 550px;
    margin-bottom: 25px;
  }
  .platforms__wrapper {
    justify-content: space-between;
    padding: 35px;
  }
  .platforms__wrapper-icon--google {
    order: 1;
  }
  .platforms__wrapper-icon--meta {
    order: 2;
  }
  .platforms__wrapper-icon--tiktok {
    order: 3;
  }
  .platforms__wrapper-icon--inst {
    order: 4;
  }
  .platforms__wrapper-icon--shopify {
    order: 5;
  }
  .platforms__wrapper-icon--snapchat {
    order: 6;
  }
  .platforms__wrapper-icon--twitter {
    order: 7;
  }
  .services {
    flex-direction: column;
    padding: 55px 60px 0px;
  }
  .services__wrapper {
    flex: 0 0 auto;
    position: absolute;
    top: -30px;
  }
  .services__wrapper--circle {
    left: 0px;
    height: 90px;
    width: 80px;
  }
  .services__wrapper--cubic {
    right: 0px;
    height: 90px;
    width: 90px;
  }
  .services__block {
    flex: 0 0 100%;
  }
  .services__block-title {
    margin-bottom: 55px;
  }
  .services__block-title--circle {
    padding-left: 130px;
  }
  .services__block-title--cubic {
    padding-right: 130px;
  }
  .about {
    padding: 50px 25px 25px;
  }
  .about__section {
    flex-direction: column;
    padding: 35px;
  }
  .about__section:first-child {
    padding-right: 35px;
    padding-bottom: 10px;
  }
  .about__section:last-child {
    flex-direction: column-reverse;
    padding: 35px;
  }
  .about__wrapper {
    flex: 0 0 100%;
    margin-bottom: 50px;
    width: 100%;
  }
  .about__block-title {
    font-size: 24px;
    padding-right: 60px;
  }
  .about__block-title--henriko {
    max-width: 420px;
    width: 100%;
  }
  .about__block-title--second {
    max-width: 570px;
  }
  .about__icon--hand {
    right: 10px;
  }
  .about__icon--star {
    bottom: auto;
    right: 10px;
    left: auto;
    top: 0px;
    height: 50px;
    width: 50px;
  }
  .reasons {
    padding: 65px 60px;
  }
  .reasons__text, .reasons__title {
    width: 100%;
  }
  .reasons__item {
    flex: 0 0 48%;
    padding: 25px 15px;
    height: auto;
  }
  .reasons__item--last .reasons__item-text {
    width: 100%;
  }
  .how {
    align-items: center;
    padding: 65px 60px;
  }
  .how__title {
    font-size: 36px;
    max-width: 450px;
    text-align: center;
    width: 100%;
  }
  .how__row {
    flex-direction: column;
  }
  .how__text {
    margin-bottom: 25px;
    text-align: center;
  }
  .how__content {
    flex-direction: column;
  }
  .ready {
    padding: 90px 20px;
    width: 85%;
  }
  .ready__title, .ready__text {
    max-width: 500px;
    width: 100%;
  }
  .ready__icon {
    height: 50px;
    width: 50px;
  }
  .ready__icon--star {
    right: -25px;
    top: -10px;
  }
  .ready__icon--rocket {
    bottom: 25px;
    left: 45px;
  }
  .footer {
    padding: 25px;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__logo, .footer__nav {
    margin-bottom: 25px;
  }
  .footer__nav {
    max-width: 520px;
    width: 100%;
  }
  .popup {
    padding: 65px 40px 50px;
    max-width: calc(100% - 50px);
    width: 100%;
  }
  .popup__form {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .header {
    padding: 20px 40px;
  }
  .header__logo {
    height: 40px;
    width: 140px;
  }
  .header__popup {
    padding: 20px 40px;
  }
  .header__popup .header__row {
    margin-bottom: 65px;
  }
  .title {
    font-size: 24px;
  }
  .home {
    padding: 25px 40px 50px;
  }
  .home__wrapper {
    margin-bottom: 50px;
    height: auto;
    max-width: 300px;
    width: 100%;
  }
  .home__text {
    font-size: 16px;
  }
  .home__icon {
    height: 36px;
    width: 36px;
  }
  .home__icon--dizzy {
    right: 25px;
    top: 125px;
  }
  .home__icon--sparkles {
    bottom: 240px;
    left: 40px;
  }
  .platforms {
    padding: 65px 0px 0px;
  }
  .platforms__wrapper {
    border-radius: 25px;
    padding: 35px 35px 0px;
    gap: 5px;
    width: 100%;
  }
  .platforms__wrapper-icon {
    margin-bottom: 35px;
  }
  .platforms__wrapper-icon--google {
    height: 35px;
    width: 105px;
  }
  .platforms__wrapper-icon--meta {
    height: 30px;
    width: 140px;
  }
  .platforms__wrapper-icon--tiktok, .platforms__wrapper-icon--shopify {
    height: 40px;
    width: 140px;
  }
  .platforms__wrapper-icon--shopify {
    order: 4;
  }
  .platforms__wrapper-icon--inst, .platforms__wrapper-icon--snapchat, .platforms__wrapper-icon--twitter {
    height: 45px;
    width: 45px;
  }
  .platforms__wrapper-icon--inst {
    order: 5;
  }
  .platforms__wrapper-icon--twitter {
    order: 6;
  }
  .platforms__wrapper-icon--snapchat {
    order: 7;
  }
  .services {
    padding: 65px 40px 0px;
  }
  .services__block-title {
    font-size: 18px;
  }
  .services__block-title--circle {
    padding-left: 100px;
  }
  .services__block-title--cubic {
    padding-right: 100px;
  }
  .item__row.active {
    margin-bottom: 5px;
  }
  .about {
    padding: 50px 0px;
  }
  .about__section {
    padding: 25px 35px;
  }
  .about__section:first-child {
    padding: 25px 35px 0px;
  }
  .about__section:last-child {
    padding: 25px 35px;
  }
  .about__wrapper {
    margin-bottom: 25px;
  }
  .about__block-title {
    font-size: 18px;
    padding-right: 45px;
    max-width: 305px;
  }
  .about__block-text {
    font-size: 16px;
  }
  .about__icon {
    height: 36px;
    width: 36px;
  }
  .reasons {
    padding: 50px 40px;
  }
  .reasons__text {
    margin-bottom: 50px;
  }
  .reasons__content {
    flex-direction: column;
  }
  .reasons__item {
    padding: 25px 40px;
  }
  .reasons__item-wrapper {
    margin-bottom: 15px;
    height: 36px;
    width: 36px;
  }
  .reasons__item-text {
    font-size: 16px;
  }
  .how {
    padding: 65px 40px;
  }
  .how__title {
    font-size: 18px;
  }
  .how__text {
    font-size: 16px;
  }
  .how__item-wrapper {
    padding: 25px;
  }
  .how__item-text, .how__item-el {
    font-size: 16px;
  }
  .ready {
    margin: 65px auto;
    padding: 65px 20px;
  }
  .ready__title {
    font-size: 18px;
  }
  .ready__text {
    font-size: 16px;
  }
  .ready__icon {
    height: 36px;
    width: 36px;
  }
  .ready__icon--star {
    right: -20px;
  }
  .ready__icon--rocket {
    bottom: 10px;
    left: 10px;
  }
  .footer__menu {
    align-items: center;
    flex-direction: column;
  }
  .footer__menu-el {
    margin-bottom: 15px;
  }
  .popup {
    max-width: calc(100% - 80px);
    padding: 50px 25px 30px;
  }
  .popup__form-input {
    padding: 10px 15px;
  }
  .popup__form-input--first {
    height: 85px;
  }
  .popup__form-input--second {
    height: 60px;
  }
  .popup__form-border--text {
    height: 87px;
  }
  .popup__form-border--last {
    height: 62px;
  }
}
