﻿/*
    ********************************  SECCION Contacto
*/
.contacto-seccion1 {
    background: #FFF;
    width: 100%;
    text-align: center;
    position: relative;
    height:130px;
}

.contacto-titulo1 {
    position: absolute;
    top: 30px;
    left: calc(50vw - 195px);
}
.contacto-titulo1-mobile {
    position: absolute;
    visibility: hidden;
}

.contacto-seccion2 {
    background: #FFF;
    width: 100%;
    text-align: center;
    position: relative;
}

.contacto-forma {
    max-width: 1200px;
    max-height: 600px;
    min-width: 800px;
    min-height: 400px;
    text-align: start;
    box-shadow: 4px 4px 20px 0px rgba(98, 98, 98, 0.25);
    margin-bottom: 100px;
    padding: 20px;
    background-color: #fdfbfb;
}

.form-label{
    font-weight:bold;
}

.form-control {
    border: 2px solid #487FFF;
    height: 60px;
}

.margen-col{
    padding-left:20px;
    padding-right:20px;
}

.btn-enviar {
    border-radius: 20px;
    width: 90px;
    background: rgba(53, 100, 252, 1);
}

    .btn-enviar:hover {
        text-decoration: none;
        border: solid 1px #FFF;
        background-color: #FFFFFF;
        color: #487FFF;
        box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    }

.contacto-link {
    font-size: 14px;
    color: #3564FC;
}

::placeholder {
    color: rgba(98, 98, 98, 1);
    font-size: 14px;
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: rgba(98, 98, 98, 1);
    font-size: 14px;
}

/*
    ********************************  SECCION Gracias
*/
.mensaje-gracias-seccion {
    background: #FFFFFF;
    width: 100vw;
    height: 80vh;
    text-align:center;
}

.mensaje-gracias-img {
    position: absolute;
    width: 80vw;
    height: 70vh;
    top: 120px;
    left: 10vw;
    border-radius: 20px;
    border: 1px solid rgba(234, 234, 235, 1)
}



@media only screen and (max-width: 600px) {
    .web {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .contacto-titulo1 {
        position: absolute;
        top: 30px;
        left: calc(50vw - 195px);
        visibility: hidden;
    }

    .contacto-titulo1-mobile {
        position: absolute;
        top: 0px;
        width: 80vw;
        left: 10vw;
        visibility: visible;
    }

    .contacto-forma {
        max-width: 1200px;
        max-height: 900px;
        min-width: 400px;
        min-height: 400px;
        text-align: start;
        box-shadow: 4px 4px 20px 0px rgba(98, 98, 98, 0.25);
        margin-bottom: 100px;
        padding: 20px;
        background-color: #fdfbfb;
    }
}