*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: 0;
}
*:focus {
    outline: 0;
}
body{
    font-family: 'Fredoka', sans-serif;
}
.header{
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    width: 100%;
    padding: 1rem 1rem;
    background-color: #742e16;
    backdrop-filter: blur(5rem);
}
@media screen and (min-width:500px){
    .header{
        padding: 2rem 1rem;
    }
}
@media screen and (min-width:900px){
    .header{
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #742e16;
        padding: 1rem 4rem;
    }
}
.logo img{
    width: auto;
    height: 2rem;
}
.bx-menu{
    color: #fff;
    font-size: 2rem;
}
@media screen and (min-width:500px){
    .bx-menu{
        font-size: 3rem;
    }
}
.bx-x{
    color: #fff;
    font-size: 2rem;
}
@media screen and (min-width:500px){
    .bx-x{
        font-size: 3rem;
    }
}
.horizontal-line{
    width: 90%;
    height: .05rem;
    margin: 0 auto;
    background-color: #fff;
}
@media screen and (min-width:500px){
    .horizontal-line{
        width: 95%;
        height: .1rem;
    }
}
@media screen and (min-width:900px){
    .horizontal-line{
        display: none;
    }
}
.navbar{
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #742e16;
    transition: all .3s ease;
    overflow: hidden;
}
#check:checked~.navbar{
    height: 21rem;
}
@media screen and (min-width:500px){
    #check:checked~.navbar{
        height: 24rem;
    }
}
.navbar a{
    display: block;
    font-size: 1.7rem;
    text-transform: uppercase;
    color: #faaf3b;
    text-decoration: none;
    font-weight: 400;
    margin: 0;
    padding-right: 1rem;
    text-align: end;
    transform: translateY(-3rem);
    transition: all .3s ease;
    opacity: 0;
}
@media screen and (min-width:500px){
    .navbar a{
        font-size: 2rem;
        padding-right: 1.5rem;
    }
}
.navbar span .fl{
    display: block;
    font-size: 1.7rem;
    text-transform: uppercase;
    color: #faaf3b;
    font-weight: 400;
    margin: 0 0 .5rem 0;
    text-align: end;
    padding-right: 1rem;
    padding-top: .2rem;
    transition: all .3s ease;
    transform: translateY(-3rem);
    opacity: 0;
}
@media screen and (min-width:500px){
    .navbar span .fl{
        padding-right: 1.5rem;
        font-size: 2rem;
    }
}
@media screen and (min-width:900px){
    .navbar span .fl{
        display: none;
    }
}
#check:checked~.navbar span .fl{
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(.15s * var(--i));
}
#check:checked~.navbar a{
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(.15s * var(--i));
}
@media screen and (min-width:900px){
    .navbar{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        margin-left: 3rem;
        position: static;
        height: auto;
    }
    .navbar a{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: .8rem;
        transform: translateY(0);
        opacity: 1;
    }
}
.icon{
    position: absolute;
    right: 1rem;
    font-size: 2.5rem;
    color: #742e16;
    cursor: pointer;
    display: inline-flex;
}
.icon #close-icon{
    display: none;
}
#check{
    display: none;
}
#check:checked~.icon #menu-icon{
    display: none;
}
#check:checked~.icon #close-icon{
    display: block;
}
@media screen and (min-width:900px){
    .icon{
        display: none;
    }
}
.socials{
    display: flex;
    font-size: 1.1rem;
    text-decoration: none;
    justify-content: flex-end;
    position: relative;
    right: 0;
    font-weight: 500;
    margin: 2.5rem 0;
    padding-left: .2rem;
    transform: translateY(-3rem);
    transition: all .3s ease;
}
@media screen and (min-width:500px){
    .socials{
        margin: 3rem 0;
    }
}
@media screen and (min-width:900px){
    .socials{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        transform: translateY(0);
    }
}
.socials a{
    display: flex;
    justify-content: space-around;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
}
@media screen and (min-width:900px){
    .socials a{
        justify-content: flex-end;
        align-items: center;
        padding: .05rem 0 .05rem .6rem !important;
        margin-top: .4rem;
    }
}
.bxl-youtube{
    color: #fff;
    font-size: 2rem;
}
.bxl-tiktok{
    color: #fff;
    font-size: 2rem;
}
.bxl-instagram{
    color: #fff;
    font-size: 2rem;
}
.bxl-facebook{
    color: #fff;
    font-size: 2rem;
}