.box-indications{
    background-image: url('../img/fondo-reloj.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
    width: 100%;
    color: #fff;
    font-family: poppins;
    position: relative;
}
.box-indications::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(33 31 137);
    opacity: 0.7;
    z-index: 0;
}
.box-indications *{
    z-index: 1;
}
.box-icons-reloj{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}

.box-img-reloj{
    min-width: 400px;
    height: 600px;
    position: relative;
}
.box-img-reloj .icon-rotate{
    display: none;
}
.box-img-reloj.both-views .icon-rotate{
    display: block;
    position: absolute;
    width: 30px;
    top: 10px;
    right: 10px;
    z-index: 1;
    filter: drop-shadow(0px 1px 1px #000);
}
.content-reloj-img{
    transition: 0.4s;
    position: absolute;
    width: 100%;
    height: 100%;
}
.box-img-reloj .content-reloj-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.4s;
}

.box-img-reloj.both-views .content-reloj-img{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotateY(180deg);
}
.box-img-reloj.both-views .content-reloj-img img{
    transform: rotateY(180deg);
}
.box-img-reloj.both-views:hover .content-reloj-img{
    transform: rotateY(0deg);
}
.box-img-reloj.both-views:hover .content-reloj-img img{
    opacity: 0;
}


.box-icons-reloj article{
    display: grid;
    place-items: center;
    font-size: 14px;
    gap: 10px;
    text-transform: uppercase;
}    

.reloj-info{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.marca-logo img{
    height: 80px;
}
.box-icons-reloj article i{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
}

.box-icons-reloj article i img{
    height: 50px;
}

.box-icons-reloj span{
    text-align: center;
}
.box-icons-reloj i small{
    max-width: 70%;
    display: block;
    text-align: center;
    font-size: 10px;
    margin-top: -5px;
}

@media(width < 800px){
    .content-limit .flex,
    .box-indications .flex{
        flex-direction: column;
    }
}