#grayscale {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), rgba(0, 0, 0, .5)), url(../img/fagenda.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -500;
}

section .leftbox {
    width: 50%;
    height: 100%;
    float: left;
    padding: 50px;
    box-sizing: border-box;
    margin-top: 50px;
}

section .leftbox .content {
    color: #fff;
    background: rgba(0, 0, 0, .5);
    transition: .5s;
    padding: 0;
}

section .leftbox .content:hover {
    background: #e91e63;
}

section .leftbox .content h1 {
    margin: 10px;
    padding: 0;
    font-size: 50px;
    text-transform: uppercase;
}

section .leftbox .content p {
    margin: 20px;
    padding: 0;
}

section .events {
    position: relative;
    width: 50%;
    background: rgba(0, 0, 0, .5);
    float: right;
    box-sizing: border-box;
    margin-top: 110px;
}

section .events ul {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0px;
    padding: 40px;
    box-sizing: border-box;
}

section .events ul li {
    list-style: none;
    background: #fff;
    box-sizing: border-box;
    height: 200px;
    margin: 0px;
}

section .events ul li .time {
    position: relative;
    padding: 10px;
    background: #262626;
    box-sizing: border-box;
    width: 30%;
    height: 100%;
    float: left;
    text-align: center;
    transition: .5s;
}

section .events ul li:hover .time {
    background: #e91e63;
}

section .events ul li .time h2 {
    position: absolute;
    margin: 0;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 60px;
    line-height: 30px;
}

section .events ul li .time h2 span {
    font-size: 30px;
    margin-top: 20px;
    z-index: -100;
}

section .events ul li .details {
    padding: 20px;
    background: #fff;
    box-sizing: border-box;
    width: 70%;
    height: 100%;
    float: left;
}

section .events ul li .details h3 {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 22px;
}

section .events ul li .details p {
    position: relative;
    margin: 10px 0;
    padding: 0;
    font-size: 16px;
}

.caixa {
    margin-top: 140px;
}