/* Googlefont Poppins CDN Link */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================== */
/* Lenguaje */
.lenguaje {
    background: #212529;
    z-index: 999;
    position: relative;
    border: none;
}

.flags {
    width: 71px;
    display: flex;
    float: right;
    position: relative;
    justify-content: space-around;
    left: -29px;
    top: 2.5vh;
}

.flags__item img {
    width: 80%;
    background-size: cover;
    transition: .5s all;
}

.flags__item img:hover {
    cursor: pointer;
    box-shadow: rgba(206, 206, 206, 0.142) 0px 4px 12px;
    border-radius: 50%;
}

/* =========================================== */
/* NAV */
nav {
    border: none;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #212529;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

nav .navbar {
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    /* background: red; */
    padding: 0 50px;
}

.logo {
    float: left;
}

.logo a img {
    width: 14%;
    object-fit: cover;
    position: absolute;
    top: -1vh;
    display: block;
    margin: auto;
}

.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    /* background: red; */
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #212529;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: -1vh;
}

.navbar .links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
    /* line-height: 40px; */
}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #3E8DA8;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #3E8DA8;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #3E8DA8;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

.link-to-ACTIVE {
    color: var(--Naranja) !important;
    /* border-bottom: 4px solid var( --Naranja); */
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}

@media (max-width:800px) {
    .navbar .links li .sub-menu li {
        margin-left: 4vh;
    }

    .navbar .bx-menu {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 100%;
        width: 100%;
        background: #212529;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-name img {
        position: absolute;
        width: 35%;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .links li .arrow {
        line-height: 40px;
    }

    nav .navbar .links li {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;

    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

    .navbar .links li .sub-menu .more-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }

    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 45px;
    }
}

@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .navbar .links li .sub-menu a {
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        margin-left: -7vh;
    }
}

@media (max-width: 1400px) {
    .navbar .links li .sub-menu a {
        margin-left: -4vh;
    }

    nav .navbar {
        max-width: 1287px;
    }
}

@media (max-width: 1600px) {
    nav .navbar {
        max-width: 1426px;
    }

    .logo a img {
        width: 15%;
        top: -3vh;
        padding: 15px;

    }
}



@media (min-width: 320px) {
    .logo a img {
        width: 47%;
        top: -1.7vh;
        padding: 0px;
        right: 6vh;
    }

    nav .navbar .links li .sub-menu {
        margin-left: -7vh;
    }

    .logo-name img {
        width: 50%;
        top: 1vh;
    }

    .lenguaje {
        margin-right: 4vh;
    }

    .flags {
        height: 6vh;
    }
}

@media (min-width: 360px) {
    .logo a img {
        width: 40%;
        top: -1.5vh;
        padding: 0px;
        right: 6vh;
    }

    nav .navbar .links li .sub-menu {
        margin-left: -6vh;
    }

    .logo-name img {
        width: 37%;
        top: 1vh;
    }

    .lenguaje {
        margin-right: 4vh;
    }

    .flags {
        height: 6vh;
    }
}

@media (min-width: 411px) {
    .logo a img {
        width: 37%;
        top: -2vh;
        padding: 0px;
        right: 6vh;
    }

    .lenguaje {
        margin-right: 4vh;
    }

    .flags {
        height: 6vh;
    }
}

@media (min-width: 576px) {
    .logo a img {
        width: 26%;
        top: -2vh;
        padding: 1px;
        right: 6vh;
    }

    .logo-name img {
        width: 23%;
        top: 1vh;
    }

    .lenguaje {
        margin-right: 4vh;
    }

    .flags {
        height: 7vh;
    }
}

@media (min-width: 768px) {
    .logo a img {
        width: 23%;
        top: -4vh;
        padding: 4px;
        right: 5vh;
    }

    .lenguaje {
        margin-right: 5vh;
    }

    .flags {
        height: 8vh;
    }

}

@media (min-width: 992px) {
    .logo a img {
        width: 16%;
        top: -1vh;
        padding: 7px;
        right: none;
        left: -75vh;
    }

    .lenguaje {
        margin-right: 3vh;
    }

    .flags {
        height: 5vh;
    }
}

@media (min-width: 1000px) {
    .lenguaje {
        margin-right: 5vh;
    }
}

@media (min-width: 1200px) {
    .navbar .links li .sub-menu a {
        margin-left: -5vh;
    }

    nav .navbar .links li .sub-menu {
        width: auto;
    }

    .logo a img {
        width: 14%;
        top: -2vh;
        padding: 11px;
        left: -144vh;
    }

    .lenguaje {
        margin-right: 3vh;
    }
}

@media (min-width: 1400px) {
    .logo a img {
        width: 14%;
        top: -2vh;
        padding: 11px;
        left: -123vh;
    }
}

@media (min-width: 1600px) {
    .logo a img {
        width: 14%;
        top: -1vh;
        padding: 11px;
        left: -116vh;
    }

    .navbar .links li .sub-menu li {
        padding: 0 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-left: 1vh;
    }

    nav .navbar .links li .sub-menu {
        margin-left: 0vh;
    }

    .div_block-920-15,
    .div_block-926-15,
    .div_block-932-15 {
        height: 30em;
        margin-top: 5vh;
    }
}

@media (min-width: 2000px) {
    .logo a img {
        width: 16%;
        top: -1vh;
        padding: 11px;
        left: -125vh;
    }

    .div_block-920-15,
    .div_block-926-15,
    .div_block-932-15 {
        height: 30em;
        margin-top: 3vh;
    }

    .navbar .links li .sub-menu li {
        padding: 0 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-left: 2vh;
    }

    nav .navbar .links li .sub-menu {
        line-height: 46px;
    }
}