:root {
  --primary-orange: #F50;
  --standarts-white: #FFF;
  --standarts-stroke: #E5E5E1;
  --texts-light: #474747;
  --texts-black: #1C1C1C;

}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}


/* header */

/* HEADER TOP */

.header {
}
.container {
}
.header__top {
    background: var(--primary-orange, #F50);
    height: 44px;
}

.header__top.hide{
    height: 0px;
    overflow: hidden;
    transition: all 250ms ease;
}

.header__box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
}

.header__text {
    color: var(--standarts-white, #FFF);

    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
}

.header__text a{
    color: var(--standarts-white, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.32px;
    text-decoration: underline;
}

.header__price {
    color: var(--standarts-white, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
}

.header__button-close {

}


/* HEADER BOTTOM */
.header__bottom{
    border-bottom: 1px solid var(--standarts-stroke, #E5E5E1);
    background: var(--standarts-white, #FFF);
}

.header__box-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 18px 0;
}

.header__box-bottom-mob{
    display: none;
}

.header__logo {
    max-width: 198px;
}

.header__logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header__nav {
}
.header__list {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header__item{
    color: var(--texts-black, #1C1C1C);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
    cursor: pointer;
}

.header__item:first-child{
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 100000;
}

.header__item:first-child svg{
    transform: rotate(0deg);
    transition: transform 250ms ease;
}

.header__item.active:first-child svg{
    transform: rotate(180deg);
}

.header__sub-list {
    position: absolute;
    top: 57px;
    left: -23px;
    z-index: -1;
    border-radius: 0px 0px 16px 16px;
    background: var(--standarts-white, #FFF);
    box-shadow: 0px 24px 24px 0px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease;

}

.header__sub-list.active{
    opacity: 1;
    visibility: visible;
    z-index: 99;
    transition: all 250ms ease;
}

.header__sub-item {
    
}
.header__box-buttons{
    display: flex;
    align-items: center;
    gap: 48px;
}
.header__lang {
    color: var(--texts-black, #1C1C1C);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
    position: relative;
    z-index: 100000;
}
.header__current-lang {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}
.header__list-lang {
    position: absolute;
    top: 57px;
    left: -24px;
    display: inline-flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    z-index: -1;
    border-radius: 0px 0px 16px 16px;
    background: var(--standarts-white, #FFF);
    box-shadow: 0px 24px 24px 0px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease;
}

.header__list-lang.active{
    opacity: 1;
    visibility: visible;
    transition: all 250ms ease;
    z-index: 99;
}


.header__item-lang {
}
.header__button {
    border-radius: 16px;
    background: var(--primary-orange, #F50);
    display: inline-flex;
    padding: 16px 28px;
    justify-content: center;
    align-items: center;

    color: var(--standarts-white, #FFF);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 120% */
    letter-spacing: -0.4px;
}

.header__box-bottom-mob{

}

.header__panel{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
 
}

.header__burger{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.header__burger span{
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--texts-black, #1C1C1C);
    transition: all 250ms ease;
}


.header__burger.active span:nth-child(1){
    transform: rotate(-45deg) translateY(7px);
    transition: transform 250ms ease;
}

.header__burger.active span:nth-child(2){
    width: 0;
    transition: width 250ms ease;
}


.header__burger.active span:nth-child(3){
    transform: rotate(45deg) translateY(-7px);
    transition: transform 250ms ease;
}

.header__mob-nav{
    position: absolute;
    top: 115px;
    left: 100%;
    width: 100%;
    height: 100%;
    padding: 32px 0;

    border-bottom: 1px solid var(--standarts-stroke, #E5E5E1);
    background: var(--standarts-white, #FFF);
    box-shadow: 0px 24px 34px 0px rgba(0, 0, 0, 0.25);
    transition: left 250ms ease;
    z-index: 9999;
}

.header__mob-nav.modified{
    top: 71px;
}

.header__mob-nav.active{
    left: 0px;
    transition: left 250ms ease;
}

/* HERO */

.hero {
    position: relative;
}
.hero__bg {
    position: absolute;
    background: linear-gradient(184deg, rgba(255, 254, 250, 0.70) 27.06%, rgba(255, 85, 0, 0.11) 97.1%);
    height: 100%;
    width: 100%;
}

.hero__bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
}
.hero__content {
    position: relative;
    z-index: 9;
    padding: 100px 0 164px;
}
.hero__title {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* headers/header - 1 */
    font-family: Inter;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 74px; /* 115.625% */
    letter-spacing: -1.28px;
    margin-bottom: 32px;
}
.hero__text {
    color: var(--texts-light, #474747);
    text-align: center;

    /* paragraphs/p - large (regular) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 136.364% */
    letter-spacing: -0.44px;
    max-width: 996px;
    margin: 0 auto 32px;
}

.hero__text strong{
    font-weight: 700;
   
}

.hero__box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.hero__img{

}

.hero__img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.form-block {
    flex: 1 0 486px;
    max-width: 486px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-radius: 16px;
    border: 1px solid var(--standarts-stroke, #E5E5E1);
    background: var(--standarts-white, #FFF);
}
.form-block-top {
}
.validate-form {
}
.form__content {

}
.form__title{
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* headers/header - 3 */
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;
}

.form__price{
    border-radius: 16px;
    border: 2.5px dashed var(--standarts-red, #F42F29);
    background: var(--standarts-red-light, rgba(244, 47, 41, 0.10));
    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    color: var(--standarts-red, #F42F29);
    text-align: center;
    text-overflow: ellipsis;

    /* navigation/button (bold) */
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 120% */
    letter-spacing: -0.4px;
    padding: 12px;
    height: 48px;
}

.form__row {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form__input-wrapper {
    border-radius: 16px;
    background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}
.form__input {
    background: var(--backgrounds-light, rgba(255, 85, 0, 0));
    width: 100%;
    height: 10%;

    overflow: hidden;
    color: var(--texts-light, #474747);
    text-overflow: ellipsis;

    /* paragraphs/p - small (regular) */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
    outline: none;
    }
.first__name {
}
.phone {
}
.password {
}
.valid {
}
.last__name {
}
.input__email {
}
.phonecc {
}
.btn {
}
.form__btn {
    border-radius: 16px;
    background: var(--primary-orange, #F50);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 28px;
    color: var(--standarts-white, #FFF);

    /* navigation/button */
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 120% */
    letter-spacing: -0.4px;
}
.button_style_2 {
}
.hero__img {
    max-width: 486px;
}




/* problems */

.problems {
}
.container {
}
.problems__content {
    padding: 100px 0 50px;
}
.problems__title {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* headers/header - 2 */
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 116.667% */
    letter-spacing: -0.96px;
    margin:0 auto 16px;
    max-width: 792px;
}
.problems__text {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* paragraphs/p - large (regular) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 136.364% */
    letter-spacing: -0.44px;
    max-width: 794px;

    margin:0 auto 48px;
}

.problems__text strong{
    font-weight: 700;
}

.problems__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.problems__card {
    flex: 0 1 calc(33.333% - 16px);
    border-radius: 16px;
    background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
    padding: 24px;
}
.problems__icon {
    margin-bottom: 48px;
}
.problems__card-title {
    color: var(--texts-black, #1C1C1C);

    /* headers/header - 4 */
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
    margin-bottom: 16px;
}
.problems__card-text {
    color: var(--texts-light, #474747);

    /* paragraphs/p - medium (regular) */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: -0.36px;
}

.card-img {
    padding: 0;
    border-radius:16px;
    object-fit: cover;
    overflow: hidden;
}

.card-img img{
    width: 100%;
    height: 100%;
}


/* for-whom */

.for-whom {
}
.container {
}
.for-whom__content {
    padding: 50px 0;
}
.for-whom__title {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* headers/header - 2 */
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 116.667% */
    letter-spacing: -0.96px;
    margin-bottom: 16px;
    
}
.for-whom__text {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* paragraphs/p - large (bold) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 136.364% */
    letter-spacing: -0.44px;
    margin-bottom: 48px;
}

.for-whom__text strong{
    font-weight: 700;
}

.for-whom__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.for-whom__card {
    flex: 0 1 calc(33.333% - 16px);
    background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
    border-radius:16px;
    overflow: hidden;
}

.for-whom__card:nth-child(4){
    flex: 0 1 calc(50% - 12px);
}

.for-whom__card:nth-child(5){
    flex: 0 1 calc(50% - 12px);
}

.for-whom__img {
    width: 100%;
    max-height: 200px;
    overflow: hidden;
}

.for-whom__img img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.for-whom__box-content{
    padding: 24px;
}

.for-whom__card-title {
    color: var(--texts-black, #1C1C1C);

    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; 
    letter-spacing: -0.48px;
    margin-bottom: 16px;
}

.for-whom__card-text {
    color: var(--texts-light, #474747);

    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: -0.36px;
}

.for-whom__text-bottom {
    color: var(--texts-black, #1C1C1C);

    /* paragraphs/p - large (regular) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.44px;
    text-align: center;
    max-width: 894px;
    margin: 0 auto;
}

.for-whom__text-bottom strong{
    font-weight: 700;
}

/* needed */

.needed {
}
.container {
}
.needed__content {
    padding: 50px 0;
}

.needed__title {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* headers/header - 2 */
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 116.667% */
    letter-spacing: -0.96px;
    max-width: 792px;
    margin:0 auto 16px;
}

.needed__text{
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* paragraphs/p - large (regular) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 136.364% */
    letter-spacing: -0.44px;
    max-width: 794px;
    margin:0 auto 48px;
}

.needed__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}
.needed__card {
    flex: 0 1 calc(33.333% - 16px);
    padding: 24px;

    border-radius: 16px;
    background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
    
}
.needed__icon {
    margin-bottom: 48px;
}
.needed__card-title {
    color: var(--texts-black, #1C1C1C);

    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
    margin-bottom: 16px;
}
.needed__card-text {
    color: var(--texts-light, #474747);

    /* paragraphs/p - medium (regular) */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: -0.36px;
}
.needed__img {
    width: 100%;
    height: 500px;
    border-radius:16px;
    overflow: hidden;
    margin-bottom: 48px;

}

.needed__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  
}

.needed__bottom-text {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* paragraphs/p - large (regular) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 136.364% */
    letter-spacing: -0.44px;
    margin-bottom: 16px;
}
.needed__button {
    border-radius: 16px;
    background: var(--primary-orange, #F50);
    display: inline-flex;
    padding: 16px 28px;
    justify-content: center;
    align-items: center;
    color: var(--standarts-white, #FFF);

    /* navigation/button */
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 120% */
    letter-spacing: -0.4px;
    margin: 0 auto;
    text-align: center;
}

.needed__box-button{
    display:flex;
    justify-content:center;
}

/* what-does */


.what-does {
    background: var(--backgrounds-gradient, linear-gradient(184deg, rgba(255, 254, 250, 0.70) 27.06%, rgba(255, 85, 0, 0.11) 97.1%));
}
.container {
}
.what-does__content {
    padding: 50px 0;
}
.what-does__title {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* headers/header - 2 */
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 116.667% */
    letter-spacing: -0.96px;
    max-width: 996px;
    margin:0 auto 16px;
}
.what-does__text {
    color: var(--texts-black, #1C1C1C);

    /* paragraphs/p - large (regular) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.44px;
    margin:0 auto 48px;
    max-width: 996px;
    text-align: center;
}
.what-does__box {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    gap: 24px;
}
.what-does__img {
    width: 100%;
    height: 100%;
}

.what-does__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-does__list {
    flex: 1 0 588px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    
}
.what-does__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.what-does__item-title {
    color: var(--texts-black, #1C1C1C);

    /* headers/header - 4 */
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
    position: relative;
    padding-left: 32px;
}

.what-does__item-title::after{
    content:url('../images/icon/check.svg');
    position: absolute;
    top: 0;
    left: 0;
}

.what-does__item-text {
    color: var(--texts-light, #474747);

    /* paragraphs/p - medium (regular) */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: -0.36px;
      padding-left: 32px;
}
.what-does__sub-title {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* headers/header - 3 */
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;
    margin-bottom: 48px;
}
.what-does__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}
.what-does__card {
    flex: 0 1 calc(33.333% - 16px);
    border-radius: 16px;
    background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.what-does__card-img {
}
.what-does__card-title {
    color: var(--texts-black, #1C1C1C);

    /* headers/header - 4 */
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
}
.what-does__card-text {
    color: var(--texts-light, #474747);

    /* paragraphs/p - medium (regular) */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: -0.36px;
}
.what-does__bottom-text {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* paragraphs/p - large (regular) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 136.364% */
    letter-spacing: -0.44px;
    max-width: 996px;
    margin: 0 auto;
}

/* choose */

.choose {
}
.container {
}
.choose__content {
    padding: 50px 0;
}
.choose__title {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* headers/header - 2 */
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 116.667% */
    letter-spacing: -0.96px;
    margin:0 auto 16px;
    max-width: 996px;
}
.choose__text {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* paragraphs/p - large (regular) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 136.364% */
    letter-spacing: -0.44px;
    max-width: 996px;
    margin:0 auto 48px;
}
.choose__box {
    display: flex;
    gap: 24px;
}
.choose__cards {
    flex: 0 1 calc(33.333% - 16px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.choose__card {
    border-radius: 16px;
    background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.choose__card-title {
    color: var(--texts-black, #1C1C1C);

    /* headers/header - 4 */
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
    letter-spacing: -0.48px;
}
.choose__card-text {
    color: var(--texts-light, #474747);

    /* paragraphs/p - medium (regular) */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: -0.36px;
}
.choose__img {
    flex: 0 1 calc(33.333% - 16px);
}

/* apply */

.apply {
}
.container {
}
.apply__content {
    padding: 50px 0;
}
.apply__title {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* headers/header - 2 */
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 116.667% */
    letter-spacing: -0.96px;
    margin:0 auto 16px;
    max-width: 996px;
}
.apply__text {
    color: var(--texts-black, #1C1C1C);

    /* paragraphs/p - large (regular) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.44px;
    margin-bottom: 48px;
    text-align: center;
    margin:0 auto 48px;
    max-width: 996px;
}
.apply__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}
.apply__card {
    flex: 0 1 calc(33.333% - 16px);
    border-radius: 16px;
    background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
    overflow: hidden;
}
.apply__img {
    position: relative;
}

.apply__img::after{
    content:attr(data-counter);
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 9;
    background: var(--standarts-white, #FFF);
    width: 32px;
    height: 32px;
    border-radius:8px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* headers/header - 5 */
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 100% */
    letter-spacing: -0.4px;
}

.apply__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apply__card-text {
    padding: 24px;
    color: var(--texts-light, #474747);

    /* paragraphs/p - medium (regular) */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: -0.36px;
}

.apply__bottom-text{
    color: var(--texts-black, #1C1C1C);

    /* paragraphs/p - large (regular) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.44px;
    text-align: center;

    max-width: 792px;
    margin: 0 auto;
}

/* deserves */

.deserves {
}
.container {
}
.deserves__content {
    padding: 50px 0;
}
.deserves__title {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* headers/header - 2 */
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 116.667% */
    letter-spacing: -0.96px;
    max-width: 996px;
    margin: 0 auto 16px;
}
.deserves__text {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* paragraphs/p - large (regular) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 136.364% */
    letter-spacing: -0.44px;
    max-width: 996px;
    margin: 0 auto 48px;
}
.deserves__cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.deserves__card {
    flex: 0 1 calc(50% - 12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    border: 1.5px dashed var(--primary-orange, #F50);
    background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
    padding: 24px;
}

.deserves__card-title {
    overflow: hidden;
    color: var(--texts-black, #1C1C1C);
    text-align: center;
    text-overflow: ellipsis;

    /* headers/header - 2 */
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 116.667% */
    letter-spacing: -0.96px;
}
.deserves__card-text {
    overflow: hidden;
    color: var(--primary-orange, #F50);
    text-align: center;
    text-overflow: ellipsis;

    /* paragraphs/p - large (bold) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 136.364% */
    letter-spacing: -0.44px;
}
.deserves__img {
    max-width: 442px;
}

.deserves__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deserves__bottom-text {
    color: var(--texts-black, #1C1C1C);
    text-align: center;

    /* paragraphs/p - large (regular) */
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 136.364% */
    letter-spacing: -0.44px;
}

/* profitable */

    .profitable {
    }
    .container {
    }
    .profitable__content {
        padding: 50px;
        display: flex;
        align-items: center;
        gap: 24px;
    }
    .profitable__info {
        
    }
    .profitable__title {
        color: var(--texts-black, #1C1C1C);

        /* headers/header - 2 */
        font-family: Inter;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 56px; /* 116.667% */
        letter-spacing: -0.96px;
        margin-bottom: 16px;
    }
    .profitable__list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }
    .profitable__item {
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/p - large (regular) */
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px; /* 136.364% */
        letter-spacing: -0.44px;
    }

    .profitable__button{
        border-radius: 16px;
        background: var(--primary-orange, #F50);
        display: inline-flex;
        padding: 16px 28px;
        justify-content: center;
        align-items: center;

        color: var(--standarts-white, #FFF);

        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px; /* 120% */
        letter-spacing: -0.4px;
    }

    .profitable__img {
        flex:1 0 588px;
    }

    .profitable__img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* recommended */

    .recommended {
        background: var(--backgrounds-gradient, linear-gradient(184deg, rgba(255, 254, 250, 0.70) 27.06%, rgba(255, 85, 0, 0.11) 97.1%));
    }
    .container {
    }
    .recommended__content {
        padding: 50px 0;
    }
    .recommended__title {
        color: var(--texts-black, #1C1C1C);
        text-align: center;

        /* headers/header - 2 */
        font-family: Inter;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 56px; /* 116.667% */
        letter-spacing: -0.96px;
        margin-bottom: 16px;
    }
    .recommended__text {
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/p - large (regular) */
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: -0.44px;
        margin-bottom: 48px;
        text-align: center;
    }
    .recommended__cards {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        margin-bottom: 48px;
    }
    .recommended__card {
        flex: 0 1 calc(33.333% - 16px);
        border-radius: 16px;
        background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
        overflow: hidden;
    }

    .recommended__card-img {
    }
    .recommended__card-text {
        padding: 24px;
        color: var(--texts-light, #474747);

        /* paragraphs/p - medium (regular) */
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 144.444% */
        letter-spacing: -0.36px;
    }
    .recommended__expert-title {
        color: var(--texts-black, #1C1C1C);
        text-align: center;

        /* headers/header - 2 */
        font-family: Inter;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 56px; /* 116.667% */
        letter-spacing: -0.96px;
        margin-bottom: 48px;
    }
    .recommended__expert-card {
        display: flex;
        border-radius: 16px;
        background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
        margin-bottom: 24px;
        overflow: hidden;
    }

    .recommended__expert-info{
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 24px;
    }
    
    .recommended__expert-img {
        flex: 1 0 384px;
        
    }

     .recommended__expert-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
     }

    .recommended__expert-text {
        color: var(--texts-light, #474747);

        /* paragraphs/p - large (regular) */
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px; /* 136.364% */
        letter-spacing: -0.44px;
    }
    .recommended__expert {
        color: var(--texts-black, #1C1C1C);

        /* headers/header - 6 */
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 26px; /* 144.444% */
        letter-spacing: -0.36px;
    }

    /* reviews */

    .reviews {
        padding: 100px 0 50px;
    }
    .container {
    }
    .reviews__content {
      
    }
    .reviews__title {
        color: var(--texts-black, #1C1C1C);
        text-align: center;

        /* headers/header - 2 */
        font-family: Inter;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 56px; /* 116.667% */
        letter-spacing: -0.96px;
        margin:0 auto 48px;
        max-width: 996px;
    }
    .swiper {
        overflow: visible;
        padding:0 20px;
    }

    .swiper-slide-prev,
    .swiper-slide-next{
        opacity: 0.4;
        background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
    }

    

    .mySwiper {
    }
    .swiper-wrapper {
        position: relative;
        padding-bottom: 72px;
    }
    .swiper-slide {
        padding: 32px;
        border-radius: 16px;
        background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .stars {
    }
    .reviews__swiper-title {
        color: var(--texts-black, #1C1C1C);

        /* headers/header - 4 */
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px; /* 133.333% */
        letter-spacing: -0.48px;
    }
    .reviews__text {
        color: var(--texts-light, #474747);

        /* paragraphs/p - medium (regular) */
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 144.444% */
        letter-spacing: -0.36px;
    }
    .reviews__person {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .reviews__icon {
    }
    .reviews__info {
        color: var(--texts-light, #474747);

        /* paragraphs/p - medium (regular) */
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: -0.36px;
    }
    .reviews__info span{
        color: var(--primary-orange, #F50);

        /* paragraphs/p - medium (bold) */
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 26px; /* 144.444% */
        letter-spacing: -0.36px;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        display: none;
    }

    .swiper-button-next::before,
    .swiper-button-prev::before {
        content: url(../images/icon/swiper-arrow.svg);
        border-radius: 50px;
        border: 2px solid var(--texts-black, #1C1C1C);
        display: flex;
        padding: 12px;
        width: 24px;
        height: 24px;
    }

    .swiper-controler{
        position: relative;
    }

    .swiper-button-next{
        bottom: 0;
        left: 50vw;
        right: auto;
        top: auto;
    }

    .swiper-button-prev{
        bottom: 0;
        right: 50vw;
        left: auto;
        top: auto;
    }

    .swiper-button-prev::before{
        transform: rotate(-180deg);
    }

    .swiper-button-prev {
    }

    /* order */

    .oder {

    }
    .container {
    }
    .order__content {
        padding: 50px 0;
    }
    .order__title {
        color: var(--texts-black, #1C1C1C);
        text-align: center;

        /* headers/header - 2 */
        font-family: Inter;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 56px; /* 116.667% */
        letter-spacing: -0.96px;
        max-width: 792px;
        margin: 0 auto 16px;
    }
    .order__text {
        color: var(--texts-black, #1C1C1C);
        text-align: center;

        /* paragraphs/p - large (regular) */
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px; /* 136.364% */
        letter-spacing: -0.44px;
        max-width: 792px;
        margin: 0 auto 48px;
    }
    .order__cards {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        margin-bottom: 48px;
    }
    .order__card {
        border-radius: 16px;
        background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
        overflow: hidden;

        flex: 0 1 calc(33.333% - 16px);
    }
    .order__img {
        max-height: 266px;
    }

     .order__img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
     }


    .order__card-text {
        padding: 24px;
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/p - large (regular) */
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px; /* 136.364% */
        letter-spacing: -0.44px;
    }
    .order__bottom-content {
    }
    .order__bottom-title {
        color: var(--texts-black, #1C1C1C);
        text-align: center;

        /* headers/header - 3 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        margin-bottom: 16px;
    }
    .order__bottom-text {
        color: var(--texts-black, #1C1C1C);
        text-align: center;

        /* paragraphs/p - large (regular) */
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px; /* 136.364% */
        letter-spacing: -0.44px;
        max-width: 794px;
        margin: 0 auto;
    }

    /* faq */

    .faq__content{
        padding: 50px 0;
    }

    .faq__title{
        color: var(--texts-black, #1C1C1C);
        text-align: center;

        /* headers/header - 2 */
        font-family: Inter;
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 56px; /* 116.667% */
        letter-spacing: -0.96px;
        margin-bottom: 48px;
    }

    .faq__top-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 742px;
    margin-inline: auto;
    text-align: center;
    }

    .faq__items-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 790px;
    margin-inline: auto;
    }

    .faq__item {
    cursor: pointer;
    border-radius: 16px;    
    background: var(--backgrounds-light, rgba(255, 85, 0, 0.10));
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: 0.3s ease;
    border-radius: 16px;
    }

    .faq__item .medium {
        color: var(--texts-black, #1C1C1C);

        /* headers/header - 4 */
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px; /* 133.333% */
        letter-spacing: -0.48px;
    }

    .faq__item .small {
        color: var(--texts-light, #474747);

        /* paragraphs/p - medium (regular) */
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 144.444% */
        letter-spacing: -0.36px;
    }

    .faq__item-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .faq__item-top h4{
        color: var(--texts-black, #1C1C1C);

        /* headers/header - 4 */
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px; /* 133.333% */
        letter-spacing: -0.48px;
    }

    .faq__item-arrow {
    width: 27px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid #000e2f;
    flex-shrink: 0;
    }

    .faq__item-arrow:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 3px;
    background: #000e2f;
    }

    .faq__item-arrow:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 12px;
    background: #000e2f;
    transition: all 0.3s ease-in-out;
    }

    .faq__item.active .faq__item-arrow:after {
    transform: rotate(90deg);
    }

    .last-section {
        position: relative;
    }
    .last-section__bg {
        position: absolute;
        background: linear-gradient(184deg, rgba(255, 254, 250, 0.70) 27.06%, rgba(255, 85, 0, 0.11) 97.1%);
        height: 100%;
        width: 100%;
    }

    .last-section__bg img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    



    .container {
    }

    .last-section__content{
        position: relative;
        z-index: 99;
        padding: 100px 0 138px;
        max-width: 589px;
    }

    .last-section__title {
        color: var(--texts-black, #1C1C1C);

        /* headers/header - 3 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        margin-bottom: 32px;
    }
    .last-section__text {
        color: var(--texts-light, #474747);

        /* paragraphs/p - large (regular) */
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px; /* 136.364% */
        letter-spacing: -0.44px;
        margin-bottom: 24px;
    }
    .last-section__list {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }
    .last-section__item {
        color: var(--texts-light, #474747);

        /* paragraphs/p - large (regular) */
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px; /* 136.364% */
        letter-spacing: -0.44px;
    }

    #hero-form-2{
        width: 100%;
        max-width: none;
    }

    .footer {
    }
    .container {
    }
    .footer__content {
        padding: 18px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer__logo {
    }
    .footer__copy {
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/p - small (bold) */
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px; /* 125% */
        letter-spacing: -0.32px;
    }

    .form-block{
        position: relative;
    }

/* Mobile */


@media screen and  (max-width:1199px){
    /* header */
    
    .header__box-buttons{
        gap: 24px;
    }

    .header__list{
        gap: 12px;
    }

    /* choose */

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

    .choose__img{
        order:1;
        max-width: 370px;
    }

    .choose__img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cards-1{
        order:2;
    }
    .cards-2{
        order:3;
    }

    /* deserves */

    .deserves__card{
        flex: 0 1 100%;
    }

    /* profitable */

    .profitable__content{
        flex-direction: column-reverse;
    }

    .profitable__card{
        flex: 0 1 100%;
    }

    .profitable__img{
        flex: 0 1 auto;
    }
}

@media screen and (max-width:991px) {
    .header__box-bottom{
        display: none;
    }

    .header__box-bottom-mob{
        display: flex;
    }

    .header__logo {
        max-width: 193px;
    }

    .header__mob-nav .header__nav .header__list{
        flex-direction: column;
        align-items: flex-start;
         gap: 24px;
         margin-bottom: 24px;
    }

    .header__mob-nav .header__nav .header__list .header__item:first-child svg{
        display: none;
    } 

    .header__mob-nav .header__nav .header__list .header__item:first-child {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .header__mob-nav .header__nav .header__list .header__item:first-child .header__sub-list{
        opacity: 1;
        visibility: visible;
        position: relative;
        background: inherit;
        box-shadow:none;
        padding: 0;
        width: auto;
        top: 0;
        left: 0;
        gap: 24px;
    }
    .header__mob-nav .header__current-lang span + svg{
        display: none;
    }

    .header__mob-nav .header__lang{
        display: flex;
        gap: 32px;
        margin-bottom: 32px;
    }

    .header__mob-nav .header__lang .header__list-lang{
        opacity: 1;
        visibility: visible;
        position: relative;
        background: inherit;
        box-shadow:none;
        padding: 0;
        width: auto;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: row;
        gap: 32px;
    }

    /* HERO */

    .hero__content{
        padding: 64px 0;
    }

    .hero__box{
        flex-direction: column;
    }

    /* problems */

    .problems__card{
        flex: 0 1 calc(50% - 12px);
    }

    /* for-whom */
    
    .for-whom__card,
    .for-whom__card:nth-child(4),
    .for-whom__card:nth-child(5){
        flex: 0 1 calc(50% - 12px);
    }

    /* needed */

    .needed__card{
        flex: 0 1 100%;
    }

    /* what-does */

    .what-does__box{
        flex-direction: column;
    }

    .what-does__card{
        flex: 0 1 100%;
    }

    /* apply */

    .apply__card{
        flex: 0 1 100%;
    }

    /* recommended */

    .recommended__card{
        flex: 0 1 100%;
    }
    
    .recommended__card-img{
        max-width: none;
    }

    .recommended__card-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .recommended__expert-card{
        flex-direction: column;
    }

    .recommended__expert-info{
        gap: 16px;
    }

    /* oder */

    .order__card{
        flex: 0 1 100%;
    }

    .order__img{
        max-height: 266px;
        overflow: hidden;
    }
}

@media screen and (max-width:678px) {
    /* HERO */

    .hero__title{
        color: var(--texts-black, #1C1C1C);
        /* headers/mobile/header - 1 */
        font-family: Inter;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: 48px; /* 120% */
        letter-spacing: -0.8px;
        text-align: left;
    }
    .hero__text{
        color: var(--texts-light, #474747);
        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        text-align: left;
    }

    .form-block{
        flex: 0 1 auto;
        max-width: none;
    }

     /* problems */

    .problems__card{
        flex: 0 1 100%;
    }

      /* for-whom */
    
    .for-whom__card,
    .for-whom__card:nth-child(4),
    .for-whom__card:nth-child(5){
        flex: 0 1 100%;
    }
}

@media screen and (max-width:627px) {
    .header__top {
        height: auto;
    }

    .header__mob-nav{
        top: 135px;
    }
}

@media screen and (max-width:580px) {
    /* apply */

    .apply__content{
        padding: 16px 0;
    }

    .apply__title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        margin-bottom: 16px;
        text-align: left;
    }

    .apply__text{
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        margin-bottom: 24px;
           text-align: left;
    }

    .apply__cards{
        margin-bottom: 24px;
        gap: 16px;
    }

    .apply__bottom-text{
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -0.4px;
        text-align: left;
    }

    /* profitable */

    .profitable__content{
        padding: 16px 0;
    }

    .profitable__title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
    }

    .profitable__item{
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
    }

    .profitable__button{
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    /* HERO */

    .hero__content{
        padding: 32px 0;
    }

    .form-block,
    .form__row{
        gap: 12px;
    }

    .form__title{
        color: var(--texts-black, #1C1C1C);
        text-align: center;

        /* headers/mobile/header - 3 */
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px; /* 133.333% */
        letter-spacing: -0.48px;
    }

    /* problems */

    .problems__content{
        padding: 32px 0;
    }

    .problems__cards{
        gap: 16px;
    }

    .problems__card{
        padding: 16px;
    }

    .card-img{
        padding: 0;
    }

    .problems__title{
        color: var(--texts-black, #1C1C1C);
        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        margin-bottom: 16px;
        text-align: left;
    }

    .problems__text{
        color: var(--texts-black, #1C1C1C);
        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        text-align: left;
    }

    .problems__icon{
        margin-bottom: 16px;
    }

    .problems__card-title{
        color: var(--texts-black, #1C1C1C);
        /* headers/mobile/header - 4 */
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px; /* 136.364% */
        letter-spacing: -0.44px;
        margin-bottom: 8px;
    }

    .problems__card-text{
        color: var(--texts-light, #474747);

        /* paragraphs/p - medium (regular) */
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 144.444% */
        letter-spacing: -0.36px;
       
    }

    /* for-whom */

    .for-whom__content{
        padding: 0 0 32px;
    }

    .for-whom__title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        margin-bottom: 16px;
        text-align: left;
    }

    .for-whom__text{
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (bold) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        margin-bottom: 24px;
        text-align: left;
    }

    .for-whom__cards{
        gap: 16px;
        margin-bottom: 24px;
    }

    .for-whom__box-content{
        padding: 16px;
    }

    .for-whom__card-title{
        color: var(--texts-black, #1C1C1C);

        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px; /* 136.364% */
        letter-spacing: -0.44px;
        margin-bottom: 8px;
    }

    .for-whom__text-bottom{
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -0.4px;
        text-align: left;
    }

    .for-whom__img img{
        height: 200px;
    }
    /* needed */

    .needed__content{
        padding: 0 0 32px;
    }

    .needed__title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        margin-bottom: 16px;
        text-align: left;
    }

    .needed__text{
        color: var(--texts-black, #1C1C1C);

        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        margin-bottom: 24px;
         text-align: left;
    }

    .needed__cards{
        gap: 16px;
        margin-bottom: 16px;
    }

    .needed__card{
        padding: 16px;
    }

    .needed__icon{
        margin-bottom: 16px;
    }

    .needed__img{
        max-height: 200px;
        margin-bottom: 24px;
    }

    .needed__bottom-text{
        color: var(--texts-black, #1C1C1C);

        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        text-align: left;
        margin-bottom: 16px;
    }

    .needed__button{
        width: 100%;
        max-width: none;
    }

    /* what-does */

    .what-does {
        background: var(--backgrounds-gradient, linear-gradient(184deg, rgba(255, 254, 250, 0.70) 27.06%, rgba(255, 85, 0, 0.11) 35.1%));
    }

    .what-does__content{
        padding: 0 0 16px;
    }

    .what-does__title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        text-align: left;
    }

    .what-does__text{
       color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -0.4px;
        text-align: left;
        margin-bottom: 24px;
    }

    .what-does__item-title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 4 */
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px; /* 136.364% */
        letter-spacing: -0.44px;
    }

    .what-does__box{
        gap: 24px;
        margin-bottom: 24px;
    }

    .what-does__item-text{
        color: var(--texts-light, #474747);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        padding-left: 0;
    }

    .what-does__list{
        gap: 16px;
    }
    
    .what-does__sub-title{
        text-align: left;
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 3 */
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px; /* 133.333% */
        letter-spacing: -0.48px;
        margin-bottom: 24px;
    }

    .what-does__cards{
        gap: 24px;
        margin-bottom: 24px;
    }

    .what-does__card{
       gap: 8px; 
    }

    .what-does__bottom-text{
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        text-align: left;
    }

    /* choose */

    .choose__box{
        gap: 16px;
    }

    .choose__title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        margin-bottom: 16px;
        text-align: left;
    }

    .choose__text{
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        margin-bottom: 24px;
        text-align: left;
    }

    .choose__cards{
        gap: 16px;
    }

    .choose__card{
        padding: 16px;
    }

    .choose__img{
        /* margin-bottom: 16px; */
    }

    .choose__card-title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 4 */
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px; /* 136.364% */
        letter-spacing: -0.44px;
      
    }

    .choose__card-text{
        color: var(--texts-light, #474747);

        /* paragraphs/p - medium (regular) */
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 144.444% */
        letter-spacing: -0.36px;
    }

    .choose__content{
        padding: 16px 0;
    }

    /* deserves */

    .deserves__content{
        padding: 16px 0;
    }

    .deserves__title{
        color: var(--texts-black, #1C1C1C);
        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        text-align: left;
    }

    .deserves__text{
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;

        margin-bottom: 24px;
        text-align: left;
    }

    .deserves__card-title{
        color: var(--texts-black, #1C1C1C);
        text-align: center;

        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
    }

    .deserves__card-text{
        color: var(--primary-orange, #F50);
        text-align: center;


        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
    }

    .deserves__cards{
        margin-bottom: 24px;
    }

    .deserves__bottom-text{
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        text-align: left;
    }

    /* recommended */

    .recommended__content{
        padding: 16px 0;
    }

    .recommended__title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        text-align: left;
    }

    .recommended__text{
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: -0.4px;
        text-align: left;
        margin-bottom: 24px;
    }

    .recommended__cards{
        gap: 16px;
        margin-bottom: 24px;
    }


    .recommended__card-img,
    .recommended__expert-img{
        height: 200px;
    }

    .recommended__expert-img{
        flex: 0 1 auto;
    }

    .recommended__card-text{
        color: var(--texts-light, #474747);

        /* paragraphs/p - medium (regular) */
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 144.444% */
        letter-spacing: -0.36px;
    }

    .recommended__expert-title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        text-align: left;
        margin-bottom: 24px;
    }

    .recommended__expert-info{
        gap: 16px;
    }

    .recommended__expert-card{
        margin-bottom: 16px;
    }


    .recommended__expert-text{
        color: var(--texts-light, #474747);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
    }

    /* reviews */

    .reviews{
        padding: 16px 0;
    }

    .reviews__title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        margin-bottom: 24px;
    }

    .reviews__swiper-title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 4 */
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px; /* 136.364% */
        letter-spacing: -0.44px;
    }

    .reviews__text{
        color: var(--texts-light, #474747);

        /* paragraphs/p - medium (regular) */
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 144.444% */
        letter-spacing: -0.36px;
    }

    .reviews__info{
        color: var(--texts-light, #474747);

        /* paragraphs/p - medium (regular) */
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: -0.36px;
    }

    .swiper{
        padding: 0 10px;
    }

    .swiper-button-next{
        bottom: 0;
        left: 53vw;
        right: auto;
        top: auto;
    }

    .swiper-button-prev{
        bottom: 0;
        right: 53vw;
        left: auto;
        top: auto;
    }

    /* order */

    .order__content{
        padding: 16px 0;
    }

    .order__title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        text-align: left;
    }    

    .order__text{
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        margin-bottom: 24px;
        text-align: left;
    }

    .order__cards{
        margin-bottom: 24px;
    }

    .order__bottom-title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 3 */
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px; /* 133.333% */
        letter-spacing: -0.48px;
        text-align: left;
    }

    .order__bottom-text{
        color: var(--texts-black, #1C1C1C);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        text-align: left;
    }

    /* faq */

    .faq__title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 2 */
        font-family: Inter;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px; /* 125% */
        letter-spacing: -0.64px;
        text-align: left;
        margin-bottom: 24px;
    }

    .faq__content{
        padding: 16px 0;
    }

    /* last-section */

    .last-section__title{
        color: var(--texts-black, #1C1C1C);

        /* headers/mobile/header - 3 */
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px; /* 133.333% */
        letter-spacing: -0.48px;
        margin-bottom: 16px;
    }

    .last-section__text{
        color: var(--texts-light, #474747);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
        margin-bottom: 16px;
    }

    
    .last-section__list{
        margin-bottom: 16px;
    }

    .last-section__item{
        color: var(--texts-light, #474747);

        /* paragraphs/mobile/p - large (regular) */
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
        letter-spacing: -0.4px;
    }

    .last-section__content{
        padding: 16px 0;
    }

    .last-section__bg{

    }

    .last-section__bg img {
        transform: scaleX(-1);
        object-position: right;
    }

    /* footer */

    .footer__content {
        flex-direction: column;
        gap: 12.5px;
    }
}

@media screen and (max-width:363px) {
.header__mob-nav{
        top: 155px;
    }
}