/* --- Typography --- */

@import url('https://fonts.googleapis.com/css?family=Asap|Montserrat:200,400,700');

/* --- Body --- */

body {
    padding-top: 0;
    background: #FFF;
    font-size: 16px;
    font-family: 'Asap', sans-serif;
    font-weight: 400;
    color: #3C3C3C;
    line-height: 26px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
a {
    color: #FF6D00;
    -webkit-transition: color 400ms, background-color 400ms;
    -moz-transition: color 400ms, background-color 400ms;
    -o-transition:  color 400ms, background-color 400ms;
    transition:  color 400ms, background-color 400ms;
}
a:hover,
a:focus {
    text-decoration: none;
    color: darken(#FF6D00, 10%);
}
hr {
    border-top: 1px solid #b3b3b3;
    border-bottom: 1px solid #fff;
}
.container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.875em;
    color: #fff;
    border-width: 0;
    border-radius: 3px;
    background-color: #FF6D00;
}
.btn:hover {
    background: #f8a668;
    color: #fff;
}
.btn-xs {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #fff;
    padding: 4px 8px;
    border-width: 0;
    border-radius: 3px;
    background-color: #FF6D00;
}
.btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.188em;
    padding: 8px 16px;
    color: #FF6D00;
    border: 1px solid #FFF;
    border-radius: 3px;
    background: #FFF;
}
.btn-primary:hover,
.btn-primary:focus {
    background: transparent;
    color: #fff;
}

/* ------- HEADER ------- */


@media (max-width: 767px) {
    .navbar-default .navbar-toggle {
        margin-top: 18px;
        background-color: rgba(255, 255, 255, 0);;
        border: none;
    }
    .navbar-collapse .navbar-brand {
        height: auto;
        padding: 10px 15px;
        margin-bottom: 0px;
    }
    .navbar-default {
        border-color: transparent;
        background-color: transparent;
    }
    .navbar-toggle {
        float: left;
        margin-left: 20px;
    }
    .navbar-header .icon-bar {
        background-color: #5e5e5e;
    }
    #main-menu .navbar-header {
        background: transparent;
    }
    #main-menu .navbar-nav {
        margin: 0;
        height: 100%;
        width: auto;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: rgba(60, 60, 61, 0.95);
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;

    }

    .navbar-default .navbar-nav>.active>a, 
    .navbar-default .navbar-nav>.active>a:focus, 
    .navbar-default .navbar-nav>.active>a:hover {
        background-color: transparent;
    }

    #main-menu .navbar-nav > li > a,
    #main-menu .navbar-nav > li > a:active
    #main-menu .navbar-nav > li > a:focus  {
        text-align: left;
        font-weight: bold;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.025em;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding-top: 7px;
        padding-bottom: 7px;
        margin-bottom: 0px;

        /*---*/

        padding: 8px 32px 48px 32px;
        text-decoration: none;
        color: #fff;
        display: block;
        transition: 0.3s;
    }
    #main-menu .navbar-nav .closebtn {
        position: absolute;
        top: 10px;
        right: 19px;
        font-size: 36px;

    }
    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
        border: none;
    }

    #main-menu.navbar-default .navbar-nav > li:active > a,
    #main-menu.navbar-default .navbar-nav > li:open > a,
    #main-menu.navbar-default .navbar-nav > li:hover > a {
        background:rgba(255, 255, 255, 0);
        color: #FF6D00;
    }
    .navbar.navbar-default .navbar-brand {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .navbar.navbar-default {
        border: 0;
        border-radius: 0;
        margin-bottom: 0;
    }
    .navbar.navbar-default .navbar-toggle {
        margin-top: 32px;
    }
    .navbar.navbar-default .navbar-brand {
        height: auto;
        padding: 17px 15px 21px;
        margin-bottom: 0;
    }
    .navbar.navbar-default .navbar-brand img {
        height: 45px;
    }
    #main-menu.navbar-default {
        border-bottom: 4px rgba(255, 255, 255, 0.7);;
        background: rgba(64, 64, 64, 1);
        -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0);
        }
    #main-menu.navbar-default .navbar-nav {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    #main-menu.navbar-default .navbar-nav > li > a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        margin-top: 0px;
        border-bottom: 3px solid transparent;
        margin-bottom: 0px;
        padding-bottom: 10px;
        color: #FFF;
    }
    #main-menu.navbar-default .navbar-nav > li.active > a,
    #main-menu.navbar-default .navbar-nav > li.open > a,
    #main-menu.navbar-default .navbar-nav > li:hover > a {
        background: rgba(255,107,107,0);
        padding-top: 10px;
        border-radius: 0px;
        border-top: 5px solid transparent;
        border-bottom: 1px solid #FFF;
        transition: border-bottom 50ms;
    }
    .closebtn {
        display: none;
    }
}

/* ------- HOME PAGE ------- */

@media (min-width: 1400px) {
    #home-page {
        width: 100%;
        height: 980px;
        background-color: #FFF;
        margin-top: 0px;
    }
    #home-page .home-inner {
        position: relative;
        top: 380px;
        left: 0;
        width: 100%;
        height: auto;
        color: #000;
    }
    #home-page #left-pic {
       background-color: transparent;
       height: auto;
    }
    #home-page #intro {
        top: 40px;
        padding: 0 0 60px 0;
        font-size: 2em;
        font-family: 'Montserrat', sans-serif;
        text-transform: initial;
        text-align: center;
        line-height: 1.3;
        letter-spacing: 1px;
        font-weight: 400;
        color: #FF6D00;
        font-style: italic;
    }
   #home-page #left-pic img {
        margin-bottom: 0px;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    #home-page {
        overflow: hidden;
        width: 100%;
        height: 650px;
        left: 0;
        background-color: #FFF;
        margin-top: 0px;
    }
    #home-page .home-inner {
        position: relative;
        top: 200px;
        left: 0;
        width: 100%;
        height: auto;
        color: #000;
    }
    #home-page #left-pic {
       background-color: #FFF;
       height: auto;
    }
    #home-page #intro {
        top: 50px;
        padding: 3px 0 30px 0;
        font-size: 2.2em;
        font-family: 'Montserrat', sans-serif;
        text-transform: initial;
        text-align: center;
        line-height: 1.4;
        font-weight: 400;
        color: #FF6D00;
        font-style: italic;
    }
    #home-page #intro img {
        max-width: 250px;
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    #home-page {
        height: 550px;
    }
    #home-page .home-inner {
        position: relative;
        top: 210px;
        left: 0;
    }
    #home-page #left-pic {
        background-color: #FFF;
        height: auto;
    }
    #home-page #intro {
        top: 30px;
        padding: 5px 0 60px 0;
        font-size: 1.6em;
        font-family: 'Montserrat', sans-serif;
        text-transform: initial;
        text-align: center;
        line-height: 1.4;
        font-weight: 400;
        color: #FF6D00;
        font-style: italic;
    }
    #home-page #intro img {
        max-width: 210px;
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    #home-page {
        height: 550px;
        left: 0;
        margin-top: 0px;
    }
    #home-page .home-inner {
        position: relative;
        top: 220px;
        left: 0;
        width: 100%;
        height: auto;
        color: #000;
    }
    #home-page #left-pic {
       background-color: #FFF;
       max-height: 200px;
    }
    #home-page #intro {
        top: 20px;
        padding: 5px 0 30px 0;
        font-size: 1.35em;
        font-family: 'Montserrat', sans-serif;
        text-transform: initial;
        text-align: center;
        font-style: italic;
        line-height: 1.4;
        font-weight: 400;
        color: #FF6D00;
    }
    #home-page #intro img {
        max-width: 170px;
        margin-bottom: 10px;
    }
}

