.hito {
    margin: 4rem 1rem;
    padding: 9rem 1rem 1rem 1rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    position: relative;
    font-family: museo-slab, serif;
    transition: .3s all ease;

}

.hito.v-enter-active,
.hito.v-leave-active {
    opacity: 1;
    max-height: 100vh;
    overflow: hidden
}

.hito.v-enter,
.hito.v-leave-to {
    opacity: 0;
    max-height: 0;
}



.dot>p {
    font-family: museo-slab, serif;
    text-align: center;
    line-height: 40px;
}

.dot:nth-child(1) {
    top: 3rem
}

.dot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #aab7ce;
    z-index: -1;
    animation: anilloDot 1.3s linear infinite;
    z-index: inherit;
}

.dot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #aab7ce;
    z-index: -1;
    z-index: inherit;
    animation: anilloDot 1.3s linear .6s infinite;
}

.hito:nth-child(1) {
    padding-top: 3rem
}

.hito:nth-child(even) {
    flex-flow: row-reverse nowrap;
}

.mes2 {
    text-transform: uppercase;
    color: #6BCCD6;
}

.titulo {
    font-weight: bold;
    color: #004676;
    font-size: 2em;
    line-height: 2rem;
    margin-bottom: 1rem;
}

.imagen img {
    display: block;
    margin: auto;
    height: 100%;
}

.contenedorBoton {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contenedorBotonVerMas {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.boton {
    text-align: center;
    background-color: #004676;
    padding: 8px 15px;
    border-radius: 40px;
    /* display: block; */
    /* margin: auto; */
    width: 200px;
}

.boton:hover {
    background-color: #002F56;
}

.boton a {
    font-family: museo-slab, serif;
    text-decoration: none;
    /* font-weight: bold; */
    /* text-align: center; */
    color: #FFFFFF !important;
    /* background-color: #004676; */
    /* padding: 8px 15px; */
    /* border-radius: 40px; */
    /* display: block; */
    /* margin: auto; */
    /* width: 50%; */
}

.boton p {
    margin: 0
}

.scrollToTop {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #004676;

    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.scrollToTop svg {
    transform: translateY(-.15rem) rotate(-90deg);
}

.chevron-scrollToTop {
    fill: #fff;
}


@media only screen and (max-width: 830px) {
    .hito {
        flex-flow: column nowrap;
        justify-content: start;
    }

    .hito:nth-child(even) {
        flex-flow: column nowrap;
    }
}

@keyframes anilloDot {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(2.3);
        opacity: 0;
    }

}