
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    background-color: #111727;
}
   
:root {
    --bg1: #212121;
    --bg2: #38454c;
    --bg3: #445760;

    /* Background Color */
    --bg-color:#111727;
    --bg-color1: #0b1320;
    --bg-color2: #445760;
    --bg-color3: #38454C;

    --white: #f0f0f0;

    /* text color */
    --text: #858686;
    --text2: #445660;
    --text1: #9eaba8;
    --text3: #3E88C8;

    /* text hover */
    --text-hover: #c7c6c6;
    --hover: #2964AE;

    --gestihub-primary: #eb5e2e;
    --gestihub-1: #EA5A2A; 

    --gestihub-secundary: #4e4d4d;
    --gestihub-2: #38454c;  
}


.header {
    display: block;
    width: 100%;
    position: relative;
    z-index: 99;
    padding: 20px;
    background-color: var(--bg-color);
}

.header .container {
    max-width: 1200px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}


 .v-center { align-items: center }

 .item-left { flex: 0 0 17% }

.logo { min-width: 200px }

.logo__img { width: 100%;}

 .item-center { flex: 0 0 66% }

 .item-right { 
    flex: 0 0 17%;
    display: flex;
    justify-content: flex-end;
}
.logo__left { 
    width: 200px;
    /* max-width: 200px;  */
    min-width: 150px;
}
.logo__left img {
    width: 100%;
    height: 100%;
}

.logo__right { width: 180px }

.nav__li { 
    display: inline-block;
    line-height: 50px;
    margin-left: 25px;
 }

 .nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    transition: color .3s ease;
 }

.sub-menu {
    position: absolute;
    z-index: 500;
    background-color: var(--bg-color1);
    box-shadow: -2px 2px 70px -25px rgba( 0 0 0 /.3);
    padding: 20px 30px;
    transition: all .5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
 }

 @media (min-width: 992px) {
    
    .nav__li.menu-item-has-children:hover .sub-menu {
        margin-top: 10px;
        visibility: visible;
        opacity: 1;
    }

}

 .sub-menu__li {
    line-height: 1;
}

.sub-menu__link {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text);
    transition: color .3s ease;
}

.single-column-menu {
    min-width: 280px;
    max-width: 350px;
}

.list-item__li {
    line-height: 1;
    display: block;
}

.list-item__link {
    padding: 5px 0;
    font-size: .9rem;
    color: var(--text);
    transition: .3s ease;
}

.list-item__link:hover {
    padding-left: 5px;
}

.sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50% );
}

.sub-menu.mega-menu-column-4 {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 15px;
}

.list-item {
    flex: 0 0 25%;
    padding: 0 15px;
}

.li__mega-menu {
    padding: 10px;
    transition: background-color .3s ease;
}

.li__mega-menu:hover {
    background-color: var(--bg2);
}

.h2__submenu-podcasts {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hover);
    line-height: 1;
    padding: 10px 0;
    text-align: center;
    transition: color .3s ease;
}

.h2__submenu-podcasts:hover {
    color: var(--text3);
}

.h2__mega-menu {
    font-size: 1.1rem;
    padding-left: 10px;
    font-weight: 800;
    color: var(--gestihub-primary);
}

.h3__mega-menu {
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

.h3__mega-menu span {
    font-size: .8rem;
    color: var(--text);
    font-weight: 300;
}

.horario {
    font-size: .9rem;
    font-weight: 500;
    line-height: 1;
    color: var(--text);
}

.nav__link:hover,
.sub-menu__link:hover { 
   color: var(--text-hover);
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}





/*================================== Responsive ==================================*/
@media (max-width: 991px) {
    .item-center {
        order: 3;
        flex: 0 0 100%;
    }

    .item-left,
    .item-right {
        flex: 0 0 auto;
    }

    .v-center {
        justify-content: space-between;
    }

    .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        margin-left: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-trigger span {
        display: block;
        height: 2px;
        width: 24px;
        background-color: var(--text);
        position: relative;
    }

    .mobile-menu-trigger span:before,
    .mobile-menu-trigger span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--text);
    }

    .mobile-menu-trigger span:before {top: -6px}

    .mobile-menu-trigger span::after {top: 6px}

    .item-right {align-items: center;}

    .nav__menu {
        position: fixed;
        width: 320px;
        background-color: var(--white);
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all .5s ease;
        z-index: 1099;
    }

    .nav__menu.active {
        transform: translate(0);
    }

    .nav__li {
        line-height: 1;
        margin: 0;
        display: block;
    }

    .nav__link {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        border-bottom: 1px solid rgba(0 0 0 /.1);
        display: block;
    }

    .nav__link i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }

    .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0 0 0 /.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501; 
        position: sticky;
        background-color: var(--bg-color2);
        top: 0;
    }

    .go-back {   
        font-size: 1rem;
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0 0 0 /.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: var(--white);
        display: none;
    }

    .mobile-menu-head.active .go-back {
        display: block;
    }

    .current-menu-title {
        font-size: 1rem;
        font-weight: 800;
        color: var(--white);
    }

    .mobile-menu-close {
        font-size: 1.8rem;
        width: 50px;
        border-left: 1px solid rgba(0 0 0 /.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: var(--white);
        background-color: var(--gestihub-primary);
    }

    .nav__menu {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .sub-menu.mega-menu,
    .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 90px;
        max-width: none;
        min-height: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .sub-menu.active {
        display: block;
    }

    @keyframes slideLeft {
        0%{
            opacity: 0;
            transform: translateX(100%);
        }
        100%{
            opacity: 1;
            transform: translateX(0);

        }
    }

    @keyframes slideRight {
        0%{
            opacity: 1;
            transform: translateX(0);
        }
        100%{
            opacity: 0;
            transform: translateX(100%);

        }
    }

    .single-column-menu {
        min-width: none;
        max-width: none;
        width: 100%;
    }

    .sub-menu.mega-menu-column-4 {
        padding: 15px;
        margin-top: 50px;
    }

    .list-item {
        flex: 0 0 100%;
        padding: 0;
    }

    .banner-podcast {
        margin-top: 0;
    }

    .h2__submenu-podcasts {
        margin-bottom: 20px;
    }

    .ul__mega-menu {
        margin-bottom: 15px;
    }

    .menu-overlay {
        position: fixed;
        background-color: rgba( 0 0 0 /.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all .5s ease;
    }

    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }
    
}


/* responsive 400px */
@media (max-width: 600px) {

    .logo__right {
        display: none;
    }

}


