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

:root{
    --header-height: 4rem;

    /*=============== Colors ===============*/
    --gwariva-blue: #0F446c;
    --gwariva-purple: #7400B8;
    --gwariva-blue-purple: #5E60CE;
    --gwariva-Skyblue: #4EA8DE;
    --gwariva-Skybluegreen: #56CFE1;
    --gwariva-Turquoisegreen: #72EFDD;
    --gwariva-Greyblue: #88A6C5;
    --gwariva-Green: #06BB18;
    --gwariva-button-green: #AFFFED;
    --gwariva-safaricom-green: #00DD16;
    --gwariva-lagoon-green: #00FFC6;

    /*=============== Font & Typography ===============*/
    --body-font: 'Metropolis', sans-serif;
    --h1-font-size: 45px;
    --h2-font-size: 32px;
    --p-font-size: 18px;
    --normal-font-size: 16px;
    --tiny-font-size: 14px;

    /* =============== z-index ===============*/
    --z-tooltip: 10;
    --z-fixed: 100;   
}

/*=============== Responsive Typography ===============*/
@media screen and (min-width: 968px) {
    :root{
        --h1-font-size: 32px !important;
        --normal-font-size: 14px;
    }
}

/*=============== BASE ===============*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--gwariva-blue);
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
    height: auto;
}

/*=============== Reusable Classes ===============*/
.section{
    padding: 2.5rem  0;
}

.section_title{
    font-size: var(--h1-font-size);
    color: var(--gwariva-blue);
    text-align: center;
    margin-bottom: 2.5rem;
}

/*=============== header ===============*/
.myheader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background: transparent; */
    background: rgb(5, 20, 32, 0.9);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.15);
    z-index: var(--z-fixed);
    transition: .4s;
}

/*=============== Nav ===============*/

.mynav{
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: .5rem 2rem;    
}

.nav_logo img{
    height: 39.375px;
    width: 165.5625px;
}

/* .nav_img{
    width: 32px;
    border-radius: 50%;
    display: none;
} */

@media screen and (max-width: 834px){
    .nav_menu{
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: white;
        box-shadow: 0 -1px 12px rgba(0, 0, 0, 0.2);
        width: 100%;
        height: 4rem;
        padding: 0 2rem;
        display: grid;
        align-content: center;
        border-radius: 5px 5px 0 0;
        transition: .4s;
    }
    .nav_link{
        color: var(--gwariva-blue) !important;
        font-size: var(--normal-font-size);
    }

    .nav_icon{
        display: block !important;
    }

    .nav_name{
        font-size: 12px !important;
        padding: 2px 0 !important;

    }

    #products_hide{
        display: none;
    }

    #login{
        display: none !important;
    }

    #login_button{
        display: block !important;
    }
    .nav_hide{
        display: none;
    }
    .products_img{
        display: block !important;
    }
    .nav_logo img{
        height: 29.53125px;
        width: 124.171875px;
    }
}

.nav_list, .nav_link{
    display: flex;
}

.nav_link{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: .25rem;
    color: white;
    font-weight: 500;
}

.nav_link:hover{
    color: var(--gwariva-button-green);
    transition: .3s ease-in;
}

.nav_list{
    align-items: center;
    justify-content: space-between;
    column-gap: 2.25rem;
}

.nav_name{
    font-size: var(--normal-font-size);
    padding: 8px 0;
}
#login .nav_link .nav_name{
    font-weight: 600;
}
.nav_icon{
    font-size: 1.5rem;
    display: none;
}

.products_img{
    display: none;
}

/*=============== Active Link ===============*/
.active-link{
    position: relative;
    color: var(--gwariva-button-green);
    transition: .3s;
}
#login a span{
    border-radius: 5px;
    background: white;
    color: var(--gwariva-blue);
    padding: 12px 15px;
    width: 120px;
    text-align: center;
}

#login a span:hover{
    background: var(--gwariva-button-green);
    color: var(--gwariva-blue);
}

#login a i{
    display: none;
}

#login_button{
    display: none;
}

/*=============== Change Header Background ===============*/
/* .scroll-header{
    background: rgb(5, 20, 32, 0.9);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.15);
} */

/* Home(About section) */
#about{
    padding: 2rem;
}
#about h1.about_title{
    font-weight: 600;
}

/* Home(Hero section) */
#home{
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: url('/static/gwarivawebsite/images/hero_image.png');
    background-size: cover;
    /* background-attachment: fixed; */
    margin-bottom: .5rem;
    background-position: center center;
}
@media screen and (max-width: 984px){
    #home{
        background: url('/static/gwarivawebsite/images/hero_image.png');
        background-size: cover;
        background-position: center
    } 
}
@media screen and (max-width: 500px){
    #home{
        background: url('/static/gwarivawebsite/images/hero_image.png');
        background-size: cover;
        background-position: left -210px center;
        background-repeat: no-repeat;
    } 
    .sign_in{
        height: 60vh;
        background: url('/static/gwarivawebsite/images/center_login.png');
        background-size: cover;
        background-position:left -300px center;
    }
    #sign_up1{
        margin-top: -20vh !important;
    }
    #sign_up2{
        margin-top: -20vh !important;
    }
    #contact{
        margin-top: -12vh !important;
    }
}

@media screen and (max-width: 425px){
    .hero_text{
        margin: 1rem !important;
    }
    #about .why_cards{
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    #about .why_cards .card{
        padding: 10px 0;
    }

    .large_image{
        display: none;
    }

    footer{
        padding-bottom: 40px !important;
    }
}

.hero_title{
    font-size: var(--h1-font-size);
    color: white;
    text-align: center;
    margin: .5rem;
}

#home h1.hero_title{
   font-weight: 600; 
}
.hero_text{
    font-size: var(--p-font-size);
    color: white;
    text-align: center;
    margin-bottom: 3.5rem;
}

/* Music Camp */
.music-camp{
    margin: 2rem;
    display: flex;
    align-items: center;
    column-gap: 24px;
}
.camp-poster{
    width: 50%;
}
.camp-details{
    display: flex;
    flex-direction: column;
    width: 50%;
}
.camp-details h1{
    font-size: 50px;
    line-height: 56px;
}

.camp-details p{
    font-size: 20px;
    margin: 24px 0;
    line-height: 32px;
}

.camp-details a{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gwariva-blue);
    background: var(--gwariva-button-green);
    width: 240px;
    height: 50px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    margin: 24px 0;
    line-height: 32px;
}

/* About section */
.about_title{
    padding-bottom: -20px;
    position: relative;
}

#about .why_cards{
    display: none;}

/* Modules(Products section) */
.modules{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 10px;
    padding: 0 2rem;
}

#products h1.products_title{
    font-weight: 600;
}

.product_card{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 4px 4px 16px rgb(112, 112, 112, .05);
    height: 400px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    color: var(--gwariva-blue);
    background: var(--gwariva-Skyblue);
}


.center{
    justify-content: center !important;
}

.schools{
    justify-content: center !important;
}

.product_title{
    color: white;
    font-size: var(--h2-font-size);
    margin: .2rem 0;
}

.product_text{
    color: white;
    font-size: var(--normal-font-size);
    margin: .3rem 0;
}

.product_button{
    width: 150px;
    background: white;
    border-radius: 5px;
    padding: 13px 0;
    color: var(--gwariva-blue);
    margin: .3rem 0;
}

.modules_button{
    width: 130px;
    background: rgba(216, 216, 216, 0.3);
    backdrop-filter: blur(20px) saturate(150%);
    border-radius: 5px;
    padding: 13px 0;
    color: white;
    margin: .3rem 0;
}

.educator_btn{
    width: 130px;
    background: #ffffff;
    border-radius: 5px;
    padding: 13px 0;
    color: var(--gwariva-blue);
    margin: .3rem 0;
    font-weight: 600 !important;
}

.educator_btn:hover{
    background: var(--gwariva-button-green);
}

.modules_button:hover{
    background: rgba(216, 216, 216, 0.1);
    backdrop-filter: blur(20px) saturate(150%);
}

.parent{
    background: url('/static/gwarivawebsite/images/login_as.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: darken;
}

.student{
    background: url('/static/gwarivawebsite/images/students.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: darken;
}

.educator{
    background:  url('/static/gwarivawebsite/images/educators.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.partner{
    background-image: url('/static/gwarivawebsite/images/centers.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.center{
    background: url('/static/gwarivawebsite/images/centers.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    background-position: center center;
    background-attachment: fixed;
    height: 330px;
}

#products .center_modules h1.product_title{
    font-weight: 600;
}
.business_button:hover{
    background: var(--gwariva-button-green);
}
#products .center_modules .center .business_button{
    font-weight: 600;
}
#products .center_modules .schools .business_button{
    font-weight: 600;
}
.center_modules{
    margin: 2rem 0;
}

h1#business{
    font-size: 45px;
    line-height: 65px;
    font-weight: 500;
}

p#business{
    font-size: 18px;
    line-height: 40px;
    font-weight: 500;
}

