@font-face {
    font-family:Open_Sans;
    src: url('../fonts/OpenSans-VariableFont_wdth\,wght.ttf') format('truetype');
}
*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root
{
    --colorPrincipal:rgb(227, 5, 33);
}
body
{
    font-family:"Open_Sans";
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera parte*/
.contenedor_primera_parte
{
    width: 100%;
    background-image: url(../imagenes/img_pt1.jpg);
    background-size: cover;
    background-attachment: fixed;
}
.fondo_pt1
{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_info_pt1
{
    width: 100%;
    height: 50vh;
    background-color: rgba(255, 255, 255, 0.493);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cont_info_pt1 img
{
    height: 200px;
}
.boton_contacto
{
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: black;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s;
}
.boton_contacto:hover
{
    transition: all 0.3s;
    background-color: var(--colorPrincipal);
}
.boton_contacto a
{
    text-decoration: none;
    color: white;
    font-size: 20px;
    
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*segunda parte*/
.contenedr_segunda_parte
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 0;
    background-color: rgb(226, 226, 226);
}
.box_moto
{
    width: 280px;
    height: 280px;
    /*border: 1px solid red;*/
    background-color: white;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content:center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s;
}
.box_moto:hover img
{
    transition: all 0.3s;
    scale: 1.05;
}
.box_moto img
{
    width: 80%;
}
.box_moto h2
{
    font-size: 15px;
    color: grey;
    text-align: center;
    padding: 20px 10px;
}
.box_moto h3
{
    font-size: 15px;
    color: grey;
    text-align: center;
}
.box_moto p
{
    font-size: 15px;
    color: var(--colorPrincipal);
    font-weight: 700;
    text-align: center;
}
.box_moto a
{
    text-align: center;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera parte*/
.contenedor_tercera_parte
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0;
}
.cont_titulo_pt3
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0;
}
.cont_titulo_pt3 h2
{
    font-size: 35px;
    font-weight: 700;
    color: black;
    padding-bottom: 10px;
}
.cont_titulo_pt3 h3
{
    font-size: 25px;
    font-weight: 500;
    color: grey;
    text-align: center;
    padding: 0 10px;
}
.cont_servivicios_boxes_pt3
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.box_servicio
{
    width: 400px;
    height: 150px;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(184, 184, 184);
    border-radius: 20px;
    margin: 10px;
}
.box_servicio h2
{
    font-size: 150px;
    font-weight: 700;
    color: var(--colorPrincipal);
    /*border: 1px solid blue;*/
}
.box_servicio h4
{
    font-size: 25px;
    transform: rotate(270deg);
    /*border: 1px solid red;*/
    position: relative;
    right: 50px;
}
.box_servicio p
{
    position: relative;
    right: 50px;
    font-size: 25px;
    font-weight: 700;
    color: rgb(64, 64, 64);
}

.box_servicio_bot
{
    width: 250px;
    height: 50px;
    background-color: var(--colorPrincipal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    cursor: pointer;
    transition: all 0.3s;
}
.box_servicio_bot:hover
{
    transition: all 0.3s;
    background-color: grey;
}
.box_servicio_bot a
{
    text-decoration: none;
    font-size: 17px;
    color: white;
}
/*mapa*/
iframe
{
    width: 100%;
    height: 50vh;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*formulario*/
.contenedor_formulario
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(../imagenes/img_form.jpg);
    background-position: center;
    background-size: cover;
    padding: 50px 0;
}
.contenedor_formulario h2
{
    font-size: 30px;
    color: var(--colorPrincipal);
    padding-bottom: 10px;
}
.contenedor_formulario p
{
    font-size: 13px;
}
.contenedor_formulario span
{
    color: var(--colorPrincipal);
}
form
{
    width: 50%;
    /*border: 1px solid red;*/
    background-color: rgba(255, 255, 255, 0.644);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0;
    border-radius: 10px;
}
.cont_fila
{
    width: 90%;
    display: flex;
    align-items:flex-start;
    justify-content: center;
    flex-direction: column;
    /*border: 1px solid red;*/
    padding: 5px 0;
}
.cont_fila span
{
    font-size: 13px;
    color: var(--colorPrincipal);
}
label
{
    font-size: 17px;
    padding-bottom: 2px;
}
input
{
    width: 100%;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.463);
    border: 1px solid rgba(255, 0, 0, 0.375);
    border-radius: 5px;
    color: var(--colorPrincipal);
    padding-left: 10px;
}
textarea
{
    width: 100%;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.463);
    border: 1px solid rgba(255, 0, 0, 0.375);
    border-radius: 5px;
    margin-bottom: 20px;
    color: var(--colorPrincipal);
    padding-left: 10px;
    padding-top: 10px;
    resize: none;
}
button
{
    width: 250px;
    height: 40px;
    border: none;
    background-color: var(--colorPrincipal);
    color: white;
    font-size: 17px;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
button:hover
{
    transition: all 0.3s;
    background-color: grey;
}