.cont-index {
    width: 100%;
    margin: auto;
    background: #ffb7b2;
}

/* DESCRIPTION */

.description {
    width: 100%;
    margin: auto;
    background: #fff;
}

.description article {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    padding: 20px;
}

.description h2 {
    font-size: 25px;
    color: #317500;
    margin-bottom: 0px;
}

.description p {
    font-size: 20px;
    padding: 20px 90px 20px;
    margin-bottom: 0px;
    color: #a3bd31;
    font-weight: bold;
}

/* SERVICIOS */

.serv {
    background: url(../img/Fondo.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    margin: auto;
}

.serv .conten {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.conten-serv {
    margin: 20px;
}

.conten-serv a {
    text-decoration: none;
    color: #fff;
    transition: all ease .3s;
}

figure {
    width: 300px;
    height: 250px;
    margin: 20px auto;
    padding: 20px 0px;
    overflow: hidden;
    filter: grayscale(100%);
    transition: 300ms;
    cursor: pointer;
}

figure img {
    width: 100%;
}

figure:hover {
    -webkit-transform: scale(1.9);
    transform: scale(1.1);
    filter: grayscale(0);
}

.conten a h1 {
    text-align: center;
    font-size: 1.5rem;
    padding: 10px;
    background: #ff1177;
    border-radius: 10px;
    color: white;
}

.conten a h1:hover {
    opacity: .8;
}

/* QUESTION */

.question {
    width: 90%;
    max-width: 900px;
    margin: 30px auto;
    padding: 30px 0px;
    text-align: center;
    color: #317500;
}

.question h1 {
    margin-bottom: 1.5rem;
    font-weight: bold;
}

/* GALERY */

.carousel__contenedor {
    position: relative;
}

.carousel__anterior, .carousel__siguiente {
    position: absolute;
    font-size: 40px;
    height: 100%;
    border: none;
    top: calc(50% - 128px);
    cursor: pointer;
    line-height: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    opacity: 20%;
    z-index: 500;
    transition: .2s ease all;
}

.carousel__anterior:hover, .carousel__siguiente:hover {
    opacity: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.carousel__anterior {
    left: 0px;
}

.carousel__siguiente {
    right: 0px;
}

.carousel__lista {
    overflow: hidden;
}

.carousel__elemento img {
    width: 100%;
    height: 255px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 30%);
}

.carousel__indicadores .glider-dot {
    display: block;
    width: 30px;
    height: 4px;
    background: lightslategray;
    opacity: .2;
    border-radius: 0;
    outline: none;
}

.carousel__indicadores .glider-dot:hover {
    background: #ff1177;
    opacity: .5;
}

.carousel__indicadores .glider-dot.active {
    background: #ff1177;
    opacity: 1;
}

/*Formulario*/

.formulario {
    text-align: center;
    background-image: url(../img/Fondo.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 30px 0px;
    width: 100%;
    height: auto;
}

.formulario>h1 {
    font-size: 30px;
    padding: 20px 20px 10px 20px;
    margin: 10px;
    font-weight: bold;
    color: black;
}

.formulario>p {
    font-size: 20px;
}

.contact {
    width: 90%;
    max-width: 500px;
    margin: auto;
}

form {
    width: 100%;
    margin: 0;
    padding: 20px;
    /* background: #fff; */
    overflow: hidden;
    /* box-shadow: 0 0 3px grey; */
    /* border-top: 4px solid #f5ca00; */
}

form input[type="text"], form input[type="email"], form input[type="password"] {
    max-width: 100%;
    min-width: 100%;
    margin: 10px 0;
}

form textarea {
    max-width: 100%;
    min-width: 100%;
    max-height: 300px;
    min-height: 150px;
    margin: 10px 0;
}

@media (max-width: 1071px) {
    #banner h1 {
        font-size: 5em;
    }
}

@media (max-width: 825px) {
    #banner h1 {
        font-size: 4em;
    }
}

@media (max-width: 702px) {
    #banner h1 {
        text-align: center;
    }
    .description h2 {
        font-size: 20px;
    }
    .description p {
        font-size: 15px;
        padding: 20px 0px;
    }
}