﻿.main-container {
    padding: 30px 20px;
}

p.breadcrumbs{
    display: none;
}

.breadcrumb {
    display: flex;
    list-style-type: none;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

    .breadcrumb li {
        white-space: nowrap;
    }

        .breadcrumb li a {
            color: black !important;
            font-size: 14px;
        }

        .breadcrumb li::after {
            display: inline-block;
            content: ">";
            margin-right: 5px;
        }

        .breadcrumb li:last-child::after {
            display: none;
        }

.container {
    max-width: 1189px;
    margin: 0 auto;
}

.page-section {
    margin-bottom: 62px;
}

    .page-section p {
        color: #181818;
        font-size: 19px;
        font-weight: 500;
        line-height: 1.6; /* 30.4px */
        margin-bottom: 30px;
    }

        .page-section p:last-child {
            margin-bottom: 0;
        }

.page-section-header {
    color: #181818;
    font-size: 40px;
    font-family: Montserrat;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.banner-section {
    margin-bottom: 44px;
}

.page-section .with-border-left {
    padding-left: 20px;
    font-weight: 700;
    border-left: 3px solid #346CE4;
}

.blue-text {
    color: #346CE4;
}

.course-section-block{

}

.courses-list-header {
    text-align: center;
}

.courses-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style-type: none;
    padding: 0;
    gap: 10px;
    margin: 0 0 80px 0;
}

.courses-section-name {
    color: #181818;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2; 
    margin-bottom: 30px;
}

.course-item {
    border-radius: 20px;
    background: linear-gradient(270deg, #EDEEF9 1.23%, #F2F9FC 100%);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 86px;
    gap: 10px;
}

.course-name {
    color: #1A1A1A;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;    
}

    .course-name h3 {
        font-weight: 700;
    }

.course-item-link {
    display: block;
    color: #0E88F2;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2; /* 13.2px */
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid #0E88F2;
    padding: 10px;
    flex-shrink: 0;
    transition: 0.3s;
}

    .course-item-link:hover {
        background: #0E88F2;
        color: white;
        transition: 0.3s;
    }

.conditions-header {
    color: #33393E;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.conditions-list {
    color: #33393E;
    font-size: 19px;
    line-height: 1.47;  
    margin-left: 20px;

}

    .conditions-list li {
        margin-bottom: 24px;
        position: relative;
        padding-left: 40px;
    }

        .conditions-list li::marker {
            display: block;
            color: #005586;
            font-size: 19px;
            font-weight: 600;          
        }

@media (max-width: 810px) {
    .courses-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .course-item {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .page-section-header{
        font-size: 26px;
    }

    .page-section p{
        font-size: 14px;
    }

    .courses-section-name {
        font-size: 20px;
    }

    .conditions-list {
        font-size: 14px;
    }

        .conditions-list li {
            padding-left: 20px;
        }
}
