@font-face {
    font-family: 'visby';
    src: url(../fonts/VisbyCF/VisbyCF-Thin.woff2) format('woff2)');
    font-weight: 100;
    font-display: optional;
    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 10%;
}

@font-face {
    font-family: 'visby';
    src: url(../fonts/VisbyCF/VisbyCF-Light.woff2) format('woff2)');
    font-weight: 200;
    font-display: optional;
    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 10%;
}

@font-face {
    font-family: 'visby';
    src: url(../fonts/VisbyCF/VisbyCF-Regular.woff2) format('woff2)');
    font-weight: 300;
    font-display: optional;
    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 10%;
}

@font-face {
    font-family: 'visby';
    src: url(../fonts/VisbyCF/VisbyCF-Medium.woff2) format('woff2)');
    font-weight: 400;
    font-display: optional;
    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 10%;
}

@font-face {
    font-family: 'visby';
    src: url(../fonts/VisbyCF/VisbyCF-Bold.woff2) format('woff2)');
    font-weight: 500;
    font-display: optional;

    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 10%;
}

@font-face {
    font-family: 'visby';
    src: url(../fonts/VisbyCF/VisbyCF-DemiBold.woff2) format('woff2)');
    font-weight: 600;
    font-display: optional;
    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 10%;
}

@font-face {
    font-family: 'visby';
    src: url(../fonts/VisbyCF/VisbyCF-ExtraBold.woff2) format('woff2)');
    font-weight: 700;
    font-display: optional;
    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 10%;
}

@font-face {
    font-family: 'visby';
    src: url(../fonts/VisbyCF/VisbyCF-Heavy.woff2) format('woff2)');
    font-weight: 800;
    font-display: optional;
    ascent-override: 105%;
    descent-override: 35%;
    line-gap-override: 10%;
}

:root {
    --white: #fff;
    --black: #000;
    --green: #02882F;
    --red: #FC0212;
    --color-01:#00E688;
    --color-02:#02186D;
    --color-03:#4F4EFF;
    --color-04:#00F1F3;
    --gray: #333;
    --gray-light: #E0E0E0;
    --gray-medium: #CECECE;
    --radious-general: 2px;
    --shadow-default: 5px 5px 15px 0 rgb(0 0 0 / 15%);
    --transition-default: all .3s ease-in-out
}

*{
    margin: 0;
    box-sizing: border-box;
    font-family: 'visby', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-display: optional;
    position: relative;
}

