/*==================================================
VSEODENT COURSE PRIMARY
==================================================*/

:root{

    --primary:#0B5ED7;
    --primary-dark:#084298;

    --text:#24324a;
    --text-light:#66758d;

    --bg:#f5f8fd;
    --white:#ffffff;

    --border:#e3ebf7;

    --radius:24px;
    --radius-small:16px;

    --shadow:
        0 15px 45px rgba(30,52,88,.08);

    --transition:.3s ease;

}

*,
*:before,
*::after{

    box-sizing:border-box;

}

.course-page{

    background:var(--bg);

}


/*==================================================
  COURSE HERO
==================================================*/
.course-hero__header{

    display:flex;

    justify-content:center;

    margin-bottom:50px;

}

.course-hero__title{

    margin:0;

    width:100%;

    max-width:1000px;

    text-align:center;

    color:var(--text);

}



@media (max-width:768px){

    .course-hero__header{

        text-align:center;
        margin-bottom:24px;

    }

    .course-hero__title{

        width:100%;
        max-width:100%;
        margin:0 auto;
        padding:0 10px;

        text-align:center;

        font-size:20px;
        line-height:1.18;
        font-weight:300;

        text-wrap:balance;

    }

}
/*==================================================
RIGHT CARD
==================================================*/

.course-hero__speaker{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    padding:48px;

    border-radius:30px;

    background:rgba(255,255,255,.74);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.7);

    box-shadow:
        0 25px 60px rgba(28,57,118,.08),
        inset 0 1px 0 rgba(255,255,255,.8);

    overflow:hidden;

}

/*==================================================
Mobile Hero
==================================================*/

.course-hero__speaker-meta,
.course-hero__mobile-info{

    display:none;

}

/*==================================================
LEFT CARD
==================================================*/

.course-hero__info{

    display:flex;

    flex-direction:column;

    background:#fff;

    border-radius:28px;

    padding:22px 34px;

    border:1px solid #edf2fa;

    box-shadow:0 18px 45px rgba(31,63,125,.06);

}

.course-hero__row{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:22px 0;

}

.course-hero__row:not(:last-child){

    border-bottom:1px solid #edf2fa;

}

.course-hero__icon{

    width:42px;

    height:42px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    background:#eef5ff;

}

.course-hero__icon img{

    width:18px;

    height:18px;

}

.course-hero__text{

    flex:1;

}

.course-hero__label{

    display:flex;

    align-items:center;

    min-height:20px;

    margin-bottom:8px;

    font-size:15px;

    font-weight:700;

    letter-spacing:0;

    text-transform:none;

    color:#20314f;

}

.course-hero__value{

    font-size:20px;

    line-height:1.5;

    font-weight:400;

    color:#5b6b84;

}

.course-hero__row:nth-child(3) .course-hero__value{

    font-size:18px;

    line-height:1.6;

}

.course-hero__row:nth-child(4) .course-hero__value,

.course-hero__row:nth-child(5) .course-hero__value{

    font-size:20px;

}

@media (max-width:768px){

    .course-hero__info{

        display:none;

    }

}

@media (max-width:768px){

    .course-hero__grid{

        display:block;

    }

    /* Ховаємо ліву картку */

    .course-hero__info{

        display:none;

    }

    .course-hero__speaker{

        padding:28px 22px;

    }

    /* Місто + дата */

    .course-hero__speaker-meta{

        width:100%;

        display:flex;

        justify-content:space-between;

        align-items:center;

        padding-bottom:18px;

        margin-bottom:24px;

        border-bottom:1px solid #edf3fb;

    }

    .course-hero__speaker-item{

        display:flex;

        align-items:center;

        gap:8px;

        font-size:15px;

        font-weight:600;

        color:var(--text);

    }

    .course-hero__speaker-item img{

        width:18px;

        height:18px;

    }

    /* Нижній інформаційний блок */

    .course-hero__mobile-info{

        display:block;

        margin-top:22px;

        padding:22px;

        border-radius:22px;

        background:#fff;

        border:1px solid #edf3fb;

        box-shadow:0 12px 30px rgba(27,58,122,.06);

    }

}

