*{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

section{
    font-family: 'Nunito', sans-serif;
    height: 760px;
    display: flex;
    justify-content: space-evenly;
    padding: 0px 40px;
    align-items: center;
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

section h2{
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 5px;
}

section p{
    font-weight: 300;
    margin-bottom: 15px;
}

section img{
    height: 60%;
    transition: transform .4s;
}

section a{
    display: inline-block;
    padding: 7px 0px;
    color:rgba(39, 92, 141, 0.849);
    text-decoration: none;
    width: 100px;
    text-align: center;
    border:1px solid rgba(94, 170, 247, 0.849); 
    border-radius: 50px;
    background:#fff;
    box-shadow:0px 0px 4px 0 rgba(94, 170, 247, 0.849);
}

a:hover{
    text-decoration: none;
}


#sec2{
    background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
}

#sec1{
    background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);
}

#sec3{
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

#sec2 img{ 
    width: 25%;
    height: auto;
    transition: transform .4s;
}

#sec3 img{ 
    width: 25%;
    height: auto;
    transition: transform .4s;
 
}

#sec2 img:hover{
    transform: scale(1.1);
    cursor: pointer;
}

#sec3 img:hover{
    transform: scale(1.1);
    cursor: pointer;
}

.sesgoabajo{
    z-index: 10;
    position:absolute;
    bottom: 0;
    left: 0;
    border-width: 0 0 35vh 100vw;
    border-style: solid;
    border-color:  transparent transparent #fff transparent;
}

