*{margin:0px;padding:0px;box-sizing: border-box;}
html,body{font-family: 'Nunito', sans-serif;background-color:#ffff;}
.container{
    width:100%;
    height:100vh;
    display: flex;
}
.left{
    width:70%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.div-text{
    width: 50%;
    text-align: center;
}
.div-text h2{
    font-size: 2.6em;
    color:#1481ba;
}
.div-text p{
    line-height:20px;
    padding: 10px 0px;
}
.right{
    width:30%;
    background-color:#84b4ce;
    position: relative;
}
.slider{
    width:100%;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider img{
    width: 80%;
    opacity: 0;
    transition: all 0.5s;
    position: absolute;
    margin-right: -5px;
    border:1px solid #cccc;
}
.slider .selected{
    opacity: 1;
    margin-right:5px ;
}
ul{
    list-style: none;
    display: flex;
    text-align: center;
    margin:0 5%;
    margin-top:15px;
}
ul li{
    width:25%;
    height:220px;
    border:1px solid #cccc;
    border-radius: 5px;
    transition: all 1s;
    margin-left:5px;
}
ul li:hover{
    transform: scale(1.2);
    border:1px solid rgba(0, 0, 0, 0.616);
    background-color: #ffff;
}
li section{
    height:100%;
    display: flex;
    align-items: center;
    font-size: 0.8em;
    padding:10px 6px;
}
section p{
    position: relative;
    bottom:15px;
}
li i{
    margin-top:20%;
    font-size: 2.3em;
    color:#11b5e4;
}
nav{
    position: absolute;
    margin:10px;
    width:70%;
    display: flex;
}
nav a{
    text-decoration: none;
    color:#1481ba;
    font-weight:bold;
}
.comecar{
    position: absolute;
    margin-top:10px;
    right:5%;
}
button{
    outline:none;
    background-color: orange;
    border:1px solid rgba(0, 0, 0, 0.322);
}
button a{
    display: block;
    padding: 15px 30px;
    color:#fff;
}
@media screen and (max-width:1050px){
    .right{
        display: none;
    }    
    .left{
        width:100%;
    }
    nav{
        width:100%;
        display: flex;
        justify-content: space-between;
    }
    ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    ul li{
        margin:5px;
        width:150px;
    }
    .container{
        height:100%;
    }
    .div-text{
        margin-top:90px;
        width: 100%;
        padding: 10px 100px;
    }
    .div-text h2{
        font-size: 2.6rem;
        color:#1481ba;
    }
    .div-text p{
        line-height:20px;
        padding: 10px 0px;
        font-weight: 400;
        font-size: 1.1rem;;
    }
}