* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    width: 1215px;
    height: 358px;
    overflow: hidden;
}

.main-container {
    position: relative;
    width: 1215px;
    height: 358px;
    background-color: #E0E0E0;
    overflow: hidden;
    border: white, 4px, solid;
    box-shadow: 7px 7px 15px rgb(225, 225, 225);
}

.borrar {
    position: absolute;
    opacity: 5%;
    z-index: 4;
}

.circles {
    position: relative;
    width: 270px;
    height: 358px;
    animation: bobble 8s infinite ease-in-out 1.2s;
}

.circle-1 {
    position: absolute;
    top: -91px;
    left: 67px;
    width: 170px;
    height: 170px;
    background-color: #00BED5;
    border-radius: 50%;
}

.circle-2 {
    position: absolute;
    top: 99px;
    left: -12px;
    width: 170px;
    height: 170px;
    background-color: #F5B700;
    border-radius: 50%;
}

.circle-3 {
    position: absolute;
    top: 298px;
    left: 67px;
    width: 170px;
    height: 170px;
    background-color: #0068FD;
    border-radius: 50%;
}

.img {
    position: absolute;
    top: -19px;
    left: 215px;
    width: 397px;
    height: 409px;
    border-radius: 50%;
    background-color: rgb(168, 168, 168);
    overflow: hidden;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
}

.img img.animate {
    animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.event {
    position: absolute;
    top: 51px;
    left: 673px;
    width: 500px;
    height: 266px;
    background-color: rgb(222, 222, 222);
}

.title {
    color: #194495;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 8px;
}

.date {
    margin-left: 10px;
    font-family: sans-serif;
    font-weight: 600;
    margin-top: 10px;
    color: #2FB9D1;
    font-size: 32px;
    margin-bottom: 32px;
    overflow: hidden;
    width: 435px;
    height: 38px;
}

.text-event {
    font-size: 34px;
    font-family: sans-serif;
    font-weight: 100;
    overflow: hidden;
    width: 502px;
    height: 84px;
}

.logo-date {
    width: 60px;
    height: 60px;
}

.container-date {

    display: flex;
}

/*Circles*/
@keyframes bobble {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*Img*/
@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}