@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
}

header {
    width: 100%;
    height: 60px;
    margin-top: 20px;
    position: absolute;
    z-index: 1;
}

.container__menu {
    max-width: 1200px;
    height: 60px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }
}

.menu {
    display: flex;
    justify-content: space-around;
}

.menu ul {
    display: flex;
    margin-left: 12%;
}

.menu ul li {
    list-style: none;
    margin-left: 16px;
}

.menu ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #000000;
    background: #a5b0e6;
    padding: 6px 20px;
    border-radius: 10px;
    border: 4px solid rgb(39, 28, 112);
    cursor: pointer;
    box-shadow: 1px 1px 30px -12px #21108d;
    transition: all 300ms;
    text-transform: uppercase;
    
}
.menu ul li a:hover{
    background-color: rgb(6, 9, 50);
    color: white;
}
h3 {
    margin-left: 20%;
    color: #110659;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
}

.container6 {
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 4% 2%;
    box-sizing: border-box;

}

.box {
    /* SE APLICA A UNO POR VEZ */
    flex: 1;
    /* CONTROLAR EL DESBORDE Y OCULTARLO */
    overflow: hidden;
    margin: 8px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.20);
    line-height: 0;
    transition: all 600ms;
}

/* ESTABLECER UNA CONDICION PARA UNA IMAGEN */
.box>img {
    width: 200%;
    height: calc(100% - 10vh);
    object-fit: cover;
    transition: all 300ms;
}

/* ESTABLECER CONDICION PARA EL TEXTO */
.box>span {
    font-size: 15px;
    font-family: sans-serif;
    display: block;
    text-align: center;
    height: 10vh;
    line-height: 2.6;
}

/* :hover ES UN FORMATO QUE SE ESTABLECE PARA CUANDO
PASE EL CURSOR POR ENCIMA Y SE PRODUZCAN CAMBIOS */
.box:hover {
    flex: 50%;
}

/* SIEMPRE DENTRO DE LA CAJA */
.box:hover>img {
    width: 100%;
    height: 100%;
}

.containervideo {
    display: flex;
    justify-content: space-evenly;
}

.containervideo video {
    border: 2px solid darkblue;
    box-shadow: 0px 0px 10px 10px rgba(132, 169, 253, 0.75);
    -webkit-box-shadow: 0px 0px 10px 10px rgba(132, 169, 253, 0.75);
    -moz-box-shadow: 0px 0px 10px 10px rgba(132, 169, 253, 0.75);
}