section{
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.title-main{
    color: var(--color-02);
    font-weight: 700;
    text-align: center;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.link-g{
    color: var(--green);
}

.title-main span,
.subtitle-main{
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: -.8rem;
    color: var(--color-02);
    text-align: center;
}

.subtitle-main{
    color: var(--gray);
}

header{
    position: sticky;
    top: 0;
    z-index: 100;
    margin-top: 1.6rem;
    padding-bottom: 1.4rem;
}

header .container{
    background-color: var(--white);
    box-shadow: var(--shadow-default);
    overflow: hidden;
    border-radius: var(--radious-general);
}

header img:nth-child(1){
     border-right: 2px solid #D6D6D6;
     padding-right: .6rem;
     margin-right: .4rem;
}

header .navbar-toggler{
    border: 0;
}

header .navbar-toggler:focus{
    box-shadow: none;
}

.navbar-expand-lg .navbar-nav .nav-link{
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 16px;
    padding-left: 16px;
}

.navbar-expand-lg .navbar-nav .nav-link.active{
    background-color: var(--green);
    color: var(--white);
}

.btn-main{
    background-color: var(--color-03);
    color: var(--white);
    border-radius: var(--radious-general);
    padding-top: .6rem;
    padding-bottom: .6rem;
    font-weight: 500;
}

.btn-main:hover{
    background-color: var(--white);
    color: var(--color-03);
}
.btn-second{
    background-color: var(--white);
    color: var(--green);
    border-radius: var(--radious-general);
    padding-top: .6rem;
    padding-bottom: .6rem;
    font-weight: 500;
}

.btn-second path{
    fill: var(--green);
    transition: fill .1s linear;
}

.btn-second svg{
    margin-left: .4rem;
}

.btn-second:hover path{
    fill: var(--white);
}

/* Banner */

section.banner{
    padding-top: 0;
    padding-bottom: 0;
}

.banner{
    position: relative;
}

.banner .banner-img{
    position: relative;
    width: 100%;
    min-height: calc(80vh - 200px);
    object-fit: cover;
    object-position: center;
    filter: brightness(45%);
    -webkit-filter: brightness(45%);
    -moz-filter: brightness(45%);
    border-radius: var(--radious-general);
}

.banner .banner-inf{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.banner .banner-logo{
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Banner */

/* Reloj */

.clock {
    display: flex;
    justify-content: center;
    background: var(--color-01);
    padding: 15px /* 0 */;
    width: 100%;
    margin-top: calc(-126px / 2);
    position: relative;
    z-index: 10;
    border-radius: var(--radious-general);
    /* position: absolute;
    top: 7rem;
    left: 0 */
}
.containerspans {
    display: flex
}

.clock span {
    color: var(--color-02);
    font-size: 50px;
    padding: 0 10px;
    font-family: "visby", sans-serif;
    font-display: optional;
    font-optical-sizing: auto;
    font-weight: 700;
    text-align: center
}

.clock span .small {
    font-size: 14px;
    margin: 0;
    font-family: "Lexend", sans-serif;
    font-display: optional;
    font-optical-sizing: auto;
    font-weight: 300;
}

.clock .puntos {
    position: relative
}

/* Reloj */

/* Cede */

.cede-titles{
    margin-bottom: 1rem;
}

.cede-titles h4{
    color: var(--color-03);
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 500;
}
.cede-titles h2{
    color: var(--color-02);
    font-size: 2.8rem;
    margin-bottom: 0;
    font-weight: 700;
}
.cede-titles h6{
    background-color: var(--color-03);
    color: var(--color-01);
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 500;
    display: inline-block;
    padding: .4rem .6rem;
    border-radius: var(--radious-general);
}

/* Cede */

/* Acceso */

.carnet{
    margin-top: 40px;
    height: calc(100% - 40px);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.carnet::before{
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    background-image: url('/img/dec-carnet.png');
    height: 40px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.carnet .carnet-head{

    border: 2px solid #D6D6D6;
    border-bottom-width: 0;
    padding: 1rem 2rem;
}

.carnet-head .carnet-price{
    font-size: 3rem;
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--color-03);
    border-bottom: 2px solid #D6D6D6;
}

.carnet-price span{
    font-size: 1.4rem;
    font-weight: 400;
}

.carnet-head img{
    margin-bottom: 1rem;
}

.carnet .carnet-content{
    padding: 0rem 2rem 1rem;
    height: 100%;
    border-left: 2px solid #D6D6D6;
    border-right: 2px solid #D6D6D6;
}

.carnet .carnet-desc{
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
}
.carnet .carnet-promo{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.carnet-promo .carnet-promo-cont{
    width: 50%;
}

.carnet-promo .data-promo{
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.data-promo strong{
    background-color: var(--color-01);
    color: var(--color-02);
    width: calc(100% - 20px);
    margin: .4rem auto;
    border-radius: var(--radious-general);
    padding: .8rem .5rem;
    
}

.data-promo span{
    font-size: .6rem;
}

.carnet .carnet-btn{
    /* margin-top: auto; */
    width: 100%;
}

.carnet-btn .btn{
    width: 100%;
}

.acceso .card-inf{
    background-color: var(--color-02);
    color: var(--white);
    padding: 6rem 2rem;
    border-radius: var(--radious-general);
}

.acceso .card-inf-title{
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.4rem;
}

.acceso .card-inf-list{
    list-style:none;
   
}

.acceso .card-inf-list li{
    position: relative;
    font-weight: 100;
    margin-bottom: .6rem;
    /* list-style-image:url('../ver/img/ic-list.png') */
}

.acceso .card-inf-list li::before{
    content: '';
    position: absolute;
    left: -24px;
    background-image: url('/ver/img/ic-list.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
}

/* Acceso */

.empresa-link{
    text-decoration: none;
    display: block;
    padding: .8rem 0;
}

.empresa-link img{
    width: 100%;
}

.app{
    background-image: url('/img/app/bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--radious-general);
    color: var(--white);
}

.app h2{
    font-weight: 700;
}

.card-evento{
    position: relative;
    overflow: hidden;
    border-radius: var(--radious-general);
}

.card-evento .card-evento-bg{
    width: 100%;
}

.card-evento .card-evento-logo{
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 80%;
}

.card-evento .card-evento-inf{
    position: absolute;
    display: flex;
    flex-direction: row;
    bottom: .4rem;
    left: .4rem;
    border-radius: var(--radious-general);
    overflow: hidden;
    width: calc(100% - 15px);
}

.card-evento .card-evento-inf__fecha{
    background-color: var(--white);
    color: var(--green);
    text-align: center;
    font-weight: 700;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-width: 48px;
    height: 48px;
}

.card-evento .card-evento-inf__cede{
    background-color: var(--green);
    color: var(--white);
    text-align: start;
    font-weight: 700;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.card-evento-inf__fecha span,
.card-evento-inf__cede span{
    width: 100%;
    display: inline-block;
    line-height: 1;
}

.card-evento-inf__fecha span:nth-child(1){
    font-size: 1.6rem;
}

.card-evento-inf__fecha span:nth-child(2){
    font-size: .8rem;
}

.footer p {
    margin-bottom: 0
}

.footer__top {
    z-index: 10;
    position: relative
}

.footer__news {
    background-color: var(--white);
    box-shadow: 5px 5px 15px 0 #0000001a;
    border-radius: 2px 2px 0 0;
    padding: 2rem 3.2rem
}

.footer__title {
    color: var(--green);
    margin-bottom: 0;
    font-size: calc(1.275rem + .3vw)
}

.footer__subtitle {
    color: var(--black);
    font-weight: 300
}

.footer__form {
    display: flex;
    flex-direction: row;
    width: 100%
}

.footer__input {
    padding: .8rem 2rem;
    border-top-left-radius: var(--radious-general);
    border-bottom-left-radius: var(--radious-general);
    width: 100%;
    border: 2px solid var(--gray-light);
    outline: 2px solid transparent;
    transition: var(--transition-default)
}

.footer__input:focus {
    border-color: var(--red);
    outline: 2px solid #db2c2866
}

.footer__input::placeholder {
    color: var(--gray-medium);
    font-weight: 500
}

.footer__button {
    background-color: var(--red);
    color: var(--white);
    border: 0;
    padding: .6rem 2rem;
    border: 2px solid var(--red);
    transition: var(--transition-default);
    border-radius: 0 var(--radious-general) var(--radious-general) 0
}

.footer__button:hover {
    border: 2px solid var(--red);
    color: var(--red)
}

.footer__bottom {
    background-color: var(--green);
    z-index: 1;
    position: relative;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    color: var(--white)
}

.footer__rs {
    list-style: none;
    padding-left: 0;
    display: flex;
    margin-bottom: 0;
    width: 100%;
    justify-content: center;
    gap: 1rem
}

.footer__rs-link {
    display: block;
    transition: var(--transition-default)
}

.footer__rs-link:hover {
    opacity: .6
}

.footer__rs-icon {
    width: 100%;
    max-width: 1.2rem
}

.footer__contact {
    background-color: var(--gray);
    padding: 1rem 0
}

.footer__contact-links {
    display: flex;
    gap: 1rem;
    color: var(--white);
    align-items: center
}

.footer__contact-links a {
    text-decoration: none;
    color: var(--white);
    transition: var(--transition-default)
}

.footer__contact-links a:hover,
.footer__contact-links a:active {
    opacity: .6
}





.std .banner {
    padding: 20px;
}
.std .banner .banner-img{
    min-height: calc(100vh - 40px);
    min-height: calc(100dvh - 40px);
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    filter: brightness(100%);
    -webkit-filter: brightness(100%);
    -moz-filter: brightness(100%);
    object-fit: cover;
    object-position: top center;
}
.std .banner .banner-img.rwd{
    display: none;
}
.std .clock{
    margin-top: 10px;
}
.std .cede-titles{
    text-align: center;
}
.std .cede-titles h4,
.std .cede-titles h2,
.std .cede-titles h6{
    color: var(--white);
}
.std .cede-titles h6{
    background-color: transparent;
}

@media screen and (max-width:1300px) {
    .std .banner{
        padding: 10px;
    }
    .std .banner-logo{
        max-width: 300px;
    }
    .std .banner .banner-img{
        display: none;
        min-height: calc(100vh - 20px);
        min-height: calc(100dvh - 20px);
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }
    .std .banner .banner-img.rwd{
        display: block;
        object-fit: cover;
    }
}