/* =========================================
GLOBAL
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f5f5f5;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
}

/* =========================================
BANNER
========================================= */

.banner{

    height:350px;

    padding-top:85px;

    background:
    linear-gradient(
    rgba(0,20,70,.9),
    rgba(0,20,70,.9)
    ),

    url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?q=80&w=1600');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

}

.banner-content{

    margin-top:50px;

}

.banner h4{

    color:#ffc107;

    font-size:20px;

    margin-bottom:10px;

    line-height:1.7;

}

.banner h1{

    font-size:65px;

    margin-bottom:10px;

    font-weight:800;

}

.banner p{

    font-size:20px;

}

.banner span{

    color:#ffc107;

    font-weight:600;

}

/* =========================================
SCHEDULE SECTION
========================================= */

.schedule-section{

    padding:80px 5%;

}

.title{

    text-align:center;

    font-size:42px;

    color:#021845;

    margin-bottom:50px;

    font-weight:800;

}

.line{

    width:70px;
    height:4px;

    background:#ffc107;

    margin:15px auto;

}

/* =========================================
LAYOUT
========================================= */

.wrapper{

    display:grid;

    grid-template-columns:3fr 1fr;

    gap:30px;

}

.days{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

/* =========================================
DAY CARD
========================================= */

.day-card{

    background:white;

    padding:20px;

    border-radius:22px;

    box-shadow:0 5px 20px rgba(0,0,0,.1);

    transition:.4s;

}

.day-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.day-header{

    background:#021845;

    color:white;

    padding:16px;

    text-align:center;

    border-radius:40px;

    font-weight:bold;

    margin-bottom:20px;

    font-size:18px;

}

.day-header i{

    margin-right:8px;

    color:#ffc107;

}

/* =========================================
TABLE
========================================= */

table{

    width:100%;

    border-collapse:collapse;

}

th{

    background:#edf1f7;

    padding:15px;

    color:#021845;

    font-size:16px;

    font-weight:700;

}

td{

    padding:18px;

    border-bottom:1px solid #eee;

    vertical-align:top;

}

tr:last-child td{

    border-bottom:none;

}

/* =========================================
SESSION
========================================= */

.session{

    display:flex;

    align-items:flex-start;

    gap:15px;

}

.session b{

    color:#021845;

    display:block;

    margin-bottom:5px;

}

.session p{

    color:#666;

    line-height:1.7;

    font-size:14px;

}

/* =========================================
ICONS
========================================= */

.icon{

    min-width:45px;

    width:45px;
    height:45px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;

    font-size:18px;

}

.pink{
    background:#ff4081;
}

.blue{
    background:#3498db;
}

.orange{
    background:#f39c12;
}

.green{
    background:#27ae60;
}

.purple{
    background:#8e44ad;
}

/* =========================================
RIGHT SIDEBAR
========================================= */

.side-box{

    background:#021845;

    padding:30px;

    color:white;

    border-radius:22px;

    margin-bottom:20px;

    box-shadow:0 5px 20px rgba(0,0,0,.1);

    transition:.4s;

}

.side-box:hover{

    transform:translateY(-5px);

}

.side-box h3{

    color:#ffc107;

    margin-bottom:20px;

    font-size:22px;

    display:flex;
    align-items:center;

    gap:10px;

}

.side-box p{

    line-height:1.9;

    margin-bottom:20px;

    font-size:16px;

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1400px){

    .days{

        grid-template-columns:1fr;

    }

}

@media(max-width:991px){

    .wrapper{

        grid-template-columns:1fr;

    }

    .banner{

        height:auto;

        padding:140px 20px 70px;

    }

    .banner-content{

        margin-top:0;

    }

    .banner h1{

        font-size:42px;

    }

    .banner h4{

        font-size:18px;

    }

    .title{

        font-size:34px;

    }

}

@media(max-width:576px){

    .banner h1{

        font-size:32px;

    }

    .banner h4{

        font-size:16px;

        line-height:1.8;

    }

    .banner p{

        font-size:16px;

    }

    .title{

        font-size:28px;

    }

    .day-header{

        font-size:16px;

    }

    th,
    td{

        padding:14px;

    }

    .session{

        gap:10px;

    }

    .icon{

        width:40px;
        height:40px;

        min-width:40px;

        font-size:15px;

    }

    .side-box{

        padding:25px;

    }

}