.header {
    width: 100%;
    height: 500px;
    /* background-image: linear-gradient(-20deg, #fc6076 0%, #ff9a44 100%); */
    background: url('../img/back.jpg') center no-repeat;
    background-size: cover;
    font-family: 'Montserrat';
    position: relative;
}
    .h-texture {
        width: 100%;
        height: 100%;
        /* opacity: 0.55; */
        position: absolute;top:0;left:0;
        /* background-image: url('../img/cartographer.png'); */
        background: rgba(57,60,77,.8);
        background-repeat:repeat;
        z-index: 1;
    }
    .h-navbar {
        height: 100px;
        line-height: 100px;
        width: 100%;
    }
        .h-nav-left {
            float: left;
            height: 100%;
        }
            .h-nav-logo {
                display: block;
                height: 50%;
                width: auto;
                -webkit-transform: translateY(50%);
                    -ms-transform: translateY(50%);
                        transform: translateY(50%);
            }
        .h-nav-right {
            float: right;
        }
            .h-nav-menu-item {
                color: #fff;
                text-transform: uppercase;
                font-size: 14px;
                text-decoration: none;
                margin-left: 30px;
                -webkit-transition: color 0.1s,background-color 0.1s,padding 0.2s ease-in;
                -o-transition: color 0.1s,background-color 0.1s,padding 0.2s ease-in;
                transition: color 0.1s,background-color 0.1s,padding 0.2s ease-in;
                position: relative;
            }
                .h-nav-menu-item::before {
                    content: '';
                    display: block;
                    position: absolute;
                    bottom: -2px;
                    left: 1%;
                    height: 1px;
                    width: 99%;
                    background-color: #fff;
                    -webkit-transform-origin: right top;
                        -ms-transform-origin: right top;
                            transform-origin: right top;
                    -webkit-transform: scale(0, 1);
                        -ms-transform: scale(0, 1);
                            transform: scale(0, 1);
                    -webkit-transition: color 0.1s,-webkit-transform 0.2s ease-out;
                    transition: color 0.1s,-webkit-transform 0.2s ease-out;
                    -o-transition: color 0.1s,transform 0.2s ease-out;
                    transition: color 0.1s,transform 0.2s ease-out;
                    transition: color 0.1s,transform 0.2s ease-out,-webkit-transform 0.2s ease-out;
                }
                .h-nav-menu-item:active::before {
                    background-color: #fff;
                }
                .h-nav-menu-item:hover::before, a:focus::before {
                    -webkit-transform-origin: left top;
                        -ms-transform-origin: left top;
                            transform-origin: left top;
                    -webkit-transform: scale(1, 1);
                        -ms-transform: scale(1, 1);
                            transform: scale(1, 1);
                }

    .menu-toggle {
        display: none;
        right: 0;
        position: absolute;
        color: #fff;
        font-size: 40px;    
        cursor: pointer;
        z-index: 100;
    }
    .menu-toggle-bis {
        display: none;
        color: #fff;
        font-size: 40px;    
        cursor: pointer;
        z-index: 100;
        margin-bottom: 0;
    }

    .h-slogan {
        margin-top: 50px;
        color: #fff;
        text-align: center;
    }
        .h-slogan-title {
            font-size: 38px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;        
        }
        .h-slogan-para {
            font-size: 19px;
            font-weight: 200;
        }
        
    .h-mail-form {
        margin-top: 70px;
    }
        .h-mail-form-label {
            text-transform: uppercase;
            font-weight: 500;      
            font-size: 16px;     
            letter-spacing: 1px; 
        }
        .h-mail-form-input-block {
            margin: 30px auto;
            width: 400px;
            height: 45px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            border-radius: 4px;
            overflow: hidden;
            
        }
            .h-mail-form-input {
                width: 70%;
                border: none;
                padding-left: 15px;
                font-size: 16px;
                outline: 0;
                font-weight: 200;
                font-family: 'Montserrat';                
            }
            .h-mail-form-submit {
                width: 30%;
                background: #FF9A44;
                border: none;
                font-weight: 100;
                text-transform: uppercase;
                font-size: 14px;
                letter-spacing: 1px;
                color: #fff;
                outline: 0;
                font-family: 'Montserrat';
            }
            .h-mail-form-submit:hover {
                cursor: pointer;
            }