@media (min-width: 420px) and (max-width: 767px) {
    #home-page {
        overflow: hidden;
        width: 100%;
        height: 520px;
        left: 0;
        background-color: #FFF;
        margin-top: 0px;
    }
    #home-page .home-inner {
        position: relative;
        top: 150px;
        left: 0;
        width: 100%;
        height: auto;
        color: #000;
    }
    #home-page #left-pic {
       background-color: #FFF;
       height: auto;
    }
    #home-page #intro {
        top: 30px;
        padding: 0px 0 30px 0;
        font-size: 1.5em;
        font-family: 'Montserrat', sans-serif;
        text-transform: initial;
        font-style: italic;
        text-align: center;
        line-height: 1.6;
        font-weight: 400;
        color: #FF6D00;
    }
    #home-page #intro img {
        margin-bottom: 10px;
        display: none;
    }
}

@media (min-width: 300px) and (max-width: 419px) {
    #home-page {
        overflow: hidden;
        width: 100%;
        height: 420px;
        left: 0;
        background-color: #FFF;
        margin-top: 0px;
    }
    #home-page .home-inner {
        position: relative;
        top: 110px;
        left: 0;
        width: 100%;
        height: auto;
        color: #000;
    }
    #home-page #left-pic {
       background-color: #FFF;
       height: auto;
    }
    #home-page #intro {
        top: 20px;
        padding: 0px 0 30px 0;
        font-size: 1.3em;
        font-family: 'Montserrat', sans-serif;
        text-transform: initial;
        text-align: center;
        font-style: italic;
        line-height: 1.5;
        font-weight: 400;
        color: #FF6D00;
    }
    #home-page #intro img {
        max-width: 170px;
        margin-bottom: 10px;
        display: none;
    }
}

/* ------- CTA ------- */

@media (min-width: 1200px) {
    #landing {
        margin-top: 10px;
        height: 200px;
        background-color: #FF6D00;
        /*background-color: #3c3c3d;*/
        text-align: center;
    }
    #landing .cta {
        padding-top: 90px;
        text-transform: uppercase;
    }
    #landing .cta .btn-primary, .btn-primary:focus, {
        text-align: center;
        color: #3C3C3C;
        background-color: #ff6d00;
        letter-spacing: .1px;
        line-height: 46px;
        margin: 0 5px;
        font-weight: 400;
        border: 1px solid #FF6D00;
    }
    #landing .cta .btn-primary:hover {
        background: #3C3C3C;
        color: #FF6D00;
        border: 1px solid #FF6D00;
        transition: 0.3s ease-in-out;
    }
    #landing .cta .btn-primary:active {
       background: #3C3C3C;
       color: #FF6D00;
       border: 1px solid #FF6D00;
       transition: 0.3s ease-in-out;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    #landing {
        margin-top: 10px;
        height: 180px;
        background-color: #FF6D00;
        text-align: center;
    }
    #landing .cta {
        padding-top: 80px;
        text-transform: uppercase;
        font-size: 0.838em;
    }
    #landing .cta .btn-primary, .btn-primary:focus, {
        text-align: center;
        color: #3C3C3C;
        background-color: #ff6d00;
        letter-spacing: .1px;
        line-height: 46px;
        margin: 0 5px;
        font-weight: 400;
        border: 1px solid #FF6D00;
    }
    #landing .cta .btn-primary:hover {
        background: #3C3C3C;
        color: #FF6D00;
        border: 1px solid #FF6D00;
        transition: 0.3s ease-in-out;
    }
    #landing .cta .btn-primary:active {
       background: #3C3C3C;
       color: #FF6D00;
       border: 1px solid #FF6D00;
       transition: 0.3s ease-in-out;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    #landing {
        margin-top: 10px;
        height: 120px;
        background-color: #FF6D00;
        text-align: center;
    }
    #landing .cta {
        padding-top: 50px;
        text-transform: uppercase;
        font-size: 0.638em;
    }
    #landing .cta .btn-primary, .btn-primary:focus, {
        padding: 4px 8px;
        text-align: center;
        background-color: #ff6d00;
        color: #3C3C3C;
        font-size: 0.750em;
        letter-spacing: .1px;
        line-height: 46px;
        margin: 0 5px;
        font-weight: 400;
        border: 1px solid #FF6D00;
    }
    #landing .cta .btn-primary:hover {
        padding: 4px 8px;
        background: #3C3C3C;
        color: #FF6D00;
        border: 1px solid #FF6D00;
        transition: 0.3s ease-in-out;
    }
    #landing .cta .btn-primary:active {
        padding: 4px 8px;
        background: #3C3C3C;
        color: #FF6D00;
        border: 1px solid #FF6D00;
        transition: 0.3s ease-in-out;
    }
}

@media (min-width: 420px) and (max-width: 767px) {
    #landing {
        margin-top: 10px;
        height: 150px;
        background-color: #FF6D00;
        text-align: center;
    }
    #landing .cta {
        padding-top: 60px;
        text-transform: uppercase;
        font-size: 0.750em;
    }
    #landing .cta .btn-primary, .btn-primary:focus, {
        text-align: center;
        color: #3C3C3C;
        background-color: #ff6d00;
        letter-spacing: .1px;
        line-height: 46px;
        margin: 0 5px;
        font-weight: 400;
        border: 1px solid #FF6D00;
    }
    #landing .cta .btn-primary:active {
        background: #3C3C3C;
        color: #FF6D00;
        border: 1px solid #FF6D00;
        transition: 0.3s ease-in-out;
    }
}

@media (min-width: 300px) and (max-width: 420px) {
    #landing {
        margin-top: 10px;
        height: 150px;
        background-color: #FF6D00;
        text-align: center;
    }
    #landing .cta {
        padding-top: 62px;
        text-transform: uppercase;
        font-size: 0.750em;
    }
    #landing .cta .btn-primary, .btn-primary:focus, {
        text-align: center;
        color: #3C3C3C;
        background-color: #ff6d00;
        font-size: 0.750em;
        letter-spacing: .1px;
        line-height: 46px;
        margin: 0 5px;
        font-weight: 400;
        border: 1px solid #FF6D00;
    }
    #landing .cta .btn-primary:active {
        background: #3C3C3C;
        color: #FF6D00;
        border: 1px solid #FF6D00;
        transition: 0.3s ease-in-out;
    }
}

