/*------------------ Header --------------------------------------------------------------------------------*/
header{
    display: flex;
    height: 100vh;
    padding: 0px 25px;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 55px;
    user-select: none;
    transition: 0.3s;
}

header > img{
    margin-top: 45px;
    width: 79px;
    height: 56px;
    transition: 0.3s;
    filter: drop-shadow(0px 0px 50px rgb(202, 50, 50));
}
header section{
    border-radius: 16px;
    background: rgba(116, 66, 66, 0.10);
    backdrop-filter: blur(10px);
    display: flex;
    padding: 24px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: 0.3s;
}
.transparentr{
    height: 80px;
}
header section button{
    width: 20vw;
    max-width: 300px;
    display: flex;
    align-items: center;
    border-radius: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #FFF;
    gap: 13px;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 300;
    padding: 11px 24px;
    transition: 0.3s;
}
header section .actual_button{
    background: #BB0808;
    transition: 0.3s;
}
header section button img{
    width: 23px;
    height: 23px;
}

header section button:hover{
    gap: 20px;
    background-color: #bb080814;
}
header section .actual_button:hover{
    background: #BB0808;
}

/*------------------ Header --------------------------------------------------------------------------------*/


/*------------------ Responsive --------------------------------------------------------------------------------*/
@media only screen and (max-width: 882px) {
    header section button p{
        display: none;
    }
    header section button{
        width: auto;
        padding: 11px;
    }
}
@media (orientation: portrait) and (max-width: 650px) {
    header{
        width: 86vw;
        height: auto;
        align-items: center;
    }
    header > img{
        display: none;
    }
    header > .transparentr{
        display: none;
    }
    header > section{
        flex-direction: row;
        width: 80vw;
        padding: 15px 20px;
        justify-content: space-between;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 354px) {
    header > section{
        overflow-x: scroll;
    }
}

@media only screen and (max-width: 439px) {
    header section{
        overflow-x: scroll;
    }
}
/*------------------ Responsive --------------------------------------------------------------------------------*/