body{
    margin: 0;
}

h2{
    font-size: 24px;
    font-family: "Baskerville old face", serif;
    margin: 0;
}

p{
    font-size: 20px;
    font-family: "Abhaya Libre", serif;
    margin: 0;
}

@font-face {
    font-family: 'Baskerville old face';
    src: url('fonts/baskerville-old-face.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

/*banner*/

.banner{
    position: relative;
    width: 100%;
}

.banner img{
    width: 100%;
}


/*contenido principal*/

.maincontent{
    width: 100%;
    display: flex;
    justify-content: space-around;
    height: 100%;
    padding: 4% 0;
    margin: 0%;
}

.leftcontent{
    width: 30%;
}

.rightcontent{
    width: 55%;
}

.rightcontent img{
    width: 100%;
}

.rightcontent .imgs{
    background-size: cover;
    width: 100%;
    height: 19vw;
    animation: cambiarFondo 16s infinite;
    animation-fill-mode: both; 
}

/*cateforias*/

.categorias{
    background-color: #EAECE9;
    height:fit-content;
    padding: 1px;
}

.categorias h2{
    margin-top: 5%;
    padding: 0 10%;
}

.categoriaItem{
    background-color: white;
    width: 90%;
    border-radius: 10px 0 10px 0;
    padding: 2% 0;
}

button{
    border-color: white !important;
    margin: 3%  5%!important;
}

.categoriaItem p{
    text-align: center;
}

/*servicio*/

.rightcontent h2{
    margin: 10px 0;
}
.servCat{
    margin: 5px 0;
    font-size: 19px;
}

.servContainer{
    padding-bottom: 10px;
    visibility: hidden;
    opacity: 0;
    display: none;
}
.servContainer.visible{
    visibility: visible;
    opacity: 1;
    display: block;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

@media only screen and (max-width: 600px){
.maincontent{
    flex-direction: column-reverse;
}

.banner{
    padding-top: 7.5vh;
    background-color: #1d3828;
}

.leftcontent,.rightcontent{
    margin: 0 6%;
    width: 88%;
}
}