:root{
    --bs-header-page:#290F3E; 
}
/*-------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header{
    width: 100%;
    height: 100px;
    z-index: 999;
    background: var(--bs-header-page);
    display: flex;
    justify-content: center;
}
.header .container-header{
    display: grid;
    grid-template-columns: 0.5fr 2fr 0px;
    justify-content: space-between;
    align-items: center;
    width: auto;
    height: 100%;
    align-content: center;
}
.header .container-header .content-menu-hamburguer{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.header .container-header .content-menu-hamburguer .menu-btn {
    display: block;
    width: auto;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
    box-sizing: border-box;
    padding: initial;
    border: none;
}
.header .container-header .content-menu-hamburguer .menu-btn:after{
    content: 'Menú';
    background: #FF46B8;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 1.5rem;
    font-family: "Comfortaa-Regular" !important;
    display: none;
}
.header .container-header .content-menu-hamburguer .menu-btn:before {
    box-shadow: 0 10px 0 #fff;
    margin-bottom: 16px;
}
.header .container-header .content-menu-hamburguer .menu-btn:checked{
    z-index: 5;
}
.header .container-header .content-menu-hamburguer .menu-btn:checked ~ #sidebarMenu {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}
.header .container-header .content-menu-hamburguer #sidebarMenu {
    position: fixed;
    top: 0px;
    left: 0;
    display: none;
    width: 100%;
    height: auto;
    margin-top: 0;
    padding: 1rem 0rem;
    padding-top: 100px;
    background: #290f3edb;
    text-transform: uppercase;
    transform: translateY(-250%);
    transition: transform 250ms ease-in-out;
    z-index: 4;
    -webkit-transform: translateY(-250%);
    -moz-transform: translateY(-250%);
    -ms-transform: translateY(-250%);
    -o-transform: translateY(-250%);
}
.header .container-header .content-menu-hamburguer #sidebarMenu .container-menu{
    width: 100%;
    height: 100%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}
.header .container-header .content-menu-hamburguer #sidebarMenu .container-menu .btn-bg-onn {
    background: #FF46B8;
    color: #fff;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}
.header .container-header .content-menu-hamburguer #sidebarMenu .container-menu .btn-bg-onn i{
    color: #FF3030;
}
.header .container-header .logo{
    display: flex;
    justify-content: center;
    z-index: 5;
}
.header .container-header .logo a{
    width: auto;
    height: 100%;
}
.header .container-header .logo picture img{
    width: 100%;
    height: 80px;
    max-width: 100%;
    object-fit: cover;
    display: block;
}
.header .container-header .sections-nav{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.header .container-header .sections-nav .btn-bg-onn{
    background: #FF46B8;
    color: #fff;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}
.header .container-header .sections-nav .btn-bg-onn i{
    color: #FF3030;
}
.header .container-header .container-searcher{
    display: flex;
    justify-content: flex-end;
}
.header .container-header .container-searcher .input-search{
    border-radius: 10px;
    background: #fff;
    padding: 2%;
    margin-right: 5%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.header .container-header .container-searcher .input-search i{
    color: #b4b4b4;
}
.header .container-header .container-searcher .input-search .search {
    border: 0.5px solid #b4b4b4;
    border: none;
    font-size: 1em;
    padding-left: 6px;
    width: 100%;
}
.header .container-header .container-searcher .input-search .search:focus-visible {
    border: 0.5px solid #b4b4b4;
    border: none;
    outline: none;
}
.header .container-header .container-searcher .button-search{
    background: rgb(255, 255, 255);
    padding: 4%;
    margin-right: 5%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    width: 20%;
    cursor: pointer;
}
.header hr{
    background: #cdcdcd;
    border: 1px solid #cdcdcd;
    border-radius: 15px;
    box-shadow: 0 0 30px #cdcdcd;
    opacity: 1!important;
    height: 2px!important;
    width: 90%;
}
@media (max-width: 1070px){ 
    .header .container-header{
        width: 95%;
    }
}
@media (max-width: 991px){ 
    .header .container-header .content-menu-hamburguer .menu-btn:after{
        display: block;
    }
    .header .container-header .content-menu-hamburguer #sidebarMenu {
        display: block;
    }
    .header .container-header{
        grid-template-columns: 1fr 120px;
        justify-items: start;
    }
    .header .container-header .sections-nav{
        display: none;
    }
}