@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --white: rgb(246, 246, 246);
    --grey: rgb(120, 122, 122);
    
}

/* <<<<<<<<<<<<<<<<<<<< header >>>>>>>>>>>>>>>>>>>>>>>> */

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: rgb(255, 255, 255);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    width: 80%;
}

@media screen and (max-width: 450px) {
    .header-container {
        height: 120px;
    }
}

@media screen and (max-width: 800px) {
    .header-container {
        width: 90%;
    }
}

.header-container img {
    width: 600px;
    height: auto;
    margin: auto;
}

@media screen and (max-width: 700px) {
    .header-container img {
        width: 90%;
        height: auto;
    }
}

/* <<<<<<<<<<<<<<<<<<<< Nav >>>>>>>>>>>>>>>>>>>>>>>>
responsiveness

*/

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: aliceblue;
    z-index: 8;
}

.nav-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 90%;
    z-index: 10;
}

.menu-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: 70%;
}

@media screen and (max-width: 900px) {
    .menu-list {
        width: 80%;
    }
}

@media screen and (max-width: 700px) {
    .menu-list {
        width: 90%;
    }
}

@media screen and (max-width: 700px) {
    .nav-container {
        width: 100%;
    }
    .menu-list {
        display: none;
    }
}

.menu-list li {
    display: flex;
}

.menu-list li a {
    color: #064479;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

/* <<<<<<<<<<<<<<<<<<<< Burger Menu >>>>>>>>>>>>>>>>>>>>>>>> */

.burger {
    display: none;
    cursor: pointer;
    border-style: solid;
    border-color: #A1AEB1;
    border-width: 2px;
    border-radius: 3px;
    width: auto;
    height: 40px;
}

.bar{
    display: block;
    width: 30px;
    height: 3px;
    margin: 0px 6px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #a1aeb1;
}

.nav-menu {
    display: none;
    z-index: 1;
}

.nav-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 16px 0;
    list-style: none;
}

.nav-item {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin: 16px 0;
}

.nav-link {
    transition: 0.3s ease-out;
    color: #ffffff;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #d5d5d5;
}

@media(max-width: 700px) {
    .burger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        flex-direction: column;
    }
    .burger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .burger.active .bar:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    .burger.active .bar:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

    .nav-menu {
        position: absolute;
        display: none;
        justify-content: space-between;
        align-items: center;
        top: -60px;
        gap: 0;
        background-color: #a1aeb1f1;
        width: 100%;
        text-align: center;
        height: auto;
    }

    .nav-menu.active {
        top: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        /*-webkit-transition: all 3.3s ease-in;
        transition: all 3.3s ease-in;*/
        
    }
}


/* <<<<<<<<<<<<<<<<<<<< Hero >>>>>>>>>>>>>>>>>>>>>>>> */

.Section1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: rgb(255, 255, 255);
}

.Section1-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.img-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    
}

.img-banner img {
    width: 100%;
    height: auto;
    border-color: aliceblue;
    border-radius: 10px 0px;
    border-width: 1px;
}

/* <<<<<<<<<<<<<<<<<<<< About  >>>>>>>>>>>>>>>>>>>>>>>> */

.about {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: aliceblue;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
}

@media screen and (max-width: 900px) {
    .about {
        border-bottom-left-radius: 80px;
        border-bottom-right-radius: 80px;
    }
}

@media screen and (max-width: 600px) {
    .about {
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
}

.about-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 90%;
    height: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.about-text-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 90%;
    height: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 5px;
}

@media screen and (max-width: 800px) {
    .about-text-container {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 420px) {
    .about-text-container {
        margin-top: 20px;
        margin-bottom: 30px;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    width: 50%;
    height: auto;
    
}

@media screen and (max-width: 800px) {
    .about-text {
        width: 90%;
    }
}

.about-text h1 {
    font-size: 30px;
    font-family: 'PT Sans', sans-serif;
    color: #414042;
    text-align: left;
    margin-bottom: 40px;
}

.about-text h2 {
    font-size: 18px;
    text-align: left;
    font-family: 'PT Sans', sans-serif;
    color: #064479;
    line-height: 1.4em;
}


@media screen and (max-width: 420px) {
    .about-text h1 {
        font-size: 28px;
    }
    .about-text h2 {
        font-size: 16px;
    }
}


/* >>>>>>>>>>>>>>>>>>> Carousel <<<<<<<<<<<<<<<<<<<< */


.carousel {
    display: flex;
    flex-direction: center;
    justify-content: center;
    width: 50%;
    height: auto;
    overflow: hidden;
}

.carousel img{
    width: 90%;
    height: 300px;
    border-radius: 10px;
}

@media screen and (max-width: 800px) {
    .carousel {
        width: 100%;
        margin-top: 50px;
    }
}


/* <<<<<<<<<<<<<<<<<<<< Courses  >>>>>>>>>>>>>>>>>>>>>>>> */

.courses {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.courses-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 90%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}


/* <<<<<<<<<<<<<<<<<<<< Prices  >>>>>>>>>>>>>>>>>>>>>>>> */

.cost {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.cost-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 90%;
    height: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.cost-text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    max-width: 1400px;
    width: 90%;
    height: auto;
    margin-bottom: 40px;
}

.cost-text-container h1 {
    font-size: 30px;
    font-family: 'PT Sans', sans-serif;
    color: #414042;
    text-align: left;
    margin-bottom: 40px;
}

.cost-text-container h2 {
    font-size: 20px;
    text-align: left;
    font-family: 'PT Sans', sans-serif;
    color: #064479;
    line-height: 1.4em;
}

.cost-text-container h3 {
    font-size: 18px;
    text-align: left;
    font-family: 'PT Sans', sans-serif;
    color: #064479;
    line-height: 1.4em;
    margin-top: 20px;
}

.cost-text-container ul {
    
    font-size: 18px;
    text-align: left;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    color: #064479;
    line-height: 1.4em;
    margin-left: 20px;
    margin-top: 20px;
}

.cost-text-container ul li{
    font-size: 18px;
    text-align: left;
    font-family: 'PT Sans', sans-serif;
    color: #064479;
    line-height: 1.4em;
    margin-top: 10px;
}

.mock {
    margin-top: 10px;
}

.cost-card-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 90%;
    height: auto;
    margin-top: 20px;
}

@media screen and (max-width: 800px) {
    .cost-card-container{
        flex-direction: column;
        width: 100%;
    }
}

.cost-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 49%;
    height: 260px;
    border-radius: 10px;
    border-width: 6px;
    background-color: #ffffff;
}