a#business{
    font-size: 16px;
    font-weight: 500;
}

h2#modules{
    font-size: 35px;
    line-height: 45px;
    font-weight: 500;
}

p#modules{
    font-size: 16px;
    line-height: 40px;
    font-weight: 500;
}
a#modules{
    font-size: 14px;
    font-weight: 500;
}

/* Demo Page */
#demo{
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background: url('/static/gwarivawebsite/images/demo.jpeg');
    background-size: cover;
    /* background-attachment: fixed; */
    margin-bottom: .5rem;
    background-position: center center;
}
.demo_title{
    font-size: var(--h1-font-size);
    color: white;
    text-align: left;
    margin: 0 2rem;
    font-size: 56px;
    line-height: 64px;
    font-weight: 500;
}
.demo_text{
    font-size: var(--p-font-size);
    color: white;
    text-align: left;
    margin: 2rem;
    font-size: 21px;
    line-height: 24px;
    font-weight: 500;
}
#demo a.button{
    margin: 4rem 2rem;
    outline: none;
    border: none;
    width: 200px;
    font-size: 16px;
    font-weight: 600;
    background: var(--gwariva-button-green);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    color: var(--gwariva-blue);
    border-radius: 5px;
    text-transform: uppercase;
}
.manage-music, .share-hours, .uncover-insights{
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin: 4rem;
}
.video-demo{
    display: flex;
    align-items: center;
    margin: 4rem 1rem;
    align-items: center;
    justify-content: center;
}

.video-demo iframe{
    width: 70%;
    height: 500px;
}
.demo1-img, .demo2-img, .demo3-img{
    width: 70%;
}
.demo1-text, .demo2-text, .demo3-text{
    width: 30%;
}
.demo1-text h1, .demo2-text h1, .demo3-text h1{
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
}
.demo1-text h1 span, .demo2-text h1 span, .demo3-text h1 span{
    color: var(--gwariva-blue-purple);
}
.demo1-text ol, .demo2-text ol, .demo3-text p{
    margin: 2rem 0;
    font-size: 16px;
    line-height: 32px;
    font-weight: 500;
}

/* Music Camp */
#music-camp-top{
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgb(94, 96, 207, 0.8), rgb(94, 96, 207, 0.8)), url('/static/gwarivawebsite/images/music-camp-hero2.jpeg');
    background-size: cover;
    background-position: 50px -200px;
    padding: 2rem;
}
#music-camp-top p{
    font-size: 20px;
    line-height: 32px;
    margin: 8px 0;
    color: white;
    font-weight: 500;
    z-index: 10;
}
#music-camp-top h1{
    font-size: 72px;
    line-height: 80px;
    margin: 16px 0;
    color: white;
    font-weight: 500;
    text-align: center;
    z-index: 10;
}
/* Music Camp Payment Details */
#music-camp-top .payment-details{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 40px;
    margin-top: 2rem;
}

.paybill, .account{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.paybill h3, .account h3{
    font-size: 2.0rem;
    color: var(--gwariva-safaricom-green);
}
.paybill-digits{
    display: flex;
    column-gap: 8px;
}
.paybill-digits p{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    border: 2px solid #fff;
    border-radius: 5px;
    font-size: 32px !important;
    font-weight: 600;
}
.account p{
    font-size: 48px !important;
    font-weight: 600 !important;
    margin-top: 24px !important;
}
/* Latest News */
.latest_news{
    margin: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
}
.details-image{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.details-image img{
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}
.details-text{
    width: 60%;
    display: flex;
    flex-direction: column;
}
.details-text .words{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.words h1{
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
}
.words h1 strong{
    color: #5E60CE;
}
.words p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin: 16px 0;
}
.words a{
    background: #5E60CE;
    width: 140px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: white;
    margin: 24px 0;
}
.numbers-card{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 450px;
    height: 120px;
    margin-left: -6rem;
    border-radius: 5px;
    background: rgb(255, 255, 255);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    gap: 2rem;
}
.numbers-card div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 150px;
}
.numbers-card div h1{
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
}
.numbers-card div span{
    font-size: 14px;
    font-weight: 500;
}
/* Camp Gallery */
.camp-gallery{
    margin: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gallery-title{
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-title h1{
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    text-align: center;
}
.gallery-title h1 span{
    color: #5E60CE;
}

.gallery-content{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 24px;
    margin: 2rem 0;
}
.gallery-content .gallery{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 700px;
}
.gallery-content .gallery-text{
    display: flex;
    flex-direction: column;
    column-gap: 24px;
    width: 400px;
}
.gallery .img-box{
    width: 100px;
    height: 400px;
    margin: 10px;
    border-radius: 50px;
    background: url('/static/musiccamp/images/music-camp/1.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    transition: width 0.5s;
}
.img-box:nth-child(2){
    background: url('/static/musiccamp/images/music-camp/6.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.img-box:nth-child(3){
    background: url('/static/musiccamp/images/music-camp/12.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.img-box:nth-child(4){
    background: url('/static/musiccamp/images/music-camp/4.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.img-box p{
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 24px;
    position: absolute;
    opacity: 0;
    transition: bottom 0.5s, opacity 0.5s;
}
.img-box:hover{
    width: 300px;
    cursor: pointer;
}
.img-box:hover p{
    bottom: 24px;
    opacity: 1;
}
.gallery-text p{
    font-size: 18px;
    line-height: 24px;
}
.gallery-text a.gallery-btn{
    background: var(--gwariva-blue-purple);
    height: 50px;
    border-radius: 25px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    transition: height 0.2s;
    font-size: 16px;
}
.gallery-text a.gallery-btn:hover{
    height: 60px;
    border-radius: 30px;
}

#music-camp-images{
    height: 80vh;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    background: linear-gradient(to bottom, rgba(9, 9, 9, 0.8), rgba(9, 9, 9, 0.8)), url('/static/gwarivawebsite/images/music-camp-hero2.jpeg');
    background-size: cover;
    background-position: 50px -200px;
    padding: 2rem;
}
#music-camp-images h1{
    font-size: 64px;
    color: rgb(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 60px;
    text-align: center;
    margin-top: 160px;
}
#music-camp-images p{
    font-size: 18px;
    color: rgb(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    width: 75%;
    margin: 2rem 0;
}
#music-camp-images p a{
    color: var(--gwariva-blue-purple) !important;
}
#music-camp-images .filters{
    display: flex;
    margin-top:15vh;
}
#music-camp-images .filters button{
    background: none;
    outline: none;
    border: 1px solid rgb(255, 255, 255, 0.8);
    color: rgb(255, 255, 255, 0.8);
    border-radius: 20px;
    height: 40px;
    width: 150px;
    margin: 0 16px;
}
#music-camp-images .filters button:hover{
    background: rgb(94, 96, 206, 0.8);
    border: none;
    transition: .5s;
    transition-timing-function: ease-in;
    transition: 0.5s;
}

.images-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 1rem;
}
.camp-images-gallery{
    width: 1400px;
    margin: auto;
    columns: 4;
    column-gap: 24px;
}
.camp-images-gallery img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 24px;
    border-radius: 10px;
    break-inside: avoid;
}
/* Music Camp Activities */
.camp_activities{
    margin: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.activities-title{
    display: flex;
    align-items: center;
    justify-content: center;
}
.activities-title h1{
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    text-align: center;
}
.activities-title h1 span{
    color: #5E60CE;
}
.activity-cards{
    margin: 4rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 24px;
}
.activity-card{
    height: 400px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px;
    background: white;
    margin: 24px 0;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.02), 0 6px 10px 0 rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}
