*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Roboto';
}

ul{
    padding:0;
    margin:0;
}
ul li{
    list-style: none;
}
a{
    text-decoration: none;
}
.button{
    border-radius: 35px;
    padding-left:59px;
    padding-right:59px;
    padding-top:23px;
    padding-bottom:23px;
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    /* or 23px */
    width:fit-content;
    text-align: center;
    cursor: pointer;
    transition: 0.5s;
    min-width: fit-content;
}

.button.blue{
    background: #00ABEC;
    box-shadow: 0px 15px 20px rgba(255, 255, 255, 0.05), 0px 30px 50px rgba(0, 0, 0, 0.03);
    color: #FFFFFF;
    border: 1px solid #00ABEC;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}
.button.blue:hover{
    background: transparent;
    background: #0085E6;
    /* color: #828282;
    border: 1px solid #828282;
    box-shadow: 0px 15px 20px rgba(255, 255, 255, 0.05), 0px 30px 50px rgba(0, 0, 0, 0.03); */
}
.button.gray{
    background: transparent;
    color: #828282;
    border: 1px solid #828282;
    box-shadow: 0px 15px 20px rgba(255, 255, 255, 0.05), 0px 30px 50px rgba(0, 0, 0, 0.03);
}
.button.gray:hover{
    background: white;
    box-shadow: 0px 15px 20px rgba(255, 255, 255, 0.05), 0px 30px 50px rgba(0, 0, 0, 0.03);
    color: #00ABEC;
    border: 1px solid #00ABEC;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}

.container{
    max-width:1366px;
    width:100%;
    padding-left:57px;
    padding-right:57px;
    margin:0 auto;
}

.home_section_title{
    font-weight: 700;
    font-size: 42px;
    line-height: 103.02%;
    text-transform: uppercase;
    margin-bottom:28px;
    color: #EE762F;
}
.home_section_subtitle{
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 125.02%;
    color: #00ABEC;
    padding-left:20px;
    display: flex;
    margin-bottom:37px;
    position: relative;
}
.home_section_subtitle:before{
    width: 4px;
    height: 100%;
    display: block;
    content: ' ';
    background: #00ABEC;
    border-radius: 9px;
    position: absolute;
    left: 0;
    top: 0;
}

@media(max-width:768px){
    .button{
        padding-top:14px;
        padding-bottom:14px;
        padding-left:39px;
        padding-right:39px;
        font-size: 14px;
        line-height: 130%;
    }
    .home_section_title{
        font-size: 32px;
        line-height: 103.02%;
        margin-bottom:30px;
    }
    .home_section_subtitle{
        font-size: 20px;
        line-height: 125.02%;
        margin-bottom:30px;
    }
}
/*  */

header{

}
header.active{
    top:0;
    left:0;
    width:100%;
    position: fixed;
    z-index: 999;
    background:white;
}
header > .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    width:192px;
}
.logo img{
    width:100%;
}

.header_menu{
    width: 65%;
}
.header_menu ul{
    display: flex;
    justify-content: space-between ;
    border-bottom: 1px solid #C9C9C9;
    padding-bottom:15px;
    width:100%;
}
.header_menu ul li{

}
.header_menu ul li:first-child{
    /* margin-right:100px; */
}
.header_menu ul li a{
    font-weight: 700;
    font-size: 16px;
    line-height: 145.4%;
    text-transform: uppercase;
    color: #333333;
}
.header_menu ul li a:hover{
    color: #00ABEC;
}
.header_menu ul li.active a{
    color: #00ABEC;
    position: relative;
}
.header_menu ul li.active a::after{
    color: #00ABEC;
    background: #00ABEC;
    height:4px;
    width:100%;
    position: absolute;
    content:' ';
    display: block;
    bottom: -18px;
}
.header_button{
    display: none;
}

@media(max-width:768px){
    .logo{
        width:152px;
    }
    header{
        padding-top:10px;
        padding-bottom:20px;
    }
    .header_menu{
        display:none;
    }
    .header_button{
        width:43px;
        height:25.4px;
        display: block;
        position: relative;
    }
    .header_button div{
        background: #494D50;
        border-radius: 2px;
        width:100%;
        height:3px;
        position: absolute;
    }
    .header_button div:nth-child(1){
        top:0;
    }
    .header_button div:nth-child(2){
        top: 10px;
    }
    .header_button div:nth-child(3){
        bottom:0;
    }

    .header_button.active div:nth-child(1){
        top: 10px;
        transform: rotate(45deg);
    }
    .header_button.active div:nth-child(2){
        top: 10px;
        left:-500px;
        opacity: 0;
    }
    .header_button.active div:nth-child(3){
        bottom: 12px;
        transform: rotate(-45deg);
    }

}

/*  */
.header.active{
    position: absolute;
    top:0;
    left:0;
    width:100%;
}
.home_header{
    padding-top:70px;
    padding-bottom: 75px;
}
.home_header .container{
    position: relative;
}
.home_header-background{
    position: absolute;
    max-width: 100%;
    top: -41px;
    right: 0;
}
.home_header-title{
    font-weight: 700;
    font-size: 42px;
    line-height: 125.02%;
    color: #EE762F;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    max-width: 722px;
}
.home_header-sub-title{
    font-weight: 700;
font-size: 26px;
line-height: 125.02%;
margin-bottom:60px;
color: #00ABEC;
max-width: 593px;
}
.home_header-button{
    position: relative;
    z-index: 2;
}

/*  */

.mob-header{
    position: fixed;
    top: 110px;
    left:0;
    width:100%;
    padding-left:24px;
    padding-right:24px;
    padding-bottom:45px;
    padding-top: 60px;
    background: #FFFFFF;
    z-index: 999;
    display: none;
}
.mob-header.active{
    display: block;
}
.mob-header .footer-right-menu{
    margin-bottom:65px;
}
.mob-header-mid{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom:65px;
}
.mob-header-mid .footer-left-a{
    margin-left:0;
}

.mob-header-mid .structure-bottom-block-button{
    margin:0;
}


/*  */







@media(max-width:1200px){
    .home_header-background{
        max-width: 50%;
        top: auto;
        bottom:-40px;
    }
}
@media(max-width:768px){
    .home_header-background{
        bottom:0;
        right:0;
        position: relative;
        max-width: 100%;
    }
    .home_header-title{
        font-size: 20px;
        line-height: 24px;
        margin-bottom:30px;
    }
    .home_header-sub-title {
        font-weight: 700;
        font-size: 16px;
        line-height: 125.02%;
        margin-bottom: 40px;
        color: #00ABEC;
        max-width: 593px;
    }
    .home_header{
        padding-top:30px;
        padding-bottom:30px;
    }
}

/*  */

.forwhom{
    position: relative;
    z-index: 3;
    margin-bottom:86px;
}
.forwhom_blur_container{
    background: rgba(247, 247, 247, 0.64);
    border: 1px solid #FFFFFF;
    box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12.5px);
    /* Note: backdrop-filter has minimal browser support */

    border-radius: 34px;
    margin:0 auto;
    width:fit-content;
    padding-top:40px;
    padding-bottom:40px;
    padding-left:27px;
    padding-right:27px;
}
.forwhom_blur_container .container{
    padding-left:0;
    padding-right:0;
    max-width:1251px;
}
.forwhom_top-flex{
    display: flex;
    justify-content:space-between;
}
.forwhom_top-flex .home_section_subtitle{
    width:45%;
}
.forwhom_top-flex .forwhom_top-text{
    width:45%;
    font-weight: 400;
    font-size: 20px;
    line-height: 125.02%;
    color: #333333;
}

.forwhom-blocks{
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;

}
.forwhom-block{
    width:23%;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    box-shadow: 0px 2.54976px 25px rgba(93, 147, 170, 0.24);
    border-radius: 28px;
    padding-left:13px;
    padding-right:13px;
    padding-top:16px;
    padding-bottom: 19px;
    transform:scale(1);
    transition: 0.5s;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.forwhom-block:hover{
    /* transform:scale(1.1); */
    /* transition: 0.5s; */
}
.forwhom-block-top{
    display: flex;
    justify-content: center;
    margin-bottom:12px;
}
.forwhom-block-number{
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    color: #F2F2F2;
    margin-right:20px;
}
.forwhom-block-img{

}
.forwhom-block-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 145.4%;
    text-transform: uppercase;
    color: #333333;
    text-align: center;
}

@media(max-width:1200px){
    .forwhom-block{
        width:49%;
        margin-bottom: 20px;
    }
}
@media(max-width:768px){
    .forwhom-block{
        padding:8px;
    }
    .forwhom-block-number{
        font-size: 22px;
        line-height: 27px;
    }
    .forwhom-block-img{
        width:100px;
    }
    .forwhom-block-title{
        font-size: 12px;
        line-height: 145.4%;
    }
    .forwhom_top-flex{
        flex-wrap: wrap;
    }
    .forwhom_top-flex .home_section_subtitle{
        width:100%;
    }
    .forwhom_top-flex .forwhom_top-text{
        width:100%;
        font-size: 16px;
        line-height: 150%;
        margin-bottom:30px;
    }
}

/*  */

.purpose{
    padding-bottom:86px;
}
.purpose .container{
    position: relative;
}
.purpose_cont{
    max-width:856px;
    width: 68.371%;
}

.purpose-text{
    font-weight: 700;
    font-size: 20px;
    line-height: 145.4%;
    color: #333333;
    margin-bottom:20px;
}
.purpose-list{
    border-bottom: 1px dashed #939EA7;
    padding-top:110px;
    margin-bottom:240px;
    display: flex;
    justify-content:space-between;
    max-width:500px;
    margin-left:24px;
}
.purpose-list-item{
    position: relative;
    opacity: 0;
    transition: 0.2s;
}
.purpose-list-item.active{
    opacity: 1;
    transition: 0.2s;
}
.purpose-list-item-number{
    font-weight: 700;
    font-size: 63px;
    line-height: 77px;
    color: #00ABEC;
    position: absolute;
    top: -105px;
    left: 35px;
    text-shadow: -0.640361px 1.92108px 3.2018px rgba(0, 174, 239, 0.27);
}
.purpose-list-item-button{
    background: radial-gradient(85.48% 85.48% at 50% 14.52%, #D9D9D9 0%, rgba(217, 217, 217, 0) 100%);
    border: 1px solid #FFFFFF;
    width: 62px;
    height: 62px;
    border-radius: 100%;
    display: flex;
    justify-content:center;
    align-items:center;
    position: absolute;
    top: -29px;
    left: -24px;
}
.purpose-list-item-button-circle{
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
    box-shadow: 0px 3.91855px 8.81674px #D6D8DD;
    border-radius: 100%;
}
.purpose-list-item-cont{
    position: absolute;
    top: 63px;
    left: -20px;
}
.purpose-list-item:nth-child(1) .purpose-list-item-cont{
    max-width:209px;
}
.purpose-list-item:nth-child(2) .purpose-list-item-cont{
    max-width:198px;
}
.purpose-list-item:nth-child(3) .purpose-list-item-cont{
    max-width:322px;
    width:322px;
}
.purpose-list-item-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #00ABEC;
    margin-bottom:16px;
}
.purpose-list-item-text{
    font-weight: 400;
    font-size: 20px;
    line-height: 145.4%;
    color: #333333;
}
.purpose-back-img{
    position: absolute;
    top:20px;
    right:-20px;
    width: 30.89%;
}

