@font-face {
    font-family: "Muller Bold";
    font-style: normal;
    font-weight: 600;
    src: local("Muller Bold"), local("Muller Bold"),
        url("/src/fonts/muller/MullerBold.woff2") format("woff2"),
        url("/src/fonts/muller/MullerBold.woff") format("woff");
}

@font-face {
    font-family: "Muller Light";
    font-style: normal;
    font-weight: 500;
    src: local("Muller Light"), local("Muller Light"),
        url("/src/fonts/muller/MullerLight.woff2") format("woff2"),
        url("/src/fonts/muller/MullerLight.woff") format("woff");
}

@font-face {
    font-family: "Muller bold";
    font-style: normal;
    font-weight: 600;
    src: local("Muller bold"), local("Muller bold"),
        url("/src/fonts/muller/MullerBold.woff2") format("woff2"),
        url("/src/fonts/muller/MullerBold.woff") format("woff");
}

@font-face {
    font-family: "Muller light";
    font-style: normal;
    font-weight: 500;
    src: local("Muller light"), local("Muller light"),
        url("/src/fonts/muller/MullerLight.woff2") format("woff2"),
        url("/src/fonts/muller/MullerLight.woff") format("woff");
}

.svg-18px {
    width: 18px;
    height: 18px;
}

.svg-24px {
    width: 24px;
    height: 24px;
}

.svg-30px {
    width: 30px;
    height: 30px;
}

.svg-35px {
    width: 35px;
    height: 35px;
}

.svg-40px {
    width: 40px;
    height: 40px;
}

.popup {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    display: none;
}

.popup.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.popup .cortina-popup {
    display: none;
}

.popup .cortina-popup.active {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
}

.popup .popup-content {
    width: 50%;
    padding: 30px;
    background-color: #fff;
    position: relative;
    z-index: 102;
    border-radius: 10px;
}

@media screen and (max-width: 992px) {
    .popup .popup-content {
        width: 96%;
        padding: 20px;
    }
}

.popup .popup-content .btn-cerrar-popup-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.popup .popup-content .btn-cerrar-popup {
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    transition: ease all 0.3s;
}

.popup .popup-content .btn-cerrar-popup:hover {
    transform: scale(1.1);
}

.popup .popup-content .btn-cerrar-popup:hover svg path {
    fill: #bd2c2f;
}

header {
    width: 100%;
    height: 90px;
    background-color: rgba(0, 0, 0, 0.8);
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

header #google_translate_element2 {
    display: none !important;
}

@media screen and (min-width: 992px) {
    header {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

header.extended {
    -webkit-box-shadow: none;
    box-shadow: none;
}

header.extended .nav-container {
    width: 100%;
    height: auto;
    padding: 10px 0;
    margin-right: unset;
    background-color: #292929;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    position: absolute;
    top: 70px;
    left: 0;
}

header.extended .nav-container nav {
    width: 100%;
    background-color: unset !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

header.extended .nav-container nav ul {
    width: 100%;
    height: 100%;
    padding: 10px 15px 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

header.extended .nav-container nav ul > li {
    width: 100%;
}

header.extended .nav-container nav ul > li:not(:last-child) {
    margin-right: unset;
    margin-bottom: 10px;
}

header.extended .nav-container nav ul > li > a {
    padding: 5px !important;
    color: #ffffff !important;
    border-radius: 4px;
    text-align: center;
    display: block;
    font-family: "Muller Bold";
}

header .menu-btn-container {
    width: 15%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 992px) {
    header .menu-btn-container {
        display: none;
    }
}

header .menu-btn-container #menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .brand-container {
    height: 100%;
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 992px) {
    header .brand-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

header .brand-container img {
    width: 60%;
}

header .nav-container {
    width: 100%;
    height: 100%;
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media screen and (min-width: 992px) {
    header .nav-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

header .nav-container nav {
    width: 100%;
    margin-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .nav-container nav ul {
    width: 100%;
    height: 100%;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 !important;
    gap: 0;
}

header .nav-container nav ul > li {
    width: calc(100% / 5);
    height: 100%;
}

header .nav-container nav ul > li:not(:last-child) {
    margin-right: 10px;
}

header .nav-container nav ul > li > a {
    height: 100%;
    color: #ffffff;
    padding: 0 20px;
    text-decoration: none;
    font-size: 13px;
    font-family: "Muller Bold";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .nav-container nav ul > li > a span {
    color: #fff;
    font-size: 13px;
    font-family: "Muller Bold" !important;
    -webkit-box-direction: normal;
}

header .nav-container nav ul > li > a:hover {
    color: #7ed1f5;
}

header .nav-container nav ul > li > a:hover span {
    color: #7ed1f5;
}

header #botones {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 992px) {
    header #botones {
        margin-right: 10px;
    }
}

header #botones > select {
    width: 120px;
    padding: 4px 20px;
    height: 30px;
    margin-right: 20px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

header #botones > select > option {
    color: #000000;
}

header #botones > a {
    width: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    padding: 4px 20px;
    color: #ffffff;
    border: 1px solid #ffffff;
}

#content-redes {
    position: fixed;
    left: 8px;
    top: 40%;
    background-color: #ff5d5d;
    border-radius: 8px;
    padding: 15px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

#content-redes a {
    width: 30px;
    fill: #fff;
}

#content-redes img,
#content-redes svg {
    width: 30px;
    aspect-ratio: 1 / 1;
}

#content-btn-ws a:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

#content-btn-ws {
    position: fixed;
    right: -165px;
    top: 380px;
    z-index: 1;
    transform: rotate(-90deg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#content-btn-ws a {
    font-size: 16px;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 10px 10px 0px 0px;
    transition: ease all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
        0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

#content-btn-ws a:nth-child(1) {
    background-color: #ff5d5d;
}

#content-btn-ws a:nth-child(2) {
    background-color: #619d3b;
}

#content-btn-ws a > svg {
    margin-right: 5px;
}

