/*fuentes*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&display=swap');

body{
    margin: 0;
    padding: 0;
}

.ImgPub{
    width: auto;
    margin: 0;
    overflow: hidden;
}

.GrupoImg {
    width: 1280px;
    display: flex;
    animation: slide 15s infinite;
}

.GrupoImg img {
    width: 1280px;
}

.Somos {
    text-align: center;
    justify-content: center;
    margin-bottom: -30px;
}

.Somos h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
}

.Somos p {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 40px;
    font-style: justified;
}

h4 {
    color: white;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 30px;
}

h1
{
    font-family: "Montserrat", sans-serif;
    text-align: center;
    justify-content: center;
}

.Serv 
{
margin-top: 100px;
margin-bottom: 40px;
}

.PServ 
{
    font-family: "Montserrat", sans-serif;
    text-align: center;
    justify-content: center;
    margin-top: -20px;
    margin-bottom: 30px;
}

.Servicios
{
    display: flex;
    flex-direction: column;
    font-family: "Montserrat", sans-serif;
    max-width: 1920px;

}

.Item
{
display: flex;
align-items: center;
text-align: center;
justify-content: center;
justify-items: center;
}

.ItemText {
    width: 545px;
    text-align: center;
}

.ItemText h2
{
font-size: 24px;
}


.Item img
{
max-width: 545px;
height: 380px;
}

.Item p{
font-size: 16px;
max-width: 400px;
}

.RolImg{
    border-top-left-radius: 5% ;
}

.DiamImg {
border-bottom-right-radius: 5%;
}

@media (max-width: 760px){
.ImgPub {
    max-width: 760px;
    width: 505px;
    height: 280px;
    overflow: hidden;
    margin-bottom: -80px;
}

.GrupoImg {
    display: flex;
    animation: slide 15s infinite;
    width: 100%;
}

.GrupoImg img {
    width: 500px;
}

}

@keyframes slide {
  0% {transform: translateX(0);}
  25% {transform: translateX(0);}

  25% {transform: translateX(-100%);}
  50% {transform: translateX(-100%);}

  75% {transform: translateX(-200%);}
  100% {transform: translateX(-200%);}
}