@media(max-width:720px){
    .container{
        padding-left:24px;
        padding-right:24px;
    }
    .home_section_title{
        font-weight: 700;
        font-size: 20px;
        line-height: 103.02%;
        text-transform: uppercase;
        margin-bottom:30px;
        color: #EE762F;
    }
    .home_section_subtitle{
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 125.02%;
        color: #00ABEC;
        padding-left:20px;
        display: flex;
        margin-bottom:30px;
        position: relative;
    }
    .home_section_subtitle:before{
        width: 4px;
        height: 100%;
        display: block;
        content: ' ';
        background: #00ABEC;
        border-radius: 9px;
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .purpose{
        padding-bottom:30px;
    }
    .purpose_cont{
        max-width: 100%;
        width: 100%;
    }
    .purpose-back-img{
        position: relative;
        top:0;
        right:0;
        display:block;
        margin:0 auto;
    }
    .purpose-text{
        font-weight: 700;
        font-size: 16px;
        line-height: 150%;
        margin-bottom:30px;
    }
    .purpose-list{
        padding-top:19px;
        padding-bottom:97px;
        /* width:0; */
        height:147px;
        margin-left:76px;
        padding-left:40px;
        border-bottom: 0px dashed #939EA7;
        border-left: 1px dashed #939EA7;
        display: block;
        padding-top:0;
        margin-bottom: 114px;
    }
    .purpose-list-item{
        margin-bottom:30px;
    }
    .purpose-list-item-number{
        font-weight: 700;
        font-size: 36px;
        line-height: 44px;
        color: #00ABEC;
        position: absolute;
        top: -13px;
    left: -114px;
    }
    .purpose-list-item-button{
        background: radial-gradient(85.48% 85.48% at 50% 14.52%, #D9D9D9 0%, rgba(217, 217, 217, 0) 100%);
        border: 1px solid #FFFFFF;
        width: 39.7px;
        height: 39.7px;
        border-radius: 100%;
        display: flex;
        justify-content:center;
        align-items:center;
        position: absolute;
        top: -10px;
        left: -61px;
    }
    .purpose-list-item-button-circle{
        width: 25.61px;
        height: 25.61px;
        background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
        box-shadow: 0px 3.91855px 8.81674px #D6D8DD;
        border-radius: 100%;
    }
    .purpose-list-item-cont{
        position: relative;
        top: 0px;
        left: 0px;
    }
    .purpose-list-item-title{
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
        text-transform: uppercase;
        color: #00ABEC;
        margin-bottom:8px;
    }
    .purpose-list-item-text{
        font-weight: 400;
        font-size: 12px;
        line-height: 145.4%;
        color: #333333;
    }
    .purpose-list-item:nth-child(3) .purpose-list-item-cont{
        width: auto;
    }
    

    
}

/*  */

.structure{
    
}
.structure .container{
    position: relative;

}
.structure-back{
    position: absolute;
    top: -32px;
    right:0;
}
.structure .home_section_title{
    position: relative;
    z-index: 2;
}
.structure .home_section_subtitle{
    position: relative;
    z-index: 2;
    margin-bottom:26px;
}
.home_section_subtitle2{
    font-weight: 700;
font-size: 20px;
line-height: 145.4%;
/* identical to box height, or 29px */

margin-bottom:26px;
/* Gray 1 */

color: #333333;
}
.structure-blocks{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.structure-block{
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 1px solid #F2F2F2;
    box-shadow: 0px 2.54976px 15px rgba(93, 147, 170, 0.24);
    border-radius: 28px;
    padding:10px;
    margin-bottom: 28px;
    width:32%;
    transition: 0.5s;
    transform: scale(1);
    cursor: pointer;
}
.structure-block:hover{
    transition: 0.5s;
    transform: scale(1.1);
}
.structure-block-top{
    background: #EE762F;
    border-radius: 18px;
    padding-left:15px;
    padding-right:15px;
    padding-top:7px;
    padding-bottom: 7px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom:20px;
}
.structure-block-top-text{
    display: flex;
    align-items: flex-end;
    font-weight: 700;
    font-size: 22px;
    line-height: 145.4%;
    text-transform: uppercase;

    color: #FFFFFF;
}
.structure-block-top-number{
    font-weight: 700;
    font-size: 63px;
    line-height: 63px;
    color: #FFFFFF;
    margin-left:10px;
}
.structure-block-top-arrow{
    position: relative;
    left:0;
    transition: 0.5s;
}
.structure-block:hover .structure-block-top-arrow{
    left:10px;
    transition: 0.5s;
}
.structure-block-bottom-text{
    font-weight: 400;
    font-size: 20px;
    line-height: 145.4%;
    padding:11px;
    color: #333333;
    padding-top:0;
}

.structure-bottom-block{
    background: rgba(247, 247, 247, 0.64);
    border: 1px solid #FFFFFF;
    box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12.5px);
    border-radius: 23px;
    display: flex;
    align-items: center;
    padding:12px;
    margin-bottom:26px;
}
.structure-bottom-block-img{
    width:35px;
    margin-right:28px;
}
.structure-bottom-block-text{
    font-weight: 600;
    font-size: 18px;
    line-height: 145.4%;
    color:#333333;
    margin-right:28px;
}
.structure-bottom-block-text a{
    text-decoration-line: underline;
    color: #00ABEC;
}
.structure-bottom-block-button{
    min-width:274px;
    padding-left:20px;
    padding-right:20px;
    display: flex;
    justify-content: center;
}
.structure-block-top-arrow-mob{
    display: none;
}

@media(max-width:768px){
    .structure-back{
        display: none;
    }
    .structure-block{
        width:48%;
        padding:7px;
        padding-bottom:15px;
        border-radius: 16px;
    }
    .structure-block-top{
        padding:5px;
        border-radius: 6.7861px;
        margin-bottom:10px;
    }
    .structure-block-top-text{
        font-size: 13.1228px;
        line-height: 120%;
    }
    .structure-block-top-number{
        font-size: 34px;
        line-height: 1;
    }
    .structure-block-top-arrow{

    }
    .structure-block-bottom-text{
        font-weight: 400;
        font-size: 14px;
        line-height: 145.4%;
        padding:5px;
        padding-top:0;
    }
    .structure-block-top-arrow{
        display: none;
    }
    .structure-block-top-arrow-mob{
        display: block;
        bottom: 9px;
        position: relative;
    }
    .structure-bottom-block{
        flex-wrap:wrap; 
        align-items: flex-start;
    }
    .structure-bottom-block-img{
        margin-right:10px;
    }
    .structure-bottom-block-text{
        width: calc(100% - 45px);
        margin-right:0;
        font-weight: 500;
        font-size: 12px;
        line-height: 145.4%;
        margin-bottom:20px;
    }
    .structure-bottom-block-button{
        margin:0 auto;
        min-width:200px;
    }
}

/*  */

.history{
    padding-top:60px;
    padding-bottom: 85px;
}
.history .container{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.history-left{
    width:56%;
}
.home_section_title{

}
.home_section_subtitle{

}
.history-left img{
    width:100%
}
.history-right{
    width:42%;
}
.history-right img{
    width:100%;
}
.history-right-mob{
    display: none;
}

@media(max-width:768px){
    .history .container{
        flex-wrap: wrap;
    }
    .history-left{
        width: 100%;
    }
    .history-right{
        width:100%;
    }
    .history-right img{
        display: none;
    }
    .history-right-mob{
        display: block;
        width:100%;
    }
}


/*  */

.specialist{
    background: #FAFAFA;
    padding-top:85px;
    padding-bottom:270px;
}
.specialist .container{
    position: relative;
}
.specialist .home_section_title{
    margin-bottom:80px;
    position: relative;
    z-index: 2;
}
.specialist-slider{
    max-width: 1044px;
    margin:0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    
}
.specialist-slider .slick-list{
    padding-top:100px!important;
    padding-bottom:80px!important;
}
.specialist-slide-cont{
    position: relative;
    background: #FFFFFF;
    border: 1px solid #F2F2F2;
    box-shadow: 0px 0px 30px rgba(93, 147, 170, 0.25), 0px 69px 49px -38px rgba(93, 147, 170, 0.24);
    border-radius: 28px;
    padding:38px;
    margin-left:100px;
    margin-right:100px;
}
.specialist-slide{
    opacity: 0;
    transition: 0.5s;
}
.specialist-slide.slick-active{
    opacity: 1;
    transition: 0.5s;
}
.specialist-slide-top{
    position: relative;
    margin-bottoM:35px;
}
.specialist-slide-top-right{
    margin-left:150px;
    padding-bottom: 14px;
    border-bottom: 1px solid #D6D8DD;
}
.specialist-slide-top-right-title{
    font-weight: 700;
    font-size: 26px;
    line-height: 145.4%;
    /* identical to box height, or 38px */
    margin-bottom: 10px;
    text-transform: uppercase;
    
    color: #00ABEC;
}
.specialist-slide-top-right-subtitle{
    font-weight: 700;
    font-size: 20px;
    line-height: 145.4%;
    /* identical to box height, or 29px */
    
    
    /* Gray 1 */
    
    color: #333333;
}
.specialist-slide-top-right-text{

}

.specialist-top-back{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
}
.specialist-bottom-back{
    position: absolute;
    z-index: 1;
    bottom: -284px;
    max-width:100%;
}
.specialist-slide-top-image{
    position: absolute;
    z-index: 1;
    top: -94px;
    left: -67px;
    overflow: hidden;
    border-radius: 100%;
    border: 9px solid #FFFFFF;
box-shadow: inset 0px 4px 22px rgba(0, 0, 0, 0.78);
filter: drop-shadow(0px 0px 28px rgba(0, 0, 0, 0.25));
}
.specialist-slide-top-image img{
    border-radius: 100%;
    display: block;
}
.specialist-slide-top-left-img{
    position: absolute;
    z-index: 1;
    bottom: -21px;
    left: 84px;
}
.specialist-slide-bottom{
    font-weight: 400;
    font-size: 18px;
    line-height: 145.4%;
    color: #333333;
}

.specialist-slider .slick-arrow{
    position: absolute;
    z-index: 10;
    top:48%;
    background: #FFFFFF;
    border: 1px solid #F2F2F2;
    box-shadow: 0px 0px 30px rgba(93, 147, 170, 0.25), 0px 69px 49px -38px rgba(93, 147, 170, 0.24);
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75px;
height: 75px;
border-radius: 100%;
cursor: pointer;
transition: 0.5s;
transform: scale(1);
}
.specialist-slider .slick-arrow:hover{
    transition: 0.5s;
transform: scale(1.1);
}
.specialist-slider .slick-next{
    left:0;
}
.specialist-slider .slick-prev{
    right:0;
}

@media(max-width:768px){
    .specialist-slider .slick-list{
        padding-left: 0px!important;
        padding-right: 0px!important;
    }
    .specialist-slider-container{
        /*padding:0;*/
        padding:0 !important;
    }
    .specialist-slide-cont{
        margin-left:24px;
        margin-right:24px;
        padding:18px;
        padding-top:38px;
    }
    .specialist-slide-top{
        padding-bottom:24px;
    }
    .specialist-slide-top-image{
        top: -47px;
        left: -32px;
    }
    .specialist-slide-top-left-img{
        bottom: 0;
        left: 20px;
        width: 42px;
    }
    .specialist-slide-top-image img{
        width:118px;
    }
    .specialist-slide-top-right{
        margin-left: 81px;
        padding-left:35px;
    }
    .specialist-slide-top-right-title{
        font-size: 16px;
line-height: 145.4%;
        margin-bottom:10px;
    }
    .specialist-slide-top-right-subtitle{
        font-size: 14px;
line-height: 150%;
margin-bottom:10px;
    }
    .specialist-slide-top-right-text{
        font-size: 14px;
line-height: 150%;
    }
    .specialist-slide-bottom{
        font-weight: 400;
font-size: 14px;
line-height: 145.4%;
    }
    .specialist-slider .slick-arrow{
        width:51px;
        height:51px;
        top:41%;
    }
    .specialist-slider .slick-arrow img{
        width:26px;
    }
    .specialist-slider .slick-next{
        left:0;
    }
    .specialist-slider .slick-prev{
        right:0;
    }
    .specialist{
        padding-bottom: 100px;
        padding-top:45px;
    }
    .specialist-bottom-back{
        bottom: -71px;
    }
    .specialist .home_section_title{
        margin-bottom: -10px;
    }
}


/*  */

footer .container{
    display: flex;
    justify-content: space-between;
    padding-top:80px;
    padding-bottom: 70px;
    flex-wrap: wrap;
}
.footer-left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width:27%;
}
.footer-left .logo{
    width:192px;
}
.footer-left-a{
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 145.4%;
    color: #00ABEC;
    margin-bottom:17px;
}
.footer-left-a:hover{
    text-decoration: underline;
}
.footer-left-a:last-child{
    margin-bottom: 0;
}
.footer-left-a img{
    margin-right:20px;
}

.footer-right{
    width: 65%;
}
.footer-right-top{
    display: flex;
    align-items: flex-end;
    margin-bottom:34px;
}
.footer-right-menu{
    padding-left:20px;
    padding-right:20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #C9C9C9;
    padding-bottom: 15px;
    width:100%;
    
}
.footer-right-menu li a{
    font-weight: 700;
    font-size: 16px;
    line-height: 145.4%;
    text-transform: uppercase;
    color: #333333;
}
.footer-right-menu li a:hover{
    color: #00ABEC;
}
.footer-right-menu li.active a{
    color: #00ABEC;
    position: relative;
}
.footer-right-menu li.active a::after{
    color: #00ABEC;
    background: #00ABEC;
    height: 4px;
    width: 100%;
    position: absolute;
    content: ' ';
    display: block;
    bottom: -18px;
}
.footer-right-text{
    font-weight: 400;
    font-size: 14px;
    line-height: 145.4%;
    color: #333333;
    margin-bottom:30px;
}
.footer-right-bottom{
    display: flex;
    justify-content: space-between;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    padding-top:13px;
    width:100%;
}
.footer-bottom-copyright{
    width: 18%;
    font-weight: 400;
font-size: 12px;
line-height: 145.4%;
}
.footer-bottom-politic{
    width: 53.5%;
    font-weight: 400;
font-size: 12px;
line-height: 145.4%;
color:black;
}
.footer-bottom-mastak{
    width:93px;
}

@media(max-width:768px){
    footer .container{
        padding-top:60px;
        display: block;
    }
    .footer-left{
        width: 100%;
        margin-bottom:30px;
        flex-direction: row;
        align-items: flex-end;
    }
    .footer-left > div{
        display: flex;
    }
    .footer-left-a{
        margin-bottom: 0;
        margin-left:18px;
        background: linear-gradient(180deg, #FBFBFB 0%, #F6F5F5 100%);
        border: 0.660584px solid #828282;
        box-shadow: 0px 9.90876px 13.2117px rgba(255, 255, 255, 0.05), 0px 19.8175px 33.0292px rgba(0, 0, 0, 0.03);
        width: 52px;
height: 52px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 100%;
    }
    .footer-left-a img{
        margin-right:0;
    }
    .footer-left-a span{
        display: none;
    }

    .footer-right{
        width:100%;
    }
    .footer-right-top{
        flex-direction: column;
    }
    .footer-right-top .structure-bottom-block-button{
        order:1;
        margin-bottom:30px;
    }
    .footer-right-menu{
        order:2;
        padding:0;
        border:0;
        flex-direction: column;
    }
    .footer-right-menu li.active a::after{
        display: none;

    }
    .footer-right-menu li::after{
        position: absolute;
        bottom:45%;
        right:0;
        background-image: url(../img/blue-arrow.svg);
        content: ' ';
        display: block;
        width:29px;
        background-repeat: no-repeat;
        height: 12px;
    }
    .footer-right-menu li{
        position: relative;
        padding-bottom:15px;
        border-bottom:1px solid #E0E0E0;
        margin-bottom:15px;
    }
    .footer-right-menu li:last-child{
        margin-bottom:0;
        border-bottom:0;
    }
    .footer-right-bottom img{
        width:33%;
    }
    .footer-bottom{
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-bottom-copyright{
        order:2;
        width:100%;
    }
    .footer-bottom-politic{
        order:1;
        width:100%;
        margin-bottom:16px;
        padding-bottom:16px;
        border-bottom: 1px solid #E0E0E0;
    }
    .footer-bottom-mastak{
        order:3;
        width:93px;
        margin-top:30px;
    }
}



/*  */

.course-content-top-menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -45px;
    margin-bottom: 45px;
}
.course-content-top-menu-bread{
    display: flex;
    align-items: center;
}
.course-content-top-menu-bread a{
    font-weight: 400;
font-size: 16px;
line-height: 130%;
/* identical to box height, or 21px */


/* Gray 2 */

color: #4F4F4F;
}
.course-content-top-menu-bread span{
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    /* identical to box height, or 21px */
    
    
    /* Gray 2 */
    
    color: #4F4F4F;
}
.course-content-top-menu-bread svg{
    display: block;
    margin-left:13px;
    margin-right:13px;
}

.course-content-top-menu-right-buttons{
    display: flex;
    align-items: center;
}
.course-content-top-menu-right-buttons .dot{
    background: #4F4F4F;
    width:4px;
    height:4px;
    border-radius: 100%;
    margin-left:15px;
    margin-right: 15px;
}
.course-content-top-menu-right-button-print,.course-content-top-menu-right-button-share{
    display: flex;
    align-items: center;
}
.course-content-top-menu-right-button-print svg,.course-content-top-menu-right-button-share svg{
    display: block;
    margin-right:8px;
}

@media(max-width:768px){
    .course-content-top-menu{
        margin:0;
        position: absolute;
    top: 120px;
    }
    .course-content-top-menu-right-buttons{
        display: none;
    }
    .course-content-top-menu-bread a{
        font-weight: 400;
font-size: 12px;
line-height: 130%;
/* identical to box height, or 16px */


/* LightGrayTertiary */

color: #494D50;

    }
    .course-content-top-menu-bread span{
        font-weight: 700;
font-size: 12px;
line-height: 130%;
/* identical to box height, or 16px */


/* LightGrayTertiary */

color: #494D50;
    }
}


/*  */


.course{
    padding-top:25px;
}
.course > .container{
    display: flex;
    justify-content: space-between;
}
.course-menu{
    width: 32.3%;
    position: relative;
}
.course-menu-main{
    transition:0.5s;
    border: 1px solid transparent;
    border-radius: 33px;
}
.course-menu-main *{
    transition:0.5s;
}
.course-content{
    width:65%;
}
.course-content table{
    width:100%;
    border-collapse: collapse;
}
.course-content td{
    border: 1px solid black;
    padding-left: 10px;
    padding-right: 10px;
    padding-top:5px;
    padding-bottom:5px;
    
}
.course-section{
    padding-top:20px;
    padding-bottom:20px;
    width:100%;
}
.course-section > img{
    max-width:100%;
}

.course-menu{
    position: relative;
}
.course-menu-cntainer{
    background: #F3F6F8;
/* Gray 6 */
padding:16px;
border: 1px solid #F2F2F2;
border-radius: 33px;
}
.course-menu-top{
    background: #E85265;
    border-radius: 18px;
    
    padding-left:15px;
    padding-right:15px;
    padding-bottom: 15px;
    padding-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom:30px;
}
.course-menu-top-one{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width:100%;
    /* height: 79px; */
}
.course-menu-top-left{
    display: flex;
    align-items: flex-end;
}
.course-menu-top-text{
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-right:13px;
}
.course-menu-top-n{
    font-weight: 700;
font-size: 63px;
line-height: 70%;
color: #FFFFFF;
}

.course-menu-top-right{
    display: flex;
    align-items: flex-end;
    cursor: pointer;
}
.course-menu-top-right.active svg{
    transform: rotate(180deg);
}
.course-menu-top-right-text{
    width:64px;
    font-weight: 700;
font-size: 14px;
line-height: 100%;
    /* or 14px */

    text-align: right;
    margin-right:5px;
    color: #FFFFFF;
}

.course-menu-list-item{
    display: flex;
    padding-bottom: 25px;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom:24px;
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
}
.course-menu-list-item:last-child{
    border-bottom: 0px solid #E0E0E0;
}
.course-menu-list-item-n{
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    /* identical to box height */
    
    letter-spacing: 0.01em;
    
    /* LightGrayTertiary */
    margin-right:10px;
    color: #494D50;
}
.course-menu-list-item-text{
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    /* identical to box height */
    
    letter-spacing: 0.01em;
    margin-right:10px;
    /* LightGrayTertiary */
    transition:0.5s;
    color: #494D50;
}
.course-menu-list-item.active .course-menu-list-item-text{
    color: #00ABEC;
}
.course-menu-list-item-text:hover{
    text-decoration: underline;
}
.course-menu-list-item-list{
    display: none;
}
.course-menu-list-item-arrow{
    min-width: 24px;
    height: 24px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:0.5s;
}
.course-menu-list-item-arrow svg{

}
.course-menu-list-item.active .course-menu-list-item-arrow{
    background: #00ABEC;
    
}
.course-menu-list-item.active2 .course-menu-list-item-arrow{
    transform: rotate(180deg);
}
.course-menu-list-item.active .course-menu-list-item-arrow path{
    stroke:white;
    
}

.course-menu-two{
    padding-top:30px;
    
}
.course-menu-two-list{
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
}
.course-menu-two-item{
    width:49%;
    display: flex;
    align-items: flex-end;
    margin-bottom:27px;
    cursor: pointer;
}
.course-menu-two-item:nth-last-child(1),.course-menu-two-item:nth-last-child(2){
    margin-bottom:0;
}
.course-menu-two-item-check{
    min-width: 21.89px;
    height: 21.89px;
    background: radial-gradient(81.03% 81.03% at 50% 18.97%, rgba(0, 0, 0, 0.13) 0%, rgba(0, 0, 0, 0) 100%);
    border: 0.35307px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-right:10px;
}
.course-menu-two-item-check div{
    border-radius: 100%;
}
.course-menu-two-item.active .course-menu-two-item-check div{
    width: 14.12px;
height: 14.12px;

background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
box-shadow: 0px 1.38352px 3.11292px #D6D8DD;
border-radius: 100%;
}
.course-menu-two-item-text{
    font-weight: 400;
font-size: 20px;
line-height: 24px;
letter-spacing: 0.01em;
display: flex;
align-items: flex-end;
color: #FFFFFF;
transition:0.5s;
border-bottom: 1px solid transparent;
}
.course-menu-two-item-text:hover{
        border-bottom: 1px solid white;
}
.course-menu-two-item-n{
    font-weight: 700;
    font-size: 24px;
    margin-left:10px;
}

.course-menu-right-content{
    display: none;
}
.course-menu.active{
    z-index: 10;
}
.course-menu.active .course-menu-main{
    max-width: 1366px;
    background: #FFFFFF;
/* Gray 3 */

border: 1px solid #828282;
box-shadow: 0px 4px 69px #95B8C5;
border-radius: 33px;
display: flex;
justify-content: space-between;
}
.course-menu.active .course-menu-cntainer{
    width: 32.3%;
}
.course-menu.active .course-menu-right-content{
    width: 65%;
    padding-top:28px;
    padding-right:25px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.course-menu.active .course-menu-right-content-top{
    display: flex;
    justify-content: space-between;
    margin-bottom:24px;
}
.course-menu-right-content-top-title{
    font-weight: 700;
font-size: 16px;
line-height: 145.4%;
/* or 23px */

text-transform: uppercase;

/* Gray 1 */

color: #333333;
}
.course-menu-right-content-top-exit{
    cursor: pointer;
}
.course-menu-right-content-list{
    /* display: flex;
    justify-content: space-between;
    flex-wrap: wrap; */
    column-count: 2;
}
.course-menu-right-content-list-item{
    /* width:49%; */
    margin-bottom:20px;
    position: relative;
    padding-left:15px;
    cursor: pointer;
    display: block;
    color: #333333;
    transition:0.2s;
}
.course-menu-right-content-list-item.active{
    color:#00ABEC;
}
.course-menu-right-content-list-item.active::before{
    background: #00ABEC;
}
/* .course-menu-right-content-list-item span{
    width:100%;
} */
.course-menu-right-content-list-item::before{
    content:' ';
    background: #494D50;
    width:4px;
    height:4px;
    border-radius: 100%;
    position: absolute;
    top: 7px;
    left:0;
}
.course-menu-right-content-list-item.viewed{
    color: #BDBDBD;
}
.course-menu-right-content-list-item.viewed::before{
    background: #BDBDBD;
}
.course-menu-right-content-list-item.active{
    color:#00ABEC;
}
.course-menu-right-content-list-item:hover{
    color:#00ABEC;
}
.course-menu-right-content-list-item:hover::before{
    background: #00ABEC;
}

.course-menu-right-content-bottom{
    display: flex;
}
.course-menu-right-content-bottom-item{
    display: flex;
    align-items: center;
    margin-right:24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #4F4F4F;
}
.course-menu-right-content-bottom-item svg{
    margin-right:10px;
}

.course-menu-list-mob-button{
    display: none;
}
@media(max-width:768px){
    .course > .container{
        flex-wrap: wrap;
    }
    .course-menu{
        width: 100%;
        margin-left: -16px;
        margin-right: -22px;
        width: calc(100% + 40px);
    }
    .course-content{
        width:100%;
    }
    .course-menu-top{
        margin-bottom:10px;
    }
    .course-menu-list{
        display: none;
        padding-top:20px;
    }
    .course-menu-list-mob-button{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .course-menu-list-mob-button-title{
        font-weight: 700;
        font-size: 18px;
        line-height: 145.4%;
        /* or 26px */

        text-transform: capitalize;

        /* Gray 4 */

        color: #BDBDBD;
    }
    .course-menu-list-mob-button-b{
        font-weight: 400;
        font-size: 12px;
        line-height: 100%;
        /* identical to box height, or 12px */
        display: flex;
        align-items: center;
        text-align: right;
        
        /* Gray 4 */
        
        color: #BDBDBD;
    }
    .course-menu-list-mob-button-b svg{
        display: block;
        margin-left:10px;
    }
    .course-menu-list-mob-button-b.active svg{
        transform: rotate(45deg);
    }
    
    .course-menu-list-item > div:first-child{
        width: 88%;
    }
    .course-menu-list-item.show .course-menu-list-item-arrow{
        transform:rotate(90deg);
    }
    .course-menu-list-item-list{
        padding-top: 15px;
        padding-left: 15px;
    }
    .course-menu-list-item{
        flex-wrap:wrap;
    }
    .course-menu.active .course-menu-cntainer{
        display:none;
    }
    .course-menu.active .course-menu-main{
        background:white;
        box-shadow:none;
        border:0;
    }
    .course-menu.active .course-menu-right-content{
        width:100%;
    }
}


/*  */

.section-bloks-1{
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
}
.section-bloks-1-block{
    width:48%;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 1px solid #F2F2F2;
    box-shadow: 0px 2.54976px 15px rgba(93, 147, 170, 0.24);
    border-radius: 28px;
    margin-bottom:28px;
    padding:12px;
}
.section-bloks-1-top-block{
    border-radius: 16px;
    padding:12px;
    display: flex;
    align-items: center;
    margin-bottom:12px;
}
.section-bloks-1-top-block-img{
    width:41px;
    display: block;
    margin-right: 14px;
}
.section-bloks-1-top-block-text{
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #F2F2F2;
}
.section-bloks-1-block-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: 0.01em;
    color: #333333;
}

@media(max-width:768px){
    .section-bloks-1-block{
        padding:7px;
        border-radius: 16px;
    }
    .section-bloks-1-top-block{
        border-radius: 7px;
        padding:3px;
        margin-bottom:10px;
    }
    .section-bloks-1-top-block-img{
        margin-right:5px;
        width:22px;
    }
    .section-bloks-1-top-block-text{
        font-size: 14px;
line-height: 96%;
    }
    .section-bloks-1-block-text{
        font-size: 14px;
line-height: 145.4%;
    }

}

/*  */
.course-section .home_section_title{
    color: #00ABEC;
}
.course-section .home_section_title:last-child{
    margin-bottom:0;
    text-transform: none;
}


.section-content-1{

}
.section-content-1-editor{
    
}
.section-content-1-editor .alignright{
    float: right;
}
.section-content-1-editor .aligncenter{
    display:block;
    margin:0 auto;
}
.section-content-1-editor h5{
    font-weight: 700;
font-size: 26px;
line-height: 125.02%;
/* identical to box height, or 33px */


/* Gray 2 */

color: #4F4F4F;
}
.section-content-1-editor p{
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #494D50;
    margin-bottom:24px;
}
.section-content-1-editor p:last-child{
    margin-bottom: 0;
}
.section-content-1-editor p a{
    color:#00ABEC;
    font-weight: 600;
}
.section-content-1-editor ul{
    padding-top:16px;
}
.section-content-1-editor ul li{
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #494D50;
    padding-left:34px;
    position: relative;
    margin-bottom:40px;
}
.section-content-1-editor ol{
    padding-top:16px;
    padding-left: 34px;
}
.section-content-1-editor ol li{
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #494D50;
    /*padding-left:34px;*/
    position: relative;
    margin-bottom:40px;
}
.section-content-1-editor ul li:last-child{
    margin-bottom:0;
}
.section-content-1-editor ul li:before{
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background: #00ABEC;
    content:' ';
    display:block;
    position: absolute;
    left:0;
    top:8px;
}

@media(max-width:768px){
    .section-content-1-editor h5{
        font-size: 20px;
line-height: 125.02%;
    }
    .section-content-1-editor p{
        font-size: 16px;
        line-height: 150%;
    }
    .section-content-1-editor ul li{
        font-size: 16px;
        line-height: 150%;
        padding-left:26px;
        margin-bottom: 20px;
    }
    .section-content-1-editor ul li:before{
        width: 10.27px;
height: 10.27px;
    }
}

/*  */

.section-video{
    padding: 6px 8px;    
    padding-left:29px;
    background: #E85265;
    border-radius: 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.section-video-text{
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #F2F2F2;
    margin-right:20px;
}
.section-video-button{
    min-width: 224px;
    height: 55px;
    background: rgba(255, 255, 255, 0.23);
    box-shadow: 0px 15px 20px rgba(255, 255, 255, 0.05), 0px 30px 50px rgba(0, 0, 0, 0.03);
    border-radius: 35px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    cursor: pointer;
    border:1px solid white;
    cursor: pointer;
    transition: 0.5s;
}
.section-video-button:hover{
    transition: 0.5s;
    background:#CB0025;
}
.section-video-button img{
    width:36px;
    margin-right:9px;
}
.section-video-button-text{
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    color: #FFFFFF;
}
.section-video-bottom-text{
    background: #F3F6F8;
border-radius: 31px;
font-weight: 400;
font-size: 20px;
line-height: 150%;
/* or 30px */

letter-spacing: 0.01em;

/* Gray 1 */

color: #333333;
padding:26px;
padding-top: 60px;
    position: relative;
    margin-top: -48px;
    z-index: 1;
}

.section-video-popup{
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background:#000000b3;
    z-index:999;
    justify-content:center;
    align-items:center;
    display:none;
}
.section-video-popup.active{
    display:flex;
}
.section-video-popup iframe{
    
}

@media(max-width:768px){
    .section-video{
        flex-wrap: wrap;
        padding-left:20px;
        padding-right:20px;
        padding-top:8px;
        padding-bottom:15px;
        border-radius: 20px;
    }
    .section-video-text{
        font-size: 14px;
line-height: 150%;
        margin-right:0;
        margin-bottom: 15px;
    }
    .section-video-button{
        min-width: 200px;
height: 46px;
    }
    .section-video-button img{
        width:32px;
    }
    .section-video-button-text{
        font-size: 14px;
line-height: 100%;
    }
    .section-video-bottom-text{
        background: #F3F6F8;
        border-radius: 22px;
    font-weight: 400;
font-size: 14px;
line-height: 150%;
/* or 21px */

letter-spacing: 0.01em;

/* Gray 1 */

color: #333333;
    padding:12px;
    padding-top: 60px;
        position: relative;
        margin-top: -48px;
        z-index: 1;
    }
}

/*  */
.section-select-list-questions-item{
    margin-bottom:30px;
}
.section-select-list-questions-item-header{
    background: #00ABEC;
    border-radius: 31px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:30px;
    padding-bottom:30px;
    padding-left:20px;
    padding-right:20px;
    cursor: pointer;
}
.section-select-list-questions-item-header-left{
    display:flex;
    align-items:center;
}
.section-select-list-questions-item-header-n{
    font-weight: 700;
font-size: 34px;
line-height: 42px;
margin-right:28px;
color: #FFFFFF;
}
.section-select-list-questions-item-header-title{
    font-weight: 700;
font-size: 20px;
line-height: 150%;
/* identical to box height, or 30px */

letter-spacing: 0.01em;
text-transform: uppercase;

/* Button */
padding-right:28px;
background: linear-gradient(180deg, #FBFBFB 0%, #F6F5F5 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.section-select-list-questions-item-header-button{
    display:flex;
    align-items:center;
    cursor:pointer;
}
.section-select-list-questions-item-header-button-text{
    width:73px;
    font-weight: 800;
font-size: 16px;
line-height: 106%;
/* or 17px */

text-align: right;

/* Button */
margin-right:16px;
background: linear-gradient(180deg, #FBFBFB 0%, #F6F5F5 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;

}
.section-select-list-questions-item-header-button-arrow{
    transition:0.5s;
    transform:rotate(0deg);
}
.section-select-list-questions-item-header-button-arrow.active{
    transition:0.5s;
    transform:rotate(180deg);
}

.section-select-list-questions .section-select-list-questions-item-bottom{
    padding-top:40px;
    padding-bottom:40px;
}

/*  */

.button-img{
    background: #00ABEC;
    box-shadow: 0px 15px 20px rgba(255, 255, 255, 0.05), 0px 30px 50px rgba(0, 0, 0, 0.03);
    border-radius: 35px;
    padding-top:10px;
    padding-bottom:10px;
    padding-left:12px;
    padding-right:12px;
    display: flex;
    align-items: center;
    min-width: 224px;
    width: fit-content;
    font-weight: 700;
font-size: 18px;
line-height: 130%;
/* or 23px */
position: relative;
z-index: 2;
cursor: pointer;
color: #FFFFFF;
transition: 0.5s;
text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}
.button-img img{
    width:36px;
    margin-right:35px;
}
.button-img:hover{
    background: #0085E6;
    transition: 0.5s;
}

@media(max-width:768px){
    .button-img{
        min-width: 148px;
        padding: 5px;
        font-size: 14px;
        line-height: 130%;
    }
    .button-img img{
        width:32px;
        margin-right:20px;
    }
}

/*  */
body.gray{
    background: #ECEDEE;
}
.section-library{
    background: #F3F6F8;
    border-radius: 31px;
    padding:20px;
}
.section-library.active{
    background: #FFFFFF;
}
.section-library-content{

}
.section-library-content-top{
    display: flex;
    justify-content: space-between;
}
.section-library-content-top-text{
    font-weight: 400;
font-size: 18px;
line-height: 150%;
/* or 27px */

letter-spacing: 0.01em;

/* Gray 1 */

color: #333333;
}
.section-library.active .section-library-content-top-text{
    display: none;
}
.section-library.active .section-library-content-bottom{
    display: none;
}
.section-library-content-top-img{
    width:176px;
    display: block;
    margin-left:14px;
}
.section-library-content-bottom{
    margin-top: -56px;
}
.section-library.no-img .section-library-content-bottom{
    margin-top:30px;
}
.section-library-popup-top-buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom:25px;
    display: none;
}
.section-library.active .section-library-popup-top-buttons{
    display: flex;
}
.section-library-popup-top-button-left{
    display: flex;
    align-items: center;
    font-weight: 700;
font-size: 18px;
line-height: 145.4%;
/* or 26px */


/* Gray 4 */
cursor: pointer;
color: #BDBDBD;
}
.section-library-popup-top-button-left svg{
    display: block;
    margin-right:25px;
}
.section-library-popup-top-button-right{
    cursor: pointer;
}
.section-library-popup-content-title{
    font-weight: 700;
font-size: 28px;
line-height: 125.02%;
/* identical to box height, or 35px */


color: #00ABEC;
margin-bottom: 50px;
display: none;
}
.section-library.active .section-library-popup-content-title{
    display: block;
}
.section-library-popup-content{
    display: none;
}
.section-library.active .section-library-popup-content{
    display: block;
}
.section-library-popup-content-color-blocks{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.section-library-popup-content-color-block{
    background: #B600A5;
border: 1px solid #F2F2F2;
box-shadow: 0px 2.54976px 15px rgba(93, 147, 170, 0.49);
border-radius: 20px;
padding:10px;

}
.section-library-popup-content-color-block.w-25{
    width:24%;
}   
.section-library-popup-content-color-block.w-50{
    width:48%;
}
.section-library-popup-content-color-block-title{
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    /* or 21px */
    
    letter-spacing: 0.01em;
    text-transform: uppercase;
    
    color: #FFFFFF;
    margin-bottom:10px;
}
.section-library-popup-content-color-block-text{
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    /* or 21px */
    
    letter-spacing: 0.01em;
    
    color: #FFFFFF;
}
.section-library-popup-content-4-blocks{
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.section-library-popup-content-4-block{
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
/* Gray 6 */

border: 1px solid #F2F2F2;
box-shadow: 0px 2.54976px 15px rgba(93, 147, 170, 0.49);
border-radius: 20px;
height:176px;
width:24%;
margin-bottom:15px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.section-library-popup-content-4-block img{
    width:65px;
    display: block;
    margin-bottom:10px;
}
.section-library-popup-content-4-block-text{
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    /* identical to box height, or 21px */
    
    text-align: center;
    letter-spacing: 0.01em;
    
    color: #494D50;
    
}


@media(max-width:768px){
    .section-library{
        padding:12px;
        border-radius: 22px;
    }
    .section-library-content-top{
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .section-library-content-top-text{
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        /* or 21px */

        letter-spacing: 0.01em;

        /* Gray 1 */

        color: #333333;
    }
    .section-library-content-top-img{
        width:109px;
        margin-top:14px;
    }
    .section-library-content-bottom{
        margin-top: -42px;
    }
    .section-library.no-img .section-library-content-bottom{
        margin-top:10px;
    }

    .section-library-popup-content-color-block.w-25{
        width:100%;
    }   
    .section-library-popup-content-color-block.w-50{
        width:100%;
    }
    .section-library-popup-content-4-block{
        width:49%;
    }
}

/*  */

.description-block{
    background: rgba(247, 247, 247, 0.64);
border: 1px solid #FFFFFF;
box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.05);
backdrop-filter: blur(12.5px);
/* Note: backdrop-filter has minimal browser support */
padding:12px;
border-radius: 23px;
    display: flex;
    align-items: flex-start;
}
.description-block-img{
    width:40px;
    display: block;
    margin-right:24px;
}
.description-block-content{

}
.description-block-title{
font-weight: 700;
font-size: 20px;
line-height: 145.4%;
color: #00ABEC;
}
.description-block-text{
    font-weight: 500;
    font-size: 20px;
    line-height: 145.4%;
    /* or 29px */
    
    
    color: #333333;
}
.description-block-text span,.description-block-text b,.description-block-text strong{
    font-weight: 700;
    color: #00ABEC;
}

@media(max-width:768px){
    .description-block{
        border-radius: 20px;

    }
    .description-block-img{
        margin-right:12px;
    }
    .description-block-content{
    
    }
    .description-block-title{
        font-size: 14px;
line-height: 145.4%;
    }
    .description-block-text{
        font-size: 14px;
line-height: 145.4%;
    }
}


/*  */

.ship-blocks-items{
    border-bottom: 1px dashed #939EA7;
    margin: 0 auto;
    width: 95%;
    margin-bottom:56px;
    padding-top:90px;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.ship-blocks-item{
    position: relative;
}
.ship-blocks-item.active .purpose-list-item-button-circle{
    background: linear-gradient(180deg, #F7DB17 0%, #F3C31C 100%);
}
.ship-blocks-item .purpose-list-item-button-circle:hover{
    border: 3px solid #FFCC00;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
}
.ship-blocks-item-number{
    position: absolute;
    bottom: 40px;
    left: -19px;
    font-weight: 700;
    font-size: 46px;
    line-height: 56px;
    text-align: center;

    color: #00ABEC;

    text-shadow: -1px 3px 5px rgba(0, 174, 239, 0.27);
}
.ship-blocks-item .purpose-list-item-button{
    position: absolute;
    bottom: -33px;
    top: auto;
    cursor: pointer;
}
.purpose-list-item-button-circle{

}

/* .ship-blocks-item:last-child .purpose-list-item-button{
    left:-42px;
} */

.ship-blocks-content{
    background: rgba(247, 247, 247, 0.64);
    border: 1px solid #FFFFFF;
    box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12.5px);
    /* Note: backdrop-filter has minimal browser support */

    border-radius: 23px;
    padding-top:18px;
    padding-left:25px;
    padding-right:25px;
    padding-bottom: 25px;
}
.ship-blocks-content-top{
    overflow-x: hidden;
    position: relative;
    margin-bottom:24px;
    /* padding-top: 25px;
    margin-top: -35px; */
}
.ship-blocks-content-ship{
    position: absolute;
    top: 48px;
    z-index: 1;
    left: -20px;
    display: block;
    transition: 1s;
}
.ship-blocks-content-top-ship{
    display:none;
}
/*.ship-blocks-item.active .ship-blocks-content-ship{*/
/*    display: block;*/
/*}*/
/*.ship-blocks-item.active2 .ship-blocks-content-ship{*/
/*    transition: 0.5s;*/
/*    left: -70px;*/
/*}*/
.ship-blocks-content-top-img{
    position: relative;
    z-index:2;
}
.ship-blocks-content-block{
    display: none;
}
.ship-blocks-content-block.active{
    display: flex;
    align-items: flex-start;
}
.ship-blocks-content-block-n{
    font-weight: 700;
    font-size: 30.3929px;
    line-height: 37px;
    margin-right:19px;
    color: #00ABEC;
}
.ship-blocks-content-block-right{
    padding-top: 10px;
}
.ship-blocks-content-block-title{
    font-weight: 700;
    font-size: 18px;
    line-height: 145%;
    /* or 26px */

    letter-spacing: 0.01em;
    text-transform: uppercase;

    /* Gray 1 */

    color: #333333;
}
.ship-blocks-content-block-text{
    /* font-weight: 700; */
font-size: 18px;
line-height: 145%;
/* or 26px */

letter-spacing: 0.01em;
/* text-transform: uppercase; */

/* Gray 1 */

color: #333333;
}

/*  */

.section-action{
    background: #F3F6F8;
border-radius: 31px;
    padding:20px;
}
.section-action-text{
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    /* or 30px */
    
    letter-spacing: 0.01em;
    
    /* Gray 1 */
    
    color: #333333;
}
.ship-blocks-content-top-n{
    display:none;
}

@media(max-width:768px){
    .section-action{
        border-radius: 22px;
        padding:12px;
    }
    .section-action-text{
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        /* or 21px */

        letter-spacing: 0.01em;

        /* Gray 1 */

        color: #333333;
    }
    .ship-blocks{
        display:flex;
        
    }
    
    .ship-blocks-content{
        max-width:233px;
    }
    .ship-blocks-items{
        margin-left:57px;
        margin-right:-5px;
            border-bottom: 0px dashed #939EA7;
            border-left: 1px dashed #939EA7;
        flex-direction:column;
        padding-top:0;
        padding-bottom:0;
        min-height:350px;
    }
    .ship-blocks-item .purpose-list-item-button{
        position:relative;
        bottom:0;
        left:-20px;
        top:0;
        right:0;
    }
    .ship-blocks-item-number{
        bottom: -8px;
    left: -76px;
    font-size: 40px;
    }
    .ship-blocks-content-ship{
        display:none;
    }
    .ship-blocks-content-top-n{
        display:block;
        font-size: 30.3929px;
        line-height: 37px;
        font-weight:700;
        margin-right:10px;
        color: #00ABEC;
    }
    .ship-blocks-content-block-n{
        display:none;
        
    }
    .ship-blocks-content-top{
        display:flex;
        margin-bottom:10px;
    }
    .ship-blocks-content-block-title{
font-size: 16px;
line-height: 145%;
    }
    .ship-blocks-content-block-text{
        font-size: 16px;
line-height: 145%;
    }
    .ship-blocks-content-top-ship{
        display:block;
    }
}

/*  */

.section-list-images-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}
.section-list-images-item:last-child{
    margin-bottom:0;
}
.section-list-images-item-img{
    width:80px;
    display: block;
    margin-right:15px;
    cursor: pointer;
}
.section-list-images-item-n{
    font-weight: 700;
    font-size: 34px;
    line-height: 42px;
    margin-right:15px;
    color: #00ABEC;
}
.section-list-images-item-text{
    font-size: 20px;
    line-height: 150%;
    /* or 30px */
    
    letter-spacing: 0.01em;
    
    /* LightGrayTertiary */
    
    color: #494D50;
}

@media(max-width:768px){
    .section-list-images-item{
        margin-bottom: 30px;
    }
    .section-list-images-item:last-child{
        margin-bottom:0;
    }
    .section-list-images-item-img{
        width:46px;
        display: block;
        margin-right:14px;
    }
    .section-list-images-item-n{
        font-size: 22px;
line-height: 27px;
        margin-right:8px;
        color: #00ABEC;
    }
    .section-list-images-item-text{
        font-size: 16px;
line-height: 150%;
    }
}

/*  */

.section-list-letters-item{
    margin-bottom:40px;
    position: relative;
    display: flex;
    counter-increment: counter-name;
}
.section-list-letters-item:last-child{
    margin-bottom:0px;
}
.section-list-letters-item::before{
    content: counter(counter-name, lower-alpha);
    font-weight: 700;
font-size: 34px;
line-height: 42px;
display: block;
color: #00ABEC;
margin-right:15px;
}

@media(max-width:768px){
    .section-list-letters-item::before{
        font-size: 22px;
line-height: 27px;
        margin-right:8px;
    }
}

/*  */


.section-blocks-images{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.section-blocks-images-block{
    width:49%;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}
.section-blocks-images-img{
    width:80px;
    display: block;
    margin-right:25px;
    cursor: pointer;
}
.section-blocks-images-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    /* or 27px */
    
    letter-spacing: 0.01em;
    
    /* LightGrayTertiary */
    
    color: #494D50;
}

@media(max-width:768px){
    .section-blocks-images-block{
        width:100%;
    }
    .section-blocks-images-img{
        width:46px;
        margin-right:15px;
    }
    .section-blocks-images-text{
        font-size: 16px;
        line-height: 150%;
    }
}

/*  */

.section-checkboxes-images{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.section-checkboxes-images-item{
    width:24%;
    margin-bottom:40px;
    cursor: pointer;
}

.section-checkboxes-images-item-img{
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    width: 182px;
height: 115px;
    border: 1px solid #F2F2F2;
    box-shadow: 0px 2.54976px 15px rgba(93, 147, 170, 0.49);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.section-checkboxes-images-item.active .section-checkboxes-images-item-img{
    border: 5px solid #00ABEC;
box-shadow: inset 0px 2.54976px 16px #2E3D44;
}
.section-checkboxes-images-item.error .section-checkboxes-images-item-img{
    border: 5px solid #e85265;
box-shadow: inset 0px 2.54976px 16px #2E3D44;
}
.section-checkboxes-images-item-img img{
    max-height:74px
}
.section-checkboxes-images-item-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    /* or 27px */
    
    letter-spacing: 0.01em;
    
    color: #494D50;
}

.done .section-checkboxes-images-item.true .section-checkboxes-images-item-img{
    border: 5px solid #00ABEC;
    box-shadow: inset 0px 2.54976px 16px #2E3D44
}

@media(max-width:768px){
    .section-checkboxes-images-item{
        width:48%;
        margin-bottom: 15px;
    }
    .section-checkboxes-images-item-img{
        width: 100%;
height: 103.03px;
    }
    .section-checkboxes-images-item-text{
        font-size: 16px;
line-height: 150%;
/* or 24px */

letter-spacing: 0.01em;
    }
}

/*  */

.section-question{
    background: #F3F6F8;
    border-radius: 31px;
    padding:20px;
    display: flex;
    align-items: flex-start;
}
.section-question-img{
    width:65px;
    margin-right:16px;
}
.section-question-text{
    font-weight: 700;
font-size: 26px;
line-height: 125.02%;
/* or 33px */


/* Gray 2 */

color: #4F4F4F;

}

@media(max-width:768px){
    .section-question{
        border-radius: 22px;
        padding:10px;
    }
    .section-question-img{
        width:52px;
        margin-right:14px;
    }
    .section-question-text{
        font-size: 20px;
        line-height: 125%;
    }
}

/*  */

.section-radio-list{
    margin:0 auto;
    width:fit-content;
}
.section-radio-list-item{
    margin-bottom:30px;
    display: flex;
    align-items: center;
}
.section-radio-list-item:last-child{
    margin-bottom:0;
}
.section-radio-list-item-button{
    background: radial-gradient(85.48% 85.48% at 50% 14.52%, #D9D9D9 0%, rgba(217, 217, 217, 0) 100%);
    border: 1px solid #FFFFFF;
    min-width: 62px;
    height: 62px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right:34px;
}
.section-radio-list-item-button div{
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
    box-shadow: 0px 3.91855px 8.81674px #d6d8dd;
    border-radius: 100%;
}
.section-radio-list-item.active .section-radio-list-item-button div{
    background: linear-gradient(180deg, #8BCC32 0%, #6DB807 100%);
}
.done .section-radio-list-item.true .section-radio-list-item-button div{
    background: linear-gradient(180deg, #8BCC32 0%, #6DB807 100%);
}
.section-radio-list-item-text{
    font-size: 20px;
    line-height: 150%;
    /* identical to box height, or 30px */
    
    letter-spacing: 0.01em;
    
    /* LightGrayTertiary */
    
    color: #494D50;
}
@media(max-width:768px){
    .section-radio-list-item-button{
        min-width: 46px;
        height: 46px;
        margin-right:20px;
    }
    .section-radio-list-item-button div{
        width: 29.68px;
        height: 29.68px;
    }
    .section-radio-list-item-text{
        font-size: 16px;
        line-height: 150%;
    }
}

/*  */

.section-checkbox-list-item{
    display: flex;
    margin:0 auto;
    margin-bottom:30px;
    max-width: 600px;
}
.section-checkbox-list-item:last-child{
    margin-bottom: 0;
}
.section-checkbox-list-item-button{
    width: 62px;
    height: 62px;
    min-width: 62px;
    height: 62px;
    background: radial-gradient(85.48% 85.48% at 50% 14.52%, #D9D9D9 0%, rgba(217, 217, 217, 0.17) 100%);
    border: 1px solid #FFFFFF;
    box-shadow: inset 0px 4px 13px rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right:34px;
    cursor: pointer;
}
.section-checkbox-list-item-button div{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
    box-shadow: 0px 3.91855px 8.81674px #D6D8DD;
    border-radius: 8px;
    width:40px;
    height: 40px;
}
.section-checkbox-list-item-button div svg{
    display: none;
}
.section-checkbox-list-item.active .section-checkbox-list-item-button div{
    background: linear-gradient(180deg, #8BCC32 0%, #6DB807 100%);
}
.section-checkbox-list-item.active .section-checkbox-list-item-button div svg{
    display: block;
}

.done .section-checkbox-list-item.true .section-checkbox-list-item-button div{
    background: linear-gradient(180deg, #8BCC32 0%, #6DB807 100%);
}
.done .section-checkbox-list-item.true .section-checkbox-list-item-button div svg{
    display: block;
}
.section-checkbox-list-item-text{
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    /* or 30px */
    
    letter-spacing: 0.01em;
    
    /* LightGrayTertiary */
    
    color: #494D50;
}
.section-checkbox-list-item-text-true{
    font-weight: 300;
    font-size: 16px;
    color: green;
    display:none;
}
.section-checkbox-list-item-text-false{
    font-weight: 300;
    font-size: 16px;
    color: #e85265;
    display:none;
}

@media(max-width:768px){
    .section-checkbox-list-item-button{
        width: 46px;
        height: 46px;
        min-width:46px;
        margin-right:20px;
    }
    .section-checkbox-list-item-button div{
        width:29px;
        height:29px;
    }
    .section-checkbox-list-item-button div svg{
        max-width:95%;
    }
    .section-checkbox-list-item-text{
        font-size: 16px;
line-height: 150%;
    }
    
}

/*  */

.course-button{
    width: 218px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00ABEC;
    box-shadow: 0px 15px 20px rgba(255, 255, 255, 0.05), 0px 30px 50px rgba(0, 0, 0, 0.03);
    border-radius: 35px;
    cursor: pointer;
    font-weight: 700;
font-size: 18px;
line-height: 130%;
/* or 23px */

text-align: center;

color: #FFFFFF;
transition: 0.5s;
text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}
.course-button:hover{
    background:#0085E6;
    transition: 0.5s;
}

@media(max-width:768px){
    .course-button{
        width: 155.95px;
height: 46px;
font-size: 14px;
line-height: 130%;
margin:0 auto;
    }
}

/*  */

.section-textarea{
    
}
.section-textarea textarea{
    width: 100%;
    height: 167px;

    background: rgba(247, 247, 247, 0.64);
    border: 2px solid #00ABEC;
    box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12.5px);
    /* Note: backdrop-filter has minimal browser support */
    padding-top:12px;
    padding-bottom:12px;
    padding-left:20px;
    padding-right:20px;
    border-radius: 23px;
    font-weight: 400;
font-size: 20px;
line-height: 145.4%;
/* identical to box height, or 29px */


color: #00ABEC;
}

@media(max-width:768px){
    .section-textarea textarea{
        font-size: 16px;
line-height: 145.4%;
    }
}

/*  */

.section-arrow-blocks-1{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}
.section-arrow-blocks-1-item{
    width:20%;
}
.section-arrow-blocks-1-item-img{
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
height:115px;
border: 1px solid #F2F2F2;
box-shadow: 0px 2.54976px 15px rgba(93, 147, 170, 0.49);
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
margin-bottom:15px; 
transition: 0.5s;
transform:scale(1);
cursor: pointer;
}
.section-arrow-blocks-1-item-img:hover{
    transition: 0.5s;
    transform:scale(1.1);
}
.section-arrow-blocks-1-item-img img{
    max-height: 80px;
}
.section-arrow-blocks-1-item-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    /* or 27px */
    
    text-align: center;
    letter-spacing: 0.01em;
    
    color: #494D50;
    text-align: center;    
}
.section-arrow-blocks-1-img-arrow{
    width:14%;
    display: block;
    margin-top: 40px;
}
.section-arrow-blocks-1-img-arrow-mob{
    display: none;
}

@media(max-width:768px){
    .section-arrow-blocks-1{
        flex-direction: column;
        align-items: center;
    }
    .section-arrow-blocks-1-item{
        width:162px;
    }
    .section-arrow-blocks-1-img-arrow{
        display: none;
    }
    .section-arrow-blocks-1-img-arrow-mob{
        display: block;
        margin:0 auto;
        padding-top:15px;
        padding-bottom:15px;
    }
}

/*  */

.section-arrow-blocks-2{
    display: flex;
    justify-content: space-between;
    padding-top:25px;
    padding-bottom:25px;
    border-top: 3px solid #000000;
    border-bottom: 3px solid #000000;
    position: relative;
}
.section-arrow-blocks-2-item{
    border: 1px solid #F2F2F2;
box-shadow: 0px 2.54976px 15px rgba(93, 147, 170, 0.49);
border-radius: 20px;
    padding-top:10px;
    padding-bottom: 10px;
    padding-left:15px;
    padding-right: 15px;
    font-weight: 700;
font-size: 14px;
line-height: 150%;
/* or 21px */

letter-spacing: 0.01em;
width:24%;
color: #FFFFFF;
transition: 0.5s;
transform: scale(1);
cursor: pointer;
}
.section-arrow-blocks-2-item:hover{
    transition: 0.5s;
    transform: scale(1.1);
}
.section-arrow-blocks-2{
    position: relative;
}

@media(max-width:768px){
    .section-arrow-blocks-2{
        flex-direction: column;
        width:222px;
        margin:0 auto;
        border:0;
        padding:0;
        padding-left:20px;
        padding-right:20px;
        border-left: 3px solid #000000;
        border-right: 3px solid #000000;
    }
    .section-arrow-blocks-2-item{
        width:100%;
        margin-bottom:30px;
        min-height:104px;
    }
    .section-arrow-blocks-2-item:last-child{
        margin-bottom:0;
    }
}

.section-list-images-item-text h5{
    font-weight: 700;
font-size: 26px;
line-height: 150%;
/* identical to box height, or 39px */

letter-spacing: 0.01em;

/* SOS-Color */

color: #00ABEC;
margin-bottom: 20px;
}

@media(max-width:768px){
    .section-list-images-item-text h5{
        font-size: 20px;
line-height: 125%;
    }
}

/*  */

.section-circle-buttons{
    display: flex;
    justify-content: space-between;
}
.section-circle-button{
    width:30%;
}

.section-circle-button-top{
    width: 245px;
    height: 245px;
    border: 1px solid #F2F2F2;
    box-shadow: 0px 2.54976px 15px rgba(93, 147, 170, 0.49);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom:40px;
    border-radius: 100%;
    cursor: pointer;
}
.section-circle-button-top.active{
    border: 5px solid #00ABEC;
box-shadow: inset 0px 24px 22px rgba(46, 61, 68, 0.2);
/* border-radius: 20px; */
}
.section-circle-button-top-img{
    width:42%;
    display: block;
    margin-bottom: 5px;
}
.section-circle-button-top-title{
    font-weight: 700;
    font-size: 26px;
    line-height: 150%;
    text-align: center;
    letter-spacing: 0.01em;
    color: #828282;
}
.section-circle-button-text{
    font-weight: 400;
font-size: 18px;
line-height: 150%;
/* or 27px */

letter-spacing: 0.01em;

color: #494D50;

}

@media(max-width:768px){
    .section-circle-buttons{
        flex-direction: column;
    }
    .section-circle-button{
        margin-bottom: 40px;
        display: flex;
        width:100%;
    }
    .section-circle-button:last-child{
        margin-bottom: 0;
    }
    .section-circle-button-top{
        min-width: 130px;
        height: 130px;
        margin-right:20px;
    }
    .section-circle-button-top-title{
        font-size: 13.8431px;
line-height: 150%;
    }
    .section-circle-button-text{
        width:auto;
    }


}

/*  */

.section-rectangle-blocks{
    display: flex;
    justify-content: space-between;
}
.section-rectangle-block{
    width:25%;
}
.section-rectangle-block-img{
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
/* Gray 6 */

border: 1px solid #F2F2F2;
box-shadow: 0px 2.54976px 15px rgba(93, 147, 170, 0.49);
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
margin-bottom:15px;
padding-top:30px;
    padding-bottom:30px;
}
.section-rectangle-block-img img{
    
    height: 50px;
    display: block;
}
.section-rectangle-block-title{
    font-weight: 700;
font-size: 18px;
line-height: 150%;
/* identical to box height, or 27px */

text-align: center;
letter-spacing: 0.01em;
text-align: center;
color: #494D50;
}

@media(max-width:768px){
    .section-rectangle-block{
        width:31%;
    }
    .section-rectangle-block-img{
        padding-top:20px;
        padding-bottom:20px;
    }
    .section-rectangle-block-img img{
        height:30px;
    }
}


/*  */

.navigation-arrows{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top:20px;
}
.navigation-arrow-left{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00ABEC;
    width: 49%;
    height: 64px;
    cursor: pointer;
}
.navigation-arrow-left span{
    font-weight: 400;
font-size: 18px;
line-height: 22px;
/* identical to box height */

letter-spacing: 0.03em;

/* White */

color: #FFFFFF;
}
.navigation-arrow-left img{
    display: block;
    margin-right:30px;
}
.navigation-arrow-right{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00ABEC;
    width: 49%;
    height: 64px;
    cursor: pointer;
}
.navigation-arrow-right span{
    font-weight: 400;
font-size: 18px;
line-height: 22px;
/* identical to box height */

letter-spacing: 0.03em;

/* White */
transition: 0.5s;
color: #FFFFFF;
}
.navigation-arrow-left:hover,.navigation-arrow-right:hover{
    background:#0085E6;
    transition: 0.5s;
}
.navigation-arrow-right img{
    display: block;
    margin-left:30px;
}

@media(max-width:768px){
    .navigation-arrow-left{
        height:49px;
    }
    .navigation-arrow-right{
        height:49px;
    }
    .navigation-arrow-right span,.navigation-arrow-left span{
        font-size: 14px;
line-height: 17px;
/* identical to box height */

letter-spacing: 0.03em;
    }
    .navigation-arrow-left img{
        margin-right:15px;
        width:14px;
    }
    .navigation-arrow-right img{
        margin-left:15px;
        width:14px;
    }
}

.none{
    display: none;
}


/*  */


.drag-and-drob-type-1-container{

}
.drag-and-drob-type-1-elements{
    display:flex;
    justify-content: space-between;
}
.drag-and-drob-type-1-element{
    width:48%;
    padding-bottom:40px;
}
.drag-and-drob-type-1-element-padding{
    height:0px;
    width:100%;
    margin-top: -30px;
    /* margin-bottom:30px; */
}
.drag-and-drob-type-1-element-title{
    position: relative;
    /* margin-bottom:40px; */
}
.drag-and-drob-type-1-element-title > div{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    text-align: center;
    padding-top:18.5px;
    padding-left:10px;
    padding-right:10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}
.drag-and-drob-type-1-element-title-img{
    width: 100%;
}
.drag-and-drob-type-1-element-title-img-mob{
    display: none;
}
.drag-and-drob-type-1-element-content{
    position: relative;
    cursor: pointer;
    top:40px;
}
.drag-and-drob-type-1-element-content > div{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    padding-top:49px;
    padding-left:25px;
    padding-right:25px;
    padding-bottom:10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #494D50;
}
.drag-and-drob-type-1-element-content-img{
    width: 100%;
}
.drag-and-drob-type-1-element-content-img-mob{
    display: none;
}


@media(max-width:768px){
    .drag-and-drob-type-1-element-title-img{
        display: none;
    }
    .drag-and-drob-type-1-element-title-img-mob{
        display: block;
        width:100%;
    }
    .drag-and-drob-type-1-element-content-img{
        display: none;
    }
    .drag-and-drob-type-1-element-content-img-mob{
        display: block;
        width:100%;
    }
    .drag-and-drob-type-1-element-title > div{
        font-size: 12px;
        line-height: 120%;
        padding-top:8px;
    }
    .drag-and-drob-type-1-element-content > div{
        font-size: 12px;
        line-height: 150%;
        padding:11px;
        padding-top:20px;
    }
    .drag-and-drob-type-1-element-padding{
        margin-top: -12px;
    }
}

/*  */

.drag-and-drob-type-2-elements{
    display: flex;
    justify-content: space-between;
}
.drag-and-drob-type-2-element-item{
    width:48%;
}
.drag-and-drob-type-2-element{
    background: #F3F6F8;
    border-radius: 31px;
    padding:20px;
    margin-bottom:30px;
}
.drag-and-drob-type-2-element-title{
    background: #00ABEC;
    border-radius: 16px;
    padding:10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #F2F2F2;
    margin-bottom:16px;
}

.drag-and-drob-type-2-element-list{
    padding-left:20px;
    padding-right:20px;
}
.drag-and-drob-type-2-element-list-item{
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    /* Gray 6 */
    padding:12px;
    border: 1px solid #F2F2F2;
    box-shadow: 0px 2.54976px 15px rgba(93, 147, 170, 0.24);
    border-radius: 28px;
    margin-bottom:18px;
    font-weight: 400;
font-size: 18px;
line-height: 145%;
/* or 26px */
cursor: pointer;
letter-spacing: 0.01em;

/* Gray 1 */

color: #333333;
}

@media(max-width:768px){
    .drag-and-drob-type-2-element{
        padding:7px;
        border-radius: 10px;
    }
    .drag-and-drob-type-2-element-title{
        padding:5px;
        font-size: 12px;
line-height: 150%;
border-radius: 7px;
    }
    .drag-and-drob-type-2-element-list{
        padding:7px;
    }
    .drag-and-drob-type-2-element-list-item{
        font-size: 12px;
line-height: 150%;
margin-bottom:14px;
padding-left:5px;
padding-right:5px;
padding-top:10px;
padding-bottom:10px;
border-radius: 7px;
    }
}
/*  */


.popup-cont{
    position: fixed;
    top:0;
    left:0;
    width:100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    background: #00000087;
}
.popup-cont.active{
    display: flex;
}
.popup{
    width: 466px;
    max-width: 90%;
    /* height: 201px; */
    background: rgba(247, 247, 247, 0.64);
    border: 1px solid #FFFFFF;
    box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12.5px);
    border-radius: 23px;
    padding-top:29px;
    padding-bottom: 30px;
    padding-left:60px;
    padding-right:60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.popup-title{
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}
.popup-title svg{
    display: block;
    margin-right:28px;

}
.popup-title span{
    font-weight: 700;
    font-size: 26px;
    line-height: 125.02%;
    color: #4F4F4F;
}
.popup-text{
    font-weight: 400;
font-size: 18px;
line-height: 145%;
text-align: center;
letter-spacing: 0.01em;
color: #333333;
margin-bottom: 35px;
}
.popup-button{
    width: 225px;
    height: 69px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    /* or 23px */

    text-align: center;
    cursor:pointer;
    color: #FFFFFF;

    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
    background: #00ABEC;
    box-shadow: 0px 15px 20px rgba(255, 255, 255, 0.05), 0px 30px 50px rgba(0, 0, 0, 0.03);
    border-radius: 35px;
    transition: 0.5s;
}
.popup-button:hover{
    background: #0085E6;
}



/*  */

.section-circle-animation-img{
    position: relative;
    max-width: 660px;
    margin:0 auto;
}
.section-circle-animation-img img{
    width:100%;
    -webkit-animation: triangleRotate linear 30s infinite;
    animation: triangleRotate linear 30s infinite;
}
.section-circle-animation-img-title{
    position: absolute;
    top: 48%;
    left: 34%;
    font-weight: 700;
    font-size: 32px;
    line-height: 125.02%;
    /* identical to box height, or 40px */

    text-align: center;

    /* Gray 2 */

    color: #4F4F4F;

}

.svg-text-orange{
    display:none;
}
.svg-text-green{
    display:none;
}
.svg-text-red{
    display:none;
}
.svg-button-green,.svg-button-red,.svg-button-orange{
    cursor:pointer;
    transition:0.5s;
    transform:scale(1);
}
.svg-button-green:hover,.svg-button-red:hover,.svg-button-orange:hover{
    cursor:pointer;
    transition:0.5s;
    transform:scale(1.01);
}


/**/

.course-circle-r-item{
    position:absolute;
    cursor:pointer;
}
.course-circle-r-item-title{
    font-weight: 700;
    font-size: 20px;
    line-height: 145.4%;
    color: #333333;
}
.course-circle-r-item-title:hover{
    text-decoration:underline;
}
.course-circle-r-item-content{
    display:none;
}
.course-circle-r-item-1{
    top: 70px;
}
.course-circle-r-item-2{
    top: 145px;
}
.course-circle-r-item-3{
    top: 215px;
}
.course-circle-r-item-4{
    top: 285px;
}
.course-circle-r-item-5{
    top: 355px;
}

.popup-circle .popup-text{
    display:block!important;
}

@media(max-width:768px){
    .course-circle-r-item-title{
        font-size: 9px;
    }
    .course-circle-r-item-1{
    top: 40px;
}
.course-circle-r-item-2{
    top: 70px;
}
.course-circle-r-item-3{
    top: 100px;
}
.course-circle-r-item-4{
    top: 130px;
}
.course-circle-r-item-5{
    top: 160px;
}
}

/* Курс  */

.course-form{
    display:flex;
    justify-content:space-between;
    margin-bottom:60px;
}
.course-form-left{
    width:45%;
}
.course-form-left-form{
    background: #F3F6F8;
    padding: 39px 42px;
    
    border: 1px solid #F2F2F2;
    border-radius: 33px;
    width:100%;
}
.course-form-left-form-input{
    background: #FFFFFF;
    border: 1px solid #C0C4F7;
    border-radius: 4px;
    height: 56px;
    width:100%;
    margin-bottom:35px;
    font-weight: 400;
font-size: 20px;
line-height: 26px;
padding-left:16px;
padding-right:16px;
color: #828282;

}
.course-form-left-form-radios{
    display:flex;
    align-items:center;
    padding-left:16px;
    padding-right:16px;
    padding-top:5px;
    padding-bottom:5px;
    margin-bottom:35px;
}
.course-form-left-form-radios-label{
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    margin-right:16px;
    color: #828282;
}
.course-form-left-form-radios-radio{
    display:flex;
    align-items:center;
    position:relative;
    
}
.course-form-left-form-radios-radio:last-child{
    margin-left:16px;
}
.course-form-left-form-radios-radio input{
    position:absolute;
    width: 44px;
    height: 44px;
    opacity:0;
    cursor:pointer;
}
.course-form-left-form-radios-radio-circle{
    background: #FFFFFF;
border: 1px solid #C0C4F7;
border-radius: 4px;
width: 44px;
height: 44px;
display:flex;
justify-content:center;
align-items:center;
margin-right:16px;
cursor:pointer;
border-radius:100%;
}
.course-form-left-form-radios-radio-circle div{
    background: radial-gradient(83.33% 83.33% at 50% 16.67%, #4ACDFF 0%, #00ABEC 100%);
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
width: 30px;
height: 30px;
border-radius:100%;
display:none;
}
.course-form-left-form-radios-radio.active .course-form-left-form-radios-radio-circle div{
    display:block;
}
.course-form-left-form-radios-radio span{
    font-weight: 400;
font-size: 20px;
line-height: 26px;
/* identical to box height, or 130% */


/* DeepDarkGray */

color: #1F2123;
}
.course-form-left-form-select,.new-select{
    margin-bottom:35px;
    height: 56px;
    width:100%;
    background: #FFFFFF;
    border: 1px solid #C0C4F7;
    border-radius: 4px;
    padding-left:16px;
    padding-right:56px;
    font-weight: 400;
font-size: 20px;
line-height: 26px;
/* identical to box height, or 130% */


/* Gray 3 */
width:100%;
color: #828282;
}
.course-form-left-form-select option{
    
}

.course-form-right{
    width:50%;
}

.select {
    display: block;
    /*max-width: 215px;*/
    width: 100%;
    position: relative;
}

.new-select {
    position: relative;
    border: 1px solid #C0C4F7;
    padding-left:16px;
    padding-right:56px;
    cursor: pointer;
    user-select: none;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.new-select__list {
    position: absolute;
    top: 45px;
    left: 0;
    border: 1px solid #ced4da;
    cursor: pointer;
    width: 100%;
    z-index: 2;
    background: #fff;
    user-select: none;
}

.new-select__list.on {
    display: block;
}

.new-select__item span {
    display: block;
    padding: 10px 15px;
}

.new-select__item span:hover {
    color: #12b223;
}

.new-select:after {
    content: '';
    display: block;
    width: 10px;
    height: 16px;
    position: absolute;
    right: 20px;
    top: 20px;
    background-repeat: no-repeat;
    background: url('/wp-content/uploads/2023/03/vector.svg') no-repeat right center / cover;
    background-size: 100%;
    opacity: 0.6;

    -webkit-transition: all .27s ease-in-out;
        -o-transition: all .27s ease-in-out;
            transition: all .27s ease-in-out;

    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
}

.new-select.on:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}

.course-form-right-img{
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.12);
    margin-bottom:70px;
    max-width:100%;
}
.course-form-right-text{
    font-weight: 400;
font-size: 20px;
line-height: 150%;
/* or 30px */

letter-spacing: 0.01em;

/* LightGrayTertiary */

color: #494D50;
}
.course-form-right-text b{
    color:#00ABEC;
    font-weight:700;
}

@media(max-width:768px){
    .course-form{
        flex-wrap:wrap;
    }
    .course-form-left{
        width:100%;
        margin-bottom:50px;
    }
    .course-form-right{
        width:100%;
    }
    .course-form-left-form{
        padding:15px;
    }
    .course-form-left-form-input{
        font-size: 14px;
    }
    .new-select{
        font-size: 14px;
    }
    .course-form-left-form-radios{
        padding:0;
        flex-direction:column;
        align-items:flex-start;
        
    }
    .course-form-left-form-radios-radio{
        margin-top:2px;
        margin-bottom:2px;
    }
    .course-form-left-form-radios-radio:last-child{
        margin-left:0;
    }
}


/* about */

.about-title{
    font-weight: 700;
    font-size: 42px;
    line-height: 103.02%;
    text-transform: uppercase;
    margin-bottom:40px;
    color: #EE762F;
}
.about-subtitle{
    font-weight: 700;
    font-size: 26px;
    line-height: 125.02%;
    margin-bottom:40px;
    color: #00ABEC;
}
.about-content{
    display: flex;
    margin-bottom: 6px;
}
.about-content-text{
    padding-right:45px;
}
.about-content-text{
    font-weight: 400;
font-size: 20px;
line-height: 150%;
letter-spacing: 0.01em;
color: #494D50;
}
.about-content-text p{
    font-weight: 400;
font-size: 20px;
line-height: 150%;
letter-spacing: 0.01em;
color: #494D50;
margin-bottom:24px;
}
.about-content-img{

}

.about-blocks{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-block{
    width:49%;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 1px solid #F2F2F2;
    box-shadow: 0px 2.54976px 15px rgba(93, 147, 170, 0.24);
    border-radius: 28px;
    padding:24px;
    margin-bottom:25px;
}
.about-block-top{
    display: flex;
    margin-bottom:28px;
}
.about-block-number{
    font-weight: 700;
font-size: 34px;
line-height: 42px;
text-align: center;

color: #00ABEC;
margin-right:14px;
}
.about-block-title{
    font-weight: 700;
    font-size: 26px;
    line-height: 125.02%;
    color: #333333;
}
.about-block-text{
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #494D50;
}

@media(max-width:768px){
    .about-title{
        font-size: 32px;
        line-height: 103.02%;
        margin-bottom: 30px;
    }
    .about-subtitle{
        font-size: 20px;
        line-height: 125.02%;
        margin-bottom:30px;
    }
    .about-content{

    }
    .about-content-text p{
        font-size: 16px;
        line-height: 150%;
    }
    .about-content-img{
        display: none;
    }
    .about-block{
        width:100%;
    }
    .about-block-title{
        font-size: 18px;
    }
    .about-block-top{
        margin-bottom:10px;
    }
    .about-block-text{
        font-size: 14px;
    }
    .about-block-number{
        font-size: 24px;
    line-height: 26px;
    }
}


/* contacts */

.contacts-adres{
    font-weight: 700;
font-size: 20px;
line-height: 150%;
/* identical to box height, or 30px */

letter-spacing: 0.01em;

/* LightGrayTertiary */
margin-bottom:24px;
color: #494D50;
}
.contacts-map iframe{
    width:100%;
    height:400px;
    margin-bottom: 40px;
}
.contacts-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contacts-column{
    width:45.5%;
}
.contacts-column-name{
    font-weight: 700;
font-size: 20px;
line-height: 150%;
/* identical to box height, or 30px */

letter-spacing: 0.01em;

/* SOS-Color */
margin-bottom:24px;
color: #00ABEC;
}
.contacts-column-text{
    font-weight: 700;
font-size: 20px;
line-height: 150%;
/* or 30px */

letter-spacing: 0.01em;

/* LightGrayTertiary */
margin-bottom:24px;
color: #494D50;
}
.contacts-column-a{
    display: flex;
    align-items: center;
    font-weight: 400;
font-size: 20px;
line-height: 150%;
/* identical to box height, or 30px */

letter-spacing: 0.01em;

/* LightGrayTertiary */
margin-bottom:24px;
color: #494D50;
}
.contacts-column-a img{
    display: block;
    margin-right:8px;
}
.contacts-column-a:hover{
    color:#0085E6;
}
.contacts-line{
    width:100%;
    margin-top:40px;
    margin-bottom:40px;
    border-bottom: 1px solid #C9C9C9;
}

@media(max-width:768px){
    .contacts-column{
        width:100%;
    }
}

.hidden{
    opacity:0.5;
    pointer-events: none; /* делаем ссылку некликабельной */
    cursor: default;
}


.done .course-button-prov{
    display:none;
}

.wp-block-lazyblock-blok-s-mozgom svg{
    width:100%;
    height:auto;
}

@media(max-width:768px){
    .section-circle-animation-img-title{
        font-size: 16.5837px;
        line-height: 125.02%;
    }
}
@keyframes triangleRotate{ 
    0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center;transform-origin:center}
    50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);
}

