@font-face {
	font-family: 'gothic';
	src: url("/assets/css/fonts/gothic.ttf") format('truetype');
	font-display: auto;
}

@font-face {
	font-family: 'gotham';
	src: url("/assets/css/fonts/GothamMedium.ttf") format('truetype');
	font-display: auto;
}

html, body {
    overflow-y: hidden;
}

.container {
    min-width: 100vw;
    min-height: 100svh;
    max-height: 100svh;
    min-height: -webkit-fill-available;
    max-height: -webkit-fill-available;
    overflow-y: hidden;
    padding: 0;
    margin: 0;
}

.form-control {
    border-radius: 0;
}

label {
    color: white;
    margin-bottom: 0;
    font-family: 'gothic';
}

.row {
    padding: 0;
    margin: 0;
}

[class*="col-"] {
    padding: 0;
    margin: 0;
}

#title-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#div-title {
    margin-top: 6svh;
    text-align: center;
}

.ventana-lateral {
    display: none;
}

#img-title {
    width: 80%;
    height: auto;
}
#div-texto p, #div-texto-mobile p{
    color: white;
    font-family: 'gothic';
    letter-spacing: 2px;
}

.div-form {
    display: none;
}

#btn-quote {
    font-size: 1.4rem;
    color: white;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 15px;
    padding: 10px 10%;
    font-weight: bold;
    margin-top: 4%;
    cursor: pointer;
}


@media(max-width: 576px) {
    #div-texto-mobile p{
        font-size: .7rem;
    }

    #div-texto-mobile p{
        margin-bottom: unset;
    }
}

@media(max-width:768px) {

    /* #title-container {
        background: url("/assets/img/background-mobile.jpg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        height: 35svh;
    } */

    .div-mobile {
        height: 70svh;
    }

    #img-title {
        width: 90%;
    }
    
    .ventana-mobile {
        background-color: rgba(0, 51, 161, 1);
        border: 10px solid white;
        border-bottom: none;
        border-top-left-radius: 65px;
        border-top-right-radius: 65px;
        position: fixed;
        height: 70svh;
        left: -4%;
        right: -4%;
        bottom: 0;
        display: flex;
        flex-direction: column;
        padding: 2% 8%;
        gap: 10px;
        overflow-y: auto;
    }

    .div-form {
        background-color: rgba(219, 0, 50, 1);
        border: 10px solid white;
        border-bottom: none;
        border-top-left-radius: 65px;
        border-top-right-radius: 65px;
        position: fixed;
        height: 55svh;
        left: -4%;
        right: -4%;
        bottom: -55svh;
        flex-direction: column;
        padding: 2% 8%;
        gap: 10px;
        overflow-y: auto;
    }

    #div-img-logo-mobile {
        text-align: center;
        flex: 1;
    }

    #img-logo-mobile {
        width: 80%;
    }

    #div-texto-mobile p{
        margin-bottom: .5rem;
    }

    #div-btn-mobile {
        font-family: 'gotham';
        color: white;
        text-align: center;
        flex:1;
    }

    #div-btn-mobile p {
        font-size: 1.4rem;
        margin: 10px;
        color: white;
        text-align: center;
    }

    #div-btn-mobile #btn-join-mobile {
        font-size: 1.4rem;
        color: white;
        background-color: #DB0032;
        border: 2px solid white;
        border-radius: 15px;
        padding: 5px 10%;
        font-weight: bold;
        vertical-align: center;
        cursor: pointer;
    }

    .form-control {
        font-size: 0.9rem;
        height: calc(1em + .75rem + 2px)
    }

    #div-img-logo {
        display: none;
    }
}

#arrow-right {
    position: absolute;
    left: -100px;
    top: calc(50% - 50px);
    height: 100px;
    cursor: pointer;
}

#arrow-down {
    position: absolute;
    top: -100px;
    left: calc(50% - 50px);
    width: 100px;
    cursor: pointer;
}

.grecaptcha-badge {
    display: none;
}


@media(min-width: 768px) {
    #div-img-logo-mobile {
        display: none;
    }

    /* .container {
        background: url("/assets/img/background.jpg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    } */

    #div-mobile {
        display: none;
    }
    .ventana-mobile {
        display: none;
    }

    .ventana-lateral {
        display: block;
        position: relative;
        height: 100svh;
    }

    .aside {
        background-color: rgba(0, 51, 161, 0.8);
        border: 10px solid white;
        border-right: none;
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
        height: 102.2%;
        position: fixed;
        width: 41.666667%;
        
        top: -1.1%;
        bottom: -1.1%;
        display: flex;
        flex-direction: column;
        padding: 0% 2%;
        justify-content: space-evenly;
    }

    .div-form {
        background-color: rgba(219, 0, 50, 1);
        border: 10px solid white;
        border-right: none;
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
        height: 102.2%;
        position: fixed;
        width: 41%;
        right: -41%;
        top: -1.1%;
        bottom: -1.1%;
        flex-direction: column;
        padding: 0% 2%;
        justify-content: space-evenly;
    }

    #div-img-logo {
        text-align: center;
    }

    #img-logo {
        width: 90%;
        height: auto;
    }

    

    #div-btn {
        font-family: 'gotham';
        color: white;
        text-align: center;
    }

    #div-btn p {
        font-size: 2rem;
        color: white;
        text-align: center;
    }

    #div-btn #btn-join {
        font-size: 2rem;
        color: white;
        background-color: #DB0032;
        border: 2px solid white;
        border-radius: 15px;
        padding: 5px 10%;
        font-weight: bold;
        margin-top: 4%;
        cursor: pointer;
    }

    
}

@media(min-width: 1200px) {
    .aside {
        width: 25%;
    }
    .div-form {
        width: 35%;
        right: -35%;
    }
}