/*Header - START*/
.home-page .main-header-wrapper {
    background: #FDFDFD;
}
.home-page .main-header {
    background: #FDFDFD;
}
/*Header - END*/


/*Hero img - START*/
.home-page .hero-img {
    background: var(--color-strong-light);
    position: relative;
    height: calc(100vh - 141px);
    min-height: 700px;
    max-height: 840px;;
}
.home-page .hero-img .left-side {
    width: 40.53%;
    background: var(--color-goal);
    border-radius: 0 var(--border-big-radius) 0 0;
    position: relative;
}
.home-page .hero-img .text-first,
.home-page .hero-img .text-second {
    color: var(--color-goal);
    font-size: 140px;
    font-weight: bold;
    font-family: var(--font-family-accent);
    position: absolute;
    top: 137px;
    right: 17px;
    line-height: 186px;
}
.home-page .hero-img .text-first {
    position: absolute;
    font-family: var(--font-family-accent);
    background: linear-gradient(90.26deg, #404040 0.26%, #808080 98.63%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.home-page .hero-img .text-second {
    right: -489px;
    background: linear-gradient(90.26deg, #121212 0.26%, #4F4F4F 98.63%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: var(--font-family-accent);
    font-weight: bold;
}
.home-page .hero-img .text-slogan {
    color: var(--color-dark-grey);
    position: absolute;
    top: 317px;
    right: -479px;
    width: 340px;
}


.home-page .hero-img .left-side .header-person {
    width: 691px;
    height: 705px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 46px;
    right: -386px;

    transform: translate( calc( var(--onscroll-top)/4 * 1), calc( var(--onscroll-top)/4 * -1) );
}
.home-page .hero-img .left-side .header-person-1 {
    background-image: url("/images/pages/home/header-person-1.png");
    transform: translateY( calc( var(--onscroll-top)/4 * -1));
}
.home-page .hero-img .left-side .header-person-2 {
    width: 588px;
    height: 708px;
    background-image: url("/images/pages/home/header-person-2.png");
    right: -202px;
    top: 30px;
}
.home-page .hero-img .left-side .header-person-3 {
    width: 211px;
    height: 755px;
    background-image: url("/images/pages/home/header-person-3.png");
    right: -117px;
    top: 30px;
    transform: translateY( calc( var(--onscroll-top)/4 * -1));
}
.home-page .hero-img .left-side .header-person-4 {
    width: 517px;
    height: 728px;
    background-image: url("/images/pages/home/header-person-4.png");
    right: -257px;
    top: 36px;
}
.home-page .hero-img .left-side .header-person-5 {
    width: 503px;
    height: 722px;
    background-image: url("/images/pages/home/header-person-5.png");
    right: -269px;
    top: 42px;
    transform: translateY( calc( var(--onscroll-top)/4 * -1));
}
.home-page .hero-img .left-side-wrapper {
    background: var(--color-goal);
    width: 59.47%;
}
.home-page .hero-img .right-side {
    width: 100%;
    background: linear-gradient(to bottom, rgba(253,253,253,1), rgba(0,0,0,0) 10%), linear-gradient(22.39deg, rgba(0, 0, 0, 0.24) 1.24%, rgba(233, 233, 233, 0) 60%), #FDFDFD;
    mix-blend-mode: normal;
    border-radius: 0 0 0 var(--border-big-radius);
}


.home-page .video-presentation-button {
    position: absolute;
    right: 176px;
    bottom: 98px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
    gap: 10px;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border: 1px solid #FFFFFF;
    box-shadow: 0 0 0 18px #FFE0B7, 0 0 0 40px rgba(250, 249, 249, 0.24);
    border-radius: 40px;
    cursor: pointer;
    animation: pulse-video-icon 3s infinite normal linear;
    transform: translateY( calc( var(--onscroll-top)/10));
}
.home-page .video-presentation-button:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 60px;
    outline: 1px solid transparent;
    transition: var(--transition-base);
}
.home-page .video-presentation-button .text {
    font-size: var(--font-size-small);
    line-height: var(--font-size-line-height-small);
    color: var(--color-goal);
    position: absolute;
    top: 14px;
    left: 90px;
    transition: var(--transition-base);
}
.home-page .video-presentation-button svg {
    stroke: var(--color-strong-light);
}
.home-page .video-presentation-button:hover {
    animation-play-state: paused;
}
.home-page .video-presentation-button:hover:after {
    outline: 10px solid #FFFFFF;
}
.home-page .video-presentation-button:hover .text {
    color: var(--color-primary);
}
@keyframes pulse-video-icon {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 224, 183, 1), 0 0 0 0 rgba(250, 249, 249, 0.24);
    }
    40% {
        box-shadow: 0 0 0 18px #FFE0B7, 0 0 0 40px rgba(250, 249, 249, 0.24);
    }
    100% {
        box-shadow: 0 0 0 28px rgb(255, 224, 183, 0), 0 0 0 80px rgba(250, 249, 249, 0);
    }
}
/*Hero img - END*/

