@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    font-family: "Nunito", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .2s linear;

}


html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
    background-color: #0b1530;
}

nav {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.99);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(95, 11, 163, 0.15);
    z-index: 9999;
}

nav .logo {
    font-size: 2.5rem;
    font-family: Nunito;
    font-weight: 800;
    color: #0b1530;

}

/* navbar */

nav img {
    width: 130px;

    cursor: pointer;
}

.navbar ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;

}

.navbar ul li {
    list-style: none;
    margin-left: 30px;
}

.navbar ul li a {
    text-decoration: none;
    color: #0b1530;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;

}

.navbar ul li a:hover {
    color: #FC6D6D;
}

#course {
    padding: 8vw 8vw 8vw 8vw;
    text-align: center;
}

#course .course-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
}

#course h1{
    color: white;
    font-size: 5rem;
}

#course .courses {
    text-align: start;
    background: #F9F9FF;
    height: 100%;
    position: relative;
}

#course .courses img {
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;
}

#course .courses .details {
    padding: 15px 15px 0 15px;
}

#course .courses .details i {
    color: #FDC93B;
    font-size: .9rem;
}

#course .courses .cost {
    background-color: rgb(74, 74, 136);
    color: #fff;
    line-height: 70px;
    width: 70px;
    height: 70px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    bottom: 100px;
}