@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    letter-spacing: -1px;
}

body{
    background-color: #fcfcfc;
}

.header-section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 3rem;
}

.logo-container{
    width: 86px;
    height: 48px;
}

.logo-container img{
    width: 100%;
    height: 100%;
}

.course-details-section{
    width: 94%;
    height: auto;
    background-color: white;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e3e3e3;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    
}

.title-and-date-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    row-gap: 0.5rem;
}

.title-container{
    width: fit-content;
    height: auto;
}

.title-container h1{
    font-size: 2rem;
    font-weight: 400;
    color: #2E2E2E;
}

.date-and-time-container{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    background-color: #FCFBFE;
    padding: 0.5rem 1rem;
    border-radius: 100rem;
    border: 1px solid #E0D7F6;
    column-gap: 1.5rem;
}

.date-container{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    column-gap: 0.25rem;
}

.date-container img{
    width: 20px;
    height: 20px;
}

.date-container p{
    color: #765DB2;
    font-size: 0.9rem;
    font-weight: 500;
}

.time-container{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    column-gap: 0.25rem;
}

.time-container p{
    color: #765DB2;
    font-size: 0.9rem;
    font-weight: 500;
}

.description-and-price-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    row-gap: 0.25rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.description-container{
    width: fit-content;
    height: auto;
}

.description-container p{
    font-size: 1.1rem;
    color: #717171;
    line-height : 32px;
}

.price-container{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    column-gap: 0.5rem;
}

.dollar-price{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: baseline;
    padding: 0.5rem 0.5rem 0.5rem 0;
    
}

.dollar-price h1{
    font-size: 1.3rem;
    color: #0B541B;
    font-weight: 400;
}

.dollar-price p{
    font-size: 0.85rem;
    color: #529824;
}

.naira-price{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: baseline;
    padding: 0.5rem;
    border-left: 1px solid #c3c3c3;
}

.naira-price h1{
    font-size: 1.3rem;
    color: #0B541B;
    font-weight: 400;
}

.naira-price p{
    font-size: 0.85rem;
    color: #529824;
}

.payment-buttons-container{
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    column-gap: 0.85rem;
}

.payment-buttons-container button{
    background-color: #5D18FF;
    color: white;
    font-weight: 500;
    padding: 1rem 1.2rem;
    letter-spacing: 0px;
    font-size: 1.1rem;
    border: none;
    outline: none;
    border-radius: 8px;
    cursor: pointer;
}

.note-and-curriculum-container{
    width: 100%;
    height: auto;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    row-gap: 1rem;
}

.note-container{
    width: fit-content;
    height: auto;
}

.note-container h1{
    font-size: 1.1rem;
    font-weight: 600;
    color: #2E2E2E;
}

.note-container p{
    color: #717171;
    line-height: 24px;
}

.note-and-curriculum-container button{
    background-color: #EFEFEF;
    color: #071001;
    border-radius: 1000rem;
    padding: 1rem;
    border: none;
    outline: none;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1.1rem;
}

@media screen and (max-width: 1140px){
    .course-details-section{
        width:99%;
        height: auto;
        background-color: white;
        margin: 0 auto;
        padding: 0.5rem;
        border-radius: 1rem;
        border: 1px solid #e3e3e3;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        
    }

    .note-and-curriculum-container{
        padding: 1rem;
        margin-top: 3rem;
    }

    .date-and-time-container{
        width: fit-content;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        background-color: #FCFBFE;
        padding: 0.5rem 0.5rem;
        border-radius: 100rem;
        border: 1px solid #E0D7F6;
        column-gap: 0.5rem;
    }

    .header-section{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 3rem 0.5rem;
    }

    
}