/*Advantages - START*/
.home-page .advantages {
    position: relative;
    padding-top: var(--block-bottom-space-sm);
    overflow: hidden;
    padding-bottom: var(--block-bottom-space-md);
}
.home-page .advantages .bg-light {
    position: absolute;
    top: 329px;
    left: calc(50% - 1281px / 2);
    width: 1281px;
    height: 422px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(130px);
    z-index: 0;
    opacity: 0.3;
}
.home-page .advantage {
    padding: 50px 40px 50px 50px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    border-radius: var(--border-small-radius);
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #EDEDED 100%), #DEDEDE;
    position: relative;
    box-sizing: border-box;
}
.home-page .advantage-list-wrapper {
    gap: 30px;
}
.home-page .advantage-list-wrapper .first {
    min-width: 220px;
    max-width: 220px;
}
.home-page  .advantage-list-wrapper .second {
    min-width: 220px;
    max-width: 220px;
}
.home-page .home-page .advantage-illustration {
    position: absolute;
}
.home-page .advantage.first {
    border-radius: var(--border-big-radius) var(--border-small-radius) var(--border-small-radius);
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #EDEDED 100%), #DEDEDE;
    gap: 24px;
    min-height: 300px;
    padding-right: 292px;
}
.home-page .advantage.first .text-block {
    gap: 15px;
    flex-direction: column;
}
.home-page .advantage.first .advantage-illustration {
    width: 400px;
    min-height: 300px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -96px;
    background: url(/images/pages/home/advantage-beautiful-body.png) 0% / auto 100% no-repeat;
    z-index: 9;
}

