body{
    color: #181E19;
    background-color: #F1F6F1;
    font-family: 'Poppins', sans-serif;
}

header{
    font-family: 'Poppins', sans-serif;
    padding: 0 10%;
    width: 100%;
    height: 60vh;
    background:  linear-gradient(to bottom, rgba(19, 26, 69, 0.7), rgba(0,0,0,0.9)), url("../images/call-centre.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

header h1{
    color: #fff;
    font-size: 4rem;
    text-transform: capitalize;
    margin: 3rem 0 0 0;
}

header .underline{
    content: "";
    width: 50px;
    height: 2px;
    background-color: #1ECD56;
    display: inline-block;
}

.contacts, .message{
    padding: 3rem 10%;
}

.contacts > p{
    font-size: 25px;
    text-align: center;
    margin: 1.5rem 0;
}

.contacts .container, .contacts .container .box{
    display: flex;
}

.contacts h3{
    text-transform: capitalize;
}

.contacts .container{
    justify-content: space-between;
    width: 100%;
}

.contacts .container .box{
    flex-direction: column;
    align-items: center;
    width: calc(100vw/4);
    padding: 1rem;
    text-align: center;
    line-height: 1.7rem;
    /* -webkit-box-shadow: 0px 0px 12px 0px rgba(179,179,179,1);
    -moz-box-shadow: 0px 0px 12px 0px rgba(179,179,179,1);
    box-shadow: 0px 0px 12px 0px rgba(179,179,179,1); */
}

.contacts .container .box i{
    font-size: 40px;
    color: #1ECD56;
    padding-bottom: 10px;
}

.contacts .container .box a{
    text-decoration: none;
    color: #181E19;
    word-wrap: break-word; 
}

/*Message*/
.message{
    background-color: #fff;
}

.message form .form-group{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 1.5rem;
}

.message form input, .message form textarea{
    border: none;
    outline: none;
    background-color: #F1F6F1;
    font-family: 'Poppins', sans-serif;
}

.message form input, textarea{
    width: 100%;
    padding: 1.5rem;
    resize: none;
}

.message form .form-group input:first-child{
    margin-right: 2rem;
}

.message form input[type=submit]{
    background-color: #1ECD56;
    width: 200px;
    color: #fff;
}

.message form input[type=submit]:hover{
    opacity: 0.9;
}

.map iframe{
    width: 100%;
}


@media screen and (max-width: 1000px){
    header{
        padding: 0 5%;
    } 

    .contacts, .message{
        padding: 3rem 5%;
    }

    .contacts .container{
        flex-direction: column;
        align-items: center;
    }

    .contacts .container .box{
        width: 100%;
    }
}

@media screen and (max-width: 750px){
    header h1{
        font-size: 2.5rem;
    } 

    .contacts > p{
        font-size: 20px;
    }

    .message form .form-group input:first-child{
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .message form .form-group{
        flex-direction: column;
    }

    .message form input[type=submit]{
        width: 150px;
        padding: 15px 20px;
        color: #fff;
    }
}

@media screen and (max-width: 400px){
    header h1{
        font-size: 2rem;
    }

    header .underline{
        content: "";
        width: 30px;
        height: 2px;
        background-color: #1ECD56;
        display: inline-block;
    }

}