.window_shadow {
    position: fixed;
    z-index: 100;
    
    width: 100%;
    height: 100vh;
    
    display: none;
    
    background: black;
    opacity: 0.5;
}

.window_shadow.show {
    display: block;
}

.container {
    padding-left: 57px;
    padding-right: 57px;
}

@media (max-width: 1500px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
        
        max-width: 1100px;
    }    
}

@media (max-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }    
}

header{
    padding-top: 33px;
    padding-bottom: 22px;
    
    background-color: white;
}
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:250px;
}
.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: 400;
    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{
    content:'';
    
    position: absolute;
    bottom: -18px;
    
    width:100%;
    height:4px;
    
    display: block;
    
    color: #00ABEC;
    background: #00ABEC;
    
    border-radius: 16px 16px 0 0;
}
.header_button{
    display: none;
}

@media(max-width:1000px){
    .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 > .container {
    gap: 30px;
}

header.active {
    position: sticky;
}

.mob-header {
    top: 93px;
}

.mob-header-mid {
    margin-bottom: 0;
}

@media (max-width: 1000px) {
    header {
        padding-top: 30px;
        padding-bottom: 20px;
    }
}




.home_header {
    padding-top: 0;
    padding-bottom: 70px;
}

.home_header_slider {
    margin-left: -57px;
    
    max-width: 90%;
}

@media (max-width: 1500px) {
    .home_header_slider {
        margin-left: 0;
        
        max-width: auto%;
        height: 350px;
    }
    .home_header_slider .slick-list,
    .home_header_slider .slick-track {
        height: 100%;
    }
}

.home_header_slider .slide {
    overflow: hidden;
    
    border-top-right-radius: 320px;
}

@media (max-width: 1500px) {
    .home_header_slider .slide {
        overflow: auto;
        
        border-top-right-radius: 0;
    }
}

.home_header_slider .slide img {
    width: 100%;
}

@media (max-width: 1500px) {
    .home_header_slider .slide img {
        width: auto;
        height: 100%;
        
        border-top-right-radius: 100px;
    }
}

.home_header_slider ul.slick-dots {
    position: relative;
    top: 30px;
    left: 57px;
    
    max-width: calc(50vw - 57px);
    
    display: none;
    justify-content: center;
    gap: 15px;
}

.home_header_slider .slick-dots li {
    width: 15px;
    height: 15px;
    
    background-color: rgba(0, 171, 236, 0.28);
    
    border-radius: 10px;
}

.home_header_slider .slick-dots li.slick-active {
    background-color: #00ABEC;
}

.home_header_slider .slick-dots li button {
    display: none;
}

.home_header_content {
    position: relative;
    
    margin-top: -200px;
    
    width: 100%;
    
    display: flex;
    align-items: flex-end;
    gap: 40px;
    
    pointer-events: none;
}

.home_header_content_main {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 30px 40px;
}

.home_header_content_main_year {
    height: fit-content;
    
    grid-area: 1 / 1 / 3 / 2;
    display: flex;
}

.home_header_content_main_year > span:nth-child(1) {
    align-self: center;
    
    color: #1C325D;
    
    font-size: 105.44px;
    font-weight: 800;
    line-height: 125.02%; /* 131.82px */
}

.home_header_content_main_year > span:nth-child(2) {
    color: #00ABEC;
    
    font-size: 203.85px;
    font-weight: 900;
    line-height: 80%; /* 254.853px */
}

@media (max-width: 1500px) {
    .home_header {
        padding-bottom: 40px;
    }
    .home_header_content_main_year > span:nth-child(2) {
        font-size: 150px;
    }
}

.home_header_content_main_year > span:nth-child(3) {
    align-self: flex-end;
    
    color: rgba(28, 50, 93, 0.68);
    
    font-size: 31.582px;
    font-weight: 300;
    line-height: 125.02%; /* 39.483px */
}

.home_header_content_main_text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home_header_content_main_title {
    color: #1C325D;
    
    font-size: 32px;
    font-weight: 500;
    line-height: 129.9%; /* 41.568px */
}

@media (max-width: 1500px) {
    .home_header_content_main_title {
        font-size: 24px;
        line-height: 105%;
    }
}

.home_header_content_main_plain {
    color: #1C325D;
    
    font-size: 22px;
    font-weight: 400;
    line-height: 145.4%; /* 31.988px */
}

@media (max-width: 1500px) {
    .home_header_content_main_plain {
        font-size: 18px;
        line-height: 105%;
    }
}

.home_header_content_side {
    padding: 39px 34px 66px 41px;
    
    max-width: calc(465px - 34px - 41px);
    
    display: flex;
    flex-direction: column;
    gap: 30px;
    
    color: white;
    background-color: #00ABEC;
    
    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.25);
    
    border-bottom-right-radius: 200px;
}