.home-page .advantage.second {
    padding-left: 299px;
    background: linear-gradient(270deg, #EDEDED 0%, rgba(255, 255, 255, 0.00) 100%), #DEDEDE;
    gap: 16px;
    min-height: 300px;
}
.home-page .advantage.second .text-block {
    color: var(--color-dark-grey);
    max-width: 380px;
}
.home-page .advantage.second .advantage-illustration {
    width: 300px;
    height: 343px;
    position: absolute;
    top: 0;
    left: 0px;
    bottom: -42px;
    background: url(/images/pages/home/advantage-reading.png) 50% / cover no-repeat;
}

.home-page .advantage.third {
    width: 100%;
    background: linear-gradient(180deg, #F1F1F1 0%, #EDEDED 100%);
    text-align: center;
    padding: 42px 38px 30px 38px;
}
.home-page .advantage.third ul.list li {
    align-items: self-start;
}
.home-page .advantage.third .small-header {
    margin-bottom: 30px;
}
.home-page .advantage.third ul.list {
    gap: 30px;
}
/*Advantages END*/

/*All devices - START*/
.home-page .all-devices {
    position: relative;
}
.home-page .all-devices .small-header {
    margin-bottom: var(--header-bottom-space-xl);
    max-width: 710px;
}
.home-page .all-devices-image {
    height: 570px;
    width: 100%;
    padding-bottom: var(--block-bottom-space-md);
}
.home-page .all-devices-image {
    position: relative;
}
.home-page .all-devices-image .monitor {
    width: 618px;
    height: 525px;
    background: url("/images/pages/home/all-devices-monitor.png") no-repeat top center;
    position: absolute;
    top: 10px;
    left: calc(50% - 618px / 2);
}
.home-page .all-devices-image .notebook {
    width: 442px;
    height: 246px;
    background: url("/images/pages/home/all-devices-notebook.png") no-repeat top center;
    position: absolute;
    top: 323px;
    left: calc(50% + 123px);
}
.home-page .all-devices-image .tablet {
    width: 176px;
    height: 259px;
    background: url("/images/pages/home/all-devices-tablet.png") no-repeat top center;
    position: absolute;
    top: 320px;
    left: calc(50% - 399px);
}
.home-page .all-devices-image .smartphone {
    width: 90px;
    height: 177px;
    background: url("/images/pages/home/all-devices-smartphone.png") no-repeat top center;
    background-size: 148px auto;
    position: absolute;
    top: 402px;
    left: calc(50% - 516px);
}
.home-page .all-devices .video {
    width: 571px;
    height: 307px;
    background: #fff;
    position: absolute;
    left: 23px;
    top: 23px;
    overflow: hidden;
}
.home-page .all-devices .video:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    box-shadow: rgba(50, 50, 93, 0.35) 0 0 30px inset;
}
.home-page .all-devices .video video {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.home-page .yandex-music {
    position: absolute;
    top: 108px;
    left: calc(50% + 397px);
    width: 212px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.home-page .all-devices.parallax-block .yandex-music{
    top: calc( 108px - (min((var(--block-position-top) - var(--onscroll-top)), 0px) * -1)/2 );
}
.home-page .all-devices.parallax-block .yandex-music .melody-key.main{
    transform: translateY( calc( (min((var(--block-position-top) - var(--onscroll-top)), 0px) * 1)/6 ) );
}
.home-page .yandex-music .melody-key.first{
    position: absolute;
    right: 43px;
    top: -42px;
}
.home-page .all-devices.parallax-block .yandex-music .melody-key.first{
    transform: translate( calc( (min((var(--block-position-top) - var(--onscroll-top)), 0px) * -1)/8 ), calc( (min((var(--block-position-top) - var(--onscroll-top)), 0px) * 1)/2 ) );
}
.home-page .yandex-music .melody-key.second{
    position: absolute;
    left: 66px;
    top: -47px;
}
.home-page .all-devices.parallax-block .yandex-music .melody-key.second {
    transform: translate( calc( (min((var(--block-position-top) - var(--onscroll-top)), 0px) * 1)/8 ), calc( (min((var(--block-position-top) - var(--onscroll-top)), 0px) * 1)/4 ))
}

.home-page .all-devices .bg-light {
    position: absolute;
    top: 280px;
    left: calc(50% - 1281px / 2);
    width: 1281px;
    height: 422px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(130px);
    z-index: 0;
    opacity: 0.3;
}
/*All devices - END*/

/*Our programs - START*/
.home-page .our-programs {
    background: linear-gradient(to right, rgba(26, 26, 30, 1) 20%, rgba(26, 26, 30, 0)),
        url("/images/pages/home/our-programs-illustraion.jpg") top right no-repeat;
    padding-top: var(--block-bottom-space-sm);
    padding-bottom: 250px;
}
.home-page .our-programs .header {
    margin-bottom: 0;
}
.home-page .our-programs .content {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
    max-width: 460px;
}
.home-page .our-programs .program-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.home-page .our-programs .program-list .first {
    width: 100%;
}
/*Our programs - END*/


/*Platform statistics START*/
.home-page .platform-statistics {
    padding-bottom: var(--block-bottom-space-xsm);
}
.home-page .platform-statistics .statistics-header.header {
    margin-bottom: var(--header-bottom-space-md);
    margin-left: -95px;
}
.home-page .platform-statistics .statistics {
    display: flex;
    gap: 30px;
}
.home-page .platform-statistics .statistics > div {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.home-page .platform-statistics .statistic-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.home-page .platform-statistics .statistic-item .number {
    color: #F1F1F1;
    font-family: var(--font-family-accent);
    font-size: 64px;
    font-weight: 700;
}
.home-page .platform-statistics .statistic-item .text {
    color: var(--color-strong-light);
}
.home-page .platform-statistics .right {
    position: relative;
}
.home-page .platform-statistics .right .bg-light {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 200px;
    height: 750px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(130px);
    z-index: 0;
    opacity: 0.4;
}
.home-page .forms-block {
    min-height: 730px;
    display: flex;
    max-width: 420px;
    padding: 45px 40px 60px 40px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border-radius: var(--border-big-radius) var(--border-small-radius) var(--border-small-radius) var(--border-small-radius);
    background: var(--color-light-gray);
    box-sizing: border-box;
    text-align: center;
}
.home-page .forms-block .subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.home-page .forms-block .consult-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}
.home-page .forms-block .consult-form form {
    margin-top: 10px;
}
/*Platform statistics END*/

/*Get recommendations START*/
.home-page .get-recommendations {
    margin-bottom: var(--block-bottom-space-md);
    position: relative;
}
.home-page .get-recommendations .icon {
    display: flex;
    width: 90px;
    height: 90px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    background: #FFF;
    box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.06);
    position: absolute;
    top: -45px;
    left: calc(50% - 45px);
}
.home-page .get-recommendations .icon svg {
    stroke: var(--color-primary);
}
.home-page .get-recommendations .content {
    padding: 90px 40px 70px 40px;
    text-align: center;
    border-radius: var(--border-big-radius) 10px 10px 10px;
    background: var(--color-light-gray);
}
.home-page .get-recommendations .form-wrapper {
    max-width: 485px;
    margin: 0 auto;
}
.home-page .get-recommendations form {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}
.home-page .get-recommendations form input.email {
    width: 340px;
}
/*Get recommendations END*/

/*Smart training START*/
.home-page .smart-training {
    margin-bottom: var(--block-bottom-space-xl);
}
.home-page .smart-training .illustration {
    position: relative;
    width: 100%;
    height: 727px;
}
.home-page .smart-training .illustration .bg-light {
    position: absolute;
    top: -50px;
    right: -267px;
    width: 800px;
    height: 600px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(130px);
    z-index: 0;
    opacity: 0.2;
}
.home-page .smart-training .smartphone-statistic {
    width: 459px;
    height: 727px;
    background: url("/images/pages/home/smartphone-statistic.png") no-repeat top right / contain;
    position: absolute;
    top: 0;
    right: -40px;
}
.home-page .smart-training .watch-statistic {
    width: 321px;
    height: 320px;
    background: url("/images/pages/home/watch-statistic.png") no-repeat top right / contain;
    position: absolute;
    top: 387px;
    right: 191px;
}
.home-page .smart-training .content {
    padding-top: 40px;
    padding-left: 30px;
}
.home-page .smart-training .content .big-header {
    margin-bottom: var(--header-bottom-space-sm);
}
.home-page .smart-training .content .text {
    margin-bottom: 50px;
}
.home-page .smart-training .result-guarantee {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}
.home-page .smart-training .result-guarantee svg {
    min-width: 50px;
}
.home-page .smart-training .result-guarantee span {
    display: block;
    font-size: var(--font-size-small);
    color: var(--color-grey);
}
/*Smart training END*/



/*Media queries - START*/
@media (max-width: 1439px) {
    /*Advantages START*/
    .home-page .advantage.first {
        padding-right: 254px;
    }
    .home-page .advantage.third {
        padding-top: 30px;
    }
    /*Advantages END*/

    /*Smart training START*/
    .home-page .smart-training .smartphone-statistic {
        right: -80px;
    }
    .home-page .smart-training .watch-statistic {
        right: 110px;
    }
    /*Smart training END*/

}

@media (max-width: 1365px) {
    /*Advantages START*/
    .home-page .advantage.first {
        padding-right: 192px;
    }
    .home-page .advantage.first .advantage-illustration {
        right: -113px;
    }
    .home-page .advantage.first .text-block {
        position: relative;
        z-index: 99;
    }
    /*Advantages END*/

    /*All devices - START*/
    .home-page .yandex-music {
        left: auto;
        right: 45px;
    }
    /*All devices - END*/

    /*Our programs - START*/
    .home-page .our-programs {
        background: linear-gradient(to right, rgba(26, 26, 30, 1) 20%, rgba(26, 26, 30, 0)),
            url("/images/pages/home/our-programs-illustraion.jpg") top right -100px no-repeat;
    }
    /*Our programs - END*/
}
@media (max-width: 1279px) {
    /*All devices - START*/
    .home-page .yandex-music {
        right: 0;
    }
    .home-page .all-devices-image .notebook {
        left: auto;
        right: 40px;
    }
    .home-page .all-devices-image .tablet {
        left: 200px;
    }
    .home-page .all-devices-image .smartphone {
        left: 80px;
    }
    /*All devices - END*/


    /*Platform statistics START*/
    .home-page .platform-statistics .statistics-header.header {
        margin-left: 0;
    }
    .home-page .platform-statistics .statistics {
        padding-left: 93px;
    }
    .home-page .platform-statistics .statistic-item .number {
        font-size: 36px;
    }
    /*Platform statistics END*/
}
/*max-width: 1279px END*/

@media (max-width: 1023px) {
    /*Hero img - START*/
    .home-page .hero-img {
        height: 480px;
        min-height: auto;
    }
    .home-page .hero-img .text-first,
    .home-page .hero-img .text-second {
        font-size: 86px;
        top: 51px;
        right: 46px;
        line-height: 186px;
    }
    .home-page .hero-img .text-second {
        right: -267px;
    }
    .home-page .hero-img .text-slogan {
        top: 196px;
        right: -261px;
        width: 210px;
    }
    .home-page .hero-img .text-slogan br {
        display: none;
    }
    .home-page .hero-img .left-side .header-person {
        width: 400px;
        height: 408px;
        top: 46px;
        right: -200px;
        background-size: contain;
    }
    .home-page .hero-img .left-side .header-person-2 {
        width: 400px;
        height: 482px;
        right: -114px;
        top: 11px;
    }
    .home-page .hero-img .left-side .header-person-3 {
        width: 134px;
        height: 479px;
        right: -61px;
        top: 18px;
    }
    .home-page .hero-img .left-side .header-person-4 {
        width: 343px;
        height: 521px;
        right: -161px;
        top: 18px;
    }
    .home-page .hero-img .left-side .header-person-5 {
        width: 330px;
        height: 474px;
        right: -156px;
        top: 45px;
    }
    .home-page .video-presentation-button {
        right: 114px;
        bottom: 40px;
        width: 49px;
        height: 49px;
    }
    .home-page .video-presentation-button .text {
        left: 66px;
    }
    @keyframes pulse-video-icon {
        0% {
            box-shadow: 0 0 0 0 rgb(255, 224, 183, 1), 0 0 0 0 rgba(250, 249, 249, 0.24);
        }
        40% {
            box-shadow: 0 0 0 10px #FFE0B7, 0 0 0 20px rgba(250, 249, 249, 0.24);
        }
        100% {
            box-shadow: 0 0 0 16px rgb(255, 224, 183, 0), 0 0 0 50px rgba(250, 249, 249, 0);
        }
    }
    /*Hero img - END*/

    /*Advantages START*/
    .home-page .advantage,
    .home-page .advantage.first{
        padding: 40px 30px 40px 30px;
    }
    .home-page  .advantage-list-wrapper .first {
        min-width: auto;
    }
    .home-page  .advantage-list-wrapper .second {
        min-width: auto;
    }

    .home-page .advantage.first {
        padding: 40px 30px 40px 30px;
        overflow: hidden;
    }
    .home-page .advantage.first .advantage-illustration {
        right: -236px;
        display: none;
    }
    .home-page .advantage.second {
        overflow: hidden;
        padding-left: 278px;
    }
    .home-page .advantage.second .advantage-illustration {

    }
    .home-page .advantage.third {
        padding: 30px 30px 30px 30px;
    }
    /*Advantages END*/

    /*All devices - START*/
    .home-page .all-devices .small-header {
        max-width: 590px;
    }
    .home-page .all-devices-image .notebook {
        left: auto;
        top: 380px;
        right: 0px;
    }
    .home-page .all-devices-image .tablet {
        left: 100px;
        top: 371px;
    }
    .home-page .all-devices-image .smartphone {
        left: 0;
        top: 453px;
    }
    /*All devices - END*/

    /*Our programs - START*/
    .home-page .our-programs {
        padding-bottom: 150px;
    }
    .home-page .our-programs .content {
        row-gap: 45px;
    }
    /*Our programs - END*/


    /*Platform statistics START*/
    .home-page .platform-statistics .statistic-item .number {
        font-size: 32px;
    }
    .home-page .forms-block {
        min-height: auto;
        margin-top: 40px;
        max-width: 100%;
    }
    /*Platform statistics END*/


    /*Smart training START*/
    .home-page .smart-training .watch-statistic {
        right: 50px;
    }
    .home-page .smart-training .content {
        padding-left: 20px;
    }
    .home-page .smart-training .content .text {
        margin-bottom: 40px;
    }
    /*Smart training END*/

} /*max-width: 1023px END*/

@media (max-width: 799px) {
    /*Advantages START*/
    .home-page .advantage.first,
    .home-page .advantage.third{
        min-height: auto;
    }
    .home-page .advantage.second {
        padding-left: 132px;
    }
    .home-page .advantage.second .advantage-illustration {
        left: -119px;
    }
    .home-page .advantage.third {
        padding: 40px 30px 50px 30px;
    }
    .home-page .advantage.third ul.list li {
        align-items: center;
    }
    .home-page  .advantage-list-wrapper .first,
    .home-page  .advantage-list-wrapper .second {
        max-width: 100%;
    }
    .home-page .advantage-list-wrapper {
        flex-direction: column;
        gap: 14px;
    }
    /*Advantages END*/

    /*All devices - START*/
    .home-page .all-devices-image .monitor {
        width: 440px;
        height: 400px;
        background-size: contain;
        top: 10px;
        left: calc(50% - 440px / 2);
    }
    .home-page .all-devices .video {
        width: 417px;
        height: 229px;
        left: 11px;
        top: 12px;
    }
    .home-page .all-devices-image {
        height: 630px;
        width: 440px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: flex-end;
    }
    .home-page .all-devices-image .notebook {
        top: 278px;
        right: -10px;
        width: 290px;
        height: 163px;
        background-size: contain;
    }
    .home-page .all-devices-image .tablet {
        left: 20px;
        top: 300px;
        width: 110px;
        height: 140px;
        background-size: contain;
    }
    .home-page .all-devices-image .smartphone {
        width: 50px;
        height: 90px;
        left: 11px;
        top: 363px;
        background-size: contain;
    }
    .home-page .yandex-music {
        position: static;
        margin: 0 auto;
    }

    .home-page .all-devices.parallax-block .yandex-music .melody-key.main{
        transform: none;
    }
    .home-page .all-devices.parallax-block .yandex-music .melody-key.first{
        transform: none;
    }
    .home-page .all-devices.parallax-block .yandex-music .melody-key.second {
        transform: none;
    }
    /*All devices - END*/

    /*Our programs - START*/
    .home-page .our-programs {
        background:
            linear-gradient(to right, rgba(26, 26, 30, 1) 0%, rgba(26, 26, 30, 0.5) 100%),
            url("/images/pages/home/our-programs-illustraion.jpg") center right -100px no-repeat;
    }
    /*Our programs - END*/


    /*Platform statistics START*/
    .home-page .platform-statistics .statistics {
        padding-left: 10px;
        padding-right: 10px;
        gap: 20px;
    }
    .home-page .platform-statistics .statistic-item .text br {
        display: none;
    }
    .home-page .forms-block {
        padding: 40px 20px 40px 20px;
    }
    /*Platform statistics END*/


    /*Get recommendations START*/
    .home-page .get-recommendations .content {
        padding: 70px 20px 50px 20px;
        text-align: center;
        border-radius: var(--border-big-radius) 10px 10px 10px;
        background: var(--color-light-gray);
    }
    .home-page .get-recommendations form > div {
        width: 100%;
    }
    .home-page .get-recommendations form input.email {
        width: 100%;
    }
    .home-page .get-recommendations form .button {
        margin: 0 auto;
    }
    /*Get recommendations END*/

    /*Smart training START*/
    .home-page .smart-training .illustration .bg-light {
        position: absolute;
        top: -50px;
        right: auto;
        left: -100px;
    }
    .home-page .smart-training .watch-statistic {
        right: auto;
        left: -15px;
    }
    .home-page .smart-training .smartphone-statistic {
        position: static;
        /* margin-left: -61px; */
    }
    .home-page .smart-training .content {
        padding-left: 0;
        padding-top: 0;
    }
    .home-page .smart-training .content .text {
        margin-bottom: 30px;
    }
    /*Smart training END*/

}
/*max-width: 799px END*/

@media (max-width: 479px) {
    /*Hero img - START*/
    .home-page .hero-img {
        height: 480px;
    }
    .home-page .hero-img .text-first,
    .home-page .hero-img .text-second {
        font-size: 60px;
        top: 51px;
        right: 40px;
        line-height: 186px;
    }
    .home-page .hero-img .text-second {
        right: -188px;
    }
    .home-page .hero-img .text-slogan {
        top: 185px;
        right: -183px;
        width: 145px;
        font-size: 11px;
    }
    .home-page .hero-img .left-side .header-person {
        width: 360px;
        height: 408px;
        top: 31px;
        right: -170px;
    }
    .home-page .hero-img .left-side .header-person-2 {
        width: 356px;
        height: 493px;
        right: -89px;
        top: -7px;
    }
    .home-page .hero-img .left-side .header-person-3 {
        width: 134px;
        height: 479px;
        right: -61px;
        top: 18px;
    }
    .home-page .hero-img .left-side .header-person-4 {
        width: 324px;
        height: 521px;
        right: -137px;
        top: 4px;
    }
    .home-page .hero-img .left-side .header-person-5 {
        width: 272px;
        height: 474px;
        right: -132px;
        top: 24px;
    }
    .home-page .video-presentation-button {
        right: 111px;
        bottom: 27px;
        width: 49px;
        height: 49px;
        background-size: contain;
    }
    /*Hero img - END*/

    /*All devices - START*/
    .home-page .all-devices-image .monitor {
        width: 318px;
        height: 288px;
        left: calc(50% - 320px / 2);
    }
    .home-page .all-devices-image .notebook {
        top: 208px;
        right: -10px;
        width: 221px;
        height: 123px;
    }
    .home-page .all-devices-image .tablet {
        left: 12px;
        top: 213px;
        width: 88px;
        height: 129px;
    }
    .home-page .all-devices-image .smartphone {
        width: 45px;
        height: 88px;
        left: 0;
        top: 263px;
    }
    .home-page .all-devices .video {
        width: 295px;
        height: 159px;
        left: 11px;
        top: 12px;
    }
    .home-page .all-devices-image {
        height: 519px;
        width: 320px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: flex-end;
    }
    /*All devices - END*/

    /*Our programs - START*/
    .home-page .our-programs {
        padding-bottom: 90px;
        padding-top: 0;
    }
    .home-page .our-programs .content {
        text-align: center;
        align-items: center;
    }
    .home-page .our-programs .program-list,
    .home-page .our-programs .program-list .first {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    .home-page .our-programs .program-list .first {
        margin-bottom: 10px;
    }
    /*Our programs - END*/

    /*Smart training START*/
    .home-page .smart-training .illustration .bg-light {
        top: -50px;
    }
    .home-page .smart-training .illustration {
        height: 640px;
    }
    .home-page .smart-training .smartphone-statistic {
        width: 100%;
        height: 600px;
        background: url('/images/pages/home/smartphone-statistic.png') no-repeat top center / 360px auto;
        margin-left: 15px;
    }
    .home-page .smart-training .watch-statistic {
        right: auto;
        left: -18px;
        width: 240px;
        height: 240px;
        top: 387px;
    }
    /*Smart training END*/




} /*max-width: 479p END*/

/*Media queries - END*/
