@import url("https://cdn.jsdelivr.net/npm/@xz/fonts@1/serve/metropolis.min.css");

*, 
*::before, 
*::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    letter-spacing: -10;
}

body{
    overflow-x: hidden;
    font-family: 'Metropolis', sans-serif;
    font-weight: 500;
    scroll-behavior: smooth;
}

/* NAVIGATION BAR */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    z-index: 10;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 8px 80px;
}

header{
    background: rgb(245, 245, 245, 0.6);
    box-shadow: 0 5px 14px 0.1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(40px) saturate(240%);
}

.logo{
    width: 5%;
}

nav{
    width: 90%;
}

.navbar{
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.navbar.active{
    height: 450px;
}

nav ul{
    display: flex;
    text-align: center;
}

.navbar.active ul{
    opacity: 1;
}

nav ul li{
    list-style: none;
    text-align: center;
    text-decoration: none;
    padding: 16px;
}

nav ul li a{
    position: relative;
    display: inline-block;
    
    text-decoration: none;
    font-size: 20;
    color: #707070;
    font-weight: 600;
}

nav ul li a:hover{
    color: #0F446c;
    transition: .4s;
}

.nav-buttons{
    display: flex;
    align-items: center;
}

.btn{
    display: inline-block;
    padding: 16px;
    font-size: 20;
    font-weight: 600;
    color: #0F446c;
    text-decoration: none;
    text-align: center;
    border: 2px solid #0F446c;
    border-radius: 5px;
}

.nav-btn{
    width: 140px;
}

.btn:hover{
    background-color: #0F446c;
    color: white;
    transition: .4s;
    border: 2px solid #0F446c;
}

.nav-login{
    color: #0F446c;
    text-decoration: none;
    padding-right: 16px;
}

.nav-login:hover{
    font-size: 20px;
    font-weight: 600;
    transition: .4s;
}

/* HERO SECTION */
.hero-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 80px;
    height: 100vh;
}

.hero-left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px;
    width: 50%;
}

.hero-left .hero-title{
    font-size: 56px;
    color: #0F446c;
    line-height: 64px;
}

.hero-title span{
    color: #5E60CE;
}

.hero-left .hero-text{
    font-size: 24px;
    color: #0F446c;
    line-height: 32px;
}

.hero-left .hero-button{
    width: 160px;
}

.hero-right{
    width: 50%;
}

/* DISCOVER SECTION */
.discover-section{
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    padding: 0 80px;

}