/* ------- PHRASE 1 ------- */

@media (min-width: 1200px) {
    #phrase_1 {
       height: auto;
       background-color: #fbc69c;
    }
    #phrase_1 .text {
       padding-top: 170px;
       padding-bottom: 170px;
    }
    #phrase_1 .text p {
       font-size: 2.750em;
       font-family: 'Montserrat', sans-serif;
       font-style: italic;
       color: #3c3c3d;
       font-weight: 400;
       line-height: normal;
       text-align: center;
       line-height: 1.5;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    #phrase_1 {
       height: auto;
       background-color: #fbc69c;
    }
    #phrase_1 .text {
       padding-top: 110px;
       padding-bottom: 110px;
    }
    #phrase_1 .text p {
       font-size: 2.250em;
       font-family: 'Montserrat', sans-serif;
       color: #3c3c3d;
       font-weight: 400;
       font-style: italic;
       line-height: 1.5;
       text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    #phrase_1 {
       height: auto;
       background-color: #fbc69c;
    }
    #phrase_1 .text {
       padding-top: 100px;
       padding-bottom: 100px;
    }
    #phrase_1 .text p {
       font-size: 1.875em;
       font-family: 'Montserrat', sans-serif;
       color: #3c3c3d;
       font-weight: 400;
       font-style: italic;
       line-height: 1.4;
       text-align: center;
   }
}

@media (min-width: 420px) and (max-width: 767px) {
    #phrase_1 {
       height: auto;
       background-color: #fbc69c;
    }
    #phrase_1 .text {
       padding-top: 110px;
       padding-bottom: 110px;
    }
    #phrase_1 .text p {
       font-size: 1.875em;
       font-family: 'Montserrat', sans-serif;
       color: #3c3c3d;
       font-weight: 400;
       font-style: italic;
       line-height: 1.5;
       text-align: center;
   }
}

@media (min-width: 300px) and (max-width: 420px) {
    #phrase_1 {
       height: auto;
       background-color: #fbc69c;
    }
    #phrase_1 .text {
       padding-top: 100px;
       padding-bottom: 100px;
    }
    #phrase_1 .text p {
       font-size: 1.500em;
       font-family: 'Montserrat', sans-serif;
       color: #3c3c3d;
       font-weight: 400;
       font-style: italic;
       line-height: 1.5;
       text-align: center;
   }
}

/* ------- ABOUT ------- */

@media (min-width: 1200px) {
    #pillars {
        background-color: #fff;
        height: auto;
        padding-top: 120px;
        margin-bottom: 200px;
    }
    #pillars .leftside {
        margin-top: 255px;
        text-align: center;
    }
    #pillars .leftside p {
        font-family: 'Montserrat', sans-serif;
        color: #3c3c3d;
        font-size: 2.150em;
        line-height: normal;
        font-weight: 800;
        margin-right: 30px;
    }
    #pillars .rightside {
        margin-top: 80px;
        border-left: 1px solid #3c3c3d;
    }
    #pillars .rightside p {
        margin-top: -5px;
        font-family: 'Asap', sans-serif;
        font-weight: 400;
        color: #3c3c3d;
        font-size: 1.35em;
        line-height: 1.8;
    }
    #pillars .statement {
        margin-top: 35px;
    }
    #pillars .statement-img {
        max-width: 120px;
        margin-bottom: 50px;
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    #pillars {
        background-color: #fff;
        height: 700px;
        padding-top: 90px;
        margin-bottom: 110px;
    }
    #pillars .leftside {
        margin-top: 255px;
        text-align: center;
    }
    #pillars .leftside p {
        font-family: 'Montserrat', sans-serif;
        color: #3c3c3d;
        font-size: 1.650em;
        line-height: normal;
        font-weight: 800;
        margin-right: 30px;
    }
    #pillars .rightside {
        margin-top: 80px;
        border-left: 1px solid #3c3c3d;
    }
    #pillars .rightside p {
        font-family: 'Asap', sans-serif;
        font-weight: 400;
        color: #3c3c3d;
        font-size: 1.125em;
        line-height: 1.6;
    }
    #pillars .statement {
        margin-top: 35px;
    }
    #pillars .statement-img {
        margin-bottom: 50px;
        margin-right: 20px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    #pillars {
        background-color: #fff;
        height: 600px;
        padding-top: 60px;
        margin-bottom: 80px;
    }
    #pillars .leftside {
        margin-top: 235px;
        text-align: right;
    }
    #pillars .leftside p {
        font-family: 'Montserrat', sans-serif;
        color: #3c3c3d;
        font-size: 1.125em;
        line-height: normal;
        font-weight: 800;
        margin-right: 30px;
    }
    #pillars .rightside {
        margin-top: 80px;
        border-left: 1px solid #3c3c3d;
    }
    #pillars .rightside p {
        font-family: 'Asap', sans-serif;
        font-weight: 400;
        color: #3c3c3d;
        font-size: 0.875em;
        line-height: 1.4;
    }
    #pillars .statement {
        margin-top: 35px;
    }
    #pillars .statement-img {
        margin-bottom: 50px;
        margin-right: 10px;
    }
}

@media (min-width: 420px) and (max-width: 767px) {
    #pillars {
        background-color: #fff;
        height: auto;
        padding-top: 60px;
        margin-bottom: 80px;
    }
    #pillars .leftside {
        margin-top: 50px;
        text-align: center;
    }
    #pillars .leftside p {
        font-family: 'Montserrat', sans-serif;
        color: #3c3c3d;
        font-size: 1.750em;
        line-height: 1.5;
        font-weight: 800;
    }
    #pillars .rightside {
        margin-top: 30px;
    }
    #pillars .rightside p {
        font-family: 'Asap', sans-serif;
        font-weight: 400;
        color: #3c3c3d;
        font-size: 1.050em;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    #pillars .statement {
        margin-top: 15px;
    }
    #pillars .statement-img {
        max-width: 25%;
        margin-bottom: 50px;
        margin-right: 10px;
    }
}

@media (min-width: 300px) and (max-width: 420px) {
    #pillars {
        background-color: #fff;
        height: auto;
        padding-top: 60px;
        margin-bottom: 100px;
    }
    #pillars .leftside {
        margin-top: 50px;
        text-align: center;
    }
    #pillars .leftside p {
        font-family: 'Montserrat', sans-serif;
        color: #3c3c3d;
        font-size: 1.500em;
        line-height: normal;
        font-weight: 800;
    }
    #pillars .rightside {
        margin-top: 30px;
        border-left: none;
    }
    #pillars .rightside p {
        font-family: 'Asap', sans-serif;
        font-weight: 400;
        color: #3c3c3d;
        font-size: 0.938em;
        line-height: 1.5;
        margin-bottom: 50px;
    }
    #pillars .statement {
        margin-top: 15px;
    }
    #pillars .statement-img {
        max-width: 25%;
        margin-bottom: 100px;
        margin-right: 10px;
    }
}