@media screen and (max-width: 500px) {
    .cost-card {
        border-width: 4px;
    }
}

@media screen and (max-width: 800px) {
    .cost-card {
        width: 100%;
    }
}

#green {
    border-style: solid;
    border-color: #39b54ab7;
    
}

@media screen and (max-width: 800px) {
    #green {
        margin-bottom: 40px;
    }
}

#yellow {
    border-style: solid;
    border-color: #ffca0b;
}

#red {
    border-style: solid;
    border-color: #ed1c24b7;
}

@media screen and (max-width: 800px) {
    #red {
        margin-bottom: 40px;
    }
}

#blue {
    border-style: solid;
    border-color: #27a9e1b7;
}

.cost-card-text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: left;
    width: 90%;
    height: 90%;
}

.cost-card-text h1 {
    font-size: 24px;
    font-family: 'PT Sans', sans-serif;
    color: #064479;
    text-align: left;
    margin-top: 10px;

}

.cost-card-text h3 {
    font-size: 17px;
    text-align: left;
    font-family: 'PT Sans', sans-serif;
    color: #064479;
    line-height: 1.2em;
}

.cost-card-text h2 {
    font-size: 18px;
    text-align: left;
    font-family: 'PT Sans', sans-serif;
    color: #064479;
}

.cost-text-container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 90%;
    height: auto;
    margin-top: 50px;
}

.cost-text-container2 h2 {
    font-size: 18px;
    text-align: left;
    font-family: 'PT Sans', sans-serif;
    color: #064479;
    line-height: 1.4em;
}


/* <<<<<<<<<<<<<<<<<<<< Schedule >>>>>>>>>>>>>>>>>>>>>>>> */

.schedule {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
}

.schedule-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 90%;
    height: auto;
    margin-top: 40px;
    margin-bottom: 80px;
    background-color: aliceblue;
    border-radius: 40px;

}

.schedule-text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    max-width: 1400px;
    width: 90%;
    height: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

.schedule-container h1 {
    font-size: 30px;
    font-family: 'PT Sans', sans-serif;
    color: #414042;
    text-align: left;
}


.weekly-schedule {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    height: auto;
    margin-top: 10px;
}

@media screen and (max-width: 1200px) {
    .weekly-schedule {
        justify-content: flex-start;
    }
}

.day-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 13%;
    min-width: 128px;
    max-width: 150px;
    margin: 5px;
    height: auto;
}

.day {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    background-color: #064479;
}

.day h2 {
    font-size: 18px;
    font-family: 'PT Sans', sans-serif;
    color: aliceblue;
}

.times {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    min-height: 50px;
    padding: 10px;
    height: auto;
    background-color: rgb(220, 220, 220);
}

.times h5 {
    font-size: 16px;
    font-family: 'PT Sans', sans-serif;
    margin: 5px;
    color: #064479;
}

.schedule-container h3 {
    font-size: 16px;
    font-family: 'PT Sans', sans-serif;
    font-weight: bold ;
    color: #064479;
    width: 90%;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 40px;
    text-decoration: none;
}

/* <<<<<<<<<<<<<<<<<<<< Contact >>>>>>>>>>>>>>>>>>>>>>>> */

.contact {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;

}

.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 90%;
    height: auto;
    margin-bottom: 40px;
}

.contact-text-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 90%;
    height: auto;
    margin-bottom: 40px;
    border-radius: 5px;
}

@media screen and (max-width: 800px) {
    .contact-text-container {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 420px) {
    .contact-text-container {
        margin-top: 20px;
        margin-bottom: 30px;
    }
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    width: 30%;
    height: 300px;
    
}

@media screen and (max-width: 800px) {
    .contact-text {
        width: 90%;
    }
}

.contact-text h1 {
    font-size: 30px;
    font-family: 'PT Sans', sans-serif;
    color: #414042;
    text-align: left;
    margin-bottom: 40px;
}

@media screen and (max-width: 420px) {
    .contact-text h1 {
        font-size: 28px;
    }
}

.info-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: 60px;
}

.info-text img {
    width: 30px;
    height: auto;
    margin-right: 20px;
}

.info-text h5{
    font-size: 16px;
    font-family: 'PT Sans', sans-serif;
    color: #064479;
    text-decoration: none;
}

.contact-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: auto;
}

@media screen and (max-width: 1000px) {
    .contact-img {
        width: 50%;
    }
}

@media screen and (max-width: 800px) {
    .contact-img {
        width: 90%;
        margin-top: 40px;
    }
}

@media screen and (max-width: 480px) {
    .contact-img {
        width: 100%;
    }
}

.contact-img iframe{
    width: 100%;
    height: 300px;
    border-radius: 10px;
}


/* >>>>>>>>>>>>>>>>>>> Footer <<<<<<<<<<<<<<<<<<<< */


.footer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: aliceblue;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    width: 90%;
    height: 60px;
}

.footer-container h5 {
    font-size: 14px;
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    color: #064479;
}