/*---------------------Fonts-----------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chewy&display=swap');
/*---------------------Fonts-----------------*/

/*---------------------Roots-----------------*/

:root {
    ---orange: #EF6A00;
    ---white: #ffffff;
    ---Pink: #BB3760;
    ---black: #222222;
    ---border: #e5e5e5;
    ---LightYellow: #FEF2EC;
}

/*---------------------Roots-----------------*/

/*---------------Header---------*/
.header {
    position: relative;
    width: 100%;
    z-index: 100;
}

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

.header .container i {
    background-color: var(---white);
    width: 60px;
    height: 60px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.247);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 20px;
    cursor: pointer;
}

.header .container .rightbutton {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .container .rightbutton button {
    width: 200px;
    height: 70px;
    background-color: var(---white);
    border-radius: 100px;
    font-size: 20px;
    color: var(---orange);
    cursor: pointer;
}

.header .container .rightbutton button:hover {
    animation: hithere 1.5s ease infinite;
}

@keyframes hithere {
    30% {
        transform: scale(1);
    }

    40%,
    60% {
        transform: rotate(-20deg) scale(1);
    }

    50% {
        transform: rotate(20deg) scale(1);
    }

    70% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.header .container .rightbutton #menu {
    margin-right: 15px;
}

.header .container i:hover {
    color: var(---orange);
}

.header .container .navbar {
    margin-left: 0px;
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: -2000%;
    z-index: 200;
    transition: 3s all ease-in-out;
}

.header .container .navbar .data {
    width: 90%;
    margin: 10px auto;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.253);
    backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 30px;
    height: 98%;
    border: 2px solid rgba(255, 255, 255, 0.349);
    background-color: #22222211;
}

.header .container .navbar .data a {
    display: block;
    font-size: 30px;
    text-align: center;
    width: 95%;
    margin: 15px 0px;
    padding: 30px 0px;
    color: var(---white);
    border-radius: 20px;
}

.header .container .navbar .data a:hover {
    background-color: var(---orange);
    color: var(---white);
}

.header .container .right-button #menu {
    display: inherit;
}

.header .container .navbar.active {
    top: 0px;
    transition: 0.5s all ease-in-out;
}

.header .container .navbar #close {
    font-size: 25px;
    position: absolute;
    right: 130px;
    top: 40px;
    color: var(---black);
    cursor: pointer;
    z-index: 20;
}



.backgroundimagehero {
    position: relative;
    position: absolute;
    width: 100%;
    z-index: -2;

}

.backgroundimagehero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -2;
}





@media (max-width:2560px) {
    .header .container .navbar #close {
        font-size: 25px;
        position: absolute;
        right: 180px;
        top: 40px;
        color: var(---black);
        cursor: pointer;
        z-index: 20;
    }
}

@media (max-width:1920px) {
    .header .container .navbar #close {
        font-size: 25px;
        position: absolute;
        right: 140px;
        top: 40px;
        color: var(---black);
        cursor: pointer;
        z-index: 20;
    }
}

@media (max-width:1400px) {
        .header .container .navbar .data a {
        display: block;
        font-size: 25px;
        text-align: center;
        width: 95%;
        margin: 10px 0px;
        padding: 20px 0px;
        color: var(---white);
        border-radius: 20px;
    }
}

@media (max-width:650px) {
    .header .container .navbar #close {
        font-size: 25px;
        position: absolute;
        right: 70px;
        top: 40px;
        color: var(---black);
        cursor: pointer;
        z-index: 20;
    }
}

@media (max-width:600px) {
    .header .container .rightbutton button {
        width: 130px;
        height: 50px;
        font-size: 16px;
    }

    .header .container i {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .header .container img {
        width: 150px;
    }

}

@media (max-width:500px) {
    .backgroundimagehero {
        width: 100%;
        height: 400px;

    }

    .backgroundimagehero img {
        height: 100%;
    }
}

@media (max-width:450px) {
    .header .container .rightbutton button {
        width: 100px;
        height: 40px;
        font-size: 14px;
    }

    .header .container i {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .header .container img {
        width: 100px;
    }


    .header .container .navbar #close {
        font-size: 16px;
        position: absolute;
        right: 40px;
        top: 30px;
        color: var(---black);
        cursor: pointer;
        z-index: 20;
    }

}

@media (max-width:400px) {
    .header .container .navbar .data a {
        font-size: 20px;
        width: 95%;
        margin: 8px 0px;
        padding: 30px 0px;
    }

    .header .container .navbar .data {
        width: 90%;
        height: 88%;
        border: 2px solid rgba(255, 255, 255, 0.349);
        background-color: #22222211;
    }

}