*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
li{
    list-style-type: none;
}
.wrapper{
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
#nav{
    width: 100%;
    height:80px;
    background-color: #f8f8f8;
}
#nav .container{
    width: 60%;
    height: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.icon-name{
    color: #4da4ce;
    font-size: 20px;
}
.min{
    font-size: 14px;
    letter-spacing: 3px;
}
.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
#main{
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
#main .wrap{
    width: 60%;
    margin: 0 auto;
    padding: 40px 0;
}
.title{
    color: #28a7e1;
    font-size: 40px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}
.text{
    font-size: 24px;
    margin-top: 22px;
    text-align: center;
}
.grid{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 52px;
}
.grid .item{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.grid .item text{
    font-size: 15px;
    margin-top: 10px;
}
.grid .item text.bigger{
    font-size: 24px;
}
#footer{
    width: 100%;
    height: 100px;
    background-color: #002B3F;
    padding-top: 30px;
    padding-bottom: 20px;
}
#footer div{
    color: #fff;
}
.line1, .line2{
    text-align: center;
    margin: 0 auto;
}
.line2{
    margin-top: 15px;
}