.discover .connect .make-music{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.discover .border-right{
    border-right: 1px solid #0F446c;
    border-left: 1px solid #0F446c;
}

.vl {
    border-left: 1px solid #707070;
    height: 400px;
    margin-top: 60px;
    opacity: 0.5;
}

.discover .discover-title{
    font-size: 48px;
    color: #7400B8;
    padding-bottom: 16px;
}

.discover .discover-text{
    font-size: 16px;
    color: #0F446c;
    line-height: 24px;
    /* padding-bottom: 8px; */
}

.connect .connect-title{
    font-size: 48px;
    color: #5E60CE;
    padding-bottom: 16px;
}

.connect .connect-text{
    font-size: 16px;
    color: #0F446c;
    line-height: 24px;
    padding-bottom: 16px;
}

.make-music .music-title{
    font-size: 48px;
    color: #4EA8DE;
    padding-bottom: 16px;
}

.make-music .music-text{
    font-size: 16px;
    color: #0F446c;
    line-height: 24px;
    padding-bottom: 16px;
}

/* DISCOVER PAGE */
.discover-page{
    padding: 100px 80px;
}

.discover-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.search-bar{
    background: rgba(167, 166, 166, 0.9);
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    padding: 4px 10px;
    backdrop-filter: blur(15px) saturate(180%);
}

.search-bar input{
    background: transparent;
    flex: 1;
    border: 0;
    outline: none;
    padding: 16px 12px;
    font-size: 16px;
    color: #0F446c;
}

::placeholder{
    color: #0F446c;
}

.search-bar button img{
    width: 25px;
}

.search-bar button{
    border: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: #0F446c;
    color: #fff;
    cursor: pointer;
}

.grids{
    padding: 56px 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 3, minmax(300px, auto);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    position: relative;
}

.first{
    grid-column: 1/9;
    background-image: url("/static/partners/images/placeholders/2.jpeg");
    background-size: cover !important;;
    background-repeat: no-repeat !important;;
    background-position: center center !important;;
}

.second{
    grid-column: 9/13;    
}

.third{
    grid-column: 1/5;
    grid-row: 2/3;
}
.fourth{
    grid-column: 5/13;
    grid-row: 2/3;
}
.fifth{
    grid-column: 1/9;
    grid-row: 3/4;
}
.sixth{
    grid-column: 9/13;
    grid-row: 3/4;
}

.grids div{
    background: #0F446c;
    height: 400px;
    border-radius: 5px;
}

.grids div:nth-child(even){
    background: #777;
}

.timings{
    color: #0F446c;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
}

.am-pm{
    color: rgb(19, 228, 47);
}

/* MODULES PAGE */
.get-started{
    padding: 110px 80px;
    /* height: 100vh; */
}
.modules-header{
    padding-top: 80px;
    text-align: center;
    color: #0F446c;
    font-size: 30px;
}
.get-started .modules ul{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 0 80px; */
    padding-top: 100px;
}

.get-started .modules ul li{
    list-style: none;
    border: 1px solid #0F446c;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    align-items: center;
    height: 250px;
    width: 250px;
    margin: 30px;
}
.get-started .modules ul li.educator{
    border: 1px solid rgb(15, 68, 108, 0.5);
    height: 200px;
    width: 200px;
    cursor: not-allowed;
}

.get-started .modules ul li.educator a{
    opacity: 0.5;
}

.get-started .modules ul li.educator a img{
    opacity: 0.5;
}

.get-started .modules ul li a{
    text-decoration: none;
    color: #0F446c;
    padding: 10%;
}

.get-started .modules ul li a img{
    padding: 10px;
}

.get-started .modules ul li a h3{
    padding: 10px;
}

.get-started .modules ul li a p{
    padding: 10px;
}

.back{
    text-align: center;
    padding-top: 20px;
}

.back-btn{
    width: 150px;
}

/* SIGN UP */
.sign-up{
    display: flex;
    justify-content: space-between;
    padding: 100px 80px;
}

.sign-up-right{
    width: 70%;
    padding-right: 20px;
}

.sign-up-left{
    width: 30%;
    color: #0F446c;
}

.sign-up-left .form-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-top div p{
    font-size: 14px;
    padding-top: 15px;

}

.sign-up-form p{
    font-size: 14px;
    margin: 15px 0;
}

.sign-up-form input{
    font-size: 14px;
    padding: 15px 10px;
    width: 100%;
    border: 1px solid #0F446c;
    border-radius: 5px;
    outline: none;
}

.sign-up-btn{
    display: inline-block;
    padding: 16px;
    margin-top: 10px;
    font-size: 20;
    font-weight: 600;
    background-color: #0F446c;
    color: white;
    text-decoration: none;
    text-align: center;
    border: 0;
    border-radius: 5px;
    width: 100%;
}

.beginner, .intermediate, .advanced{
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 14px;

}

input[type="checkbox"]{
    outline: #0F446c;
    height: 20px;
    width: 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

label{
    align-items: left;
}

i{
    color: #0F446c;
}


/* FOOTER */

.footer{
    display: block;
    padding: 56px 80px;
}

.footer .footer-top{
    display: flex;
    justify-content: space-between;
}

.footer-top-left{
    width: 50%;
    display: flex;
    justify-content: space-around;
}


.footer-top-right{
    width: 50%;
    display: flex;
    justify-content: space-around;
}

.footer-title{
    font-size: 20px;
    color: #0F446c;
}

.footer-text{
    text-decoration: none;
    color: #0F446c;
    font-size: 14px;
    line-height: 26px;
}

hr{
    margin-bottom: 16px;
    margin-top: 4px;
}

.educate, .company, .gwariva, .partners{
    display: block;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.footer-bottom .footer-language{
    display: flex;
    align-items: center;
    color: #0F446c;
}

.footer-bottom .footer-language i{
    padding: 10px 10px 0 0;
    font-size: 24px;
}

.footer-bottom .footer-icons{
    display: flex;
    align-items: left;
    /* margin-left: -19%; */
}

.footer-icons i{
    padding: 10px 22px 0 0;
    font-size: 24px;
}

/* LOGIN PAGE */
.login-section{
    display: flex;
    padding: 100px 80px;
    align-items: center;
    justify-content: space-between;
}

.login-left{
    width: 60%;
    background-image: url("/static/partners/images/placeholders/1.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /* padding: 200px; */
    height: 100vh;
}

.login-right{
    width: 38%; 
}

.login-top{
    margin-bottom: 20%;
}

.login-top h2{
    font-size: 44px;
    color: #0F446c;
    margin: 10px 0;
}

.login-top p{
    font-size: 14px;
    color: #0F446c;
    letter-spacing: 7.5px;
    margin: 10px 0;
}

.login-top h2 a{
    text-decoration: none;
    color: #5E60CE;
}

.login-form div{
    margin: 28px 0;
}

.login-form div p{
    margin-bottom: 8px;
}


.login-form p{
    font-size: 14px;
    color: #0F446c;
}

.login-form input{
    font-size: 14px;
    padding: 12px 10px;
    width: 100%;
    border: 1px solid #0F446c;
    border-radius: 5px;
    outline: none;
    color: #0F446c;
}

.form-login{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10% 0;
}

.form-login .login-btn{
    width: 140px;
}

.form-login .forgot-pass{
    text-decoration: none;
    color: #5E60CE;
    font-size: 14px;
}

.google-login .btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

.google-login .btn p{
    text-align: center;
}

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

.no-account .forgot-pass{
    text-decoration: none;
    color: #0F446c;
}

.no-account .forgot-pass span{
    color: #5E60CE;
}

/* SIGNUP PAGE */
.signup-section{
    display: flex;
    padding: 110px 80px;
    align-items: center;
    justify-content: space-between;
}

.signup-left{
    width: 60%;
    background-image: url("/static/partners/images/placeholders/wes-hicks-MEL-jJnm7RQ-unsplash.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /* padding: 200px; */
    height: 100vh;
}

.signup-right{
    width: 38%; 
}

.signup-top{
    margin-bottom: 20%;
}

.signup-top h2{
    font-size: 44px;
    color: #0F446c;
    margin: 10px 0;
}

.signup-top p{
    font-size: 14px;
    color: #0F446c;
    letter-spacing: 7.5px;
    margin: 10px 0;
}

.signup-top h2 a{
    text-decoration: none;
    color: #5E60CE;
}

.signup-form div{
    margin: 28px 0;
}

.signup-form div p{
    margin-bottom: 8px;
}


.signup-form p{
    font-size: 14px;
    color: #0F446c;
}

.signup-form input{
    font-size: 14px;
    padding: 12px 10px;
    width: 100%;
    border: 1px solid #0F446c;
    border-radius: 5px;
    outline: none;
    color: #0F446c;
}

.form-signup{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10% 0;
}

.form-signup .signup-btn{
    width: 140px;
}

.form-signup .forgot-pass{
    text-decoration: none;
    color: #5E60CE;
    font-size: 14px;
}

.google-signup .btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

.google-signup .btn p{
    text-align: center;
}

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

.no-account .forgot-pass{
    text-decoration: none;
    color: #0F446c;
}

.no-account .forgot-pass span{
    color: #5E60CE;
}

.form-icons{
    display: flex;
    justify-content: space-between;
}

.logout{
    padding: 100px 80px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logout .logout-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 20px;
}

.logout .logout-text h1{
    font-size: 24px;
    color: #0F446c;
}

.logout .logout-text p>span>a{
    text-decoration: none;
    font-size: 14px;
    color: #7400B8;
}

.logout .logout-text p{
    font-size: 16px;
    color: #0F446c;
    padding: 24px;
}


/* CONTACT US */
.contact-section{
    display: flex;
    padding: 100px 80px;
    justify-content: space-between;
    align-items: center;
}

.contact-left{
    width: 50%;
    background-image: url('/static/partners/images/contact/Feedback-amico.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.contact-right{
    width: 45%;
}

.contact-left img{
    width: 100%;
}

.contact-top h2{
    font-size: 44px;
    color: #0F446c;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.contact-top p{
    font-size: 14px;
    color: #0F446c;
    letter-spacing: 7.5px;
    margin: 10px 0;
}


.contact-form div{
    margin: 28px 0;
}

.contact-form div p{
    margin-bottom: 8px;
}


.contact-form p{
    font-size: 14px;
    color: #0F446c;
} 


.contact-form input{
    font-size: 14px;
    padding: 12px 10px;
    width: 100%;
    border: 1px solid #0F446c;
    border-radius: 5px;
    outline: none;
    color: #0F446c;
}

.contact-btn .send-btn{
    width: 100%;
    background-color: #0F446c;
    color: #fff;
}

.contact-btn .number-btn {
    width: 100%;
    margin: 20px 0;
    background-color: #0F446c;
    color: #fff;
}

#message{
    width: 100%;
    outline: none;
    border: 1px solid #0F446c;
    border-radius: 5px;
    padding: 10px;
    color: #0F446c;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
/* 
.google-login .btn p{
    text-align: center;
}

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

.no-account .forgot-pass{
    text-decoration: none;
    color: #0F446c;
}

.no-account .forgot-pass span{
    color: #5E60CE;
} */



@media only screen and (max-width: 1200px){
    .login-section{
        display: flex;
        flex-direction: column;
        /* padding: 100px 80px; */
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .login-left{
        width: 100% !important;
        background-size: cover;
        height: 20vh !important;
    }
    
    .login-right{
        width: 80% !important; 
        text-align: center;
    }

    .signup-section{
        display: flex;
        flex-direction: column;
        padding: 110px 80px;
        align-items: center;
    }
    
    .signup-left{
        width: 100% !important;
        height: 20vh !important;
    }
    
    .signup-right{
        width: 80% !important; 
    }
    
    .signup-top{
        margin-bottom: 8% !important;
        text-align: center;
    }

    .contact-section{
        display: flex;
        flex-direction: column !important;
        padding: 100px 80px;
        align-items: center;
    }
    
    .contact-left{
        width: 100% !important;
        height: 20vh !important;
    }

    .contact-right{
        width: 100% !important;
    }
        
    .contact-top{
        display: flex;
        align-items: center;
    }

    .contact-top h2{
        font-size: 34px;
        color: #0F446c;
        display: flex;
        align-items: center;
    }
    
    
}


@media only screen and (max-width: 1000px){
    header{
        padding: 8px 40px;
    }
    .hero-section{
        padding: 50px 40px !important;
    }
    .hero-left .hero-title{
        font-size: 36px !important;
        line-height: 36px !important;
        width: 100% !important;
    }
    .hero-left .hero-text{
        font-size: 16px !important;
        color: #0F446c;
        line-height: 22px !important;
    }

    .hero-right img{
        width: 100% !important;
    }

    .discover-section{
        display: flex;
        justify-content: space-between;
        padding: 0 40px !important;
    }
    
    .discover .connect .make-music{
        width: 266px !important;
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .discover-image{
        width: 70% !important;
        text-align: center !important;
    }
        
    .vl {
        display: none;
    }
    
    .discover .discover-title{
        font-size: 28px !important;
        text-align: center !important;
    }
    
    .discover .discover-text{
        font-size: 14px !important;
        line-height: 14px;
        text-align: center !important;
    }

    .connect .connect-title{
        font-size: 28px !important;
        text-align: center !important;
    }
    
    .connect .connect-text{
        font-size: 14px !important;
        line-height: 24px;
        text-align: center !important;
    }
    
    .make-music .music-title{
        font-size: 28px !important;
        text-align: center !important;
    }
    
    .make-music .music-text{
        font-size: 14px !important;
        line-height: 24px;
        text-align: center !important;
    }
    
    
}

@media only screen and (max-width: 835px){
    .hamburger{
        display: block;
        cursor: pointer;
    }
    .hamburger .line{
        width: 30px;
        height: 3px;
        background: #0F446c;
        margin: 6px 0;
    }
    .navbar{
        height: 0;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        width: 100vw;
        background: rgb(245, 245, 245);
        transition: all 0.2s;
        display: block;
        overflow: hidden;
    }
    .navbar ul{
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
    }
    .navbar.show{
        height: 450px;
    }

    .navbar ul li a{
        font-weight: 500;
    }

    .logo img{
        height: 70px;
        width: 70px;
    }

}

@media only screen and (max-width: 785px){
    .hero-section{
        padding: 100px 40px !important;
        display: flex !important;
        flex-direction: column-reverse;
        width: 100% !important;
    }


    .hero-left{
        width: 500px !important;
        text-align: center;
    }

    .hero-left .hero-title{
        font-size: 36px !important;
        line-height: 36px !important;
        width: 100% !important;
        padding: 8px;
    }

    .hero-right{
        width: 500px !important;
    }

    .hero-right img{
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        padding-bottom: 16px !important;
    }
  
    .hero-left .hero-text{
        font-size: 16px !important;
        color: #0F446c;
        line-height: 22px !important;
        padding-bottom: 28px !important;
    }

    .discover-section{
        display: block !important;
        justify-content: space-between;
        padding: 0 80px !important;
    }

    .discover{
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        padding: 8px;
    }

    .connect{
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        flex-direction: row-reverse;
        padding: 8px;
    }

    .make-music{
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        padding: 8px;
    }

}

@media only screen and (max-width: 785px){
    .get-started{
        padding: 50px 80px !important;
    }
    
    .get-started .modules ul{
        display: flex;
        flex-direction: column !important;
        align-items: center;
    }
    
    .get-started .modules ul li{
        padding: 10px;
        margin: 20px !important;
    }
    .get-started .modules .modules-header{
        font-size: 24px;
    }
       
}

@media only screen and (max-width: 719px){
    .form-login{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 28px 0 !important;
    }
    
    .form-login .login-btn{
        width: 100% !important;
    }
    
    .form-login .forgot-pass{
        text-decoration: none;
        color: #5E60CE;
        font-size: 14px;
        margin-top: 16px;
    }

    .login-form div{
        margin: 28px 0 !important;
    }

    .login-top{
        margin-bottom: 10% !important;
    }
    
    .login-top p{
        font-size: 12px;
        letter-spacing: 3.5px !important;
    }
    
    .login-top h2{
        font-size: 32px !important;
    }

    .signup-top h2{
        font-size: 32px !important;
    }
    
    .signup-top p{
        font-size: 12px !important;
        letter-spacing: 3.5px !important;
    }
        
    .signup-form div{
        margin: 28px 0;
    }
    
    

    
}

@media only screen and (max-width: 570px){
    .login-right{
        width: 100% !important; 
    }
    .signup-right{
        width: 100% !important; 
    }


}

@media only screen and (max-width: 500px){

    .logo img{
        height: 40px;
        width: 40px;
    }
    .navbar{
        top: 60px;
    }

    .hero-section{
        padding: 100px 40px !important;
        display: flex !important;
        flex-direction: column-reverse;
        width: 100% !important;
    }

    .hero-left{
        width: 300px !important;
        text-align: center;
    }

    .hero-left .hero-title{
        font-size: 36px !important;
        line-height: 36px !important;
        width: 100% !important;
    }

    .hero-left .hero-title>span{
        display: none;
    }

    .hero-right{
        width: 300px !important;
    }

    .hero-right img{
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        padding-bottom: 16px !important;
    }
  
    .hero-left .hero-text{
        font-size: 16px !important;
        color: #0F446c;
        line-height: 22px !important;
        padding-bottom: 28px !important;
        margin: 12px !important;
    }

    .discover{
        display: block !important;
        align-items: center !important;
        padding: 8px;
    }

    .connect{
        display: block !important;
        align-items: center !important;
        padding: 8px;
    }

    .make-music{
        display: block !important;
        align-items: center !important;
        padding: 8px;
    }


    .footer-top{
        display: flex !important;
        flex-direction: column;
        text-align: center;
    }

    .educate, .company, .gwariva, .partners{
        display: block;
        padding-top: 50px !important;
    }
    
    .footer-bottom{
        margin: 16px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
        bottom: 0 !important;
    }

    .get-started{
        padding: 50px 80px !important;
    }
    
    .get-started .modules ul{
        display: flex;
        flex-direction: column !important;
        align-items: center;
    }
    
    .get-started .modules ul li{
        padding: 10px;
        margin: 20px !important;
    }
}