.activity-card i{
    color: var(--gwariva-blue-purple);
    background: rgba(223, 227, 232, 0.1);
    padding: 20px;
    border-radius: 5px;
    font-size: 32px;
    margin: 16px 0;
}
/* .activity-card img{
    border-radius: 5px;
    height: 100px;
    width: 100px;
    object-fit: cover;
    margin: 16px 0;
} */
.activity-card h2{
    color: var(--gwariva-blue);
    font-size: 20px;
    font-weight: 500;
    margin: 16px 0;
}
.activity-card p{
    color: #707070;
    font-size: 14px;
    line-height: 20px;
    margin: 16px 0;
}
/* Music Program Co-odinators */
.program-leads{
    margin: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.leads-title{
    display: flex;
    align-items: center;
    justify-content: center;
}
.leads-title h1{
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    text-align: center;
}
.leads-title h1 span{
    color: #5E60CE;
}
.leads-profiles{
    margin: 4rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 24px;
}
.leads-profiles .profile{
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 12px 0;
}
.profile .profile-image{
    width: 100%;
    height: 380px;
}
.profile-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 12px;
}
.profile .profile-details{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.profile-details h2{
    font-size: 20px;
    margin: 16px 0;
    font-weight: 500;
}
.profile-details span{
    font-size: 14px;
    color: #707070;
    /* margin: 8px 0; */
}
/* Sponsors */
.sponsors{
    margin: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sponsors-title{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sponsors-title h1{
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    text-align: center;
}
.sponsors-title h1 span{
    color: #5E60CE;
}
.partners-logos{
    margin: 4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 64px;
}
.partners-logos img{
    height: 200px;
    width: 200px;
    object-fit: cover;
    object-position: center center;
}
.add-sponsor{
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.add-sponsor a{
    width: 180px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gwariva-blue-purple);
    color: white;
    font-size: 16px;
    border-radius: 5px;
}
/* Music Camp Sign Up */
.camp-signup{
    margin: 4rem 0;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255), rgba(255, 255, 255)), url('/static/gwarivawebsite/images/music-camp-hero.jpeg');
    background-size: cover;
    background-position: center top;
}
.signup-title{
    display: flex;
    align-items: center;
    justify-content: center;
}
.signup-title h1{
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    text-align: center;
}
.signup-title h1 span{
    color: #5E60CE;
}

.camp-signup form{
    margin: 4rem 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 1000px;
}
.camp-signup form hr{
    width: 100%;
    height: 1px;
    background: #707070;
    margin: 2rem 0;
}
.section-title{
    margin-top: 2rem;
}
.section-title h1{
    font-size: 24px;
    color: var(--gwariva-blue-purple);
    font-weight: 500;
}
.camp-signup form .name, .camp-signup form .contact-info, .camp-signup form .camp-expectations{
    display: flex;
    column-gap: 24px;
}
.name .input-field, .contact-info .input-field{
    display: flex;
    flex-direction: column;
    width: 50%;
}
.input-field{
    margin: 8px 0;
}
.input-field strong{
    font-size: 14px;
    font-weight: 500;
    color: var(--gwariva-blue-purple);
    margin-top: 8px;
}
.camp-expectations .input-field{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.input-field span{
    color: #707070;
    font-size: 16px;
    margin: 12px 0;
    font-weight: 500;
}
.input-field input, .input-field select{
    border: 1px solid #707070;
    outline: none;
    border-radius: 5px;
    padding: 16px;
    background: none;
    color: var(--gwariva-blue);
}
select{
    appearance: none;
}
.input-field textarea{
    border: 1px solid #707070;
    outline: none;
    border-radius: 5px;
    padding: 16px;
    background: none;
    color: var(--gwariva-blue);
}
.camp-signup form .button-camp{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
}
form .button-camp button{
    outline: none;
    border: none;
    width: 150px;
    height: 48px;
    background: var(--gwariva-blue-purple);
    border-radius: 5px;
    color: white;
    font-size: 16px;
}
.camp-signup form .add-child{
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
}
form .add-child button{
    outline: none;
    border: none;
    width: 100%;
    padding: 16px;
    background: var(--gwariva-blue-purple);
    border-radius: 5px;
    color: white;
    font-size: 16px;
    margin-top: 32px;
}
.payment{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 2rem;
    margin: 2rem 0;
}
.payment .paybill-number, .payment .account-name{
    display: flex;
    row-gap: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.paybill-number h3, .account-name h3{
    font-size: 1.2rem;
    font-weight: 500;
}
.paybill-number p, .account-name p{
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 8px;
    color: var(--gwariva-blue-purple);
}
/* Venue & Contact */
.camp-venue{
    margin: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 32px;
}
.camp-venue .venue-details{
    display: flex;
    flex-direction: column;
    width: 50%;
}
.camp-venue .venue-map{
    display: flex;
    flex-direction: column;
    width: 50%;
}
.camp-venue .venue-map iframe{
    width: 100%;
    height: 450px
}
.venue-details .venue-title{
    width: 100%;
    display: flex;
    margin: 16px 0;
}
.venue-title h1{
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
}
.venue-title h1 span{
    color: #5E60CE;
}
.venue-details .exact-venue{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px 0;
}
.exact-venue p{
    color: var(--gwariva-blue);
    font-size: 20px;
    font-weight: 500;
    margin: 8px 0;
}
.exact-venue span{
    color: #707070;
    font-size: 14px;
    font-weight: 500;
    margin: 8px 0;
}
.venue-details .contact-person{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px 0;
}
.contact-person h2{
    font-size: 18px;
    color: var(--gwariva-blue-purple);
    font-weight: 500;
    margin-bottom: 16px;
}
.contact-person p{
    font-size: 14px;
    color: var(--gwariva-blue);
    font-weight: 500;
    margin: 12px 0;
}
.contact-person p span{
    color: #707070;
}

/*=============== Contact Page ===============*/
.contact{
    height: 60vh;
    background: url('/static/gwarivawebsite/images/lupita.png');
    background-size: cover;
    margin-bottom: .5rem;
    background-position: center;
}

#contact{
    display: flex;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.contact_info{
    display: flex;
    width: 100%;
    height: 350px;
}

.contact_info .contact_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}

.contact_info .contact_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact_info .contact_details p{
    font-size: 24px;
    font-weight: 600;
}

.contact_info .contact_details small{
    font-size: 14px;
    margin: 24px;
}

.contact_icons a i{
    color: white;
    font-size: 32px;
    margin: 14px;
}

.contact_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contact_form form .input_box input,
.contact_form form .input_box textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
}

.contact_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}

.contact_form form .input_box input:focus ~ span,
.contact_form form .input_box input:valid ~ span,
.contact_form form .input_box textarea:focus ~ span,
.contact_form form .input_box textarea:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

.contact_btn{
    border: none;
    outline: none;
    background: none;
    bottom: 75px;
    right: 20px;
    position: absolute;
    cursor: pointer;
}

.contact_btn{
    transform: rotate(45deg);
}

.contact_btn i{
    font-size: 30px;
    color: #0F446c;
}

/*=============== sign_up1 Page ===============*/
.errorlist{
    list-style-type: none;
    color: red !important;
    padding-left: 0;
    font-size: small;
}
.sign_up1{
    height: 60vh;
    background: url('/static/gwarivawebsite/images/centers_signup.png');
    background-size: cover;
    margin-bottom: .5rem;
    background-position: center;
}

#sign_up1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}

.sign_up1_info{
    display: flex;
    width: 100%;
    height: 450px;
}

.sign_up1_info .sign_up1_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}

.sign_up1_info .sign_up1_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sign_up1_info .sign_up1_details p{
    font-size: 24px;
    font-weight: 600;
}

.sign_up1_info .sign_up1_details small{
    font-size: 12px;
    margin: 14px;
}
.sign_up1_info .sign_up1_details small>a{
    color: var(--gwariva-button-green);
}


.sign_up1_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}

.sign_up1_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.sign_up1_form form .input_box input,
.sign_up1_form form .input_box select{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
    color: var(--gwariva-blue);
}

.sign_up1_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}

.sign_up1_form form .input_box input:focus ~ span,
.sign_up1_form form .input_box input:valid ~ span,
.sign_up1_form form .input_box select:focus ~ option.display,
.sign_up1_form form .input_box select:valid ~ option.display{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

input::file-selector-button {
    display: none;
}

input::file-selector-text {
    display: none;
}

input[type='file'] {
    color: transparent;
  }

.sign_up1_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}


.upload-input-dragDrop {
    display: block;
    width: 100%;
    margin: 0 auto 25px auto;
    padding: 25px;
    color: #8d9499;
    color: #97a1a8;
    background: #fff;
    border: 2px dashed #c8cbce;
    text-align: center;
    -webkit-transition: box-shadow 0.3s, border-color 0.3s;
    -moz-transition: box-shadow 0.3s, border-color 0.3s;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  .upload-input-dragDrop .upload-input-icon {
    font-size: 48px;
    margin-top: -10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .upload-input-text h3 {
    margin: 0;
    font-size: 18px;
  }
  .upload-input-text span {
    font-size: 12px;
  }
  .upload-input-choose-btn.blue {
    color: #0F446c;
    border: 1px solid #0F446c;
  }
  .upload-input-choose-btn {
    display: inline-block;
    padding: 8px 14px;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    font-size: 12px;
    font-weight: bold;
    color: #8d9496;
    border-radius: 5px;
    border: 1px solid #c6c6c6;
    vertical-align: middle;
    background-color: #fff;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
} 
  
/*=============== sign_up2 Page ===============*/
.sign_up2{
    height: 60vh;
    background: url('/static/gwarivawebsite/images/centers_signup.png');
    background-size: cover;
    margin-bottom: .5rem;
    background-position: center;
}
.fa_custom{
    color: var(--gwariva-blue);
}
#sign_up2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}

.sign_up2_info{
    display: flex;
    width: 100%;
    height: 350px;
}

.sign_up2_info .sign_up2_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}

.sign_up2_info .sign_up2_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sign_up2_info .sign_up2_details p{
    font-size: 18px;
}

.sign_up2_info .sign_up2_details small{
    font-size: 12px;
    margin: 14px;
}
.sign_up2_info .sign_up2_details small>a{
    color: var(--gwariva-button-green);
}

.sign_up2_icons{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sign_up2_icons .icons_top, .icons_bottom{
    display: flex;
    margin: 10px 0;
}

.sign_up2_icons i{
    font-size: 30px;
    margin: 14px;
}
.sign_up2_icons p.restroom{
    margin-top: -10px;
}

.rest_div{
    margin-top: 16px;
}

.sign_up2_icons .icons_top .additional_service p{
    font-size: 10px;
}
.sign_up2_icons .icons_bottom .additional_service p{
    font-size: 10px;
}


.sign_up2_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.sign_up2_form form .input_box input,
.sign_up2_form form .input_box select{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
    color: var(--gwariva-blue);
}


.sign_up2_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}

.sign_up2_form form .input_box input:focus ~ span,
.sign_up2_form form .input_box input:valid ~ span,
.sign_up2_form form .input_box select:focus ~ span,
.sign_up2_form form .input_box select:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

.sign_up2_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}

