@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic);

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto";
}

body {
    max-width: 100%;
}

header {
    width: 100%;
}

.navbar {
    max-width: 100%;
    height: 83px;
    display: flex;
    justify-content: space-between;
    align-items:end;
    padding: 0 24px 16px;
    border-bottom: 1px solid #898989;
}

.logo-nav {
    width: 174px;
    height: auto;
}

.navbar div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar div img {
    width: 32px;
    height: 32px;
}

.content {
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: row;
}

.banner {
    position: relative;
    width: 40%;
    display: flex;
}

.fondo-banner {
    width: 100%;
    display: flex;
    z-index: 1;
}

.año-img {
    width: 45%;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    filter: brightness(0.01);
}

.draw-top {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.kick-off {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: scale(0.8) translate(-50%, -50%);
    z-index: 10;
    transform-origin: top left;
}

.info {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 72px;
}

.links-eventos {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.links-eventos h3 {
    font-size: 24px;
    font-weight: bold;
    color: #7F7F7F;
    margin-bottom: 24px;
}

.links-eventos a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    gap: 16px;
    transition: all 400ms;
}

.links-eventos a img {
    transition: all 400ms;
    width: 32px;
    height: auto;
}

.links-eventos a span {
    transition: all 400ms;
    font-size: 20px;
    font-weight: 300;
    color: #558080;
}
    .links-eventos a:hover img, .links-eventos a:hover span{
        transform: scale(1.05);
    }

.info hr {
    height: 1px;
    background-color: #558080;
    margin: 32px 0;
}

.archivo-calendario p {
    font-size: 24px;
    font-weight: 400;
    color: #7F7F7F;
    margin-bottom: 24px;
}

.archivo-calendario div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.archivo-calendario div span {
    font-size: 20px;
    font-weight: 300;
    color: #558080;
}

.archivo-calendario div img {
    width: 24px;
    height: auto;
}

#archivo-isc {
    transition: all 400ms;
    cursor: pointer;
    transform-origin: left center;
}
    #archivo-isc:hover{
        transform: scale(1.05);
    }

@media (max-width: 1280px) {
    .content {
        height: auto;
        flex-direction: column;
    }

    .banner {
        width: 100%;
        height: 400px;
        order: 1;
    }

    .año-img {
        display: flex;
        width: 240px;
        height: auto;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 10;
        filter: brightness(0.01);
    }

    .kick-off {
        display: flex;
        flex-direction: column;
        width: 200px;
        left: 120px;
        top: 180px;
        transform: translate(0);
        z-index: 10;
    }

    .info {
        width: auto;
        max-width: 100%;
        padding: 72px;
    }

}

@media (max-width: 640px) {
    .navbar {
        max-width: 100%;
        display: flex;
        /*flex-direction: column;*/
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0 24px;
        border-bottom: 1px solid #898989;
    }

    .content {
        height: auto;
        flex-direction: column;
    }

    .banner {
        width: 100%;
        height: 125px;
        order: 1;
    }
        .draw-top{
            transform: scale(0.75);
            transform-origin: left top;
        }
    .año-img {
        transform: scale(0.3);
        transform-origin: right bottom;
    }

    .info {
        order: 2;
        padding: 24px;
    }
    .kick-off{
        top: -10px;
        transform: translate(10%, 20%) scale(0.5);
        z-index: 10;
        left: 10px;
    }
}