/*==================================================
Grid
==================================================*/
.course-hero__grid{

    display:grid;

    grid-template-columns:380px 1fr;

    gap:40px;

    align-items:stretch;

}

@media (max-width:768px){

    .course-hero__grid{

        display:block;

    }

}

/*==================================================
Blue Background
==================================================*/

.course-hero__photo{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:flex-end;

    width:100%;

    margin-bottom:28px;

}

.course-hero__photo::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        #b9d8ff 0%,
        #d8e9ff 68%,
        transparent 100%
    );

    left:50%;

    top:-10px;

    transform:translateX(-50%);

    z-index:0;

}

.course-hero__photo::after{

    content:"";

    position:absolute;

    width:520px;

    height:300px;

    border:2px solid rgba(71,132,235,.16);

    border-radius:50%;

    left:50%;

    top:55px;

    transform:translateX(-50%) rotate(-8deg);

    z-index:0;

}

.course-hero__photo img{

    position:relative;

    z-index:2;

    width:360px;

    max-width:100%;

    height:460px;

    object-fit:contain;

    object-position:center bottom;

    display:block;

}

@media (max-width:768px){

    .course-hero__photo{

        margin-bottom:20px;

    }

    .course-hero__photo::before{

        width:260px;

        height:260px;

    }

    .course-hero__photo::after{

        width:320px;

        height:180px;

        top:40px;

    }

    .course-hero__photo img{

        width:220px;

        height:300px;

    }

}

/*==================================================
PHOTO
==================================================*/

.course-hero__photo{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:flex-end;

    width:100%;

    margin-bottom:28px;

}

.course-hero__photo::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:radial-gradient(circle,#b9d8ff 0%,#d8e9ff 68%,transparent 100%);

    top:-10px;

    left:50%;

    transform:translateX(-50%);

    z-index:0;

}

.course-hero__photo::after{

    content:"";

    position:absolute;

    width:520px;

    height:300px;

    border:2px solid rgba(71,132,235,.16);

    border-radius:50%;

    left:50%;

    top:55px;

    transform:translateX(-50%) rotate(-8deg);

    z-index:0;

}

.course-hero__photo img{

    position:relative;

    z-index:2;

    width:360px;

    max-width:100%;

    height:460px;

    object-fit:contain;

    object-position:center bottom;

    display:block;

}

/*==================================================
LECTURER
==================================================*/

.course-hero__name{

    text-align:center;

    font-size:38px;

    font-weight:700;

    line-height:1.2;

    color:#20314f;

    margin-bottom:8px;

}

.course-hero__position{

    text-align:center;

    font-size:17px;

    color:#7f8ea6;

    margin-bottom:34px;

}

/*==================================================
BUTTONS
==================================================*/

.course-hero__actions{

    width:100%;

    display:flex;

    flex-direction:column;

    gap:14px;

}

.course-hero__actions .btn{

    width:100%;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    transition:.25s;

}

.course-hero__actions .btn-primary{

    background:var(--primary);

    color:#fff;

}

.course-hero__actions .btn-primary:hover{

    transform:translateY(-2px);

}

.course-hero__actions .btn-outline{

    background:#fff;

    color:var(--primary);

    border:2px solid var(--primary);

}

.course-hero__actions .btn-outline:hover{

    background:#eef5ff;

}

/*==================================================
MOBILE
==================================================*/

@media (max-width:768px){

    .course-hero__photo{

        margin-bottom:20px;

    }

    .course-hero__photo::before{

        width:260px;

        height:260px;

    }

    .course-hero__photo::after{

        width:320px;

        height:180px;

        top:40px;

    }

    .course-hero__photo img{

        width:220px;

        height:300px;

    }

    .course-hero__name{

        font-size:30px;

    }

    .course-hero__position{

        margin-bottom:26px;

        font-size:16px;

    }

    .course-hero__actions .btn{

        height:54px;

        font-size:16px;

    }

}

