/* .acf-field-670f90ff08bcd .acf-row{
    display: flex;
    flex-direction: column;
} */

/**************COURSES*******************/
.section_courses{
    padding-left: 120px;
    overflow: hidden;
}
.section_courses h2{
    color: #324243;
    text-transform: uppercase;
    font-size: 44px;
}
/* .section_courses .swiper-container{
    overflow: hidden;
} */

.courses::-webkit-scrollbar {
    display: none;
}
.course{
    /* flex: 0 0 calc(100% / 4);
    min-width: calc(100% / 4); */
    background: #F2F4F7;
    border-radius: 16px;
    height: 480px;
    max-height: 480px;
    position: relative;
    overflow: hidden;
    padding: 0 40px;
    cursor: pointer;
}
.course::after{
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    top: 40px;
    left: 40px;
    background: url(../svg/arrow-up-right-orange.svg) center center no-repeat;
    background-size: 30%;
    border: 2px solid #FFB299;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border-radius: 100%;
}
.course:hover::after{
    transform: rotate(45deg);
    background: #ff5016 url(../svg/arrow-up-right.svg) center center no-repeat;
    background-size: 30%;
    border: 2px solid #ff5016;
}
.course .content{
    position: absolute;
    bottom: 15px;
    width: 80%;
    transform: translateY(0);
    transition: transform 0.5s ease; 
    text-align: left;
}
.course .content h4{
    color: #324243;
    font-size: 22px;
    line-height: 28.6px;
    font-family: "ManropeZbw", Arial, sans-serif;
}
.course .content p{
    color: #324243;
    font-size: 18px;
}
.course .text{
    position: absolute;
    width: 90%;
    opacity: 0;
}
/**************COURSES*******************/

.selection{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.selection .choices, .selection .values{
    width: 100%!important;
}

/*******************MEDIA*********************/
@media (max-width: 1550px) {
}
@media (max-width: 1280px) {
}
@media (max-width: 1150px) {

}
@media (max-width: 1150px) {
}
@media (max-width: 990px) {
   
}
@media (max-width: 769px) {
}
@media (max-width: 500px) {
    .section_courses{
        padding: 0 16px;
    }
    .section_courses h2{
        font-size: 32px;
        line-height: 100%;
    }
    .courses{
        flex-direction: column;
        gap: 16px;  
    }
    .course::after{
        width: 64px;
        height: 64px;
        right: 24px;
        left: auto;
        top: 50%;
        transform: translate(0, -50%);
    }
    .course{
        height: 125px;
        min-height: 125px;
        max-height: 125px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 24px;
    }
    .course:hover::after{
        transform: translate(0, -50%) rotate(45deg);
    }
    .course .content{
        position: static;
    }
    .course .content h4{
        margin: 0;
        max-width: 90%;
        font-weight: 500;
    }
    .course .text{
        display: none;
    }
}




/*******************MEDIA*********************/
@media (max-width: 1024px) {
    .section_courses {
        padding-left: 60px;
    }
}
@media (max-width: 650px) {
    .section_courses {
        padding-left: 16px;
    }
}