/*=============== sign_in Page ===============*/
.sign_in{
    height: 60vh;
    background: url('/static/gwarivawebsite/images/center_login.png');
    background-size: cover;
    margin-bottom: .5rem;
    background-position: center;
}

#sign_in{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}

.sign_in_info{
    display: flex;
    width: 100%;
    height: 290px;
}

.sign_in_info .sign_in_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}

.sign_in_info .sign_in_form form .forgot_password{
    padding: 10px 0;
    font-size: 12px;
}

.sign_in_info .sign_in_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sign_in_info .sign_in_details p{
    font-size: 24px;
    font-weight: 600;
}

.sign_in_info .sign_in_details small{
    font-size: 12px;
    margin: 14px;
}
.sign_in_info .sign_in_details small>a{
    color: var(--gwariva-button-green);
}


.sign_in_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}

.sign_in_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.sign_in_form form .input_box input{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
}

.sign_in_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}

.sign_in_form form .input_box input:focus ~ span,
.sign_in_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

input::file-selector-button {
    display: none;
}

input::file-selector-text {
    display: none;
}

input[type='file'] {
    color: transparent;
}

.sign_in_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}

/*=============== reset1 Page ===============*/
.reset1{
    height: 40vh;
    background: rgb(15, 68, 108);
    background-size: cover;
    margin-bottom: .5rem;
    background-position: center;
}

.logout_step_text{
    color: var(--gwariva-blue);
    font-size: 14px;
    margin: 13px 0;
}

.reset1_title{
    color: white;
    font-size: 32px;
    margin: 13px 20px;
}

#reset1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.reset1_info .reset1_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px;
    padding: 20px;
    height: 250px;
}

.reset1_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.reset1_form form .input_box input{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
    color: var(--gwariva-blue);
}

.reset1_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}

.reset1_form form .input_box input:focus ~ span,
.reset1_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

.reset1_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
    font-size: 14px;
}

/*=============== reset3 Page ===============*/
.reset3{
    height: 40vh;
    background: rgb(15, 68, 108);
    background-size: cover;
    margin-bottom: .5rem;
    background-position: center;
}

.reset3_title{
    color: white;
    font-size: 32px;
    margin: 13px 20px;
}

#reset3{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -20vh;
    margin-bottom: 60px;
}

.reset3_info .reset3_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px;
    padding: 20px;
    height: 300px;
}

.reset3_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.reset3_form form .input_box input{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
    color: var(--gwariva-blue);
}

.reset3_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}

.reset3_form form .input_box input:focus ~ span,
.reset3_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

.reset3_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
    font-size: 14px;
}

/*=============== FOOTER ===============*/
footer{
    padding: 0 4rem;
    text-align: center;
}

footer .footer-top, .footer-bottom{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    justify-content: center;
}

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

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

hr{
    margin-bottom: 14px;
    margin-top: 6px;
    width: 50%;
    text-align: center;
}

.footer-bottom{
    padding: 20px 0;
}

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

.footer-bottom .footer-language i{
    padding-right: 10px;
    font-size: 24px;
}
.footer-icons i{
    padding-right: 10px;
    font-size: 24px;
    color: #0F446c;
}

.gwariva, .partners, .educate, .company{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.footer-language, .footer-icons{
    display: flex;
    justify-content: center;
    text-align: left;
    align-items: center;
}

.grey_out{
    color: #A9A9A9;
}

/* FOOTER END */

/* Educator Sign Up 1 */
/*=============== sign_up1 Page ===============*/
.errorlist{
    list-style-type: none;
    color: red !important;
    padding-left: 0;
    font-size: small;
}
.educator_sign_up1{
    height: 60vh;
    background: url('/static/educator/images/sign_up_step1.png');
    background-size: cover;
    margin-bottom: .5rem;
    /* background-position: center center; */
}

#educator_sign_up1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}

.educator_sign_up1_info{
    display: flex;
    width: 100%;
    height: 480px;
}

.educator_sign_up1_info .educator_sign_up1_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}

.educator_sign_up1_info .educator_sign_up1_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.educator_sign_up1_info .educator_sign_up1_details p{
    font-size: 24px;
    font-weight: 600;
}
.educator_sign_up1_info .educator_sign_up1_details small{
    font-size: 12px;
    margin: 14px;
}
.educator_sign_up1_info .educator_sign_up1_details small>a{
    color: var(--gwariva-button-green);
}
.educator_sign_up1_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}
.educator_sign_up1_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.educator_sign_up1_form form .input_box input,
.educator_sign_up1_form form .input_box select{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
    color: #0F446c;
}
.educator_sign_up1_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}
.educator_sign_up1_form form .input_box input:focus ~ span,
.educator_sign_up1_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}
input::file-selector-button {
    display: none;
}
input::file-selector-text {
    display: none;
}
input[type='file'] {
    color: transparent;
}
.educator_sign_up1_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}
/* Educator Sign Up 2 */
/*=============== sign_up1 Page ===============*/
.errorlist{
    list-style-type: none;
    color: red !important;
    padding-left: 0;
    font-size: small;
}
.educator_sign_up2{
    height: 60vh;
    background: url('/static/educator/images/sign_up_step2.png');
    background-size: cover;
    margin-bottom: .5rem;
    /* background-position: center center; */
}
#educator_sign_up2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}
.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}
.educator_sign_up2_info{
    display: flex;
    width: 100%;
    height: 580px;
}
.educator_sign_up2_info .educator_sign_up2_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}
.educator_sign_up2_info .educator_sign_up2_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.educator_sign_up2_info .educator_sign_up2_details p{
    font-size: 24px;
    font-weight: 600;
}
.educator_sign_up2_info .educator_sign_up2_details small{
    font-size: 12px;
    margin: 14px;
}
.educator_sign_up2_info .educator_sign_up2_details small>a{
    color: var(--gwariva-button-green);
}
.educator_sign_up2_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}
.educator_sign_up2_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.educator_sign_up2_form form .input_box input,
.educator_sign_up2_form form .input_box select{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
    color: #0F446c;
}
.educator_sign_up2_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}
.educator_sign_up2_form form .input_box input:focus ~ span,
.educator_sign_up2_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}
input::file-selector-button {
    display: none;
}
input::file-selector-text {
    display: none;
}
input[type='file'] {
    color: transparent;
}
.educator_sign_up2_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}
.upload-input-dragDrop {
    display: block;
    width: 100%;
    margin: 0 auto 25px auto;
    padding: 25px;
    color: #8d9499;
    color: #97a1a8;
    background: #fff;
    border: 2px dashed #c8cbce;
    text-align: center;
    -webkit-transition: box-shadow 0.3s, border-color 0.3s;
    -moz-transition: box-shadow 0.3s, border-color 0.3s;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.upload-input-dragDrop .upload-input-icon {
    font-size: 48px;
    margin-top: -10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.upload-input-text h3 {
    margin: 0;
    font-size: 18px;
}
.upload-input-text span {
    font-size: 12px;
}
.upload-input-choose-btn.blue {
    color: #0F446c;
    border: 1px solid #0F446c;
}
.upload-input-choose-btn {
    display: inline-block;
    padding: 8px 14px;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    font-size: 12px;
    font-weight: bold;
    color: #8d9496;
    border-radius: 5px;
    border: 1px solid #c6c6c6;
    vertical-align: middle;
    background-color: #fff;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
} 

/* School Sign Up*/
/*=============== sign_up1 Page ===============*/
.errorlist{
    list-style-type: none;
    color: red !important;
    padding-left: 0;
    font-size: small;
}
.school_sign_up{
    height: 60vh;
    background: url('/static/educator/images/sign_up_step1.png');
    background-size: cover;
    margin-bottom: .5rem;
    /* background-position: center center; */
}

#school_sign_up{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}

.school_sign_up_info{
    display: flex;
    width: 100%;
    height: 520px;
}

.school_sign_up_info .school_sign_up_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}

.school_sign_up_info .school_sign_up_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.school_sign_up_info .school_sign_up_details p{
    font-size: 24px;
    font-weight: 600;
}

.school_sign_up_info .school_sign_up_details small{
    font-size: 12px;
    margin: 14px;
}
.school_sign_up_info .school_sign_up_details small>a{
    color: var(--gwariva-button-green);
}


.school_sign_up_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}

