.main-image{
    width: 100%;
    text-align: center;
}

.main-image img{
    width: 100%;
    margin-top: 100px;
}

.flecha-container{
    display: none;
}

@keyframes flotar {
    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(10px);
    }

    100%{
        transform: translateY(0);
    }
}

/* PASOS */
.pasos{
    padding: 1% !important;
    text-align: center;
}

.pasos img{
    width: 100%;
}

.pasos span{
    margin: 0;
    font-size: 4vw;
    color: #e9552d;
}

.section-pasos{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    margin-top: 5%;
    margin-bottom: 5%;
}

/* CIUDADES */
.section-ciudad{
    margin: 5%;
}

.titulo-ciudad{
    color: #79ae45;
    text-transform: uppercase;
    font-size: 3vw;
}

.titulo-ciudad::after,
.titulo-ciudad::before{
    content: '';
    flex: 1px;
    border-bottom: 2px solid #79ae45;
    margin: 0 10px;
}

.input-ciudad{
    display: none;
}

.btn-ciudad{
    width: 100%;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    overflow: hidden;
    border: 2px solid #e9552d;
    border-radius: 3vw;
    background-color: transparent;
    margin-top: 5%;
    text-transform: uppercase;
    color: #79ae45;
    text-align: center;
    cursor: pointer;
    z-index: 2;
    transition: color .3s;
}

.btn-ciudad span{
    z-index: 2;
}

.input-ciudad:checked + .btn-ciudad::before{
    width: 100%;
}

.input-ciudad:checked + .btn-ciudad span{
    color: white;
    transition: color .3s;
}

.label-ciudad::before{  
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0%;
    height:100%;
    background:#ee5e17;
    z-index:1;
    transition:width .4s cubic-bezier(.77,0,.18,1)
}

.btn-enviar{
    width: 70%;
    text-align: center;
    background-color: transparent;
    border: 2px solid #79ae45;
    padding: 1%;
    margin-top: 5%;
    border-radius: 3vw;
    text-transform: uppercase;
    color: #79ae45;
}

.btn-enviar:hover{
    background-color: #79ae45;
    color: white;
    transition: all .5s;
}

.pdfs{
    width: 100%;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    overflow: hidden;
    border-radius: 3vw;
    margin-top: 5%;
    margin-bottom: 5%;
    text-transform: uppercase;
    background-color: #79ae45;
    text-align: center;
    cursor: pointer;
    z-index: 2;
    transition: color .3s;
    padding: 3%;
}

.pdfs p, .pdfs a{
    margin: 0;
    color: #fff !important;
    font-size: 2vh;
}

@media (min-width: 1200px) {
    .main-image{
        height: 100vh;
    }

    .main-image img{
        width: 100%;
        height: 70%;
        margin-top: 100px;
    }

    .flecha-container{
        width: 100%;
        height: calc(30% - 100px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .flecha-container a{
        width: 7vh;
        height: 7vh;
        text-decoration: none;
        border: 2px solid #79ae45;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #79ae45;
        animation: flotar 2s ease-in-out infinite;
        padding: 1%;
        font-size: 3vh;
    }

    .flecha-container a:hover{
        text-decoration: none;
    }

    /* PASOS */
    .pasos img{
        width: 80%;
    }

    .section-pasos{
        height: calc(100vh + 100px);
        align-items: end;
        margin: 0;
        padding: 0;
    }

    .pasos span{
        font-size: 2vw;
    }

    .pdfs{
        width: 100%;
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        user-select: none;
        overflow: hidden;
        border-radius: 3vw;
        margin-top: 5%;
        margin-bottom: 5%;
        text-transform: uppercase;
        background-color: #79ae45;
        text-align: center;
        cursor: pointer;
        z-index: 2;
        transition: color .3s;
        padding: 3%;
    }

    .pdfs p, .pdfs a{
        margin: 0;
        color: #fff !important;
        font-size: 2vh;
    }
}