@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --white: #f9f9f9;
    --blue: #003399;
    --yellow-light:#FFC436;
    --black: #848688;
    --black1: #727376;
    --grey: #0b0b0b;
    --blue2: #001E84;
    --black2: #E6E7E8;
    --black3: #D2D3D5;
    --font:"Montserrat"    
}

.contacto_total{
    width: 100%;
}

.contacto_total .contacto_2colum{
    width: 100%;
    display: flex;
    justify-content: space-between;
}


.contacto_total .contacto_2colum .colum_01{
    width: 100%;
}

.colum_01.titu_contacto{
    width: 100%;
}

.colum_01 .titu_contacto img{    
    width:300px;
    margin:2rem 3rem
}

.colum_01 .datos_contacto{
    width: 100%;
    margin-left: 3rem;
}

.colum_01 .datos_contacto h1, h2{
    color:var(--black1);
    font-size: 1rem;
    font-family: var(--font);
    font-weight: 400;
}

.colum_01 .datos_contacto h2{
    margin-left: 30px;
}

.colum_01 .datos_contacto p{
    color:var(--black1);
    font-size: 1rem;
    font-family: var(--font);
    font-weight: 400;
    line-height: 2rem;
    text-align: left;
}

.colum_01 .datos_contacto i{
    text-align: left;
    margin-right: 15px;
}


.colum_01 .imgen_contacto img{
    width: 250px;
    margin-left: 550px;
}


.contacto_total .contacto_2colum .colum_02{
    width: 100%;
    margin-bottom: 5rem;
}


.colum_02 .cuenta_contacto h1{
    margin-left: 30px;
    color:var(--black1);
    font-size: 2rem;
    font-family: var(--font);
    font-weight: 500;
    margin-left: 3rem;
    margin-top: 3rem;
}

.colum_02 .cuenta_contacto p{
    color:var(--black1);
    font-size: 1rem;
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.5rem;
    margin-left: 3rem;
    margin-bottom: 3rem;
}

.colum_02 form{
    background:var(--black2);
    width: 700px;
    margin: auto;
    border-radius: 15px;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.colum_02 form .texto_cajitas{
    font-size: 1rem;
    color:var(--black1);
    font-family: var(--font);
    font-weight: 500;
    margin-left: 2rem;
    color:var(--blue2)
}

.colum_02 form .border input{
    width: 400px;
    height: 50px;
    font-size: 1rem;
    padding-left: 5px;
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.colum_02 form .border textarea{
    width: 400px;
    height: 150px;
    font-size: 1rem;
    padding-left: 5px;
    margin-left: 2rem;
    margin-top: 1rem;
    border-radius: 10px;
}

.colum_02 form .border textarea:focus{
    outline:1px solid var(--blue2);
}

.colum_02 form .boton{
    margin-top:2rem;
    margin-left: 2rem;
}

.colum_02 form .boton .btn{
   width: 250px;
   height: 50px;
   background: var(--blue2);
   border: none;
   color:#fff;
   border-radius: 25px;
   -webkit-border-radius: 25px;
   transition: all 0.2s ease-in-out;
}

.colum_02 form .boton .btn:hover{
    background:var(--yellow-light);
}


.colum_02 form .check{
    width: 100%;
}

.colum_02 form .check input{
    width:3rem;
    height: 2vh;
    margin-left: 15px;
    margin-top: 10px;
}

.colum_02 form .check span{
    color:var(--black1)
}

@media screen and (max-width:400px){
    .contacto_total .contacto_2colum{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .contacto_total .contacto_2colum .colum_02{
        width: 100%;
        margin-bottom: 5rem;
    }

    .colum_01 .imgen_contacto img{
        margin-left: 2rem;
    }

    .colum_02 form{
        width: 370px;
    }

    .colum_02 form .border input{
        width: 300px;
        height: 40px;
    }

    .colum_02 form .border textarea{
        width: 300px;
        height: 100px;
        margin-top: 10px;

    }

      .colum_02 form .check input{
        width:1.5rem;
        height: 2vh;
        margin-left: 25px;
    }

    .colum_02 form .check span{
        color:var(--black1)
    }

}