.school_sign_up_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.school_sign_up_form form .input_box input,
.school_sign_up_form form .input_box select{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
    color: #0F446c;
}


.school_sign_up_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}

.school_sign_up_form form .input_box input:focus ~ span,
.school_sign_up_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

input::file-selector-button {
    display: none;
}

input::file-selector-text {
    display: none;
}

input[type='file'] {
    color: transparent;
  }

.school_sign_up_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}

/* Guest School Sign Up*/
/*=============== sign_up1 Page ===============*/
.errorlist{
    list-style-type: none;
    color: red !important;
    padding-left: 0;
    font-size: small;
}
.guest_school_sign_up{
    height: 60vh;
    background: url('/static/educator/images/sign_up_step1.png');
    background-size: cover;
    margin-bottom: .5rem;
    /* background-position: center center; */
}
#guest_school_sign_up{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}
.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}
.guest_school_sign_up_info{
    display: flex;
    width: 100%;
    height: 480px;
}
.guest_school_sign_up_info .guest_school_sign_up_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}
.guest_school_sign_up_info .guest_school_sign_up_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.guest_school_sign_up_info .guest_school_sign_up_details p{
    font-size: 24px;
    font-weight: 600;
}
.guest_school_sign_up_info .guest_school_sign_up_details small{
    font-size: 12px;
    margin: 14px;
}
.guest_school_sign_up_info .guest_school_sign_up_details small>a{
    color: var(--gwariva-button-green);
}
.guest_school_sign_up_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}
.guest_school_sign_up_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.guest_school_sign_up_form form .input_box input,
.guest_school_sign_up_form form .input_box select{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
    color: #0F446c;
}
.guest_school_sign_up_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}
.guest_school_sign_up_form form .input_box input:focus ~ span,
.guest_school_sign_up_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}
input::file-selector-button {
    display: none;
}
input::file-selector-text {
    display: none;
}
input[type='file'] {
    color: transparent;
}
.guest_school_sign_up_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}

/* Center Welcome Page */
.center_hero{
    height: 100vh;
    width: 100%;
    background: url('/static/gwarivawebsite/images/center_welcome.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-attachment: fixed;
    margin-bottom: 40px;
}

.center_hero_text{
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

h1.center_welcome_text{
    font-size: 64px;
    line-height: 72px;
    text-align: left;
    color: white;
    font-weight: 400;
    margin: 16px 0;
}

/* Educator Welcome Page */
.educator_hero{
    height: 100vh;
    width: 100%;
    background: url('/static/gwarivawebsite/images/teacher_welcome.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-attachment: fixed;
    margin-bottom: 40px;
}

.educator_hero_text{
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
}
.educator_hero_text div:nth-child(1){
    width: 45%;
}
.educator_hero_text div:nth-child(2){
    width: 55%;
}

h1.educator_welcome_text{
    font-size: 56px;
    line-height: 64px;
    text-align: left;
    color: var(--gwariva-blue);
    font-weight: 600;
    margin: 16px 0;
    letter-spacing: -1px;
}

p.educator_welcome_text{
    font-size: 28px;
    line-height: 40px;
    text-align: left;
    color: var(--gwariva-blues);
    font-weight: 500;
    letter-spacing: -1px;
}

/* parent Welcome Page */
.parent_hero{
    height: 100vh;
    width: 100%;
    background: url('/static/gwarivawebsite/images/teacher_welcome.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-attachment: fixed;
    margin-bottom: 40px;
}

.parent_hero_text{
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
}
.parent_hero_text div:nth-child(1){
    width: 45%;
}
.parent_hero_text div:nth-child(2){
    width: 55%;
}

h1.parent_welcome_text{
    font-size: 56px;
    line-height: 64px;
    text-align: left;
    color: var(--gwariva-blue);
    font-weight: 600;
    margin: 16px 0;
    letter-spacing: -1px;
}

p.parent_welcome_text{
    font-size: 28px;
    line-height: 40px;
    text-align: left;
    color: var(--gwariva-blues);
    font-weight: 500;
    letter-spacing: -1px;
}

/* Parent Sign Up  */
.errorlist{
    list-style-type: none;
    color: red !important;
    padding-left: 0;
    font-size: small;
}
.parent_signup{
    height: 60vh;
    background: url('/static/educator/images/sign_up_step1.png');
    background-size: cover;
    margin-bottom: .5rem;
    /* background-position: center center; */
}

#parent_signup{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}

.parent_signup_info{
    display: flex;
    width: 100%;
    height: 400px;
}

.parent_signup_info .parent_signup_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}

.parent_signup_info .parent_signup_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.parent_signup_info .parent_signup_details p{
    font-size: 24px;
    font-weight: 600;
}
.parent_signup_info .parent_signup_details small{
    font-size: 12px;
    margin: 14px;
}
.parent_signup_info .parent_signup_details small>a{
    color: var(--gwariva-button-green);
}
.parent_signup_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}
.parent_signup_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.parent_signup_form form .input_box input,
.parent_signup_form form .input_box select{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
    color: #0F446c;
}
.parent_signup_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}
.parent_signup_form form .input_box input:focus ~ span,
.parent_signup_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}
input::file-selector-button {
    display: none;
}
input::file-selector-text {
    display: none;
}
input[type='file'] {
    color: transparent;
}
.parent_signup_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}

/*=============== Parent sign_in Page ===============*/
.parent_sign_in{
    height: 60vh;
    background: url('/static/educator/images/educator_login.png');
    background-size: cover;
    margin-bottom: .5rem;
    background-position: center;
}

#parent_sign_in{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}

.parent_sign_in_info{
    display: flex;
    width: 100%;
    height: 290px;
}

.parent_sign_in_info .parent_sign_in_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}

.parent_sign_in_info .parent_sign_in_form form .forgot_password{
    padding: 10px 0;
    font-size: 12px;
}

.parent_sign_in_info .parent_sign_in_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.parent_sign_in_info .parent_sign_in_details p{
    font-size: 24px;
    font-weight: 600;
}

.parent_sign_in_info .parent_sign_in_details small{
    font-size: 12px;
    margin: 14px;
}
.parent_sign_in_info .parent_sign_in_details small>a{
    color: var(--gwariva-button-green);
}

.parent_sign_in_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}

.parent_sign_in_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.parent_sign_in_form form .input_box input{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
}

.parent_sign_in_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}

.parent_sign_in_form form .input_box input:focus ~ span,
.parent_sign_in_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

input::file-selector-button {
    display: none;
}

input::file-selector-text {
    display: none;
}

input[type='file'] {
    color: transparent;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.parent_sign_in_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}


/* Student Welcome Page */
.student_hero{
    height: 100vh;
    width: 100%;
    background: url('/static/gwarivawebsite/images/student_welcome.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-attachment: fixed;
    margin-bottom: 40px;
}

.student_hero_text{
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

h1.student_welcome_text{
    font-size: 64px;
    line-height: 72px;
    text-align: left;
    color: white;
    font-weight: 400;
    margin: 16px 0;
}

a.get_started{
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    width: 180px;
    padding: 20px;
    margin: 24px 0;
    border-radius: 5px;
    color: var(--gwariva-blue);
    font-weight: 600;
    font-size: 20px;
}


/* Student Sign Up */
/*=============== sign_up page===============*/
.errorlist{
    list-style-type: none;
    color: red !important;
    padding-left: 0;
    font-size: small;
}
.student_sign_up{
    height: 60vh;
    background: url('/static/student/images/student_signup.jpeg');
    background-size: cover;
    margin-bottom: .5rem;
    background-position: top -40px center;
}

#student_sign_up{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}

.student_sign_up_info{
    display: flex;
    width: 100%;
    height:480px;
}

.student_sign_up_info .student_sign_up_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}

.student_sign_up_info .student_sign_up_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.student_sign_up_info .student_sign_up_details p{
    font-size: 24px;
    font-weight: 600;
}

.student_sign_up_info .student_sign_up_details small{
    font-size: 12px;
    margin: 14px;
}
.student_sign_up_info .student_sign_up_details small>a{
    color: var(--gwariva-button-green);
}

.student_sign_up_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}