/* ------- AREAS ------- */

@media (min-width: 1200px) {
    #areas {
        height: auto;
        background-color: #fff;
        padding-top: 120px;
    }
    #areas .field-title h1 {
        display: none;
        margin: 0 0 50px 0;
        text-align: center;
        font-size: 2em;
        font-weight: 400;
        font-style: italic;
        line-height: 1.5;
    }
    #areas .area-item {
        background-color: #fff;
        background-size: cover;
        background-position: center center;
        height: auto;
        border-radius: 5px;
        padding-bottom: 30px;
        margin-bottom: 60px;
    }
    #areas .area-1 {
        margin-bottom: 100px;
    }
    #areas .area-item .area-title {
        margin-bottom: 0px;
    }
    #areas .area-item .area-title h1 {
        font-size: 3.5em;
        color: #FF6D00;
        text-align: left;
        text-transform: uppercase;
        margin-top: 70px;
        margin-bottom: 30px;
    }
    #areas .item-text {
        margin-top: 0;
    }
    #areas .item-text p {
        font-size: 1.35em;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    #areas .area-item .area-icon {
        max-width: 300px;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    #areas .area-item ul {
        margin-left: 30px;
        list-style: square;
        font-size: 1.35em;
        line-height: 1.5;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    #areas {
        height: auto;
        background-color: #fff;
        padding-top: 120px;
    }
    #areas .field-title h1 {
        display: none;
        margin: 0 0 20px 0;
        text-align: center;
        font-size: 3em;
        line-height: 1.5;
    }
    #areas .area-item {
        background-color: #fff;
        background-size: cover;
        background-position: center center;
        height: auto;
        border-radius: 5px;
        padding-bottom: 30px;
    }
    #areas .area-1 {
        margin-bottom: 100px;
    }
    #areas .area-item .area-title {
        margin-bottom: 0px;
    }
    #areas .area-item .area-title h1 {
        font-size: 3em;
        color: #FF6D00;
        text-align: left;
        text-transform: uppercase;
        margin-top: 70px;
        margin-bottom: 30px;
    }
    #areas .item-text {
        margin-top: 0;
    }
    #areas .item-text p {
        font-size: 1.1em;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    #areas .area-item .area-icon {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    #areas .area-item ul {
        margin-left: 30px;
        list-style: square;
        font-size: 1.1em;
        line-height: 1.5;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    #areas {
        height: auto;
        background-color: #fff;
        padding-top: 120px;
    }
    #areas .field-title h1 {
        display: none;
        margin: 0px 0 20px 0;
        text-align: center;
        font-size: 2.5em;
        line-height: 1.5;
    }
    #areas .area-item {
        background-color: #fff;
        background-size: cover;
        background-position: center center;
        height: auto;
        border-radius: 5px;
        padding-bottom: 30px;
    }
    #areas .area-1 {
        margin-bottom: 100px;
    }
    #areas .area-item .area-title {
        margin-bottom: 0px;
    }
    #areas .area-item .area-title h1 {
        font-size: 2em;
        color: #FF6D00;
        text-align: left;
        text-transform: uppercase;
        margin-top: 70px;
        margin-bottom: 30px;
    }
    #areas .item-text {
        margin-top: 0;
    }
    #areas .item-text p {
        font-size: 1em;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    #areas .area-item .area-icon {
        margin-top: 50px;
        margin-bottom: 120px;
    }
    #areas .area-item ul {
        margin-left: 20px;
        list-style: square;
        font-size: .95em;
        line-height: 1.5;
    }
}

@media (min-width: 420px) and (max-width: 767px) {
    #areas {
        height: auto;
        background-color: #fff;
        padding-top: 50px;
    }
    #areas .field-title h1 {
        margin: 10px 0 20px 0;
        text-align: center;
        font-size: 2em;
        line-height: 1.5;
    }
    #areas .area-item {
        background-color: #fff;
        background-size: cover;
        background-position: center center;
        height: auto;
        border-radius: 5px;
        padding-bottom: 30px;
    }
    #areas .area-1 {
        margin-bottom: 100px;
    }
    #areas .area-item .area-title {
        margin-bottom: 0px;
    }
    #areas .area-item .area-title h1 {
        font-size: 2em;
        color: #FF6D00;
        text-align: left;
        text-transform: uppercase;
        margin-bottom: 30px;
    }
    #areas .item-text {
        margin-top: 0;
    }
    #areas .item-text p {
        font-size: 1.1em;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    #areas .area-item .area-icon {
        margin-bottom: 0px;
    }
    #areas .area-item ul {
        margin-left: 10px;
        list-style: square;
        font-size: 1.1em;
        line-height: 1.5;
    }
}

@media (min-width: 300px) and (max-width: 420px) {
    #areas {
        height: auto;
        background-color: #fff;
        padding-top: 50px;
    }
    #areas .field-title h1 {
        margin: 10px 0 20px 0;
        text-align: center;
        font-size: 2em;
        line-height: 1.5;
    }
    #areas .area-item {
        background-color: #fff;
        background-size: cover;
        background-position: center center;
        height: auto;
        border-radius: 5px;
    }
    #areas .area-1 {
        margin-bottom: 100px;
    }
    #areas .area-item .area-title {
        margin-bottom: 0px;
    }
    #areas .area-item .area-title h1 {
        font-size: 1.5em;
        color: #FF6D00;
        text-align: left;
        text-transform: uppercase;
    }
    #areas .item-text {
        margin-top: 0;
    }
    #areas .item-text p {
        font-size: 0.95em;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    #areas .area-item .area-icon {
        margin-bottom: 0px;
    }
    #areas .area-item ul {
        margin-left: 0;
        list-style: square;
        font-size: .95em;
        line-height: 1.5;
    }
}

/* ------- PROJECTS ------- */

