*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: archivo;
}
header{
    width: 100%;
    height: 40px;
    background-color:#830248;
    display: flex;
    justify-content: space-between;
}
header .hlogo{
    margin-left: 50px;
    font-style: oblique;
    line-height: 40px;
}
.hlogo .refrio{
    color: #ff0000;
    text-decoration: underline;
    background-color: #ffffff;
    padding: 0 10px;
    border-radius: 5px;
}
.hlogo .peru{
    color: #ffffff;
    background-color:#0000ff ;
    padding: 0 10px;
    border-radius: 5px;
}
header .fa{
    text-decoration: none;
    font-size: 30px;
    color: #ffffff;
    margin-right: 50px;
    line-height: 40px;
}
.nuestroservicios{
    width: 90%;
    margin: 30px auto;
}
.texto{
    margin-top: 10px;
    font-size: 3vh;
    text-align: justify;
}
.titulo{
    text-align: center;
    color: #0000ff;
}
.linea {
    width: 200px;
    height: 4px;
    background-color: red;
    margin: 5px auto;
}
.contenedor-servicios{
    width: 90%;
    display: flex;
    justify-content: center;
    /*border: 2px solid red;*/
    margin: 30px auto;
    flex-wrap: wrap;
}
.servicio{
    width: 40%;
    /*border: 1px solid green;*/
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 20px auto;
}
.imagen > h4{
    font-weight: 900;
    font-style: oblique;
    color:#0000ff;
    text-decoration: underline;
}
.imagen > img{
    width: 90%;
    height: 200px;
    margin: 10px auto;
    border-radius: 10px;
    object-fit: cover;
}

.concepto{
    text-align: justify;
    margin: auto 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    /*background-color: rgb(247, 111, 247);*/
}
.concepto p{
    padding: 20px;
}
.datos{
    /*margin-top: 20px;*/
    display: flex;
    justify-content:space-evenly;
    text-align: center;
    background-color: #f5ea85;
    
}
.datos article{
    margin: 30px auto;
}
article > p{
    margin-top: 10px;
}
.enlaces > a{
    display: block;
    justify-content: center;
    text-decoration: none;
    margin: 10px;
    color: blue;
}
.titulo-final{
    text-align: center;
    padding: 20px;
    background-color: #f5ea85;
}
.titulo-final span{
    color: #ff0000;
    font-style: oblique;
}
.titulo-final .peru{
    color: #0000ff;
}
@media (max-width: 500px) {
    .contenedor-servicios{
        /*display: block;*/
        display: block;
    }
    .servicio{
        display: block;
        width: 100%;
    }
}