.acad-wrapper{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 200px;
}
.acad-info{
    width: 64%;
}
.acad-desc{
    margin-top: 20px;
    color: #333;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.acad-title{
    margin-bottom: 20px;
    color: #333;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.mt-64{
    margin-top: 64px;
}
.acad-cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.acad-docs{
    width: 34%;
}
.acad-tabs-wrapper{
    margin-top: 20px;
}
.acad-tabs-controls{
    display: flex;
    margin-bottom: 20px;
}
.acad-tab-control{
    cursor: pointer;
    text-align: center;
    padding: 12px 20px;
    color: #98A2B3;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.acad-tab-control:has(input:checked) {
    color: #36C;
}
.acad-tab{
    display: none;
}
.acad-tabs-wrapper .acad-tabs-controls:has(input[id="acad1"]:checked) ~ .acad-tab#acadTab1{
    display: block;
}
.acad-tabs-wrapper .acad-tabs-controls:has(input[id="acad2"]:checked) ~ .acad-tab#acadTab2{
    display: block;
}
.acad-tabs-wrapper .acad-tabs-controls:has(input[id="acad3"]:checked) ~ .acad-tab#acadTab3{
    display: block;
}
.acad-tabs-wrapper .acad-tabs-controls:has(input[id="acad4"]:checked) ~ .acad-tab#acadTab4{
    display: block;
}
.rec-card{
    max-width: none;
}

.acad-mobile-reglam{
    margin-top: 32px;
    display: none;
}
.acad-desktop-reglam{
    display: block;
}

@media screen and (max-width: 1400px) {
    .acad-mobile-reglam{
        display: block;
    }
    .acad-desktop-reglam{
        display: none;
    }
    .acad-wrapper{
        flex-direction: column;
        gap: 64px;
    }
    .acad-docs{
        width: 600px;
    }
    .acad-info{
        width: 100%;
        max-width: 1000px;
    }
}
@media screen and (max-width: 1024px) {
    .acad-cards{
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 768px) {
    .acad-title{
        margin-bottom: 12px;
    }
    
    .acad-desc{
        margin-top: 0;
    }
    .acad-wrapper{
        gap: 32px;
        margin-bottom: 100px;
    }
    .acad-docs{
        width: 100%;
    }
    .acad-title{
        font-size: 16px;
    }
    .acad-desc{
        font-size: 12px;
    }
    .acad-tab-control{
        font-size: 12px;
    }
    .mt-64{
        margin-top: 32px;
    }
}