:root {
    --font-family-roboto-condensed: "Roboto Condensed", sans-serif;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
* {
    -webkit-tap-highlight-color: transparent;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

ul {
    list-style:none;
}

input, select {
    vertical-align:middle;
}
*,
*::after,
*::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;   
}
a{
    color: inherit;
    text-decoration: none;
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
html,body{
    font-family: "Roboto", sans-serif;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 23.4px */
    scroll-behavior: smooth;
    background: #fff;
    color: #464646;
}
.body{
    min-width: 320px;
}
.body.no-scroll{
    overflow: hidden;
}
.container{
    max-width: 1550px;
    padding: 0 15px;
    margin: 0 auto;
}
.color-coral{
    color: #F2A59B;
}
main.main{
    overflow: hidden;
}
.header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    padding: 17px 0;
}
.header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1309px;
}
.header__logo{
    display: flex;
    align-items: center;
    max-width: 153px;
    width: 100%;
}
.header__logo img{
    width: 100%;
}
.header__lang{
    display: flex;
    align-items: center;
    gap: 13px;
}
.header__lang-item{
    color: #8D8D8D;
    line-height: 150%;
    letter-spacing: 3.6px;
    text-transform: uppercase;
}
.header__lang-item.active{
    color: #FFF;
    cursor: default;
    pointer-events: none;
}
.hero{
    background-image: url('../img/hero.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.hero::before{
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
}
.hero .container{
    height: 100%;
}
.hero__inner {
    height: 869px;
    padding-bottom: 101px;
    max-width: 1072px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 56px;
}
.hero__title{
    color: #FFF;
    font-family: var(--font-family-roboto-condensed);
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    text-transform: uppercase;
}
.hero__desc{
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    line-height: 150%; /* 36px */
    max-width: 619px;
}
.course{
    padding: 60px 0;
}
.course__title{
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 5.6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.course__name{
    max-width: 912px;
    text-align: center;
    margin: 0 auto;
    color: #000;
    text-align: center;
    font-family: var(--font-family-roboto-condensed);
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
}
.course__block{
    margin-top: 45px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}
.course__item{
    width: calc(25% - 30px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
}
.course__item-image{
    display: flex;
    align-items: center;
    width: 100%;
}
.course__item-image img{
    width: 100%;
    height: 100%;
}
.course__item-name {
    color: #000;
    font-family: var(--font-family-roboto-condensed);
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    min-height: 78px;
}
.course__item-descr {
    color: #6F6F6F;
    flex: 1;
}
.course__item-link {
    color: #FFF;
    font-family: var(--font-family-roboto-condensed);
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 3px;
    background-color: #F6D9D5;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 61px;
    cursor: default;
    pointer-events: none;
    transition: all .1s ease;
}
.course__item-link.active{
    cursor: pointer;
    pointer-events: all;
    background: #EA9489;
}
.course__item-link.active:hover{
    background: rgb(255, 160, 148);
}
.course__item-link.active:active{
    background: rgb(148, 93, 86);
}
.quote{
    padding: 60px 0;
}
.quote__inner{
    width: 100%;
    max-width: 1110px;
    margin: 0 auto;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 49px;
    padding: 40px 0;
    border-top: 1px solid #F2A59B;
}
.quote__icon{
    display: flex;
    align-items: center;
}
.quote__title{
    color: #000;
    font-family: var(--font-family-roboto-condensed);
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
}
.about{
    padding-top: 100px;
    position: relative;
    z-index: 1;
}
.about::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 786px;
    background: #FEF7F4;
    z-index: -1;
}
.about__title{
    color: #000;
    text-align: center;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.about__name{
    color: #000;
    text-align: center;
    font-family: var(--font-family-roboto-condensed);
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
}
.about__content{
    display: flex;
    justify-content: space-between;
    gap: 74px;
    max-width: 1315px;
    margin-left: auto;
    margin-top: 60px;
}
.about__box{
    width: 100%;
    max-width: 585px;
}
.about__descr{
    color: #000;
    max-width: 585px;
}
.about__mark{
    margin-top: 40px;
    padding-left: 60px;
}
.about__mark li{
    position: relative;
    color: #000;
}
.about__mark li::before{
    content: '';
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'%3E%3Cpath d='M18.3346 9.7355V10.5022C18.3336 12.2992 17.7517 14.0477 16.6757 15.487C15.5998 16.9263 14.0874 17.9792 12.3641 18.4888C10.6408 18.9983 8.79902 18.9371 7.11336 18.3143C5.4277 17.6916 3.98851 16.5406 3.01044 15.0331C2.03236 13.5255 1.56779 11.7422 1.68603 9.94909C1.80427 8.15597 2.49897 6.4491 3.66654 5.08306C4.8341 3.71702 6.41196 2.76498 8.16479 2.36895C9.91763 1.97292 11.7515 2.15411 13.393 2.8855' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.3333 3.83594L10 12.1776L7.5 9.6776' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.about__mark li + li{
    margin-top: 10px;
}
.about__social{
    margin-top: 40px;
}
.about__social-name{
    color: #000;
}
.about__social-block{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.about__social-item{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #EA9489;
    width: 56px;
    height: 56px;
}
.about__social-item[data-aos^=fade][data-aos^=fade].aos-animate:hover{
    transform: scale(1.1);
}
.about__founder{
    margin-top: 120px;
    margin-left: 146px;
    color: #000;
    font-family: var(--font-family-roboto-condensed);
    font-size: 24px;
    line-height: normal;
}
.about__block{
    width: 100%;
    max-width: 650px;
}
.about__image{
    width: 100%;
    display: flex;
    align-items: center;
    height: 792px;
}
.about__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed{
    padding: 50px 0 60px;
}
.feed__title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #000;
    font-family: var(--font-family-roboto-condensed);
    font-size: 44px;
    font-weight: 400;
    line-height: 44px; /* 100% */    
}
.feed__content{
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 2290px;
    margin: 30px auto 0;
}
.feed__item{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.feed__item img{
    max-width: 100%;
}
.quoteEnd{
    padding: 60px 0;
}
.quoteEnd__inner{
    width: 100%;
    max-width: 1110px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #F2A59B;
}
.quoteEnd__content{
    display: flex;
    justify-content: space-between;
    gap: 34px;
}
.quoteEnd__title{
    color: #000;
    font-family: var(--font-family-roboto-condensed);
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    max-width: 906px;
}
.quoteEnd__social{
    display: flex;
    align-items: start;
    gap: 34px;
}
.quoteEnd__social-item{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: #F6F6F6;
    border-radius: 50%;
}
.quoteEnd__social-item[data-aos^=fade][data-aos^=fade].aos-animate:hover{
    transform: scale(1.1);
}
.quoteEnd__descr{
    margin-top: 40px;
    color: #747474;
    font-family: var(--font-family-roboto-condensed);
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.9px;
}
.footer{
    background: #FEF7F4;
    padding: 60px 0;
    overflow: hidden;
}
.footer__inner{
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 690px;
    margin: 0 auto;
}
.footer__logo{
    width: 100%;
    max-width: 153px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__logo img{
    width: 100%;
}
.footer__feedback{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}
.footer__feedback-item{
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000;
    font-family: var(--font-family-roboto-condensed);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer__links{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer__links-item{
    color: #000;
    text-align: center;
    font-family: var(--font-family-roboto-condensed);
    font-style: normal;
    font-weight: 400;
    line-height: normal; 
}
.footer__links-item:hover{
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    text-decoration: underline;
    -webkit-text-decoration-style: underline;
    text-decoration-style: underline;
    text-underline-position: under;
}
.footer__fop{
    padding: 10px 0;
}
.footer__fop,
.footer__copy{
    text-align: center;
    color: #747474;
    font-family: var(--font-family-roboto-condensed);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media (max-width: 1279px) {
    .container{
        max-width: 1000px;
    }
    .hero__inner{
        padding-bottom: 50px;
        gap: 36px;
        height: 800px;
    }
    .hero__title{
        font-size: 50px;
    }
    .hero__desc {
        font-size: 22px;
        max-width: 589px;
    }
    .about__founder{
        margin-left: 40px;
    }
    .course__item {
        width: calc(33.33% - 27px);
    }
    .feed__content{
        gap: 20px;
    }
}
@media (max-width: 999px) {
    .container{
        max-width: 768px;
    }
    .hero__inner {
        height: 700px;
    }
    .hero__title {
        font-size: 40px;
        line-height: 50px;
    }
    .hero__desc {
        font-size: 20px;
        max-width: 529px;
    }
    .course {
        padding: 40px 0;
    }
    .course__title{
        font-size: 24px;
    }
    .course__name {
        max-width: 662px;
        font-size: 26px;
    }
    .course__item {
        width: calc(50% - 20px);
    }
    .course__item-name{
        min-height: auto;
    }
    .course__item-descr {
        color: #6F6F6F;
        flex: none;
        margin-top: auto;
    }
    .quote {
        padding: 30px 0;
    }
    .quote__inner{
        gap: 30px;
        padding: 30px 0;
    }
    .quote__title{
        font-size: 20px;
    }
    .about{
        padding-top: 60px;
    }
    .about__content{
        gap: 20px;
    }
    .about__mark {
        margin-top: 25px;
        padding-left: 35px;
    }
    .about__image{
        height: 670px;
    }
    .about__founder {
        margin-left: 0;
        font-size: 20px;
        margin-top: 40px;
    }
    .feed {
        padding: 30px 0 30px;
    }
    .feed__content{
        max-width: 768px;
        padding: 0 15px;
        flex-wrap: wrap;
        margin: 20px auto 0;
    }
    .feed__item {
        width: calc(50% - 10px);
    }
    .quoteEnd__title{
        font-size: 20px;
    }
    .quoteEnd__social{
        gap: 20px;
    }
    .quoteEnd {
        padding: 30px 0 50px;
    }
    .quoteEnd__descr{
        margin-top: 30px;
    }
    .about__social {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    html,body{
        font-size: 16px;
    }
    .container{
        max-width: 480px;
    }
    .hero__inner{
        gap: 30px;
    }
    .hero__title {
        font-size: 30px;
        line-height: 40px;
    }
    .hero__desc {
        font-size: 18px;
    }
    .course__title {
        font-size: 18px;
    }
    .course__name {
        font-size: 20px;
    }
    .course__block{
        gap: 30px 20px;
    }
    .course__item {
        width: calc(50% - 10px);
        gap: 15px;
    }
    .course__item-name{
        font-size: 20px;
    }
    .course__item-link{
        font-size: 16px;
        height: 46px;
    }
    .quote__title {
        font-size: 18px;
    }
    .about__name{
        font-size: 30px;
    }
    .about__image {
        height: auto;
    }
    .about__content{
        flex-direction: column-reverse;
        margin-top: 35px;
    }
    .about__founder{
        margin-top: 30px;
    }
    .quoteEnd__content{
        gap: 20px;
    }
    .quoteEnd__title {
        font-size: 18px;
    }
    .footer__inner{
        gap: 30px;
    }
    .footer__feedback{
        flex-direction: column;
        gap: 20px;
    }
    .footer__links{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .footer__feedback-item{
        font-size: 20px;
    }
    .footer {
        padding: 30px 0;
    }

    .feed__content{
        max-width: 480px;
    }
}
@media (max-width: 479px) {
    .container{
        max-width: 360px;
    }
    .header__logo{
        max-width: 90px;
    }
    .hero__inner{
        height: calc(100vh - 100px);
    }
    .hero__title {
        font-size: 22px;
        line-height: 32px;
    }
    .hero__desc {
        font-size: 16px;
        max-width: 320px;
    }
    .course__item{
        width: 100%;
    }
    .course__item-name {
        font-size: 22px;
    }
    .about::before{
        height: 530px;
    }
    .about__descr{
        margin-right: -6px;
    }
    .about__founder {
        font-size: 18px;
    }
    .about__mark{
        margin-top: 20px;
    }
    .about__social-block {
        gap: 15px;
        margin-top: 10px;
    }
    .about__social-item {
        width: 50px;
        height: 50px;
    }
    .about__social-item svg{
        max-width: 28px;
        max-height: 28px;
    }
    .quote__inner{
        gap: 20px;
    }
    .feed {
        padding: 0px 0 30px;
    }
    .feed__title{
        font-size: 34px;
    }
    .feed__content {
        max-width: 360px;
    }
    .feed__item {
        width: 100%;
    }
    .quoteEnd__content{
        flex-direction: column;
    }
    .quoteEnd__social {
        gap: 15px;
    }
    .quoteEnd__social-item {
        width: 50px;
        height: 50px;
    }
    .quoteEnd__social-item svg{
        max-width: 28px;
        max-height: 28px;
    }
    .quoteEnd__descr{
        font-size: 16px;
    }
    .footer__logo{
        max-width: 100px;
    }
    .footer__links,
    .footer__feedback{
        gap: 15px;
    }
    .footer__fop, .footer__copy{
        font-size: 14px;
    }
}