@media (min-width: 1200px) {
    #projects {
        height: auto;
        background-color: #f1f1f1;
        padding-top: 120px;
        padding-bottom: 80px;
    }
    #projects .projects-title h1 {
        display: none;
        margin: 0px 0 20px 0;
        text-align: center;
        text-transform: capitalize;
        font-size: 3em;
        line-height: 1.5;
    }
    #projects .project-item {
        background-color: #fff;
        background-size: cover;
        background-position: center center;
        height: auto;
        border-radius: 5px;
        padding-bottom: 30px;
        margin-bottom: 150px;
    }
    #projects .project-1 {
        margin-bottom: 10px;
    }
    #projects .project-item .project-title {
        margin-bottom: 0px;
    }
    #projects .project-item .project-title h1 {
        font-size: 3em;
        color: #FF6D00;
        text-align: left;
        text-transform: uppercase;
        margin-top: 60px;
        margin-bottom: 20px;
    }
    #projects .item-text {
        margin-top: 0;
    }
    #projects .item-text p:first-child {
        font-size: 1.5em;
        line-height: 1.6;
        font-weight: 200;
        margin-bottom: 30px;
    }
    #projects .item-text p {
        font-size: 1.2em;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    #projects .item-text figcaption {
        text-align: center;
        margin-bottom: 30px;
    }
    #projects .project-item .project-1 .project-icon {
        height: 400px;
        background-image: url(../img/bop.png);
        background-position: top center;
        background-size: 100%;
        background-repeat: none;
        background-color: #FF6D00;
        border-radius: 5px 5px 0 0;
    }
    #projects .project-item .project-2 .project-icon {
        height: 400px;
        background-image: url(../img/kaust-annotation.png);
        background-position: top center;
        background-size: 100%;
        background-repeat: none;
        background-color: #FF6D00;
        border-radius: 5px 5px 0 0;
    }
    #projects .project-item .project-tags {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    #projects .project-item .project-tags h4 {
        margin-left: 50px;
        text-transform: uppercase;
        font-weight: lighter;
        font-style: italic;
        font-size: 1.3em;
        line-height: 1.5;
    }
    #projects .project-item .project-title h3 {
        margin-bottom: 30px;
        color: #FF6D00;
    }
    #projects .project-item .project-title a {
        text-decoration: underline;
        color: #FF6D00;
    }
    #projects .project-item .project-title a:hover, a:focus {
        color: #FF6D00;
    }
    #projects .project-item .item-text a {
        margin-bottom: 25px;
        text-decoration: underline;
        color: #3C3C3C;
    }
    #projects .project-item .item-text a:hover, a:focus {
        color: #FF6D00;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    #projects {
        height: auto;
        background-color: #f1f1f1;
        padding-top: 120px;
        padding-bottom: 80px;
    }
    #projects .projects-title h1 {
        display: none;
        margin: 0px 0 20px 0;
        text-align: center;
        text-transform: capitalize;
        font-size: 3em;
        line-height: 1.5;
    }
    #projects .project-item {
        background-color: #fff;
        background-size: cover;
        background-position: center center;
        height: auto;
        border-radius: 5px;
        padding-bottom: 30px;
        margin-bottom: 150px;
    }
    #projects .project-1 {
        margin-bottom: 10px;
    }
    #projects .project-item .project-title {
        margin-bottom: 0px;
    }
    #projects .project-item .project-title h1 {
        font-size: 2.5em;
        color: #FF6D00;
        text-align: left;
        text-transform: uppercase;
        margin-top: 60px;
        margin-bottom: 20px;
    }
    #projects .item-text {
        margin-top: 0;
    }
    #projects .item-text p:first-child {
        font-size: 1.5em;
        line-height: 1.6;
        font-weight: 200;
        margin-bottom: 30px;
    }
    #projects .item-text p {
        font-size: 1.1em;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    #projects .item-text figcaption {
        text-align: center;
        margin-bottom: 30px;
    }
    #projects .project-item .project-1 .project-icon {
        height: 336px;
        background-image: url(../img/bop.png);
        background-position: top center;
        background-size: 100%;
        background-repeat: none;
        background-color: #FF6D00;
        border-radius: 5px 5px 0 0;
    }
    #projects .project-item .project-2 .project-icon {
        height: 336px;
        background-image: url(../img/kaust-annotation.png);
        background-position: top center;
        background-size: 100%;
        background-repeat: none;
        background-color: #FF6D00;
        border-radius: 5px 5px 0 0;
    }
    #projects .project-item .project-tags {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    #projects .project-item .project-tags h4 {
        margin-left: 50px;
        text-transform: uppercase;
        font-weight: lighter;
        font-style: italic;
        font-size: 1em;
        line-height: 1.5;
    }
    #projects .project-item .project-title h3 {
        font-size: 1.250em;
        margin-bottom: 30px;
        color: #FF6D00;
    }
    #projects .project-item .project-title a {
        text-decoration: underline;
        color: #FF6D00;
    }
    #projects .project-item .project-title a:hover, a:focus {
        color: #FF6D00;
    }
    #projects .project-item .item-text a {
        margin-bottom: 25px;
        text-decoration: underline;
        color: #3C3C3C;
    }
    #projects .project-item .item-text a:hover, a:focus {
        color: #FF6D00;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    #projects {
        height: auto;
        background-color: #f1f1f1;
        padding-top: 100px;
        padding-bottom: 80px;
    }
    #projects .projects-title h1 {
        margin: 10px 0 20px 0;
        text-align: center;
        text-transform: capitalize;
        font-size: 2.5em;
        line-height: 1.5;
    }
    #projects .project-item {
        background-color: #fff;  
        background-size: cover;
        background-position: center center;
        height: auto;
        border-radius: 5px;
        padding-bottom: 30px;
        margin-bottom: 150px;
    }
    #projects .project-1 {
        margin-bottom: 10px;
    }
    #projects .project-item .project-title {
        margin-bottom: 0px;
    } 
    #projects .project-item .project-title h1 {
        font-size: 2em;
        color: #FF6D00;
        text-align: left;
        text-transform: uppercase;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    #projects .item-text {
        margin-top: 0;
    }
    #projects .item-text p:first-child {
        font-size: 1.2em;
        line-height: 1.6;
        font-weight: 200;
        margin-bottom: 30px;
    }
    #projects .item-text p {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    #projects .item-text figcaption {
        font-size: 12px;
        text-align: center;
        margin-bottom: 30px;
    }
    #projects .project-item .project-1 .project-icon {
        height: 263px;
        background-image: url(../img/bop.png);
        background-position: top center;
        background-size: 100%; 
        background-repeat: none;
        background-color: #FF6D00;
        border-radius: 5px 5px 0 0;
    }
    #projects .project-item .project-2 .project-icon {
        height: 263px;
        background-image: url(../img/kaust-annotation.png);
        background-position: top center;
        background-size: 100%; 
        background-repeat: none;
        background-color: #FF6D00;
        border-radius: 5px 5px 0 0;
    }
    #projects .project-item .project-tags {
        margin-top: 30px;
        margin-bottom: 70px;
    }
    #projects .project-item .project-tags h4 {
        margin-left: 20px;
        text-transform: uppercase;
        font-weight: lighter;
        font-style: italic;
        font-size: 0.850em;
        line-height: 1.3;
    }
    #projects .project-item .project-title h3 {
        font-size: 1.250em;
        margin-bottom: 30px;
        color: #FF6D00;
    }
    #projects .project-item .project-title a {
        text-decoration: underline;
        color: #FF6D00;
    }
    #projects .project-item .project-title a:hover, a:focus {
        color: #FF6D00;
    }
    #projects .project-item .item-text a {
        margin-bottom: 25px;
        text-decoration: underline;
        color: #3C3C3C;
    }
    #projects .project-item .item-text a:hover, a:focus {
        color: #FF6D00;
    }
}

