* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;

}

body {
    background-color: #252525;
}


header {
    background-color:#f8f9fa ;
    color: #252525;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2em;
}

header .logo {
    height: 50px;
}

ul.navbar-nav li a:hover {
    color: #c72121
}

ul.navbar-nav li a:active {
    color: #c72121
}

.carousel-item {
    height: 90vh;
}

.carousel-item img {
    object-fit: cover;
}

.carousel-caption {
    font-weight: 600;
    font-size: 2.2em;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-caption h5 {
    font-weight: 900;
    font-size: 106px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.carousel-caption p {
    font-size: 0.8em;
}

.button {
    background-color: #c72121;
    font-size: 0.7em;
    font-weight: 600;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease-in-out;

}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    background-color: #fd1111b9;

}

.button:active {
    transform: translateY(0.5em);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);

}

/* section programacion */
section#programacion h2 {
    font-size: 106px;
    letter-spacing: 0.025em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.5em;
    padding-top: 0.1em;
    color: #fff;
    font-weight: 800;
}

.card {
    height: 450px;
}

.card-body {
    padding-top: 10px;
}

.card-body,
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

.card-body .card-title {
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 15px;
}

/* Seccion Nosotros */
section#nosotros {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

section div.descripcion-nosotros {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section div.descripcion {
    width: 660px;

}

section div.descripcion h2 {
    letter-spacing: 0.025em;
    text-align: center;
    text-transform: uppercase;
    font-size: 106px;
    font-weight: 900;
    padding-bottom: 20px;
}

section div.descripcion p {
    font-size: 1.2em;
    font-weight: 600;
    text-align: justify;
    letter-spacing: 0.025em;
    line-height: 1.5em;
    margin-top: 1em;
}

section div.descripcion p span.destacado {
    font-weight: 800;
    text-transform: uppercase;
    color: #c72121;
}

section div.img-container {
    height: 100%;
    width: 60%;
}

div.img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;

}

/*Contacto*/
section#contacto {
    padding-bottom: 0.6em;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Contacto - título*/

section#contacto h2 {
    font-size: 115px;
    padding-top: 0.3em;
    color: #F3EEE9;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
}

/*Contacto-formulario*/
#contacto form {
    margin: auto 0;
    margin-top: 0.5em;
}

#contacto input {
    padding: 10px;
    margin: 15px;
    border-radius: 5px;
    border-color: #F3EEE9;
}

#contacto #nombre,
#contacto #email,
#contacto #mensaje {
    height: 62px;
    width: 872px;
    text-align: left;
    font-size: 20px;
    padding-left: 20px;
}


#contacto #mensaje {
    height: 200px;
    margin: 15px;
    padding: 15px;
    border-radius: 5px;
    font-size: 20px;
    border-width: 2px;
    border-color: #F3EEE9;
    resize: none;
}

#contacto #enviar {
    width: 872px;
    text-align: center;
    text-transform: uppercase;
    background-color: #F3EEE9;
    font-weight: 800;
    letter-spacing: 0.09em;
    font-size: 20px;
    border-radius: 5px;
    transition: all 0.4s ease;
}

#contacto #enviar:hover {
    color: #F3EEE9;
    background-color: #c72121;

}

/* Footer */
.social-links,
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-btn {
    cursor: pointer;
    height: 50px;
    width: 50px;
    color: #333;
    border-radius: 10px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    background: white;
    margin: 4px;
    transition: 0.3s;
    justify-content: center;
}

.social-btn svg {
    height: 30px;
    width: 30px;
}

.social-btn #instagram svg {
    height: 30px;
    width: 30px;
}


.social-btn span {
    width: 0px;
    overflow: hidden;
    transition: 0.3s;
    text-align: center;
    margin-left: 5px;
}

.social-btn:hover {
    width: 210px;
    border-radius: 5px;
}

.social-btn:hover span {
    padding: 1px;
    width: 170px;
}

#twitter svg {
    fill: #333;
}

#instagram svg {
    fill: #333;
}

#web {
    fill: #333;
}

/* Mobile */
@media(max-width:992px) {
    header {
        display: flex;
        flex-direction: column;
        justify-content:flex-start;
        align-items:flex-start;
    }

    .carousel-caption {
        font-size: 0.9em;
        transform: translateY(-50%);
    }

    .carousel-caption h5 {
        font-weight: 900;
        font-size: 5em;
    }

    .carousel-item {
        height: 50vh;
    }

    .carousel-item img {
        height: 50vh;
    }

    section#programacion h2,
    section#contacto h2,
    section#nosotros h2 {
        font-size: 2em;
    }

    /* Nosotros */
    section#nosotros {
        height:930px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
    }

    section#nosotros div.img-container{
        visibility: hidden;
        display: none;
    }

    section div.descripcion p {
        text-align:left;
        padding-top: 0.6em;
    }

    /*Contacto - título*/
    #contacto {
        padding-top: 0.3em;
        padding-bottom: 1.70em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 500px;
    }


    /*Contacto-formulario*/
    #contacto input {
        padding: 12px;
        margin-top: 1px;     
        border-radius: 5px;
        border-color: #F3EEE9;
    }

    #contacto #nombre,#contacto #email,#contacto #mensaje,#contacto #enviar  {
        height: 62px;
        width: 250px;
        text-align: left;
        font-size: 20px;
        padding-left: 15px;
    }

    #contacto #mensaje {
        height: 130px;

       
    }

    #contacto #enviar{
        letter-spacing: 0.09em;
        font-size: 20px;
        text-align: center;

    }

}

@media(max-width:768px) {

    .carousel-caption {
        font-size: 0.5em;
        transform: translateY(-50%);
    }

    .carousel-caption h5 {
        font-weight: 900;
        font-size: 2.5em;
    }

    .carousel-item {
        height: 50vh;
    }

    .carousel-item img {
        height: 50vh;
    }

    section#programacion h2,
    section#contacto h2,
    section#nosotros h2 {
        font-size: 2em;
    }

    /* Nosotros */
    section#nosotros {
        height:930px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
    }

    section#nosotros div.img-container{
        visibility: hidden;
        display: none;
    }

    section div.descripcion p {
        text-align:left;
        padding-top: 0.6em;
    }

    /*Contacto - título*/
    #contacto {
        padding-top: 0.3em;
        padding-bottom: 1.70em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 500px;
    }


    /*Contacto-formulario*/
    #contacto input {
        padding: 12px;
        margin-top: 1px;     
        border-radius: 5px;
        border-color: #F3EEE9;
    }

    #contacto #nombre,#contacto #email,#contacto #mensaje,#contacto #enviar  {
        height: 62px;
        width: 250px;
        text-align: left;
        font-size: 20px;
        padding-left: 15px;
    }

    #contacto #mensaje {
        height: 130px;

       
    }

    #contacto #enviar{
        letter-spacing: 0.09em;
        font-size: 20px;
        text-align: center;

    }

}