.titulio {
    text-align: center;
    padding-top: 48px;
}

.titulio h1 {
    font-size: 40px;
}

.visit-btn {
    padding-top: 48px;
}

.visit {
    text-decoration: none;
    color: #1d1d1d;
    background-color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    padding: 9px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.visit:hover {
    color: #ffffff;
    background-color: #1d1d1d;
    transform: scale(1.1);
}

.calendar {
    position: relative;
    max-width: 1200px;
    margin: 96px auto;
}

.container {
    padding: 8px 48px;
    position: relative;
    width: 50%;
}

.text-box {
    padding: 16px 16px;
    position: relative;
    border-radius: 6px;
}

.text-box h2 {
    font-size: 24px;
    font-weight: 800;
}

.text-box small {
    font-size: 20px;
    font-weight: 200;
}

.left-calendar {
    text-align: end;
    left: 0;
}

.right-calendar {
    text-align: start;
    left: 50%;
}

.calendar::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: #ffffff;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    animation: moveline 6s linear forwards;
}

@keyframes moveline {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

.left-container-arrow {
    margin-left: 20px;
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #ffffff;
    right: -15p;
}

.right-container-arrow {
    margin-right: 20px;
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #ffffff;
    left: -15px;
}