@media (min-width: 420px) and (max-width: 767px) {
    #projects {
        height: auto;
        background-color: #fff;
        padding-top: 50px;
        padding-bottom: 80px;
    }
    #projects .projects-title h1 {
        margin: 10px 0 20px 0;
        text-align: center;
        text-transform: capitalize;
        font-size: 2em;
        line-height: 1.5;
    }
    #projects .project-item {
        background-color: #fff;  
        background-position: center center;
        height: auto;
        border-radius: 5px;
        padding-bottom: 30px;
        margin-bottom: 150px;
    }
    #projects .project-1 {
        margin-bottom: 10px;
    }
    #projects .project-item .project-title {
        margin-bottom: 0px;
    } 
    #projects .project-item .project-title h1 {
        color: #FF6D00;
        text-align: left;
        text-transform: uppercase;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #projects .item-text {
        margin-top: 0;
    }
    #projects .item-text p:first-child {
        font-size: 1.2em;
        line-height: 1.6;
        font-weight: 200;
        margin-bottom: 30px;
    }
    #projects .item-text p {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    #projects .item-text figcaption {
        font-size: 12px;
        text-align: center;
        margin-bottom: 30px;
    }
    #projects .project-item .project-1 .project-icon {
        height: 263px;
        background-image: url(../img/bop.png);
        background-position: top center;
        background-size: 100%;
        background-size: cover;
        background-repeat: none;
        background-color: #FF6D00;
        border-radius: 0;
    }
    #projects .project-item .project-2 .project-icon {
        height: 263px;
        background-image: url(../img/kaust-annotation.png);
        background-position: top center;
        background-size: 100%;
        background-size: cover;
        background-repeat: none;
        background-color: #FF6D00;
        border-radius: 0;
    }
    #projects .project-item .project-tags {
        margin-top: 20px;
        margin-bottom: 0px;
    }
    #projects .project-item .project-tags h4 {
        margin-left: 0px;
        text-transform: uppercase;
        font-weight: lighter;
        font-style: italic;
        font-size: 0.850em;
        line-height: 1.3;
    }
    #projects .project-item .project-title h3 {
        font-size: 1.250em;
        color: #FF6D00;
    }
    #projects .project-item .project-title a {
        text-decoration: underline;
        color: #FF6D00;
    }
    #projects .project-item .project-title a:hover, a:focus {
        color: #FF6D00;
    }
    #projects .project-item .item-text a {
        margin-bottom: 25px;
        text-decoration: underline;
        color: #3C3C3C;
    }
    #projects .project-item .item-text a:hover, a:focus {
        color: #FF6D00;
    }
}

@media (min-width: 300px) and (max-width: 420px) {
    #projects {
        height: auto;
        background-color: #fff;
        padding-top: 50px;
    }
    #projects .projects-title h1 {
        margin: 10px 0 20px 0;
        text-align: center;
        text-transform: capitalize;
        font-size: 2em;
        line-height: 1.5;
    }
    #projects .project-item {
        background-color: #fff;  
        background-position: center center;
        height: auto;
        border-radius: 5px;
        padding-bottom: 30px;
        margin-bottom: 150px;
    }
    #projects .project-1 {
        margin-bottom: 10px;
    }
    #projects .project-item .project-title {
        margin-bottom: 0px;
    } 
    #projects .project-item .project-title h1 {
        color: #FF6D00;
        text-align: left;
        text-transform: uppercase;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #projects .item-text {
        margin-top: 0;
    }
    #projects .item-text p:first-child {
        font-size: 1em;
        line-height: 1.6;
        font-weight: 200;
        margin-bottom: 30px;
    }
    #projects .item-text p {
        font-size: 0.85em;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    #projects .item-text figcaption {
        font-size: 12px;
        text-align: center;
        margin-bottom: 30px;
    }
    #projects .project-item .project-1 .project-icon {
        height: 200px;
        background-image: url(../img/bop.png);
        background-position: top center;
        background-size: 100%;
        background-size: cover;
        background-repeat: none;
        background-color: #FF6D00;
        border-radius: 0;
    }
    #projects .project-item .project-2 .project-icon {
        height: 200px;
        background-image: url(../img/kaust-annotation.png);
        background-position: top center;
        background-size: 100%;
        background-size: cover;
        background-repeat: none;
        background-color: #FF6D00;
        border-radius: 0;
    }
    #projects .project-item .project-tags {
        margin-top: 20px;
        margin-bottom: 0px;
    }
    #projects .project-item .project-tags h4 {
        margin-left: 0px;
        text-transform: uppercase;
        font-weight: lighter;
        font-style: italic;
        font-size: 0.850em;
        line-height: 1.3;
    }
    #projects .project-item .project-title h3 {
        font-size: 1.125em;
        color: #FF6D00;
    }
    #projects .project-item .project-title a {
        text-decoration: underline;
        color: #FF6D00;
    }
    #projects .project-item .project-title a:hover, a:focus {
        color: #FF6D00;
    }
    #projects .project-item .item-text a {
        margin-bottom: 25px;
        text-decoration: underline;
        color: #3C3C3C;
    }
    #projects .project-item .item-text a:hover, a:focus {
        color: #FF6D00;
    }
}

/* ------- PHRASE 2 ------- */

@media (min-width: 1200px) {
    #phrase_2 {
        height: auto;
        background-color: #676767;
    }
    #phrase_2 .text {
        padding-top: 170px;
        padding-bottom: 170px;
    }
    #phrase_2 .text p {
        font-size: 2.750em;
        font-family: 'Montserrat', sans-serif;
        color: #fff;
        font-weight: 400;
        font-style: italic;
        line-height: 1.5;
        text-align: center;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    #phrase_2 {
       height: auto;
       background-color: #676767;
    }
    #phrase_2 .text {
       padding-top: 110px;
       padding-bottom: 110px;
    }
    #phrase_2 .text p {
       font-size: 2.250em;
       font-family: 'Montserrat', sans-serif;
       color: #fff;
       font-weight: 400;
       font-style: italic;
       line-height: 1.5;
       text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    #phrase_2 {
       height: auto;
       background-color: #676767;
    }
    #phrase_2 .text {
       padding-top: 100px;
       padding-bottom: 100px;
    }
    #phrase_2 .text p {
       font-size: 1.875em;
       font-family: 'Montserrat', sans-serif;
       color: #fff;
       font-weight: 400;
       font-style: italic;
       line-height: 1.4;
       text-align: center;
   }
}

@media (min-width: 420px) and (max-width: 767px) {
    #phrase_2 {
       height: auto;
       background-color: #676767;
    }
    #phrase_2 .text {
       padding-top: 110px;
       padding-bottom: 110px;
    }
    #phrase_2 .text p {
       font-size: 1.875em;
       font-family: 'Montserrat', sans-serif;
       color: #fff;
       font-style: italic;
       font-weight: 400;
       line-height: 1.5;
       text-align: center;
   }
}

@media (min-width: 300px) and (max-width: 420px) {
    #phrase_2 {
       height: auto;
       background-color: #676767;
    }
    #phrase_2 .text {
       padding-top: 100px;
       padding-bottom: 100px;
    }
    #phrase_2 .text p {
       font-size: 1.500em;
       font-family: 'Montserrat', sans-serif;
       color: #fff;
       font-style: italic;
       font-weight: 400;
       line-height: 1.5;
       text-align: center;
   }
}

