*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(90deg, #003973 0%, #E5E5BE 100%);
    min-height: 100vh;
}
.contenedor{
    position: relative;
   height: 600px;
   display: flex;
   align-items: center;
}
.vector1{
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
}
.contenedor-texto{
    flex-basis: 50%;
    padding-left: 40px;
    overflow: hidden; /* todo lo q salga de contenedor texto se esconda*/
    color: #fff;
}
.titulo{
    font-size: 50px;
}
.subtitulo{
    font-size: 30px;
    font-weight: 500;
    margin: 20px 0;
}
.cta{
    display: inline-block;
    width: 150px;
    padding: 15px 0;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    text-decoration: none;
    color: #003973;
}
.contenedor-imagen{
    flex-basis: 50%;
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
}
.img{
    width: 95%;
    animation: ilustrateAnimate ease-in 1s infinite alternate;
}
@keyframes ilustrateAnimate{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.04);
    }
}
@media screen and (max-width: 800px){
    .contenedor{
        flex-direction: column-reverse;
    }

    .wave{
        width: 80%;
    }
    
    .contenedor-textos{
        display: flex;
        padding-left: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-basis: 40%;
        text-align: center;
    }

    .titulo{
        font-size: 40px;
    }

    .subtitulo{
        font-size: 20px;
    }

    .contenedor-imagen{
        flex-basis: 60%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .img{
        height: 90%;
    }
}

@media screen and (max-width: 500px){
    .wave{
        width: auto;
        height: 48%;
    }

    .contenedor-textos{
        flex-basis: 40%;
        justify-content: flex-start;
    }

    .titulo{
        font-size: 35px;
    }
}