.student_sign_up_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.student_sign_up_form form .input_box input,
.student_sign_up_form form .input_box select{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
    color: #0F446c;
}


.student_sign_up_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}

.student_sign_up_form form .input_box input:focus ~ span,
.student_sign_up_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

input::file-selector-button {
    display: none;
}

input::file-selector-text {
    display: none;
}

input[type='file'] {
    color: transparent;
  }

.student_sign_up_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}
/* Student sign up end */

::-webkit-datetime-edit-fields-wrapper {
    margin-left: 100px;
    color: var(--gwariva-blue); 
}

::-webkit-calendar-picker-indicator {
    color: var(--gwariva-blue);
}

/*=============== Educator sign_in Page ===============*/
.educator_sign_in{
    height: 60vh;
    background: url('/static/educator/images/educator_login.png');
    background-size: cover;
    margin-bottom: .5rem;
    background-position: center;
}

#educator_sign_in{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}

.educator_sign_in_info{
    display: flex;
    width: 100%;
    height: 290px;
}

.educator_sign_in_info .educator_sign_in_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}

.educator_sign_in_info .educator_sign_in_form form .forgot_password{
    padding: 10px 0;
    font-size: 12px;
}

.educator_sign_in_info .educator_sign_in_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.educator_sign_in_info .educator_sign_in_details p{
    font-size: 24px;
    font-weight: 600;
}

.educator_sign_in_info .educator_sign_in_details small{
    font-size: 12px;
    margin: 14px;
}
.educator_sign_in_info .educator_sign_in_details small>a{
    color: var(--gwariva-button-green);
}

.educator_sign_in_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}

.educator_sign_in_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.educator_sign_in_form form .input_box input{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
}

.educator_sign_in_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}

.educator_sign_in_form form .input_box input:focus ~ span,
.educator_sign_in_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

input::file-selector-button {
    display: none;
}

input::file-selector-text {
    display: none;
}

input[type='file'] {
    color: transparent;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.educator_sign_in_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}

/*=============== Student sign_in Page ===============*/
.student_sign_in{
    height: 60vh;
    background: url('/static/educator/images/educator_login.png');
    background-size: cover;
    margin-bottom: .5rem;
    background-position: center;
}

#student_sign_in{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}

.student_sign_in_info{
    display: flex;
    width: 100%;
    height: 290px;
}

.student_sign_in_info .student_sign_in_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}

.student_sign_in_info .student_sign_in_form form .forgot_password{
    padding: 10px 0;
    font-size: 12px;
}

.student_sign_in_info .student_sign_in_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.student_sign_in_info .student_sign_in_details p{
    font-size: 24px;
    font-weight: 600;
}

.student_sign_in_info .student_sign_in_details small{
    font-size: 12px;
    margin: 14px;
}
.student_sign_in_info .student_sign_in_details small>a{
    color: var(--gwariva-button-green);
}


.student_sign_in_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}

.student_sign_in_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.student_sign_in_form form .input_box input{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
}

.student_sign_in_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}

.student_sign_in_form form .input_box input:focus ~ span,
.student_sign_in_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

input::file-selector-button {
    display: none;
}

input::file-selector-text {
    display: none;
}

input[type='file'] {
    color: transparent;
  }

.student_sign_in_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}


/* School Welcome Page */
.school_hero{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2),  rgb(15, 68, 108, 0.73)), url('/static/gwarivawebsite/images/schools_welcome.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-attachment: fixed;
    margin-bottom: 40px;
}

.school_hero_text{
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

h1.school_welcome_text{
    font-size: 56px;
    line-height: 64px;
    text-align: left;
    color: white;
    font-weight: 400;
    margin: 16px 0;
}

a.get_started{
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    width: 180px;
    padding: 20px;
    margin: 24px 0;
    border-radius: 5px;
    color: var(--gwariva-blue);
    font-weight: 600;
    font-size: 20px;
}


/*=============== Schools sign_in Page ===============*/
.school_sign_in{
    height: 60vh;
    background: url('/static/educator/images/educator_login.png');
    background-size: cover;
    margin-bottom: .5rem;
    background-position: center;
}

#school_sign_in{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}

.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}

.school_sign_in_info{
    display: flex;
    width: 100%;
    height: 290px;
}

.school_sign_in_info .school_sign_in_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}

.school_sign_in_info .school_sign_in_form form .forgot_password{
    padding: 10px 0;
    font-size: 12px;
}

.school_sign_in_info .school_sign_in_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.school_sign_in_info .school_sign_in_details p{
    font-size: 24px;
    font-weight: 600;
}

.school_sign_in_info .school_sign_in_details small{
    font-size: 12px;
    margin: 14px;
}
.school_sign_in_info .school_sign_in_details small>a{
    color: var(--gwariva-button-green);
}


.school_sign_in_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}

.school_sign_in_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.school_sign_in_form form .input_box input{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
}

.school_sign_in_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}

.school_sign_in_form form .input_box input:focus ~ span,
.school_sign_in_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

input::file-selector-button {
    display: none;
}

input::file-selector-text {
    display: none;
}

input[type='file'] {
    color: transparent;
}


input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.school_sign_in_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}

/* Guest School Welcome Page */
.guest_school_hero{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2),  rgb(15, 68, 108, 0.73)), url('/static/gwarivawebsite/images/schools_welcome.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-attachment: fixed;
    margin-bottom: 40px;
}

.guest_school_hero_text{
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

h1.guest_school_welcome_text{
    font-size: 56px;
    line-height: 64px;
    text-align: left;
    color: white;
    font-weight: 400;
    margin: 16px 0;
}

a.get_started{
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    width: 180px;
    padding: 20px;
    margin: 24px 0;
    border-radius: 5px;
    color: var(--gwariva-blue);
    font-weight: 600;
    font-size: 20px;
}

/*=============== Guest Schools sign_in Page ===============*/
.guest_school_sign_in{
    height: 60vh;
    background: url('/static/educator/images/educator_login.png');
    background-size: cover;
    margin-bottom: .5rem;
    background-position: center;
}
#guest_school_sign_in{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10vw;
    margin-top: -30vh;
    margin-bottom: 60px;
}
.step_text{
    color: rgb(255, 255, 255, 0.9);
    margin: 10px 20px;
    font-size: 20px;
}
.guest_school_sign_in_info{
    display: flex;
    width: 100%;
    height: 290px;
}
.guest_school_sign_in_info .guest_school_sign_in_form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(60px) saturate(200%);
    border-radius: 5px 0 0 5px;
    padding: 20px;
}
.guest_school_sign_in_info .guest_school_sign_in_form form .forgot_password{
    padding: 10px 0;
    font-size: 12px;
}
.guest_school_sign_in_info .guest_school_sign_in_details{
    width: 30%;
    background: var(--gwariva-blue);
    border-radius: 0 5px 5px 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.guest_school_sign_in_info .guest_school_sign_in_details p{
    font-size: 24px;
    font-weight: 600;
}
.guest_school_sign_in_info .guest_school_sign_in_details small{
    font-size: 12px;
    margin: 14px;
}
.guest_school_sign_in_info .guest_school_sign_in_details small>a{
    color: var(--gwariva-button-green);
}
.guest_school_sign_in_icons i{
    font-size: 32px;
    margin: 14px;
    bottom: 70px;
}
.guest_school_sign_in_form form .input_box{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.guest_school_sign_in_form form .input_box input{
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: .5px solid rgb(15, 68, 108, 0.3);
    outline: none;
    background: transparent;
    resize: none;
}
.guest_school_sign_in_form form .input_box span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 14px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--gwariva-blue);
}
.guest_school_sign_in_form form .input_box input:focus ~ span,
.guest_school_sign_in_form form .input_box input:valid ~ span{
    color: #5E60CE;
    font-size: 12px;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}