#content-btn-ws a:hover {
    transform: scale(1.05);
}

#content-btn-ws a svg {
    fill: #fff;
    width: 25px;
    transform: rotate(90deg);
}

#content-btn-ws a span {
    padding: 0px 10px;
}

.content-sub-items-header {
    position: relative;
}

.content-sub-items-header:hover ul {
    display: block !important;
    padding: 0;
}

.content-sub-items-header > a {
    display: flex !important;
}

.content-sub-items-header > a svg {
    width: 25px;
    fill: #fff;
    transition: ease all 0.6s;
}

.content-sub-items-header > a:hover svg {
    fill: #7ed1f5;
}

.sub-items-header {
    display: none !important;
    width: 250px !important;
    height: auto !important;
    position: absolute !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    border-radius: 3px !important;
    top: 100% !important;
    z-index: 3 !important;
}

.sub-items-header > li {
    width: 100% !important;
    display: flex !important;
    position: relative !important;
}

.sub-items-header > li > a {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    color: #fff !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2) !important;
    padding: 10px 30px !important;
    transition: ease all 0.6s !important;
    font-weight: 600 !important;
}

.sub-items-header > li > a:hover {
    color: #7ed1f5 !important;
}

#btn-share {
    width: 50px;
    margin-right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 130px;
    background: #f28706;
    border-radius: 50%;
    padding: 5px;
    gap: 5px;
}

#btn-share svg {
    fill: #fff;
}

#info-popup-share {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 30px 30px;
    gap: 30px;
}

.card-share {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 6px 20px;
    border: none;
}

.card-share svg {
    width: auto !important;
    height: 37px !important;
    fill: #fff;
}

.card-share svg,
.card-share img {
    width: auto !important;
    height: 30px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
}

.card-share span {
    font-size: 20px;
    color: #fff;
    font-family: "Muller bold";
}

.descip-h2 {
    font-size: 16px !important;
    color: #fff !important;
    font-family: "Muller medium" !important;
}

#info-popup-share a:nth-child(1) {
    background: #000000;
}

#info-popup-share button:nth-child(2) {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

#info-popup-share a:nth-child(3) {
    background-color: #1877f2;
}

#info-popup-share a:nth-child(4) {
    background: #25d366;
}

#popup-share .popup-content {
    width: auto !important;
}

.gt_switcher-popup {
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: center;
    background-color: #00000045;
    padding: 6px;
    border-radius: 6px;
    border: none;
}

.gt_switcher-popup span {
    color: #fff;
}

.gt_white_content {
    background-color: #bd2c2f !important;
    border-radius: 20px;
}

.gt_container-unisv1 a.glink span {
    color: #fff;
}

.line-planes-res {
    display: flex !important;
}

@media (max-width: 920px) {
    #content-redes a {
        width: 30px;
        fill: #fff;
    }

    #content-redes {
        padding: 15px 5px;
        top: 25%;
    }
}

@media screen and (max-width: 1024px) {
    .line-planes-res {
        display: none !important;
    }

    #btn-share {
        width: 60px;
        position: unset;
        background-color: transparent;
    }

    #content-btn-ws {
        right: 0px;
        top: auto;
        bottom: 0px;
        transform: rotate(0deg);
        width: 100%;
    }

    #content-btn-ws a {
        padding: 5px 10px;
    }

    #content-btn-ws a svg {
        transform: rotate(0deg);
    }

    .content-sub-items-header:hover ul {
        display: flex !important;
    }

    .sub-items-header {
        width: 100% !important;
        position: relative !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .sub-items-header > li > a {
        justify-content: center !important;
    }

    header .brand-container {
        display: flex !important;
        justify-content: start;
        margin-left: 15px;
    }

    header #botones {
        position: absolute;
        right: 5px;
        top: 95px;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: -1;
    }

    header #botones > select {
        margin: 0;
        width: auto;
    }

    header .brand-container img {
        width: 60%;
    }

    header .menu-btn-container {
        width: 30%;
        padding-right: 15px;
    }

    header #botones > select {
        width: 80px !important;
        padding: 4px 0;
    }

    #content-redes {
        position: unset;
        flex-direction: row;
        padding: 6px 20px;
        top: 25%;
    }

    header .nav-container nav {
        margin-right: 0;
    }

    header.extended .nav-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #content-redes img,
    #content-redes svg {
        width: 20px;
    }
}
