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

html{
    scroll-behavior: smooth;
}

#divContenedor{
    height: 1600px;   
}

.chip{
    width: 100%;
    text-align: center;
    font-size: 15px;
    background-color: #005596;
    color:aliceblue;
    transition: background-color 0.5s ease;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    border: 1px solid grey;
 
}

.chip:hover{
    background-color:#1c98ed;
    transform: scale(1.02);
}

.img{
    width: 100%;
}

.cardAired{
    transition: transform .2s;
    min-height: 400px;
    height: 400px;
    border-radius: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: #1c98ed;
    color:aliceblue;
    font-size: 30px;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    margin:5px;
}

.cardAired:hover{
    transform: scale(1.03);
    cursor: pointer;
    background-color: #005596;
}


.cardAired_{
    transition: transform .2s;
    min-height: 600px;
    height: 600px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: #1c98ed;
    color:aliceblue;
    font-size: 40px;
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;

}

.cardAired_:hover{
    transform: scale(1.03);
    cursor: pointer;
    background-color: #005596;
}

section{
    font-family: 'Nunito', sans-serif;
    height: 760px;
    display: flex;
    justify-content: space-evenly;
    padding: 0px 40px;
    align-items: center;
}

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

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

section img{
    height: 60%;
}

section a{
    display: inline-block;
    padding: 7px 0px;
    color:rgba(39, 92, 141, 0.849);
    text-decoration: none;
    width: 100px;
    text-align: center;
    border-radius: 50px;
    background:#fff;
    border:1px solid rgba(94, 170, 247, 0.849);
    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%);
    font-size:15px;
}

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

#sec3{
    background-image: linear-gradient(to top, #4481eb 0%, #04befe 100%);
}