input::file-selector-button {
    display: none;
}
input::file-selector-text {
    display: none;
}
input[type='file'] {
    color: transparent;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
.guest_school_sign_in_btn{
    border: none;
    padding: 13px 15px;
    border-radius: 5px;
    background: var(--gwariva-button-green);
    outline: none;
    cursor: pointer;
    width: 130px;
    margin: 13px 0;
    color: var(--gwariva-blue);
    font-weight: 600;
}

/* Login as */
#login_as{
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('/static/gwarivawebsite/images/login_as.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 2rem;
}

.login_as_content{
    display: flex;
    flex-direction: column;
    margin: 0 2rem;
    width: 100%;
}

.login_as_content h1{
    font-size: 48px;
    color: white;
    font-weight: bold;
    margin-bottom: 2.4rem;
}

.login_as_cards{
    display: flex;
    justify-content: space-between;
    align-items: center;  
    column-gap: 16px;  
}

.login_as_cards a{
    font-size: 20px;
    font-weight: bold;
    color: var(--gwariva-blue);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    height: 120px;
    width: 100%;
}
.login_as_cards a:hover{
    background: var(--gwariva-button-green);
}
.demo{
    margin: 6rem 2rem;
}

/*=============== Media Queries ===============*/
@media screen and (max-width: 1200px){
    .camp-images-gallery{
        width: calc(100%-24px);
        columns: 3;
    }
}
@media screen and (max-width: 1150px){
    .partners-logos img{
        height: 200px;
        width: 200px;
    }
}
@media screen and (max-width: 1075px){
    .school_hero_text{
        padding: 32px 72px;
    }
    
    h1.school_welcome_text{
        font-size: 48px;
        line-height: 56px;
    }
    .educator_hero, .parent_hero{
        background-position: center center;
    }
    
    .educator_hero_text, .parent_hero_text{
        padding: 32px 72px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .educator_hero_text div:nth-child(1), .parent_hero_text div:nth-child(1){
        width: 100%;
    }
    .educator_hero_text div:nth-child(2), .parent_hero_text div:nth-child(2){
        width: 100%;
    }
    
    h1.educator_welcome_text, h1.parent_welcome_text{
        font-size: 56px;
        line-height: 64px;
        margin: 16px 0;
    }
    
    p.educator_welcome_text, p.parent_welcome_text{
        font-size: 28px;
        line-height: 40px;
    }
    .partners-logos img{
        height: 200px;
        width: 200px;
    }
}
@media screen and (max-width: 1034px){
    .music-camp{
        margin: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .camp-poster{
        width: 100%;
    }
    .camp-details{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 18px 0;
        align-items: center;
        text-align: center;
    }
    .camp-details h1{
        font-size: 40px;
        line-height: 48px;
    }
    .camp-details h1 br{
        display: none;
    }
    .camp-details p{
        font-size: 20px;
        margin: 24px 0;
        line-height: 32px;
    }
    .camp-details a{
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gwariva-blue);
        background: var(--gwariva-button-green);
        width: 240px;
        height: 50px;
        border-radius: 5px;
        font-size: 18px;
        font-weight: 500;
        margin: 24px 0;
        line-height: 32px;
    }
    .camp-signup form{
        margin: 4rem 2rem;
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 800px;
    }
}
@media screen and (max-width: 984px){
    .manage-music, .uncover-insights{
        display: flex;
        flex-direction: column;
        justify-content: center !important;
    }
    .share-hours{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
    .demo1-img, .demo2-img, .demo3-img{
        width: 100%;
    }
    .demo1-text, .demo2-text, .demo3-text{
        width: 72%;
        margin: 2rem 0;
    }
    br{
        display: none;
    }
    .video-demo iframe{
        width: 90%;
        height: 500px;
    }
}
@media screen and (max-width: 969px){  
    .center_hero_text{
        padding: 40px 80px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .student_hero_text{
        padding: 40px 80px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    h1.student_welcome_text{
        font-size: 56px;
        line-height: 64px;
        text-align: left;
        color: white;
        font-weight: 400;
        margin: 16px 0;
    }
    a.get_started{
        display: flex;
        justify-content: center;
        align-items: center;
        background: white;
        width: 150px;
        padding: 16px;
        margin: 32px 0;
        border-radius: 5px;
        color: var(--gwariva-blue);
        font-weight: 600;
    }
}
@media screen and (max-width: 900px){
    #music-camp-top{
        justify-content: flex-end;
        padding: 1rem;
    }
    /* Music Camp Payment Details */
    #music-camp-top .payment-details{
        display: flex;
        flex-direction: column;
        row-gap: 40px;
        align-items: center;
    }
    .paybill h3, .account h3{
        font-size: 1.6rem;
    }
    .paybill-digits{
        column-gap: 4px;
    }
    .paybill-digits p{
        height: 50px;
        width: 50px;
        font-size: 24px !important;
    }
    .account p{
        font-size: 36px !important;
    }

    .back-icon{
        display: none;
    }
    .contact_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }
    .contact_info .contact_form{
        width: 100%;
        border-radius: 0 0 5px 5px;
        padding: 20px;
    }
    
    .contact_info .contact_details{
        width: 100%;
        border-radius: 5px 5px 0 0;
        padding: 20px;
    }
    .sign_up1_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }
    .sign_up1_info .sign_up1_form{
        width: 100%;
        border-radius: 0 0 5px 5px;
        padding: 20px;
    }
    
    .sign_up1_info .sign_up1_details{
        width: 100%;
        border-radius: 5px 5px 0 0;
        padding: 20px;
    }
    .sign_up2_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }
    .sign_up2_info .sign_up2_form{
        width: 100%;
        border-radius: 0 0 5px 5px;
        padding: 20px;
    }
    
    .sign_up2_info .sign_up2_details{
        width: 100%;
        border-radius: 5px 5px 0 0;
        padding: 20px;
    }

    .sign_in_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }
    .sign_in_info .sign_in_form{
        width: 100%;
        border-radius: 0 0 5px 5px;
        padding: 20px;
    }
    
    .sign_in_info .sign_in_details{
        width: 100%;
        border-radius: 5px 5px 0 0;
        padding: 20px;
    }

    .educator_sign_up1_info, .parent_signup_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }

    .educator_sign_up1_info .educator_sign_up1_form, .parent_signup_info .parent_signup_form{
        width: 100% !important;
        border-radius: 0 0 5px 5px !important;
        padding: 20px !important;
    }
    
    .educator_sign_up1_info .educator_sign_up1_details, .parent_signup_info .parent_signup_details{
        width: 100% !important;
        border-radius: 5px 5px 0 0 !important;
        padding: 20px !important;
    }

    .educator_sign_up2_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }

    .educator_sign_up2_info .educator_sign_up2_form{
        width: 100% !important;
        border-radius: 0 0 5px 5px !important;
        padding: 20px !important;
    }
    
    .educator_sign_up2_info .educator_sign_up2_details{
        width: 100% !important;
        border-radius: 5px 5px 0 0 !important;
        padding: 20px !important;
    }

    .educator_sign_in_info, .parent_sign_in_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }

    .educator_sign_in_info .educator_sign_in_form, .parent_sign_in_info .parent_sign_in_form{
        width: 100% !important;
        border-radius: 0 0 5px 5px !important;
        padding: 20px !important;
    }
    
    .educator_sign_in_info .educator_sign_in_details, .parent_sign_in_info .parent_sign_in_details{
        width: 100% !important;
        border-radius: 5px 5px 0 0 !important;
        padding: 20px !important;
    }

    .student_sign_up_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }

    .student_sign_up_info .student_sign_up_form{
        width: 100% !important;
        border-radius: 0 0 5px 5px !important;
        padding: 20px !important;
    }
    
    .student_sign_up_info .student_sign_up_details{
        width: 100% !important;
        border-radius: 5px 5px 0 0 !important;
        padding: 20px !important;
    }

    .student_sign_in_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }

    .student_sign_in_info .student_sign_in_form{
        width: 100% !important;
        border-radius: 0 0 5px 5px !important;
        padding: 20px !important;
    }
    
    .student_sign_in_info .student_sign_in_details{
        width: 100% !important;
        border-radius: 5px 5px 0 0 !important;
        padding: 20px !important;
    }
    .school_sign_up_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }

    .school_sign_up_info .school_sign_up_form{
        width: 100% !important;
        border-radius: 0 0 5px 5px !important;
        padding: 20px !important;
    }
    
    .school_sign_up_info .school_sign_up_details{
        width: 100% !important;
        border-radius: 5px 5px 0 0 !important;
        padding: 20px !important;
    }
    .school_sign_in_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }
    .school_sign_in_info .school_sign_in_form{
        width: 100% !important;
        border-radius: 0 0 5px 5px !important;
        padding: 20px !important;
    }
    .school_sign_in_info .school_sign_in_details{
        width: 100% !important;
        border-radius: 5px 5px 0 0 !important;
        padding: 20px !important;
    }
    .guest_school_sign_up_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }
    .guest_school_sign_up_info .guest_school_sign_up_form{
        width: 100% !important;
        border-radius: 0 0 5px 5px !important;
        padding: 20px !important;
    }
    .guest_school_sign_up_info .guest_school_sign_up_details{
        width: 100% !important;
        border-radius: 5px 5px 0 0 !important;
        padding: 20px !important;
    }
    .guest_school_sign_in_info{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }
    .guest_school_sign_in_info .guest_school_sign_in_form{
        width: 100% !important;
        border-radius: 0 0 5px 5px !important;
        padding: 20px !important;
    }
    .guest_school_sign_in_info .guest_school_sign_in_details{
        width: 100% !important;
        border-radius: 5px 5px 0 0 !important;
        padding: 20px !important;
    }
    .contact_btn{
        bottom: 50px;
    }
    .login_as_content h1{
        font-size: 32px;
        color: white;
        font-weight: bold;
    }
    .login_as_cards a{
        height: 60px;
        font-weight: 500;
        font-size: 16px;

    }
    .login_as_cards{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-gap: 10px;   
    }
    .school_hero_text{
        padding: 24px 64px;
    }
    
    h1.school_welcome_text{
        font-size: 40px;
        line-height: 48px;
    }
    .partners-logos img{
        height: 200px;
        width: 200px;
    }
}
@media screen and (max-width: 864px){
    .manage-music, .share-hours, .uncover-insights{
        margin: 2rem;
    }
    .demo1-text, .demo2-text, .demo3-text{
        width: 80%;
    }
    .video-demo iframe{
        width: 90%;
        height: 450px;
    }
    .camp-signup form .name, .camp-signup form .contact-info{
        display: flex;
        flex-direction: column;
    }
    .name .input-field, .contact-info .input-field{
        width: 100%;
    }
    .input-field span{
        font-size: 14px;
    }
    .camp-signup form{
        width: 600px;
    }
    .activity-card{
        max-width: 380px;
    }
    /* .leads-profiles .profile{
        max-width: 320px;
    } */
    /* .profile .profile-image{
        height: 340px;
        width: ;
    } */
    .camp-signup form .add-child{
        width: 100%;
    }
    form .add-child button{
        width: 100%;
    }
}
@media screen and (max-width: 834px){
    .activity-card{
        max-width: 360px;
    }
    /* .leads-profiles .profile{
        max-width: 300px;
    } */
    .profile .profile-image{
        height: 320px;
    }
    .camp-venue {
        display: flex;
        flex-direction: column;
    }
    .camp-venue .venue-details{
        width: 100%;
        align-items: center;
    }
    .camp-venue .venue-map{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .camp-venue .venue-map iframe{
        width: 100%;
        height: 450px
    }
    .latest_news{
        display: flex;
        flex-direction: column;
    }
    .details-text .words{
        align-items: center;
    }
    .words h1{
        font-size: 40px;
        line-height: 48px;
        margin: 16px 0;
        text-align: center;
    }
    .words p{
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }
    .details-image{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .details-image img{
        width: 100%;
        height: 240px;
    }
    .details-text{
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .numbers-card{
        margin-left: 0;
    }
    .partners-logos{
        margin: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
@media screen and (max-width: 790px){
    .demo1-text, .demo2-text, .demo3-text{
        width: 90%;
    }
    #music-camp-images{
        height: 100vh;
        background-position: center;
        background-repeat: no-repeat;
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    #music-camp-images h1{
        font-size: 48px;
        line-height: 57px;
        margin-top: 100px;
    }
    #music-camp-images p{
        font-size: 16px;
        line-height: 20px;
        width: 80%;
        margin: 1rem;
    }
    #music-camp-images .filters{
        margin-top:10vh;
    }
    #music-camp-images .filters button{
        width: 120px;
        margin: 0 16px;
    }
}
@media screen and (max-width: 767px){

    .school_hero{
        background-position: center center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-attachment: fixed;
        margin: 0;
    }
    .camp-images-gallery{
        columns: 2;
    }
}
@media screen and (max-width: 675px){
    .login_as_cards{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        grid-gap: 10px;   
    }
    .school_hero_text{
        padding: 24px 56px;
    }
    
    h1.school_welcome_text{
        font-size: 32px;
        line-height: 40px;
    }
    .camp-signup form{
        width: 500px;
    }
    .payment{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        row-gap: 2rem;
    }
}
@media screen and (max-width: 610px){    
    .center_hero_text{
        padding: 40px;
    }
    
    h1.center_welcome_text{
        font-size: 56px;
        line-height: 64px;
        text-align: left;
        color: white;
        font-weight: 400;
        margin: 16px 0;
    }
    .educator_hero_text, .parent_hero_text{
        padding: 32px 72px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    h1.educator_welcome_text, h1.parent_welcome_text{
        font-size: 48px;
        line-height: 64px;
        margin: 12px 0;
    }
    p.educator_welcome_text, p.parent_welcome_text{
        font-size: 28px;
        line-height: 40px;
    }
    .student_hero_text{
        padding: 40px;
    }
    
    h1.student_welcome_text{
        font-size: 56px;
        line-height: 64px;
        text-align: left;
        color: white;
        font-weight: 400;
        margin: 16px 0;
    }
    .video-demo iframe{
        width: 100% !important;
        height: 200px !important;
    }
    .camp-details h1{
        font-size: 32px;
        line-height: 40px;
    }
    .camp-details p{
        font-size: 16px;
        margin: 24px 0;
        line-height: 24px;
    }
    .partners-logos img{
        height: 200px;
        width: 200px;
    }
    #music-camp-images h1{
        font-size: 40px;
        line-height: 48px;
    }
    #music-camp-images .filters button{
        width: 100px;
    }
}
@media screen and (max-width: 556px){
    h1#business{
        font-size: 35px;
        line-height: 55px;
        font-weight: 500;
    }
    .login_as_cards{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-gap: 10px;   
    }
    .school_hero_text{
        padding: 16px 32px;
    }
    h1.school_welcome_text{
        font-size: 28px;
        line-height: 40px;
    }
    #music-camp-top p{
        font-size: 18px;
        line-height: 28px;
        text-align: center;
    }
    #music-camp-top h1{
        font-size: 56px;
        line-height: 64px;
    }
    .camp-signup form{
        width: 420px;
    }
    .words h1, .activities-title h1, .leads-title h1, .sponsors-title h1, .signup-title h1, .venue-title h1{
        font-size: 28px;
        line-height: 40px;
        text-align: center;
    }
    .words p{
        font-size: 14px;
        line-height: 24px;
    }
    .numbers-card{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 400px;
    }
    .numbers-card div{
        max-width: 200px;
    }
    .numbers-card div h1{
        font-size: 28px;
        line-height: 36px;
    }
    .numbers-card div span{
        font-size: 14px;
    }
}
@media screen and (max-width: 485px){   
    .center_hero_text{
        padding: 40px 20px;
    }
    
    h1.center_welcome_text{
        font-size: 40px;
        line-height: 48px;
    }
    
    p.center_welcome_text{
        font-size: 16px;
        line-height: 32px;
        background: white;
        padding: 16px;
    }
    
    .educator_hero_text, .parent_hero_text{
        padding: 32px 56px;
    }
    h1.educator_welcome_text, h1.parent_welcome_text{
        font-size: 40px;
        line-height: 64px;
        margin: 12px 0;
    }
    p.educator_welcome_text, p.parent_welcome_text{
        font-size: 24px;
        line-height: 40px;
    }

    .student_hero_text{
        padding: 40px 20px;
    }
    
    h1.student_welcome_text{
        font-size: 40px;
        line-height: 48px;
    }
    
    p.student_welcome_text{
        font-size: 16px;
        line-height: 32px;
        background: white;
        padding: 16px;
    }
    #music-camp-top h1{
        font-size: 48px;
        line-height: 56px;
    }
    #music-camp-top p{
        font-size: 16px;
        line-height: 24px;
    }
    .activity-card{
        max-width: 340px;
    }
    .camp-signup form{
        width: 400px;
    }
    form .button-camp button{
        width: 100%;
    }
    .sign_up1_btn{
        width: 100%;
    }
    .camp-images-gallery{
        columns: 1;
    }
}
@media screen and (max-width: 473px){
    #login_as{
        height: 130vh;
    }
    #music-camp-top h1{
        font-size: 40px;
        line-height: 48px;
    }
}
@media screen and (max-width: 440px){
    .school_hero_text{
        padding: 16px 24px;
    }
    
    h1.school_welcome_text{
        font-size: 24px;
        line-height: 40px;
    }
    .partners-logos img{
        height: 200px;
        width: 200px;
    }
    .paybill-digits p{
        height: 40px;
        width: 40px;
        font-size: 20px !important;
    }
    .account p{
        font-size: 28px !important;
    }
    .camp-signup form{
        width: 360px;
    }
    .payment .paybill-number, .payment .account-name{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }
    .paybill-number p, .account-name p{
        margin-left: 0;
    }
    #music-camp-images .filters button{
        width: 80px;
        margin: 0 4px;
    }
}
@media screen and (max-width: 1257px){
    .demo1-img, .demo2-img, .demo3-img{
        width: 60%;
    }
    .demo1-text, .demo2-text, .demo3-text{
        width: 40%;
    }
}
@media screen and (max-width: 300px){
    .camp-signup form{
        width: 280px;
    }
    .activity-card{
        max-width: 280px;
    }

    .numbers-card{
        display: flex;
        flex-direction: column;
        width: 200px;
    }
    .numbers-card div{
        max-width: 200px;
    }
    .numbers-card div h1{
        font-size: 28px;
        line-height: 36px;
    }
    .numbers-card div span{
        font-size: 14px;
    }
}
