@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@300;500&display=swap');

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    width: 100% !important;
    height: 100% !important;
    margin: 0px !important;
    padding: 0px !important;
    overflow-x: hidden !important;
    background-color: #E9F7EF;
}

* {
    font-family: 'Spartan', sans-serif;
}


.uper {
    text-transform: uppercase;
}

.pointer {
    cursor: pointer;
}

.circle {
    border-radius: 50%;
}

.title {
    width: 100%;
    max-width: 100%;
    padding: 7px 0px;
    border-radius: 5px;
    color: #fff;
    background-color: #6633ff;
    margin-bottom: 20px;
    text-align: center;
}

#logo {
    width: 200px;
}


ul {
    padding-inline-start: 0;
}


.test {
    width: 100%;
    height: 100%;
    background-color: #7F7F7F;
}

.img-lang {
    width: 18px;
}

.button1 {
    padding: 5px 15px;
    border-radius: 5px;
    border: none;
    background-color: #6633ff;
    color: #fff;
    font-size: 1rem;
}


#title-comparer{
    color: #fff;
background-color: #1DB02E;
border: none;
padding: 5px 15px;
border-radius: 5px;
font-size: 1rem;
}


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

    header {
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0 5%;
    }

    #logo-burger {
        position: relative;
        z-index: 5;
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
        border-bottom: 1px solid rgb(199, 199, 199);
    }

    .burger {
        display: block;
    }



    #menu {
        flex-direction: column;
        justify-content: space-evenly;
        width: 100%;
        line-height: 2.5rem;
        margin-bottom: 0;
    }

    #menu button {
        order: -1;
        margin-bottom: 15px;
        margin-top: 10px;
    }

    #lang ul {
        line-height: normal;
    }

    .pusher {
        transition-duration: 0.5s;
    }

    .pusher.active {
        transform: translateY(312px);
    }
}