/* ------- TEAM ------- */

@media (min-width: 1200px) {
    #team {
        color: #8c8c8c;
        height: auto;
        padding-top: 180px;
        padding-bottom: 180px;
        background-color: #FFF;
    }
    #team h1 {
        font-family: 'Montserrat', sans-serif;
        text-transform: capitalize;
        color: #404040;
    }
    #team #profile {
        height: 200px;
        margin-bottom: 50px;
    }
    #team #profile img {
        margin-top: 0px;
        margin-bottom: 30px;
        border-radius: 100%;
    }
    #team h3 {
        color: #3c3c3d;
        text-transform: uppercase;
        margin-bottom: 0;
        font-family: 'Montserrat', sans-serif;
    }
    #team h4 {
        color: #3c3c3d;
        font-family: 'Montserrat', sans-serif;
    }
    #team p {
        font-size: 1.000em;
        font-family: 'Asap',sans-serif;
        line-height: 1.8;
        color: #3c3c3d;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    #team {
        color: #8c8c8c;
        height: auto;
        padding-top: 170px;
        padding-bottom: 100px;
        background-color: #FFF;
    }
    #team h1 {
        font-family: 'Montserrat', sans-serif;
        text-transform: capitalize;
        color: #404040;
    }
    #team #profile {
        height: 200px;
        margin-bottom: 20px;
    }
    #team #profile img {
        margin-top: 10px;
        margin-bottom: 30px;
        border-radius: 100%;
    }
    #team h3 {
        font-size: 1.250em;
        color: #3c3c3d;
        text-transform: uppercase;
        margin-bottom: -5px;
        font-family: 'Montserrat', sans-serif;
    }
    #team h4 {
        font-size: 1.000em;
        color: #3c3c3d;
        font-family: 'Montserrat', sans-serif;
    }
    #team p {
        font-size: 0.875em;
        font-family: 'Asap',sans-serif;
        line-height: 1.4;
        color: #3c3c3d;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    #team {
        color: #8c8c8c;
        height: auto;
        padding-top: 100px;
        padding-bottom: 70px;
        background-color: #FFF;
    }
    #team h1 {
        font-family: 'Montserrat', sans-serif;
        text-transform: capitalize;
        color: #404040;
    }
    #team #profile {
        height: 150px;
        margin-bottom: 20px;
    }
    #team #profile img {
        margin-top: 10px;
        margin-bottom: 30px;
        border-radius: 100%;
    }
    #team h3 {
        font-size: .963em;
        color: #3c3c3d;
        text-transform: uppercase;
        margin-bottom: -5px;
        font-family: 'Montserrat', sans-serif;
    }
    #team h4 {
        font-size: 0.875em;
        color: #3c3c3d;
        font-family: 'Montserrat', sans-serif;
    }
    #team p {
        font-size: 0.750em;
        font-family: 'Asap',sans-serif;
        line-height: 1.4;
        color: #3c3c3d;
    }
}

@media (min-width: 420px) and (max-width: 767px) {
    #team {
        color: #8c8c8c;
        height: auto;
        padding-top: 100px;
        padding-bottom: 70px;
        background-color: #FFF;
    }
    #team h1 {
        font-family: 'Montserrat', sans-serif;
        text-transform: capitalize;
        color: #404040;
    }
    #team #profile {
        height: auto;
        margin-bottom: 40px;
    }
    #team #profile img {
        margin-top: 20px;
        margin-bottom: 30px;
        border-radius: 100%;
    }
    #team h3 {
        font-size: 1.125em;
        color: #3c3c3d;
        text-transform: uppercase;
        margin-bottom: -7px;
        font-family: 'Montserrat', sans-serif;
    }
    #team h4 {
        font-size: 1.050em;
        color: #3c3c3d;
        font-family: 'Montserrat', sans-serif;
    }
    #team p {
        font-size: 1.050em;
        font-family: 'Asap',sans-serif;
        line-height: 1.4;
        color: #3c3c3d;
    }
}

@media (min-width: 300px) and (max-width: 420px) {
    #team {
        color: #8c8c8c;
        height: auto;
        padding-top: 100px;
        padding-bottom: 70px;
        background-color: #FFF;
    }
    #team h1 {
        font-family: 'Montserrat', sans-serif;
        text-transform: capitalize;
        color: #404040;
    }
    #team #profile {
        height: auto;
        margin-bottom: 30px;
    }
    #team #profile img {
        margin-top: 20px;
        margin-bottom: 30px;
        border-radius: 100%;
    }
    #team h3 {
        font-size: 1.000em;
        color: #3c3c3d;
        text-transform: uppercase;
        margin-bottom: -7px;
        font-family: 'Montserrat', sans-serif;
    }
    #team h4 {
        font-size: .938em;
        color: #3c3c3d;
        font-family: 'Montserrat', sans-serif;
    }
    #team p {
        font-size: 0.938em;
        font-family: 'Asap',sans-serif;
        line-height: 1.5;
        color: #3c3c3d;
    }
}

/* ------- CONTACT ------- */

