:root{
    --color_web: #49d3d3;
}

/**logo bluewaves**/
.cuerpo {
    margin: 0;
    padding: 0;
    background: #000;
}


.circle {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #ccc;
    border: 3px solid #000;
    box-shadow: 0 0 0 2px #49d3d3;
    border-radius: 50%;
    overflow: hidden;
}


.wave {
    position: relative;
    width: 100%;
    height: 100%;
    background: #49d3d3;
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, .5);
}


.wave:before,
.wave:after {
    content: "";
    position: absolute;
    width: 75px;
    height: 75px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
    background-color: #000;
}

.wave:before {
    border-radius: 45%;
    background: rgba(255, 255, 255, 1);
    animation: animation 7s linear infinite;
}



.wave:after {
    border-radius: 40%;
    background: rgba(255, 255, 255, .5);
    animation: animation 7s linear infinite;
}


@keyframes animation {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
        width: 75px;
        height: 75px;
        transition: all ease-in 10s;
    }

    50% {
        transform: translate(-50%, -75%) rotate(180deg);
        width: 180px;
        height: 180px;
        transition: all ease-in 10s;
    }

    100% {
        transform: translate(-50%, -75%) rotate(360deg);
        width: 75px;
        height: 75px;
        transition: all ease-in 10s;
    }
}

/* .circle:hover > .wave:before {
    border-radius: 45%;
    background: rgba(255, 255, 255, 1);
    animation: animation 1s linear infinite;
}

.circle:hover > .wave:after {
    border-radius: 45%;
    background: rgba(255, 255, 255, 1);
    animation: animation 1s linear infinite;
} */

/**form-onjectivos**/


.objt-lado {
    margin: 14px;
}

.objt  {
    padding: 10px 13px;
    border: 2px solid #adadad;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}


  
.objt h3 {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 5px;
    margin-bottom: 35px;
    text-align: center;
  }

.content-text-objt{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}



.content-text-objt > P{
    color: #000;
    font-family: "Play", sans-serif;
    font-size: 20px;
    line-height: 1.4;
}

.tamaño_div{
    height: 300px;
}

.tamaño_div3{
    height: 200px;
}

.valores{
    margin-top: 60px;
    padding: 0 30px;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {

    .mobil-content-text-objt {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .mobil-content-text-objt > .valor {
        font-size: 20px;
    }

    .content-text-objt > P {
        font-size: 16px;
      }

    .valores{
        margin-top: 40px;
        padding: 0 30px;
    }

}

@media only screen and (max-width: 767px) {

    .content-text-objt{
        display:block;
        text-align: center;
      }
    
      .tamaño_div3{
        height: 371px;
      }
    
      .content-text-objt > P {
        font-size: 17px;
      }


}








