*{
    font-family: 'Poppins',sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body{
    overflow: hidden;
}

#background-img{
    opacity: 0.6;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: -999;
}

.navbar-item{
    cursor: pointer;
}

.side-bar-button{
    position: absolute;
    right: -300px;
    top: 80px;
    z-index: 999;
    width: 300px;
}

.side-bar-button .side-bar-button-in{
    background-color: rgb(69, 135, 255);
    border-radius: 30px;
    border: 2px solid white;
    box-shadow: 5px 5px #d2d2d2;
    text-align: center;
    color: white;
    z-index: 999;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgba(69, 135, 255,1); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    animation-name: example;
    animation-duration: 1s;

}
@keyframes example {
    from { background-color: rgba(69, 135, 255,0);}
    to {background-color: rgba(69, 135, 255,1);}
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

@media (max-width: 786px){
    .side-bar-button{
        right: 0px;
        top: 80px;
        width: 100%;
        right: -1000px;
    }
    .txt-none{
        display: none;
    }

    .side-bar-button .side-bar-button-in{
        background-color: white;
        color: rgb(69, 135, 255);
        border: 2px solid rgb(69, 135, 255);
    }
    .tr-en-div{
        display: none;
    }
}

.side-bar-button-in,#menubutton:hover{
cursor: pointer;
}


.logo1 img{
    position: absolute;
    overflow: visible;;
    left:84px;
    top: 25px;
    width:90px;
    height:30px;
}


.navbar-item{
    width: 20px;
}



@media (max-width: 786px){
    .logo1 img{
        display: none;
    }
    .navbar-item{
        width: 25px;
    }
    .nav-item-small{
        width: 25px;
    }
}

a{
    text-decoration: none;
}

@media (max-width: 575px) {

    /*menu*/

    .animation-mobile{
        position: absolute !important;
        z-index: -1;
        width: 84%;
        display: block;
        margin-left: 8%;
        margin-right: 8%;
    }

    .animation-top{
        margin-top: 350px !important;
    }

    #spanMenu{
        display: none;
    }

}

@media (min-width: 576px) and (max-width: 700px){


    #menu{
        height: 80px;
        width: 100%;
        background-color: white;
        background-attachment: fixed;
        box-shadow: 0 -15px 30px rgba(0,0,0,20);
        display: flex;
        justify-content: space-around;
    }


}


/* landscape */
@media (min-width: 701px) and (max-width: 1092px) {


    #menu {
        height: 80px;
        width: 100%;
        background-color: white;
        background-attachment: fixed;
        box-shadow: 0 -15px 30px rgba(0, 0, 0, 20);
        display: flex;
        justify-content: space-around;
    }

}

/* desktop */
@media (min-width: 1093px) and (max-width: 1399px) {


    #menu{
        height: 80px;
        width: 100%;
        background-color: white;
        background-attachment: fixed;
        box-shadow: 0 -15px 30px rgba(0,0,0,20);
        display: flex;
        justify-content: space-around;
    }

}

/* xlarge desktop */
@media (min-width: 1400px) {

    #menu{
        height: 80px;
        width: 100%;
        background-color: white;
        background-attachment: fixed;
        box-shadow: 0 -15px 30px rgba(0,0,0,20);
        display: flex;
        justify-content: space-around;
    }

}



.scroll-up {

    position:fixed;
    bottom:15px;
    right:15px;
    display:none;
    z-index: 999999999999;
}