@media (min-width: 1400px) {
    #get-in-touch {
        padding-top: 350px;
        padding-bottom: 0px;
        height: 980px;
        background-image: url('../img/background-contact.png');
        background-position: center, center;
        background-size: cover;
    }
    #get-in-touch .contact {
        text-align: center;
        color: #fff;
    }
    #get-in-touch .contact-text {
        margin-bottom: 30px;
    }
    #get-in-touch .contact-text h3 {
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-style: italic;
        font-weight: 400;
    }
    #get-in-touch .contact-mail {
        margin-bottom: 120px;
    }
    #get-in-touch .contact-mail a, .contact-mail a:focus  {
        color: #fff;
        font-size: 2.750em;
        font-weight: 700;
        border-bottom: 3px solid #fff;
        font-family: 'Montserrat', sans-serif;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    #get-in-touch .contact-mail a:hover {
       color: #3c3c3d;
       font-size: 2.750em;
       font-weight: 700;
        border-bottom: 3px solid #3c3c3d;
       font-family: 'Montserrat', sans-serif;
       -webkit-transition: .3s ease-in-out;
       transition: .3s ease-in-out;
    }
    #get-in-touch .contact .contact-cta .btn-primary {
        text-transform: uppercase;
    }
    #get-in-touch .contact .contact-cta .btn-primary:hover {
        background: transparent;
        color: #fff;
        border: 1px solid #fff;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    #get-in-touch {
        padding-top: 300px;
        padding-bottom: 0px;
        height: 900px;
        background-image: url('../img/background-contact.png');
        background-position: center, center;
        background-size: cover;
    }
    #get-in-touch .contact {
        text-align: center;
        color: #fff;
    }
    #get-in-touch .contact-text {
        margin-bottom: 30px;
    }
    #get-in-touch .contact-text h3 {
        color: #fff;
        font-family: 'Montserrat', sans-serif;
    }
    #get-in-touch .contact-mail {
        margin-bottom: 120px;
    }
    #get-in-touch .contact-mail a, .contact-mail a:focus  {
        color: #fff;
        font-size: 2.750em;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    #get-in-touch .contact-mail a:hover {
       color: #3c3c3d;
       font-size: 2.750em;
       font-weight: 700;
       font-family: 'Montserrat', sans-serif;
       -webkit-transition: .3s ease-in-out;
       transition: .3s ease-in-out;
    }
    #get-in-touch .contact .contact-cta .btn-primary {
        text-transform: uppercase;
    }
    #get-in-touch .contact .contact-cta .btn-primary, .btn-primary:focus, .btn-primary:visited, .btn-primary:active  {
        text-align: center;
        color: #ff6d00;
        background-color: #fff;
        border: 1px solid #fff;
        letter-spacing: .1px;
        line-height: 46px;
        margin: 0 5px;
        font-weight: 400;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    #get-in-touch .contact .contact-cta .btn-primary:hover {
        background: transparent;
        color: #fff;
        border: 1px solid #fff;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    #get-in-touch {
        padding-top: 250px;
        padding-bottom: 0px;
        height: 770px;
        background-image: url('../img/background-contact.png');
        background-position: center, center;
        background-size: cover;
    }
    #get-in-touch .contact {
        text-align: center;
        color: #fff;
    }
    #get-in-touch .contact-text {
        margin-bottom: 30px;
    }
    #get-in-touch .contact-text h3 {
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-style: italic;
        font-weight: 400;
    }
    #get-in-touch .contact-mail {
        margin-bottom: 90px;
    }
    #get-in-touch .contact-mail a, .contact-mail a:focus  {
        color: #fff;
        font-size: 2.750em;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    #get-in-touch .contact-mail a:hover {
       color: #3c3c3d;
       font-size: 2.750em;
       font-weight: 700;
       font-family: 'Montserrat', sans-serif;
       -webkit-transition: .3s ease-in-out;
       transition: .3s ease-in-out;
    }
    #get-in-touch .contact .contact-cta .btn-primary {
        text-transform: uppercase;
    }
    #get-in-touch .contact .contact-cta .btn-primary, .btn-primary:focus, .btn-primary:visited, .btn-primary:active {
        text-align: center;
        color: #ff6d00;
        font-size: 0.938em;
        background-color: #fff;
        border: 1px solid #fff;
        letter-spacing: .1px;
        line-height: 46px;
        margin: 0 5px;
        font-weight: 400;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    #get-in-touch .contact .contact-cta .btn-primary:hover {
        background: transparent;
        color: #fff;
        border: 1px solid #fff;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    #get-in-touch {
        padding-top: 220px;
        padding-bottom: 0px;
        height: 780px;
        background-image: url('../img/background-contact.png');
        background-position: center, center;
        background-size: cover;
    }
    #get-in-touch .contact {
        text-align: center;
        color: #fff;
    }
    #get-in-touch .contact-text {
        margin-bottom: 20px;
    }
    #get-in-touch .contact-text h3 {
        font-size: 1.063em;
        color: #fff;
        font-style: italic;
        font-weight: 400;
        font-family: 'Montserrat', sans-serif;
    }
    #get-in-touch .contact-mail {
        margin-bottom: 20px;
    }
    #get-in-touch .contact-mail a, .contact-mail a:focus  {
        color: #fff;
        font-size: 2.500em;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    #get-in-touch .contact-mail a:hover {
       color: #3c3c3d;
       font-size: 2.500em;
       font-weight: 700;
       font-family: 'Montserrat', sans-serif;
       -webkit-transition: .3s ease-in-out;
       transition: .3s ease-in-out;
    }
    #get-in-touch .contact .contact-cta .btn-primary {
        text-transform: uppercase;
    }
    #get-in-touch .contact .contact-cta .btn-primary, .btn-primary:focus, .btn-primary:visited, .btn-primary:active {
        text-align: center;
        font-size: 0.750em;
        color: #ff6d00;
        background-color: #fff;
        border: 1px solid #fff;
        letter-spacing: .1px;
        line-height: 46px;
        margin: 0 5px;
        font-weight: 400;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    #get-in-touch .contact .contact-cta .btn-primary:hover {
        background: transparent;
        color: #fff;
        border: 1px solid #fff;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
}

@media (min-width: 420px) and (max-width: 767px) {
    #get-in-touch {
        padding-top: 250px;
        padding-bottom: 0px;
        height: 760px;
        background-image: url('../img/background-contact.png');
        background-position: center, center;
        background-size: cover;
    }
    #get-in-touch .contact {
        text-align: center;
        color: #fff;
    }
    #get-in-touch .contact-text {
        margin-bottom: 20px;
    }
    #get-in-touch .contact-text h3 {
        font-size: 1.063em;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-style: italic;
        font-weight: 400;
    }
    #get-in-touch .contact-mail {
        margin-bottom: 80px;
    }
    #get-in-touch .contact-mail a, .contact-mail a:focus  {
        color: #fff;
        font-size: 2.250em;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    #get-in-touch .contact .contact-cta .btn-primary {
        text-transform: uppercase;
        font-weight: 700;
    }
    #get-in-touch .contact .contact-cta .btn-primary, .btn-primary:focus, .btn-primary:visited, .btn-primary:active {
        text-align: center;
        font-size: 0.950em;
        color: #ff6d00;
        background-color: #fff;
        border: 1px solid #fff;
        letter-spacing: .1px;
        line-height: 46px;
        margin: 0 5px;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
}

@media (min-width: 300px) and (max-width: 420px) {
    #get-in-touch {
        padding-top: 220px;
        padding-bottom: 0px;
        height: 635px;
        background-image: url('../img/background-contact.png');
        background-position: center, center;
        background-size: cover;
    }
    #get-in-touch .contact {
        text-align: center;
        color: #fff;
    }
    #get-in-touch .contact-text {
        margin-bottom: 20px;
    }
    #get-in-touch .contact-text h3 {
        font-size: 1.063em;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-style: italic;
        font-weight: 400;
    }
    #get-in-touch .contact-mail {
        margin-bottom: 80px;
    }
    #get-in-touch .contact-mail a, .contact-mail a:focus  {
        color: #fff;
        font-size: 2.050em;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    #get-in-touch .contact .contact-cta .btn-primary {
        text-align: center;
        font-size: 0.750em;
        color: #ff6d00;
        background-color: #fff;
        border: 1px solid #fff;
        letter-spacing: .1px;
        line-height: 46px;
        margin: 0 5px;
        font-weight: 400;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    #get-in-touch .contact .contact-cta .btn-primary {
        text-transform: uppercase;
        font-weight: 700;
    }
    #get-in-touch .contact .contact-cta .btn-primary:hover, .btn-primary:focus, .btn-primary:visited, .btn-primary:active {
        background: transparent;
        border: 1px solid #fff;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
}
