/*
    COLORS

    */
:root {
    --primary-color: #2015ff;
}


/*
    COLORS

    */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@200;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto';
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container-fluid {
    width: 100%;
}

body {
    font-family: 'Roboto';

}

.row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.column {
    flex: 1;
}

.col-two-thirds {
    flex: 2;
}


.col-two-fifth {
    flex: 5;
}


.flex-container-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-container-row {
    width: auto;
}

h2 {
    color: var(--primary-color);
}

/*
    BUTTONS

    */
.secondary-button {
    width: 200px;
    height: 50px;
    border: 2px solid var(--primary-color);
    color: #0466C8;
    background-color: white;
    margin-right: 20px;
}

.primary-button {
    width: 200px;
    height: 50px;
    background-color: #0466C8;
    border: none;
    color: white;
    margin-right: 20px;
    margin-top: 20px;

}

.primary-button-small {
    width: 200px;
    height: 40px;
    background-color: var(--primary-color);
    ;
    border: none;
    color: white;
    border-radius: 5px;
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 10px;

}

/*
    FORMS
*/
input {
    width: 287px;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #D6D6D6;
    padding: 9px;
    margin-top: 10px;
    margin-bottom: 10px;



}

input:focus-visible {
    outline-color: #d6d6d6;
}

.text-center {
    text-align: center;
}



/*FORMS*/

.primary-button-small a {
    color: white;
    font-weight: 700;

}

.primary-button-small a:hover {
    color: white;
}

/*
    BUTTONS
*/


/*
    TYPOGRAPHY

    */

.list-unstyled {
    list-style: none;
    padding: 0;

}

.link-unstyled {
    text-decoration: none;

}

/* COURSE */
.course-image {
    width: 350px;
}

/* COURSE */

/*
TYPOGRAPHY

*/


@media only screen and (max-width: 768px) {
    .small-text {
        font-size: 22px;

    }

    .container {
        margin: 0 10px;
    }

    .row {
        flex-wrap: wrap;
    }

    .column {
        flex-basis: 100%;

    }
}


.course-description {
    line-height: 1.7;

}

.instructor-name {
    font-weight: bold;
    margin: 10px 12px;
}

.inline li {
    display: inline;
    margin-right: 15px;
}