@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-position: center;
    background-attachment: fixed;
}
.fondo_pt1
{
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg , rgb(180, 180, 180), rgba(255, 255, 255, 0.127));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 40px;
}
.box_info_pt1
{
    width: 30%;
    height: 50vh;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.555);
    border-radius: 10px;
}
.box_info_pt1 p
{
    font-size: 60px;
    color: white;
    font-weight: 700;
}
.box_info_pt1 h1
{
    font-size: 40px;
    color: white;
}
.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: white;
}
.boton_contacto:hover a
{
    transition: all 0.3s;
    color: black;
}
.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%;
    background-image: url(../imagenes/img_1_pt3.jpg);
    background-size: cover;
    background-position: center;
}
.fondo_pt3
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0;
    background: linear-gradient(0deg , rgb(37, 37, 37), rgba(255, 255, 255, 0.577));
}
.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: rgb(0, 0, 0);
    padding-bottom: 10px;
}
.cont_titulo_pt3 h3
{
    font-size: 25px;
    font-weight: 500;
    color: rgb(44, 44, 44);
    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: rgba(255, 255, 255, 0.637);
    border-radius: 20px;
    margin: 10px;
}
.box_servicio h2
{
    font-size: 150px;
    font-weight: 700;
    color: rgb(73, 73, 73);
    /*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);
}
.boton
{
    background-color: black;
    transition: all 0.3s;
    cursor: pointer;
}
.boton a
{
    font-size: 30px;
    text-decoration: none;
    color: white;
}
.boton:hover
{
    transition: all 0.3s;
    background-color: grey;
}
/*mapa*/
iframe
{
    width: 100%;
    height: 50vh;
}