body{
    font-family: 'Merriweather', serif;
    margin: 0;
    background-color: #455a0f;
}

section {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.concept1{
    background: rgba(0,0,0,0.5);
    background-image: url(img/wildlife.jpg);
    background-blend-mode: multiply;
    font-size: 4rem !important;
    color: white;
    background-size: cover;
    background-position: center;
    text-align: center;
}


.concept2{
    background: rgba(0,0,0,0.5);
    background-image: url(img/meat.jpg);
    background-blend-mode: multiply;
    font-size: 4rem !important;
    color: white;
    background-size: cover;
    background-position: center;
    text-align: center;

}

a{
    display: block;
    color: unset;
    font-weight: 700;
    text-align: center;
}

a span{
    display: block;
    font-size: 0.7 rem !important;
    text-decoration: none !important;
}

ul{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    list-style: none;
    max-width: 100%;
    padding: 0;
}

li{
    max-width: 33%;
    text-align: center;
}

i {
    display: block;
    font-size: 3rem;
    text-align: center;
}

h1{
    font-size: 2rem;
}

h3{
    font-size: 1.5rem;
    padding: 1rem;
    text-align: center;
    color: #FFF;
    background-color: rgba(0,0,0,0.5);
    text-shadow: none !important;
    font-weight: 200;
    border-radius: 0.5rem;
}



.title{
    font-weight: 700;
    padding: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    text-shadow: 0px 0px 5px #fff;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
}

.title1{
    background-image: url(img/portera.jpg);

}

.title2{
    background-image: url(img/vacas2.jpg);
}

.title3{
    background-image: url(img/atardecer_2.jpg);
}

.title4{
    background-image: url(img/cabana2.jpg);
}



.section1 .content1 {
    background-color: #637a1c;
    color: #e6dbcb;
    padding: 2rem;
}

.section2 .content2{
    background-color: #46381c;
    color: #8ba143;
    padding: 2rem;
}

.section3 .content3{
    background-color: #7f7e3a;
    color: #cfbfac;
    padding: 2rem;
}

.section4 .content4{
    background-color: #21210f;
    color: #a46c48;
    padding: 2rem;
}


.section4 .content4 p{
    text-align: left;
}


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  max-height: 30rem;
}

/* Hide the images by default */
.mySlides {
  display: none;
  max-height: 30rem;

}

section > div.content > div > div.slideshow-container > div > img {
    height: 30rem;

}

@media only screen and (max-width: 768px) {
    section > div.content > div > div.slideshow-container > div > img {
        height: 15rem;
    
    }
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

.pagination{
    margin-top: 1rem;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

label,
input,
textarea {
  display: block;
  margin-bottom: 10px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}