.main{
    display:flex;
    background: #11587D;
    color: white;
    padding-top: 80px;
    text-align: center;
    padding-bottom: 100px;
}

.main p{
    color:white;
}

.important{
    display: flow-root;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 100px;
}

.informations{
    width: calc(100% - 50px);
}

.information{
    margin-top:20px;
}

.information{
    border-radius: calc(0.625rem + 4px);
    border-style: solid;
    border-width: 1px;
    border-color: #ececec;
    padding: calc(0.25rem * 6);
    padding-bottom: 3px;
    background: #ececec;
    text-align: center;
    margin-top: 25px;
    box-shadow: 0 5px 3px -5px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
    width:100%;
}

.information:hover{
    box-shadow: 0 10px 6px -5px rgba(0, 0, 0, 0.1);
}

.information > i{
    display: inline-block;
    font-size: 2em;
    width: 70px;
    height:70px;
    text-align: center;
    align-items: center;
    line-height: 72px;
    border-radius: 100%;
    color: white;
    background: #11587D;
}

.information h2{
    font-size: 1.2em;
    color:#11587D;
}

.form-section h2{
    color:#11587D;
}

.locations-section{
    display: flow-root;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.locations-section i{
    display: inline-block;
    font-size: 2em;
    width: 70px;
    height:70px;
    text-align: center;
    align-items: center;
    line-height: 72px;
    border-radius: 100%;
    color: white;
    background: #11587D;
}

.location{
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #ececec;
    border-radius: calc(0.625rem + 4px);
    margin-top: 30px;
}

.why-section{
    display: flex;
    background-color: #11587D;
    padding-top: 40px;
    padding-bottom: 60px;
    color:white;
    text-align: center;
}

.why-answers{
    margin-top: 60px;
}

.why-section p{
    color: white;
}

.why-answer > i{
    display: inline-block;
    font-size: 2em;
    width: 70px;
    height:70px;
    text-align: center;
    align-items: center;
    line-height: 72px;
    border-radius: 100%;
    background: rgba(255,255,255,0.1);
}

@media screen and (min-width: 800px) {
    .informations{
        width: 100%;
    }

    .information{
        width: calc(33% - 80px);
        float: left;
        margin-right: 30px;
    }
    
    .information:last-of-type{
        margin-right: 0px;
    }

    .location{
        width: calc(33% - 20px);
        float: left;
        margin-right: 30px;
    }
    
    .location:nth-of-type(3n){
        margin-right: 0px;
    }

    .why-answer{
        width: calc(25% - 25px);
        float: left;
        margin-right: 30px;
    }

    .why-answer:last-of-type{
        margin-right: 0px;
    }
}