/*==================================================
MOBILE INFO
==================================================*/

.course-hero__mobile-info{

    display:none;

}

@media (max-width:768px){

    .course-hero__mobile-info{

        display:block;

        margin-top:20px;

        padding:22px;

        border-radius:22px;

        background:#fff;

        border:1px solid #edf3fb;

        box-shadow:0 10px 30px rgba(27,58,122,.06);

    }

    .course-hero__mobile-address{

        display:flex;

        align-items:flex-start;

        gap:16px;

        padding-bottom:18px;

        margin-bottom:18px;

        border-bottom:1px solid #edf3fb;

    }

    .course-hero__mobile-address .course-hero__icon{

        width:52px;

        height:52px;

        min-width:52px;

    }

    .course-hero__mobile-bottom{

        display:flex;

        justify-content:space-between;

        gap:18px;

    }

    .course-hero__mobile-stat{

        flex:1;

        display:flex;

        align-items:center;

        gap:10px;

        font-size:15px;

        font-weight:600;

        color:#20314f;

    }

    .course-hero__mobile-stat img{

        width:20px;

        height:20px;

        flex-shrink:0;

    }

}


/*==================================================
COURSE PRICES
==================================================*/

.course-prices{

    position:relative;

    padding:90px 0;

    background:
        radial-gradient(circle at right top,#eef5ff 0%,transparent 40%),
        linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);

}

.course-prices .container{

    max-width:1240px;

}

.course-prices__header{

    text-align:center;

    margin-bottom:55px;

}

.course-prices__title{

    margin:0 0 18px;

    font-size:46px;

    font-weight:800;

    line-height:1.2;

    color:var(--text);

}

.course-prices__subtitle{

    max-width:760px;

    margin:0 auto;

    font-size:18px;

    line-height:1.7;

    color:#6d7f99;

}

.course-prices__grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.course-price-card{

    background:rgba(255,255,255,.74);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.7);

    border-radius:28px;

    box-shadow:
        0 25px 60px rgba(28,57,118,.08),
        inset 0 1px 0 rgba(255,255,255,.8);

    overflow:hidden;

    transition:.3s;

}

.course-price-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 35px 70px rgba(28,57,118,.12),
        inset 0 1px 0 rgba(255,255,255,.9);

}

.course-price-card__header{

    padding:28px 32px 22px;

    border-bottom:1px solid #edf3fb;

}

.course-price-card__title{

    margin:0;

    font-size:28px;

    font-weight:700;

    color:var(--primary);

}

.course-prices__grid.course-prices__grid--1{
    grid-template-columns:420px;
    justify-content:center;
}

.course-prices__grid.course-prices__grid--2{
    grid-template-columns:repeat(2,420px);
    justify-content:center;
}

.course-prices__grid.course-prices__grid--3{
    grid-template-columns:repeat(3,1fr);
}

/*==================================================
Course Prices Mobile
==================================================*/

@media (max-width:768px){

    .course-prices{

        padding:60px 0;

    }

    .course-prices__grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .course-price-card{

        width:100%;

    }

}

/*==================================================
about
==================================================*/

.course-about__header{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:22px;

}

.course-about__icon{

    width:48px;

    height:48px;

    flex-shrink:0;

    border-radius:14px;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

}

.course-about__icon img{

    width:24px;

    height:24px;

}

.course-about__title{

    margin:0;

    font-size:24px;

    font-weight:700;

    line-height:1.3;

    color:var(--text);

}
/*==================================================
Prepayment
==================================================*/