.whatwedo {
    margin: 80px 0;
}

.para {
    font-family: 'Open Sans';
    color: #3C3F4B;
    line-height: 30px;
}
    .bold {
        font-weight: 700;
        font-size: 20px;
        font-family: 'Comfortaa';
    }
    .light {
        font-weight: 400;
        font-size: 16px;
    }
    .center {
        text-align: center;
    }
    .left {
        text-align: justify;
    }
    .small-inner {
        width: 80%;
        margin: auto;
    }

    .para-part {
        display: block;
        margin-bottom: 10px;
    }

.values-items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
    
.values-items,
.values-items .values-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;    
}

.values-items .values-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 45%;
    color: #333;
    background-color: #f6f9fa;
    border-radius: 6px;
    margin-bottom: 30px;
    position: relative;
}

.values-items .values-item .values-title {
    margin: 0;
    text-transform: uppercase;
    font-family: Nunito;
    color: #FF9A44;
    padding: 5px 0 0 10px
}

.values-items .values-item .values-para {
    font-family: Open Sans;
    padding: 4px 0 0 10px;
    margin: 0;
    font-size: 15.5px;
    line-height: 20px;
    font-weight: 400;
    text-align: justify
}
    
.form {
    font-family: 'Nunito';    
}
.form-title {
    font-size: 30px;
    text-align: center;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;padding: 0;
}
.contact-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 0 100px;
    margin-top: 20px;
}
.half-box {
    width: 49%;
    margin-bottom: 20px;
}
.label {
    font-family: 'Nunito';
    line-height: 30px;
    font-size: 16px;
    color: rgba(57,60,77,.9);
}
.label i {
    margin-right: 3px;
    font-size: 16px;
}

.input, .textarea {
    font-family: Open Sans;
    font-size: 14px;
    padding-left: 7px;
    outline: 0;
    display: block;
    width: 100%;
    height: 36px;
    line-height: 34px;
    border: 2px solid #c6d2e1;
    border-radius: 4px;
    -webkit-transition: background-color .125s,border-color .125s;
    -o-transition: background-color .125s,border-color .125s;
    transition: background-color .125s,border-color .125s;
}
.input:focus, .textarea:focus {
    border-color: #FF9A44;
}
.full-box {
    width: 100%;
    margin-bottom: 20px;
}
.full-box .textarea {
    min-height: 100px!important;
    max-width: 100%;
    line-height: 20px;
    padding-top: 7px;
}
.form-btn {
    text-decoration: none;
    border: 0;
    font-size: 13px;
    letter-spacing: 2.1px;
    padding: 18px 24px 16px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 5px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    color: #fff;
    background-color: #FF9A44;
    cursor: pointer;

    font-family: Nunito;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100px;
    width: 100%;
    margin-top: 60px;
}
.footer__left{
    float: left;
}
.footer__left--logo {
    height: 50px;
    width: auto;
}
.copyrights {
    margin-right: 20px;
    font-family: 'Nunito';
    font-size: 16px;
    color: #333;
}
.footer__right {
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.footer__right--link {
    color: #FF9A44;
    font-family: 'Nunito';
    font-family: 20px;
}

.legal-notice {
    margin-top: 30px;
    font-family: 'Nunito';
}
.legal-link {
    color: #FF9A44;
}
.legal-content h1{
    padding-top: 30px;
}
.legal-field {
    display: block;
    padding-bottom: 7px;
}
.legal-para {
    width: 60%;
    text-align: justify;
    margin-top: 20px;
}