/*FONTS*/
@font-face {
    font-family: 'neuland_condensed_bold';
    src: url('../fonts/neulandgrotesk-condensedbold-webfont.woff2') format('woff2'), url('../fonts/neulandgrotesk-condensedbold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'neuland_condensed_regular';
    src: url('../fonts/neulandgrotesk-condensedregular-webfont.woff2') format('woff2'), url('../fonts/neulandgrotesk-condensedregular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'neuland_regular';
    src: url('../fonts/neulandgrotesk-regular-webfont.woff2') format('woff2'), url('../fonts/neulandgrotesk-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'neuland_expanded';
    src: url('../fonts/neulandgroteskmediumexpanded-webfont.woff2') format('woff2'), url('../fonts/neulandgroteskmediumexpanded-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*COLORS*/
.bg-white {
    background: #ffffff;
}

.bg-black {
    background: #000000;
}

.bg-light-grey-1 {
    background: #A8A8A8;
}

.bg-light-grey-2 {
    background: #8B8B8B;
}

.bg-dark-grey-1 {
    background: #191919;
}

.bg-dark-grey-2 {
    background: #272727;
}

.bg-red {
    background: #BA181F;
}

.bg-image {
    background: url(../images/SEF-LAS-Back.png) no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-attachment: fixed;
}

input[type="checkbox"] {
    margin: 5px;
}

.bg-opacity {
    background: #27272791;
}

.pdvRBL label {
    background: white;
    color: #272727;
    padding: 5px;
    border-radius: 5px;
    width: 100%;
    margin: 5px 0;
}

.pdvRBL input {
    display: none;
}

    .pdvRBL input:checked ~ label {
        background: #BA181F;
        color: white;
    }

.text-white {
    color: #ffffff;
}

.text-black {
    color: #000000;
}

.text-light-grey-1 {
    color: #A8A8A8;
}

.text-light-grey-2 {
    color: #8B8B8B;
}

.text-dark-grey-1 {
    color: #191919;
}

.text-dark-grey-2 {
    color: #272727;
}

.text-red {
    color: #BA181F;
}

.border-white {
    border: solid 1px #ffffff;
}

.border-black {
    border: solid 1px #000000;
}

.border-light-grey-1 {
    border: solid 1px #A8A8A8;
}

.border-light-grey-2 {
    border: solid 1px #8B8B8B;
}

.border-dark-grey-1 {
    border: solid 1px #191919;
}

.border-dark-grey-2 {
    border: solid 1px #272727;
}

.border-red {
    border: solid 1px #BA181F;
}

.animation-appear {
    opacity: 0;
    animation: Appear 1s;
    animation-fill-mode: forwards;
}

.animation-delay-1 {
    animation-delay: 1s;
}

.animation-delay-2 {
    animation-delay: 2s;
}

.animation-delay-3 {
    animation-delay: 3s;
}

.animation-delay-4 {
    animation-delay: 4s;
}

.animation-delay-5 {
    animation-delay: 5s;
}

.animation-loop {
    animation-iteration-count: infinite;
}

/*CONTENT*/
body {
    overflow-x: hidden;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

p, a, span, h1, h2, h3, h4, h5, h6, div, input, textarea, button, label {
    font-family: "neuland_condensed_regular";
    color: #ffffff;
}

.nregular {
    font-family: "neuland_regular";
}

.nexpanded {
    font-family: "neuland_expanded";
}

.nc-regular {
    font-family: "neuland_condensed_regular";
}

.nc-bold {
    font-family: "neuland_condensed_bold";
}


/*SECTIONS*/


footer {
    clear: both;
    position: relative;
    bottom: 0;
    width: 100%;
}

.fs-01 {
    font-size: 5rem !important;
}

.fs-0 {
    font-size: 3rem !important;
}

.fs-7 {
    font-size: 0.75rem !important;
}

.fs-8 {
    font-size: 0.5rem !important;
}

.fs-9 {
    font-size: 0.25rem !important;
}

.fw-bold {
    font-weight: bold;
}

.popup {
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 103vh;
    background: #000000DD;
    z-index: 9999;
}

.hidden {
    display: none;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
}

.button {
    position: relative;
    border:none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    padding: 0.4em;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.2em;
    z-index: 1;
    height: auto;
    min-width: 100px;
    margin: 10px auto;
    white-space: nowrap;
    display: block;
    line-height: normal;
    background: transparent;
}

    .button:before {
        content: "";
        width: 150%;
        height: 100%;
        top: 0;
        display: block;
    }

.button-black, .button-black:focus {
    font-family: "neuland_condensed_regular";
    text-transform: uppercase;
    color: #ffffff;
    background: #191919;
    cursor: pointer;
}

.button-red, .button-red:focus {
    font-family: "neuland_condensed_regular";
    text-transform: uppercase;
    color: #ffffff;
    background: #BA181F;
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer !important;
}
/*Custom Radio*/
.custom-rb {
    margin: 0 25px;
}

    .custom-rb input {
        width: 20px;
        height: 20px;
    }

    .custom-rb label {
        font-size: 1.5em;
    }
/*Custom CHK*/
.custom-ch-label {
    display: block;
    position: relative;
    padding-left: 35px;
    padding-top: 5px;
    margin: 5px 0;
    cursor: pointer;
    font-size: 1em !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #BA181F;
}

    .custom-ch-label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

        .custom-ch-label input:checked ~ .custom-checkmark {
            background-color: #BA181F;
        }

.custom-checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 25px;
    width: 25px;
    background: #fff;
    border: solid 2px #BA181F;
    border-radius: 5px;
}

.custom-ch-label input:checked ~ .custom-checkmark:after {
    display: block;
}

.custom-ch-label .custom-checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-ch-red {
    color: #151515;
    font-style: italic;
}

    .custom-ch-red input:checked ~ .custom-checkmark {
        background-color: #9A030F;
        border: solid 2px #9A030F;
    }

    .custom-ch-red .custom-checkmark {
        background: #151515;
        border: solid 2px #151515;
    }

.custom-ch-white {
    color: #fff;
    font-style: italic;
}

    .custom-ch-white input:checked ~ .custom-checkmark {
        background-color: #151515;
        border: solid 2px #151515;
    }

    .custom-ch-white .custom-checkmark {
        background: #fff;
        border: solid 2px #fff;
    }


/*Responsive styles*/
/*Escritorio*/
@media (min-width: 1399.98px) {
}
/*Tablet Portrait*/
@media (min-width: 576px) and (max-width: 991.98px) and (orientation:portrait) {
    .videoPrincipal {
        min-height: 80vh;
        background-position: center;
    }
}
/*Tablet landscape*/
@media (min-width: 991.98px) and (max-width: 1199.98px)and (orientation:landscape) {
}
/*Movil Portrait*/
@media (max-width: 575.98px)and (orientation:portrait) {
    .videoPrincipal {
        min-height: 90vh;
        background-position: center;
    }
}
/*Movil landscape*/
@media (min-width: 576px) and (max-width: 991.98px) and (orientation:landscape) {
}


/*CUSTOM SLIDER STYLE*/
.carousel-inner {
    padding: 1em;
}

.card {
    margin: 0 0.5em;
    background: none;
    border: none;
}

.reproducidos-body {
    margin-top: -75px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 6vh;
    height: 6vh;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .carousel-item {
        margin-right: 0;
        flex: 0 0 20%;
        display: block;
    }

    .carousel-inner {
        display: flex;
    }
}

.card .img-wrapper {
    max-width: 100%;
    height: 13em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reproducidos-wrapper {
    height: 250px !important;
}

.allVideos-wrapper {
    height: 450px !important;
}

.card img {
    max-height: 100%;
}

@media (max-width: 767px) {

    .card .img-wrapper {
        height: 17em;
    }

    .reproducidos-wrapper {
        height: 300px;
    }

    .allVideos-wrapper {
        height: 400px;
    }
}
