@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Style+Script&display=swap'); */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: 'Comfortaa', cursive;
}

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* padding: 30px 100px; */

    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

    max-width: 2500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    
    /*background-color: #8039f1;*/


    /*background-color: #12311a80;*/
    /* background-color: #12311a3d; */

    /* background-color: #00000000; */
    /* background-color: #fff; */

    padding-bottom: 10px;

    box-shadow: 0px 0px 15px 1px black;

    /* border-bottom: 1px solid rgba(109, 109, 109, 0.5); */
    
    height: 100px;

    transition: .5s ease-in-out;
}

#toggle-btn-id{
    display: none;
}

.logo{
    color: #fff;
    
    width: 200px;
    height: 100%;
    /* height: 60px; */

    /* height: -webkit-fill-available; */

    position: relative;
    
    /*border: 1px solid red;*/  
}

.logo img{
    
    width: 100%;
    height: 100%;

    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* object-fit: cover; */
    object-fit: contain;
    
    /*border: 1px solid green;*/
}

.logo #round-logo{
    height: 170%;
    /* object-fit: contain; */
}

.logo h2{
    /* width: 120%; */
    width: 122%;

    color: #fff;

    font-family: 'Style Script', cursive;
    font-size: 29px;
    text-align: center;
    user-select: none;

    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.navigation{
    width: 40%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

.navigation a{
    position: relative;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;

    /* margin-left: 140px; */

    transition: .5s;

    /* border: 1px solid red; */
}

.navigation a:hover, .navigation a.active{
    color: #00C24F;
    /*color: #8039f1;*/

    transform: scale(1.2);
    
    text-shadow: 5px 15px 14px #000000;

    /* border-bottom: 1px solid #00C24F; */
}



.hide{
    display: none;
    opacity: 0;
}




/* header .btns{

} */

header .btns a{
    color: #fff;

    border: 1px solid #fff;

    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;

    transition: .5s;
}

header .btns a:hover{
    cursor: pointer;
    color: #00C24F;
    border: 1px solid #00C24F;
    
    /* text-shadow: 5px 15px 14px #000000;    */
}




header #nav-toggle-btn{

    position: absolute;
    top: 22px;
    right: 22px;

    display: none;
    color: #fff;
    transition: .5s ease-in-out;
}

/* 
.navbar .expanded{
    height: 300px;
}


.navbar .expand-quote-btn{
        
    max-height: 100px;

    padding: 10px;

    margin-top: 10px;
    margin-bottom: 20px;
    
} */


#loading-circle-anim{
    width: 20%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.loading-circle-anim-class{
    width: 20%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.failed{
    color: red;
}

.ok{
    color: green;
}


@media only screen and (max-width: 800px) 
{
    header{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        
        padding-bottom: 0px;

        /* height: auto; */
    }

    .logo{
        height: 90px;
    }

    .navigation{
        width: 100%;
    
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    header #nav-toggle-btn{
        display: block;
    }

        
    header .navigation{
        transform: scale(0);
    }
    
    
    header .btns{
        transform: scale(0);
        
        /* margin-bottom: 20px; */
    }
}