.course-prepayment{

    max-width:620px;

    margin:0 auto 40px;

    padding:28px 36px;

    text-align:center;

    background:linear-gradient(135deg,#0B5ED7,#3E8BFF);

    border-radius:24px;

    color:#fff;

    box-shadow:0 16px 36px rgba(11,94,215,.16);

}

.course-prepayment__title{

    margin:0;

    font-size:18px;

    font-weight:600;

    opacity:.9;

}

.course-prepayment__price{

    margin:12px 0;

    font-size:42px;

    font-weight:800;

    line-height:1;

}

.course-prepayment__text{

    max-width:460px;

    margin:0 auto;

    font-size:15px;

    line-height:1.6;

    opacity:.95;

}

/*==================================================
Price Cards
==================================================*/

.course-price-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-bottom:60px;

}

.course-price-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.course-price-card:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.course-price-card__title{

    margin:0 0 30px;

    padding-bottom:18px;

    border-bottom:1px solid var(--border);

    font-size:24px;

    font-weight:700;

    color:var(--primary);

}

.course-price-row{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    padding:18px 0;

    border-bottom:1px solid #edf2fa;

}

.course-price-row span{

    color:var(--text-light);

    font-size:16px;

}

.course-price-row strong{

    font-size:26px;

    font-weight:700;

    color:var(--text);

}

.course-price-date{

    margin-top:28px;

    padding-top:24px;

    border-top:2px solid #edf2fa;

    text-align:center;

}

.course-price-date span{

    display:block;

    margin-bottom:8px;

    color:var(--text-light);

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:.05em;

}

.course-price-date strong{

    display:block;

    font-size:22px;

    color:var(--primary);

}


/*==================================================
Student Note
==================================================*/

.course-price-note{

    margin-top:25px;

    padding-top:20px;

    border-top:1px solid var(--border);

    font-size:14px;

    line-height:1.7;

    color:var(--text-light);

}

.course-price-note strong{

    color:var(--text);

}

.course-price-note a{

    display:inline-block;

    margin-top:12px;

    color:var(--primary);

    font-weight:600;

    text-decoration:none;

}

.course-price-note a:hover{

    text-decoration:underline;

}


/*==================================================
Important
==================================================*/

.course-important{

    padding:40px;

    background:#f7faff;

    border-radius:24px;

    border:1px solid #e8f0fb;

}

.course-important h3{

    margin:0 0 25px;

    font-size:28px;

    color:var(--text);

}

.course-important ul{

    margin:0;

    padding-left:22px;

}

.course-important li{

    margin-bottom:16px;

    line-height:1.7;

    color:var(--text);

}

.course-important li:last-child{

    margin-bottom:0;

}


/* Кнопка */

.course-important__actions{

    margin-top:35px;

    display:flex;

    justify-content:center;

}

.course-important__actions .btn{

    min-width:340px;

    height:56px;

    border-radius:16px;

    font-size:16px;

    font-weight:700;

}

@media (max-width:768px){

    .course-hero__actions{

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:14px;

        margin-top:30px;

    }

    .course-hero__actions .btn{

        width:100%;

        max-width:320px;

        height:54px;

        font-size:16px;

    }

}


/* Mobile */

@media(max-width:768px){

    .course-important{

        padding:28px;

    }

    .course-important h3{

        font-size:24px;

    }

    .course-important__actions .btn{

        width:100%;

        min-width:0;

    }

}

/*==================================================
Help
==================================================*/