.home_header_content_side_title {
    font-size: 40px;
    font-weight: 500;
    line-height: 125.02%; /* 50.008px */
}

@media (max-width: 1500px) {
    .home_header_content_side_title {
        font-size: 24px;
        line-height: 110%;
    }
}

.home_header_content_side_plain {
    font-size: 24px;
    font-weight: 400;
    line-height: 145.4%; /* 34.896px */
}

@media (max-width: 1500px) {
    .home_header_content_side_plain {
        font-size: 18px;
        line-height: 110%;
    }
}


@media (max-width: 1500px) {
    .home_header_slider {
        margin-left: -57px;
        margin-right: -57px;
        
        max-width: calc(100% + 114px);
        width: 100vw;
        
        border-radius: 0;
    }
    .home_header_slider .slide {
        border-radius: 0;
    }
    .home_header_content {
        margin-top: -250px;
        
        flex-direction: column-reverse;
        gap: 10px;
    }
    .home_header_content_main_year {
        grid-area: auto;
    }
    .home_header_content_main_plain {
        grid-area: 2 / 1 / 3 / 3;
    }
}

@media (max-width: 1000px) {
    .home_header_content_side {
        max-width: 50%;
        
        border-bottom-right-radius: 150px;
    }
    .home_header_content_side_title {
        font-size: 24px;
    }
    .home_header_content_side_plain {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .home_header {
        padding-bottom: 55px;
    }
    .home_header_slider {
        margin-left: -24px;
        margin-right: -24px;
        
        min-height: 340px;
        min-width: calc(100% + 48px);
        aspect-ratio: 4 / 3;
        
        object-fit: cover;
    }
    .home_header_slider .slick-list,
    .home_header_slider .slick-track,
    .home_header_slider .slide {
        height: 100%;
    }
    .home_header_slider .slide img {
        width: 100%;
        height: 100%;
        
        object-fit: cover;
        
        border-top-right-radius: 0;
    }
    .home_header_slider ul.slick-dots {
        top: 20px;
        left: 24px;
        
        max-width: calc(50vw - 24px);
        
        display: flex;
    }
    .home_header_slider .slick-dots li {
        width: 7px;
        height: 7px;
    }
    .home_header_content {
        margin-top: -17.5%;
        
        gap: 20px;
    }
    .home_header_content_side {
        padding: 15px 18px 30px;
        
        max-width: calc(50% - 36px);
        
        border-bottom-right-radius: 90px;
    }
    .home_header_content_side_title {
        font-size: 28px;
    }
    .home_header_content_side_plain {
        font-size: 18px;
    }
    .home_header_content_main {
        gap: 20px 24px;
    }
    .home_header_content_main_year {
        display: grid;
        grid-template-columns: auto auto;
    }
    .home_header_content_main_year > span:nth-child(1) {
        font-size: 44px;
    }
    .home_header_content_main_year > span:nth-child(2) {
        font-size: 86px;
    }
    .home_header_content_main_year > span:nth-child(3) {
        grid-area: 2 / 2 / 3 / 3;
        justify-self: center;
        
        font-size: 20px;
    }
    .home_header_content_main_title {
        font-size: 17px;
    }
    .home_header_content_main_plain {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .home_header_content_side {
        gap: 10px;
    }
    .home_header_content_side_title {
        font-size: 16px;
    }
    .home_header_content_side_plain {
        font-size: 11px;
    }
}

@media (max-width: 500px) {
    .home_header_content {
        margin-top: -120px;
    }
    .home_header_content_side {
        max-width: calc(50vw - 24px);
    }
}




.our_goal {
    padding-bottom: 95px;
}

.our_goal_container {
    overflow: hidden;
}

.our_goal_title {
    position: relative;
    
    margin-bottom: 35px;
    margin-left: 60px;
    margin-right: 60px;
    
    color: #1C325D;
    
    font-size: 68px;
    font-weight: 500;
    line-height: 94.02%; /* 63.933px */
}

.our_goal_title::before {
    content: '';
    
    position: absolute;
    top: calc(50% - 2px);
    right: calc(100% + 30px);
    
    width: 90px;
    height: 4px;
    
    background-color: #F04E69;
    
    border-radius: 0 2px 2px 0;
}

.our_goal_subtitle {
    margin-left: 60px;
    margin-right: 60px;
    
    color: #00ABEC;
    
    font-size: 28px;
    font-weight: 400;
    line-height: 125.02%; /* 35.005px */
}


@media (max-width: 1500px) {
    .our_goal {
        padding-bottom: 40px;
    }
    .our_goal_title,
    .our_goal_subtitle {
        margin-left: 23px;
        margin-right: 23px;
    }
    .our_goal_title {
        font-size: 36px;
    }
    .our_goal_subtitle {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .our_goal {
        padding-bottom: 65px;
    }
    .our_goal_title, .our_goal_subtitle {
        margin-left: 40px;
        margin-right: 0;
    }
    .our_goal_title {
        margin-bottom: 23px;
        font-size: 30px;
    }
    .our_goal_title::before {
        right: calc(100% + 18px);
    }
    .our_goal_subtitle {
        font-size: 16px;
    }
}





.psychotrauma {
    padding-bottom: 100px;
}

.psychotrauma_container {
    padding: 0 57px 0 0;
    
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.psychotrauma_side {
    padding: 80px 80px 90px 120px;
    
    background: rgba(0, 171, 236, 0.20);

    max-width: 50%;
    
    display: flex;
    flex-direction: column;
    gap: 30px;
    
    border-radius: 0px 0px 248px 0px;
    
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.15);
}

.psychotrauma_side_plain {
    color: #1C325D;
    
    font-size: 24px;
    font-weight: 400;
    line-height: 145.4%; /* 34.896px */
}

.psychotrauma_side_title {
    display: flex;
    align-items: center;
    gap: 10px;
    
    color: #1C325D;
    
    font-size: 32px;
    font-weight: 500;
    line-height: 129.9%; /* 41.568px */
    text-transform: uppercase;
}

.psychotrauma_side_title .desktop_arrow {
    display: block;
}
    
.psychotrauma_side_title .mobile_arrow {
    align-self: center;
    display: none;
}

.psychotrauma_graph {
    width: 45%;
}

.psychotrauma_graph img {
    width: 100%;
    
    display: block;
}


@media (max-width: 1360px) {
    .psychotrauma_side {
        padding: 80px 80px 90px 80px;
    }
}

@media (max-width: 1500px) {
    .psychotrauma {
        padding-bottom: 40px;
    }
    .psychotrauma_container {
        padding: 0;
        
        flex-direction: column;
        gap: 30px;
    }
    .psychotrauma_side {
        padding: 50px;
        max-width: 100%;
    }
    .psychotrauma_side_title {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .psychotrauma_side_title .desktop_arrow {
        display: none;
    }
    
    .psychotrauma_side_title .mobile_arrow {
        display: block;
    }
    
    .psychotrauma_graph {
        width: 50%;
        
        align-self: center;
    }
}

@media (max-width: 768px) {
    .psychotrauma {
        padding-bottom: 75px;
    }
    .psychotrauma_container {
        gap: 40px;
    }
    .psychotrauma_side {
        padding: 45px 25px 20px;
        
        border-radius: 0 0 120px 0;
        
        box-shadow: 0px 7px 19px 0px rgba(0, 0, 0, 0.12);
    }
    .psychotrauma_side_plain {
        font-size: 16px;
    }
    .psychotrauma_side_title {
        gap: 10px;
        
        font-size: 24px;
    }
    .psychotrauma_graph {
        padding-left: 24px;
        padding-right: 24px;
        
        width: 100%;
    }
}





.warnings {
    padding-bottom: 95px;
}

.warnings_container {
    padding-left: 120px;
    padding-right: 120px;
}

.warnings_subtitle {
    margin-bottom: 28px;
    
    color: #1C325D;
    
    font-size: 32px;
    font-weight: 500;
    line-height: 125.02%; /* 40.006px */
}

.warnings_title {
    margin-bottom: 50px;
    
    color: #00ABEC;
    
    font-size: 40px;
    font-weight: 500;
    line-height: 125.02%; /* 50.008px */
    text-transform: uppercase;
}

.warnings_cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.warning_card {
    padding: 35px 20px 25px;
    
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    
    color: white;
    background-color: #00ABEC;
    
    font-size: 18px;
    font-weight: 400;
    line-height: 125.02%; /* 22.504px */
    
    border-radius: 10px;

    box-shadow: 0px 7px 16px 2px rgba(0, 0, 0, 0.10);
}

.warning_card_image {
    margin: 0 auto;
}


@media (max-width: 1360px) {
    .warnings_cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1500px) {
    .warnings {
        padding-bottom: 40px;
    }
    .warnings_container {
        padding-left: 57px;
        padding-right: 57px;
    }
    .warnings_subtitle {
        font-size: 24px;
    }
    .warnings_title {
        margin-bottom: 20px;
        
        font-size: 32px;
    }
    .warnings_cards {
        grid-template-columns: 1fr;
    }
    .warning_card {
        padding: 25px 15px 25px 28px;
        
        flex-direction: row;
        align-items: center;
        gap: 25px;
        
        font-size: 16px;
        
        border-radius: 10px;
    }
    .warning_card_image {
        margin: 0;
        
        width: 65px;
    }
    .warning_card_image img {
        width: 100%;
    }
    .warning_card_text {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .warnings {
        padding-bottom: 55px;
    }
    .warnings_container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .warnings_subtitle {
        margin-bottom: 20px;
        
        font-size: 20px;
    }
    .warnings_title {
        margin-bottom: 23px;
        
        font-size: 26px;
    }
}




.courses {
    margin-bottom: 100px;
    padding: 90px 0;
    
    background-color: #FAFAFA;
}

.courses_container {
    padding-left: 160px;
    padding-right: 160px;
}

.courses_title {
    position: relative;
    
    color: #1C325D;
    
    font-size: 68px;
    font-weight: 500;
    line-height: 94.02%; /* 63.933px */
}

.courses_title::before {
    content: '';
    
    position: absolute;
    top: calc(50% - 2px);
    right: calc(100% + 30px);
    
    width: 130px;
    height: 4px;
    
    background-color: #F04E69;
    
    border-radius: 0 2px 2px 0;
}

.courses_wrapp {
    margin-top: 50px;
    
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.courses_card {
    min-height: 420px;
    
    display: flex;
    flex-direction: column;
}

.courses_card_title {
    padding: 50px 115px 50px 70px;
    
    color: #FFF;
    
    font-size: 32px;
    font-weight: 700;
    line-height: 114.4%; /* 36.608px */
    
    border-radius: 10px 10px 0 0;
}

.courses_card.orange .courses_card_title {
    background-color: #EE762F;
}

.courses_card.blue .courses_card_title {
    background-color: #00ABEC;
}

.courses_card_content {
    position: relative;
    
    padding: 50px 70px 35px;
    
    background-color: white;
    
    border-left: 1px solid #D4DAE4;
    border-bottom: 2px solid #D4DAE4;
    border-right: 1px solid #D4DAE4;
    
    border-radius: 0 0 10px 10px;
}

.courses_card_content > * {
    position: relative;
    z-index: 2;
}

.courses_card_text {
    margin-bottom: 30px;
    
    color: #1C325D;
    
    max-width: 60%;
    
    font-family: 'Inter';
    font-size: 22px;
    font-weight: 400;
    line-height: 145.4%; /* 31.988px */
}

.courses_card_btn {
    padding: 20px 38px;
    
    width: fit-content;
    
    display: block;
    
    color: white;
    
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%; /* 23.4px */
    text-transform: uppercase;
    
    border-radius: 5px;
    
    transition: background-color .3s;
}

.courses_card.orange .courses_card_btn {
    background-color: #EE762F;
}

.courses_card.orange .courses_card_btn:hover {
    background-color: #d36321;
}

.courses_card.blue .courses_card_btn {
    background-color: #00ABEC;
}

.courses_card.blue .courses_card_btn:hover {
    background-color: #0085E6;
}

.courses_card_image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    
    max-width: 100%;
}

.courses_card_image img {
    width: 100%;
}

.courses_card_image .courses_card_image_desk {
    display: block;
}

.courses_card_image .courses_card_image_mob {
    display: none;
}


@media (max-width: 1500px) {
    .courses {
        margin-bottom: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .courses_container {
        padding-left: 80px;
        padding-right: 80px;
    }
    .courses_title {
        font-size: 32px;
    }
    .courses_card_title {
        font-size: 24px;
    }
    .courses_card_text {
        font-size: 18px;
        line-height: 120%;
    }
}

@media (max-width: 768px) {
    .courses {
        margin-bottom: 55px;
        padding-top: 55px;
        padding-bottom: 60px;
    }
    .courses_container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .courses_title {
        margin-left: 40px;
        
        font-size: 30px;
    }
    .courses_title::before {
        right: calc(100% + 18px);
    }
    .courses_wrapp {
        gap: 20px;
    } 
    .courses_card_title {
        padding: 38px 35px 38px 25px;
        
        font-size: 22px;
    }
    .courses_card_content {
        padding: 26px 35px 32px 23px;
        
        overflow: hidden;
    }
    .courses_card_text {
        max-width: none;
        
        font-size: 16px;
    }
    .courses_card {
        min-height: 0;
    }
    .courses_card_image .courses_card_image_desk {
        display: none;
    }
    .courses_card_image .courses_card_image_mob {
        display: block;
    }
    .courses_card_btn {
        padding: 15px 25px;
        
        font-size: 12px;
        
        border-radius: 3px;
    }
}





.additional_materials {
    padding-bottom: 75px;
}

.additional_materials_container {
    padding-left: 160px;
    padding-right: 160px;
}

.additional_materials_title {
    margin-bottom: 50px;
    
    color: #00ABEC;
    
    font-size: 40px;
    font-weight: 500;
    line-height: 125.02%; /* 50.008px */
    text-align: center;
    text-transform: uppercase;
}

.additional_materials_wrapp {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.additional_materials_link {
    padding: 15px 35px 11px 20px;
    
    display: flex;
    align-items: center;
    gap: 38px;
    
    color: #1C325D;
    
    font-size: 20px;
    font-weight: 400;
    line-height: 145.4%; /* 29.08px */
    text-transform: uppercase;
    
    border: 1px solid #EEE6E6;
    border-radius: 10px;
    
    /*box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.05) inset;*/
}

.additional_materials_link_icon {
    width: 52px;
    height: 52px;
}

.additional_materials_link_icon img {
    width: 100%;
    
    display: block;
}

.additional_materials_link_text {
    flex: 1;
    
    transition: color .3s;
}

.additional_materials_link:hover .additional_materials_link_text {
    color: #00ABEC;
}

.additional_materials_link_arrow {
    display: flex;
}

.additional_materials_link_arrow > svg {
    transition: color .3s;
}

.additional_materials_link:hover .additional_materials_link_arrow > svg {
    color: #00ABEC;
}

.additional_materials_link_arrow > .desktop {
    display: flex;
}

.additional_materials_link_arrow > .mobile {
    display: none;
}

.additional_materials_more {
    margin-top: 42px;
    
    display: block;
    
    color: #00ABEC;
    
    font-size: 20px;
    font-weight: 400;
    line-height: 145.4%; /* 29.08px */
    text-align: center;
    text-transform: uppercase;
    text-decoration: underline;
}


@media (max-width: 1500px) {
    .additional_materials_container {
        padding-left: 57px;
        padding-right: 57px;
    }
    .additional_materials_title {
        font-size: 32px;
    }
    .additional_materials_link {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .additional_materials_container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .additional_materials_title {
        margin-bottom: 30px;
        
        font-size: 26px;
        line-height: 129.9%;
    }
    .additional_materials_wrapp {
        gap: 20px;
    }
    .additional_materials_link {
        padding: 15px 11px 15px 13px;
        
        gap: 13px;
        
        font-size: 14px;
    }
    .additional_materials_link_icon {
        width: 38px;
        height: 38px;
    }
    .additional_materials_link_arrow > .desktop {
        display: none;
    }
    .additional_materials_link_arrow > .mobile {
        display: flex;
    }
    .additional_materials_more {
        margin-top: 26px;
        
        font-size: 14px;
    }
}





.cite {
    padding-bottom: 80px;
    
    background-color: rgba(0, 171, 236, 0.20);
}

.cite_container {
    padding-left: 160px;
    padding-right: 160px;
}

.cite_quote_mark {
    margin-bottom: 50px;
}

.cite_quote_mark img {
    margin-top: -30px;
}

.cite_text {
    margin-bottom: 55px;
    padding: 0 90px;
    
    color: #1C325D;

    font-family: "Times New Roman";
    font-size: 40px;
    font-style: italic;
    font-weight: 400;
    line-height: 125.02%; /* 50.008px */
    text-align: center;
}

.cite_author {
    color: #1C325D;
    
    font-size: 19px;
    font-weight: 300;
    line-height: 117.9%; /* 22.401px */
    text-align: right;
}

.cite_author > br {
    display: none;
}


@media (max-width: 1500px) {
    .cite_container {
        padding-left: 57px;
        padding-right: 57px;
    }
    .cite {
        padding-bottom: 70px;
    }
    .cite_quote_mark {
        margin-bottom: 20px;
    }
    .cite_text {
        font-size: 24px;
        line-height: 120%;
    }
}

@media (max-width: 768px) {
    .cite {
        padding-bottom: 45px;
    }
    .cite_container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .cite_quote_mark {
        margin-left: 18px;
        margin-bottom: 30px;
        
        width: 85px;
    }
    .cite_quote_mark img {
        margin-top: -20px;
        
        width: 100%;
    }
    .cite_text {
        margin-bottom: 40px;
        padding: 0;
        
        font-size: 26px;
        text-align: left;
    }
    .cite_author {
        font-size: 16px;
        text-align: left;
    }
    .cite_author > br {
        display: inline;
    } 
}





footer {
    padding-top: 100px;
    padding-bottom: 80px;
}

footer > .footer_container {
    padding: 0 60px 45px 80px;
    
    display: flex;
    justify-content: space-between;
}

.footer_left {
    padding-top: 20px;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer_logo {
    width: 177px;
}

.footer_logo img {
    width: 100%;
    
    display: block;
}

.footer_links {
    padding-left: 12px;
    
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.footer_links a {
    display: flex;
    align-items: center;
    gap: 20px;
    
    color: #00ABEC;
    
    font-size: 14px;
    font-weight: 400;
    line-height: 145.4%; /* 20.356px */
}

.footer_links a svg {
    display: block;
}

.footer_right {
    width: 75%;
}

.footer_nav {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.footer_nav > ul {
    padding-bottom: 15px;
    
    list-style: none;
    flex: 1;
    display: flex;
    justify-content: space-around;
    gap: 10px;
    
    border-bottom: 1px solid #C9C9C9;
}

.footer_nav > ul > li.active {
    position: relative;
}

.footer_nav > ul > li > a {
    color: #333;
    
    font-size: 16px;
    font-weight: 400;
    line-height: 145.4%; /* 23.264px */
    text-transform: uppercase;
}

.footer_nav > ul > li > a:hover {
    color: #00ABEC;
}

.footer_nav > ul > li.active::after{
    content: '';
    
    position: absolute;
    left: -8px;
    bottom: -14px;
    
    width: calc(100% + 16px);
    height: 4px;
    
    background-color: #00ABEC;
    
    border-radius: 9px;
}

.footer_btn {
    padding: 20px 38px;
    
    width: fit-content;
    
    display: block;
    
    color: white;
    background-color: #00ABEC;
    
    font-family: Roboto;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%; /* 23.4px */
    text-transform: uppercase;
    
    border-radius: 5px;
    
    transition: background-color .3s;
}

.footer_btn:hover {
    background-color: #0085E6;
}

.footer_text {
    padding-top: 35px;
    padding-right: 35px;
    
    color: #333;
    
    font-size: 14px;
    font-weight: 400;
    line-height: 145.4%; /* 20.356px */
}

.footer_text > p {
    margin-bottom: 10px;
}

.footer_text > p:last-child {
    margin-bottom: 0;
}

footer > .footer_bottom_container {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 40px;
    padding-right: 60px;
}

.footer_bottom_wrapp {
    padding-top: 15px;
    
    width: 100%;
    
    display: flex;
    justify-content: space-between;
    
    border-top: 1px solid #C9C9C9;
}

.footer_legal_info {
    padding-right: 8px;
    
    color: #333;
    
    font-size: 12px;
    font-weight: 400;
    line-height: 145.4%; /* 17.448px */
}

.footer_legal_info a {
    color: #333;
    
    text-decoration: underline;
}

.footer_bottom_right {
    width: calc(75% - 30px);
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_policies {
    color: #333;
    
    font-size: 12px;
    font-weight: 400;
    line-height: 145.4%; /* 17.448px */
}

.footer_policies a {
    color: #00ABEC;
    
    text-decoration: underline;
}

footer > .footer_bottom_container_mob {
    padding-top: 0;
    padding-bottom: 0;
    
    display: none;
    flex-wrap: nowrap;
}

.footer_bottom_container_mob .footer_bottom_wrapp {
    display: flex;
    flex-direction: column;
    
    border-top: none;
}

.footer_bottom_container_mob .footer_policies {
    padding-bottom: 15px;
    
    border-bottom: 1px solid #e0e0e0;
}

.footer_bottom_container_mob .footer_policies br {
    content: '';
    
    padding-bottom: 15px;
    
    display: block;
}

.footer_bottom_container_mob .footer_legal_info {
    padding-top: 15px;
    padding-bottom: 30px;
}

.footer_bottom_container_mob .footer_bottom_wrapp > a {
    width: fit-content;
    
    align-self: center;
}


@media (max-width: 1500px) {
    footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    footer > .footer_container {
        padding: 0 57px;
        
        flex-direction: column;
        gap: 40px;
    }
    .footer_left {
        padding-top: 0;
        
        flex-direction: row;
        align-items: center;
    }
    .footer_links {
        padding-left: 0;
        
        flex-direction: row;
    }
    .footer_links a {
        padding: 15px;
        
        background-color: #F6F5F5;
        
        border: 1px solid #828282;
        border-radius: 50px;
    }
    .footer_links a img {
        width: 20px;
        height: 20px;
    }
    .footer_links a span {
        display: none;
    }
    .footer_right {
        width: 100%;
    }
    .footer_nav {
        padding-top: 40px;
        
        flex-direction: column-reverse;
        align-items: center;
    }
    .footer_nav > ul {
        padding-bottom: 0;
        
        width: 100%;
        
        flex-direction: column;
        gap: 15px;
        
        border-bottom: none;
    }
    .footer_nav > ul > li {
        padding-bottom: 15px;
        
        border-bottom: 1px solid #E0E0E0;
    }
    .footer_nav > ul > li:last-child {
        border-bottom: none;
    }
    .footer_nav > ul > li.active::after {
        display: none;
    }
    .footer_nav > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        
        font-weight: 700;
    }
    .footer_nav > ul > li > a::after {
        content: '';
        
        position: relative;
        
        width: 45px;
        height: 24px;
        
        display: block;
        
        background-image: url(/wp-content/themes/courses/src/img/new/arrow.svg);
        background-size: 100% auto;
        background-position: center;
        background-repeat: no-repeat;
    }
    .footer_text {
        padding-top: 25px;
        padding-bottom: 35px;
        padding-right: 0;
        
        border-bottom: 1px solid #E0E0E0;
    }
    .footer_text > p {
        margin-bottom: 30px;
    }
    footer > .footer_bottom_container {
        display: none;
    }
    footer > .footer_bottom_container_mob {
        display: flex;
    }
}

@media (max-width: 768px) {
    footer {
        padding-top: 60px;
    }
    footer > .footer_container {
        padding: 0 24px;
        
        gap: 30px;
    }
    .footer_nav {
        padding-top: 0;
    }
    .footer_btn {
        padding: 18px 30px;
        
        font-size: 12px;
        
        border-radius: 4px;
    }
    .footer_text {
        padding-top: 15px;
    }
}



.popup-admin-form {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    
    width: 100%;
    height: 100%;
    
    display: none;
    align-items: center;
    justify-content: center;
    
    background: rgba(255, 255, 255, 0.60);
}

.popup-admin-form.show {
    display: flex;
}

.popup-admin-form.sending * {
    pointer-events: none;
}

.popup-admin-form-inner {
    margin: 0 50px;
    padding: 25px 25px 57.5px 70px;
    
    max-width: 1000px;
    width: 100%;
    height: 420px;
    
    display: flex;
    flex-direction: column;
    
    background-image: url('/wp-content/themes/courses/src/img/admin-popup-desk.jpg');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    
    border-radius: 10px;
}

.popup-admin-form-close {
    margin-bottom: 10px;
    
    align-self: flex-end;
    
    background: none;
    
    border: none;
    
    outline: none;
    
    cursor: pointer;
}

.popup-admin-form-close svg {
    width: 100%;
    height: 100%;
    
    display: block;
}

.popup-admin-form-inner form {
    padding-right: 45px;
    
    height: 100%;
    
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.popup-admin-form-inner form .form-input-wrap {
    flex: 1;
}

.popup-admin-form-inner form .form-input {
    padding: 16px;
    
    width: 100%;
    height: 100%;
    
    display: block;
    
    font-family: 'Inter';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    
    border-radius: 5px;
    border: 1px solid #EEE6E6;
    
    outline: none;
    resize: none;
    
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.05) inset;
    
}

.popup-admin-form-inner form button {
    padding: 20px 38px;
    
    width: fit-content;
    min-width: 280px;
    
    display: block;
    
    color: white;
    background-color: #00ABEC;
    
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
    
    border-radius: 5px;
    border: none;
    
    outline: none;
    
    transition: background-color .3s;
    
    cursor: pointer;
}

.popup-admin-form-success {
    display: none;
    flex-direction: column;
    gap: 40px;
    
    height: 100%;
}

.popup-admin-form-success p:first-child {
    font-size: 40px;
}

.popup-admin-form-success p:last-child {
    font-size: 28px;
}

.popup-admin-form.success form {
    display: none;
}

.popup-admin-form.success .popup-admin-form-success {
    display: flex;
}



@media (max-width: 768px) {
    .popup-admin-form-inner {
        margin: 0 24px;
        padding: 20px;
        
        height: 300px;
        
        background-image: url('/wp-content/themes/courses/src/img/admin-popup-mob.jpg');
        background-size: cover;
    }
    .popup-admin-form-close {
        width: 18px;
        height: 18px;
    }
    .popup-admin-form-inner form {
        padding-right: 0;
        
        gap: 25px;
    }
    .popup-admin-form-inner form .form-input {
        padding: 12px 15px;
        font-size: 16px;
    }
    .popup-admin-form-inner form button {
        padding: 15px 25px;
        min-width: auto;
        font-size: 12px;
    }
    .popup-admin-form-success {
        gap: 25px;
    }
    .popup-admin-form-success p:first-child {
        font-size: 32px;
    }
    .popup-admin-form-success p:last-child {
        font-size: 14px;
    }
}



@media (max-width: 768px) {
    .course-content-top-menu {
        padding-bottom: 10px;
        position: static;
    }
}