@import url('https://fonts.googleapis.com/css2?family=Dosis&family=Oswald&display=swap');
* {
    margin: 0px;
    padding: 0px;
    font-family: 'Dosis', sans-serif;
    font-weight: 500;
}

body {
    background-color: #DCDCDC;
}

.homeBanner {
    height: 100vh;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
}

.homebannerPart1 {
    flex-grow: 1;
    height: 100%;
}

.nav_button span {
    background-color: #338EFF;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E1E1E1;
    border-radius: 50px 50px 0px 50px;
    cursor: pointer;
    font-size: 20px;
}

.nav_button {
    position: relative;
}

.nav_button .nav_box {
    position: absolute;
    background-color: #338EFF;
    border-radius: 15px;
    padding: 15px;
    right: 0px;
    top: 70px;
    color: #E1E1E1;
    font-weight: 500;
    font-size: 20px;
    width: 175px;
}

.nav_button .nav_box ul {
    list-style: none;
    margin: 0px;
}

.nav_button .nav_box ul li {
    padding: 10px 0px;
    margin: 0px;
    text-align: right;
}

.nav_button .nav_box ul li a {
    padding: 0px;
    margin: 0px;
    text-decoration: none;
    color: #E1E1E1;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav_button .nav_box ul li a:hover {
    padding: 0px;
    margin: 0px;
    text-decoration: none;
    color: rgb(214, 235, 255);
}

.nav_logo img {
    height: 50px;
}

.nav_section {
    position: fixed;
    width: 100%;
    z-index: 5;
    background-color: #E1E1E1;
    box-shadow: 2px 2px 15px #cacaca;
}

.main_banner_slider h1 {
    font-size: 60px;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.main_banner_slider h1 span {
    display: block;
    font-size: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: #338EFF;
}

.main_banner_slider h2 {
    display: block;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 800;
    color: #338EFF;
}

.main_banner_slider h4 {
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.btn-primary {
    background-color: #338EFF;
    outline: #338EFF;
    border: #338EFF;
}

.courseCard {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 3px 3px 8px #505050;
    padding: 10px 0px;
}


/* .courseCard::before {
    content: '';
    position: absolute;
    background-color: #fff;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
} */

.courseCard h1 {
    padding: 0px 30px;
    color: #338EFF;
    font-weight: bolder;
    font-size: 35px;
}

.courseCard h2 {
    padding: 0px 30px;
    font-weight: bolder;
    font-size: 15px;
    color: #000;
    margin-bottom: 5px;
}

.courseCard p {
    padding: 0px 30px;
    font-weight: light;
    font-size: 12px;
    color: #afafaf;
    margin-bottom: 8px;
}

.courseA {
    text-decoration: none;
}

.courseA:hover {
    transform: scale(2, 2);
}

.courseCard img {
    width: 100%;
}

.text-primary {
    color: #338EFF !important;
}

.footerElement {
    border-top: 2px solid #ebebeb;
    padding: 25px 0px;
    width: 100%;
    color: #aaaaaa;
}

.footerElement a,
.footerElement a i {
    color: #aaaaaa;
}

#footer {
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #ffffff;
}

.footerQuickLink h3 {
    font-weight: 700;
    font-size: 24px;
    color: rgb(0, 0, 0);
}

.footerQuickLink h3 span {
    font-weight: 700;
    font-size: 24px;
    color: #338EFF;
}

.footerQuickLink ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footerQuickLink p {
    color: #aaaaaa;
    line-height: 170%;
    font-weight: 500;
}

.footerQuickLink ul li {
    padding: 4px 0px;
}

.footerQuickLink ul li a {
    color: #aaaaaa;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
}

@media screen and (max-width: 1080px) {
    .nav_logo img {
        height: 30px;
        align-items: center;
    }
    .homeBanner {
        height: auto;
    }
}

@media screen and (max-width: 780px) {
    .nav_logo img {
        height: 30px;
        align-items: center;
    }
    .homeBanner {
        height: auto;
    }
}