.course-help{

    margin-top:50px;

    padding:48px;

    text-align:center;

    border-radius:28px;

    background:linear-gradient(135deg,#edf5ff,#f8fbff);

    border:1px solid #dce8fa;

    box-shadow:
        0 20px 50px rgba(27,58,122,.08);

}

.course-help h3{

    margin:0 0 18px;

    font-size:34px;

    font-weight:700;

    color:var(--text);

}

.course-help p{

    max-width:720px;

    margin:0 auto;

    font-size:17px;

    line-height:1.8;

    color:var(--text-light);

}

.course-help .btn-primary{

    background:linear-gradient(135deg,#0B5ED7,#2F7DF6);

    color:#fff;

    border:none;

    box-shadow:
        0 12px 30px rgba(11,94,215,.22);

}

.course-help .btn-primary:hover{

    background:linear-gradient(135deg,#0953BE,#236FEA);

    transform:translateY(-2px);

    box-shadow:
        0 18px 40px rgba(11,94,215,.28);

}

.course-help__actions{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.course-help__actions .btn{

    min-width:240px;

    height:58px;

    border-radius:18px;

    font-size:16px;

    font-weight:700;

}

@media(max-width:768px){

    .course-help{

        margin-top:40px;

        padding:32px 24px;

    }

    .course-help h3{

        font-size:28px;

    }

    .course-help p{

        font-size:16px;

    }

    .course-help__actions{

        flex-direction:column;

    }

    .course-help__actions .btn{

        width:90%;

        min-width:0;

    }

}

/*==================================================
Final CTA
==================================================*/

.course-cta{

    margin-top:70px;

    padding:70px 50px;

    text-align:center;

    border-radius:32px;

    background:
        radial-gradient(circle at top left,#edf5ff 0%,transparent 45%),
        linear-gradient(135deg,#0B5ED7,#3E8BFF);

    color:#fff;

    overflow:hidden;

    position:relative;

    box-shadow:
        0 30px 70px rgba(11,94,215,.20);

}

.course-cta::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-260px;

    right:-180px;

}

.course-cta::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-120px;

    bottom:-140px;

}

.course-cta>*{

    position:relative;

    z-index:2;

}

.course-cta h2{

    margin:0 0 18px;

    font-size:44px;

    font-weight:800;

    line-height:1.2;

    color:#fff;

}

.course-cta p{

    max-width:720px;

    margin:0 auto;

    font-size:19px;

    line-height:1.8;

    opacity:.95;

}

.course-cta__actions{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.course-cta__actions .btn{

    min-width:240px;

    height:60px;

    border-radius:18px;

    font-size:17px;

    font-weight:700;

}

.course-cta__actions .btn-primary{

    background:#fff;

    color:var(--primary);

}

.course-cta__actions .btn-primary:hover{

    background:#f5f9ff;

}

.course-cta__actions .btn-outline{

    border:2px solid rgba(255,255,255,.45);

    color:#fff;

    background:transparent;

}

.course-cta__actions .btn-outline:hover{

    background:rgba(255,255,255,.12);

}

@media(max-width:768px){

    .course-cta{

        padding:50px 25px;

        margin-top:50px;

    }

    .course-cta h2{

        font-size:32px;

    }

    .course-cta p{

        font-size:16px;

    }

    .course-cta__actions{

        flex-direction:column;

    }

    .course-cta__actions .btn{

        width:100%;

        min-width:0;

    }

}

/*==================================================
Course About
==================================================*/

.course-about{

    padding:90px 0;

    background:
        radial-gradient(circle at left top,#eef5ff 0%,transparent 35%),
        linear-gradient(180deg,#ffffff,#f8fbff);

}

.course-about__grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

    margin-top:50px;

}

.course-about__card{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.75);

    border-radius:28px;

    padding:34px;

    box-shadow:
        0 25px 60px rgba(28,57,118,.08),
        inset 0 1px 0 rgba(255,255,255,.8);

    transition:.3s;

}

.course-about__card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 35px 70px rgba(28,57,118,.12),
        inset 0 1px 0 rgba(255,255,255,.9);

}

.course-about__icon{

    width:64px;

    height:64px;

    border-radius:18px;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:24px;

}

.course-about__icon img{

    width:30px;

    height:30px;

    display:block;

}

.course-about__card h3{

    margin:0 0 24px;

    font-size:28px;

    font-weight:700;

    color:var(--text);

}

.course-about__card ul{

    margin:0;

    padding:0;

    list-style:none;

}

.course-about__card li{

    position:relative;

    padding-left:24px;

    margin-bottom:16px;

    line-height:1.7;

    color:var(--text);

}

.course-about__card li:last-child{

    margin-bottom:0;

}

.course-about__card li::before{

    content:"";

    position:absolute;

    left:0;

    top:11px;

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--primary);

}

.course-about__card p{

    margin:0 0 16px;

    line-height:1.8;

    color:var(--text);

}

.course-about__card p:last-child{

    margin-bottom:0;

}

@media(max-width:768px){

    .course-about{

        padding:60px 0;

    }

    .course-about__grid{

        grid-template-columns:1fr;

        gap:20px;

        margin-top:35px;

    }

    .course-about__card{

        padding:26px;

    }

    .course-about__icon{

        width:56px;

        height:56px;

        margin-bottom:20px;

    }

    .course-about__icon img{

        width:26px;

        height:26px;

    }

    .course-about__card h3{

        font-size:24px;

        margin-bottom:18px;

    }

}

@media(max-width:768px){

    .course-program{

        padding:60px 0;

    }

    .course-program__grid{

        gap:20px;

        margin-top:35px;

    }

    .course-program__card{

        padding:28px;

    }

    .course-program__number{

        font-size:48px;

        right:20px;

        top:18px;

    }

    .course-program__title{

        font-size:24px;

        padding-right:55px;

        margin-bottom:20px;

    }

}

.course-preparation__content{

    padding-left:20px;

}

/*==================================================
Course Program
==================================================*/

.course-program{

    padding:90px 0;

    background:
        radial-gradient(circle at right top,#eef5ff 0%,transparent 35%),
        linear-gradient(180deg,#ffffff,#f8fbff);

}

.course-program__grid{

    display:grid;

    grid-template-columns:1fr 320px;

    gap:35px;

    align-items:start;

}

/*==================================================
Program Card
==================================================*/

.course-program__card{

    padding:42px;

    background:#fff;

    border-radius:30px;

    border:1px solid #e8eef8;

    box-shadow:0 20px 55px rgba(20,45,95,.06);

}

.course-program__card h3{

    margin:0 0 24px;

    font-size:28px;

    font-weight:700;

    color:var(--primary);

}

.course-program__card h3:not(:first-child){

    margin-top:45px;

}

.course-program__card ul{

    margin:0;

    padding:0;

    list-style:none;

}

.course-program__card li{

    position:relative;

    padding-left:36px;

    margin-bottom:18px;

    font-size:17px;

    line-height:1.8;

    color:var(--text);

}

.course-program__card li:last-child{

    margin-bottom:0;

}

.course-program__card li::before{

    content:"";

    position:absolute;

    left:0;

    top:8px;

    width:18px;

    height:18px;

    background:url("/assets/public/icons/check.svg") center/contain no-repeat;

}

/*==================================================
Timeline
==================================================*/

.course-timeline{

    position:sticky;

    top:120px;

    padding:35px;

    background:#fff;

    border-radius:30px;

    border:1px solid #e8eef8;

    box-shadow:0 20px 55px rgba(20,45,95,.06);

}

.course-timeline h3{

    margin:0 0 30px;

    text-align:center;

    font-size:26px;

    color:var(--primary);

}

.course-timeline__item{

    position:relative;

    padding-left:28px;

    padding-bottom:24px;

    border-left:2px solid #d9e8ff;

}

.course-timeline__item:last-child{

    padding-bottom:0;

    border-left:none;

}

.course-timeline__item::before{

    content:"";

    position:absolute;

    left:-7px;

    top:4px;

    width:12px;

    height:12px;

    border-radius:50%;

    background:var(--primary);

}

.course-timeline__item span{

    display:block;

    margin-bottom:4px;

    font-size:14px;

    font-weight:700;

    color:#7b8da8;

}

.course-timeline__item strong{

    display:block;

    font-size:17px;

    font-weight:600;

    color:var(--text);

}

/*==================================================
Responsive
==================================================*/

@media(max-width:992px){

    .course-program{

        padding:60px 0;

    }

    .course-program__grid{

        grid-template-columns:1fr;

    }

    .course-timeline{

        position:static;

    }

}

@media(max-width:768px){

    .course-program__card{

        padding:28px;

    }

    .course-program__card h3{

        font-size:24px;

    }

    .course-program__card li{

        font-size:16px;

        line-height:1.7;

    }

    .course-timeline{

        padding:28px;

    }

}



.course-program__content li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:16px;

    line-height:1.7;

}

.course-program__content li img{

    width:18px;

    height:18px;

    margin-top:4px;

    flex-shrink:0;

}

.course-program__content li span{

    flex:1;

}

/*==================================================
Course Preparation
==================================================*/

.course-preparation{

    padding:90px 0;

    background:
        radial-gradient(circle at left top,#eef5ff 0%,transparent 35%),
        linear-gradient(180deg,#ffffff,#f8fbff);

}

.course-preparation__card{

    display:grid;

    grid-template-columns:200px 1fr;

    gap:50px;

    align-items:start;

    padding:42px;

    background:#fff;

    border-radius:30px;

    border:1px solid #e9f0fb;

    box-shadow:0 20px 50px rgba(20,45,95,.06);

}

.course-preparation__icon{

    width:200px;

    height:200px;

    border-radius:24px;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.course-preparation__icon img{

    width:200px;

    height:200px;

    object-fit:contain;

    display:block;
    border-radius:24px;
    overflow:hidden;
    background:#eef5ff;

}

.course-preparation__icon img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

.course-preparation__content p{

    margin:0 0 22px;

    font-size:18px;

    line-height:1.8;

    color:var(--text);

}

.course-preparation__content p:last-child{

    margin-bottom:0;

}

.course-preparation__content ul{

    margin:0;

    padding:0;

    list-style:none;

}

.course-preparation__content li{

    position:relative;

    padding-left:34px;

    margin-bottom:18px;

    font-size:18px;

    line-height:1.8;

    color:var(--text);

}

.course-preparation__content li:last-child{

    margin-bottom:0;

}

.course-preparation__content li::before{

    content:"";

    position:absolute;

    left:0;

    top:8px;

    width:18px;

    height:18px;

    background:url("/assets/public/icons/check.svg") center/contain no-repeat;

}

.course-preparation__content strong{

    color:var(--primary);

}

@media (max-width:768px){

    .course-preparation{

        padding:60px 0;

    }

    .course-preparation__card{

        grid-template-columns:1fr;

        gap:24px;

        padding:28px;

    }

    .course-preparation__icon{

        width:80px;

        height:80px;

    }

    .course-preparation__icon img{

        width:48px;

        height:48px;

    }

    .course-preparation__content p,
    .course-preparation__content li{

        font-size:16px;

        line-height:1.7;

    }

}

/*==================================================
COURSE CATEGORY HERO
==================================================*/

.course-category-hero{

    padding:90px 0 70px;

    background:
        radial-gradient(circle at top right,#eef5ff 0%,transparent 45%),
        linear-gradient(180deg,#fff 0%,#f8fbff 100%);

}

.course-category-hero__inner{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.course-category-hero__label{

    display:inline-flex;

    padding:10px 18px;

    margin-bottom:22px;

    border-radius:100px;

    background:#eaf3ff;

    color:#0B5ED7;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.course-category-hero__title{

    margin:0 0 24px;

    font-size:54px;

    line-height:1.15;

    font-weight:800;

    color:#101757;

}

.course-category-hero__text{

    font-size:20px;

    line-height:1.8;

    color:#6d7f99;

    margin-bottom:40px;

}

.course-category-hero__buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.course-category-hero__image img{

    width:100%;

    border-radius:28px;

    display:block;

    box-shadow:0 30px 70px rgba(16,23,87,.12);

}

@media (max-width:991px){

    .course-category-hero{

        padding:70px 0 50px;

    }

    .course-category-hero__inner{

        grid-template-columns:1fr;

        gap:40px;

        text-align:center;

    }

    .course-category-hero__buttons{

        justify-content:center;

    }

    .course-category-hero__title{

        font-size:40px;

    }

    .course-category-hero__text{

        font-size:18px;

    }

}

@media (max-width:768px){

    .course-category-hero{

        padding:50px 0 40px;

    }

    .course-category-hero__title{

        font-size:32px;

    }

    .course-category-hero__text{

        font-size:17px;

        line-height:1.7;

    }

    .course-category-hero__buttons{

        flex-direction:column;

    }

    .course-category-hero__buttons .btn{

        width:100%;

    }

}

.course-hero--single .course-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

/*==================================================
SCHEDULE
==================================================*/

.schedule-list{

    margin-top:40px;

}

.schedule-list__head,
.schedule-row{

    display:grid;

    grid-template-columns:
        140px
        180px
        1fr
        180px
        150px;

    gap:25px;

    align-items:center;

}

.schedule-list__head{

    padding:0 25px 18px;

    font-size:14px;

    font-weight:700;

    color:#7d8ba3;

    text-transform:uppercase;

    letter-spacing:.05em;

}

.schedule-row{

    padding:24px 25px;

    border-top:1px solid #edf3fb;

    transition:.25s;

}

.schedule-row:hover{

    background:#f8fbff;

}

.schedule-row__date{

    font-weight:700;

    color:#101757;

}

.schedule-row__city{

    color:#5f708c;

}

.schedule-row__course{

    font-size:20px;

    font-weight:700;

    color:#101757;

}

.schedule-row__lecturer{

    color:#5f708c;

}

.schedule-row__action{

    text-align:right;

}

.schedule-row__link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-weight:700;

    color:#0B5ED7;

    text-decoration:none;

    transition:.25s;

}

.schedule-row__link:hover{

    color:#084298;

}

.schedule-row__link svg{

    transition:.25s;

}

.schedule-row__link:hover svg{

    transform:translateX(5px);

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

    .schedule-list__head{

        display:none;

    }

    .schedule-row{

        display:block;

        padding:24px;

        margin-bottom:18px;

        border:1px solid #edf3fb;

        border-radius:20px;

        background:#fff;

        box-shadow:0 12px 35px rgba(16,38,84,.05);

    }

    .schedule-row__date{

        margin-bottom:15px;

        color:#0B5ED7;

    }

    .schedule-row__course{

        margin-bottom:18px;

        font-size:22px;

        line-height:1.35;

    }

    .schedule-row__city{

        margin-bottom:10px;

    }

    .schedule-row__lecturer{

        margin-bottom:20px;

    }

    .schedule-row__action{

        text-align:left;

    }

}

/*==================================================
SCHEDULE TABS
==================================================*/

.schedule{

    margin-top:50px;

}

.schedule-tabs{

    display:flex;

    gap:12px;

    margin-bottom:35px;

}

.schedule-tab{

    padding:14px 26px;

    border:none;

    border-radius:14px;

    background:#eef4fd;

    color:#5f708c;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.schedule-tab:hover{

    background:#dfeafb;

}

.schedule-tab.active{

    background:#0B5ED7;

    color:#fff;

}

.schedule-content{

    display:none;

}

.schedule-content.active{

    display:block;

}

@media(max-width:768px){

    .schedule-tabs{

        overflow-x:auto;

        flex-wrap:nowrap;

        padding-bottom:10px;

    }

    .schedule-tab{

        white-space:nowrap;

        flex:0 0 auto;

    }

}