html, body {
    font-family: 'Poppins', 'Helvetica';
}

header {
    background-color: #012040;
    align-items: center;
}

header .row > div {
    padding: 30px;
    color: #fff;
    font-size: 1.5rem;
    align-self: center;
}

header .row > div span:first-of-type {
    color: #bbab23;
    display: block;
    font-size: 0.9rem;
    line-height: 1;
}

img.contact-head {
    float: left;
    margin-right: 20px;
    max-width: 40px;
}

div.divider {
    width: 100%;
    margin-bottom: 20px;
}

div.divider.x2 {
    margin-bottom: 40px;
}

div.divider.x3 {
    margin-bottom: 60px;
}

div.logo {
    background-color: #034ea2;
    overflow: hidden;
    position: relative;
}

.responsive-menu-container {
    background-color: #034ea2;
    height: 90px !important;
}

div.logo:after {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    width: 54px;
    height: 120%;
    border-style: solid;
    border-width: 0;
    background-color: #012040;
    transform: rotate(15deg);
}

section.banner {
    padding: 100px 0 250px 50px;
    position: relative;
    background: url(../img/bg-banner.png) center center no-repeat;
    background-size: cover;
    display: flex;
    align-self: center;
    align-items: center;
}

section.banner .container-fluid{
    z-index: 3;
}

nav.main_menu {
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    z-index: 2;

    -webkit-transition: all 3s ease;
    -moz-transition: all 3s ease;
    -o-transition: all 3s ease;
    transition: all 3s ease;
}

nav.main_menu ul {
    list-style: none;
    padding: 0;
    height: 50px;
    align-items: center;
    display: flex;
    margin: 0 auto;
    width: 100%;
    justify-content: center;

    -webkit-transition: all 3s ease;
    -moz-transition: all 3s ease;
    -o-transition: all 3s ease;
    transition: all 3s ease;
}

nav.main_menu ul li {
    display: inline-block;
    background-color: #fff;
    padding: 10px 25px;
}

nav.main_menu ul li a {
    color: #034ea2;
}

nav.main_menu ul li a:hover {
    text-decoration: none;
}

nav.main_menu ul li.yellow {
    background-color: #f9d919;
}

nav.main_menuul li.yellow a {
    color: #fff;
}

nav.main_menu ul li.divider {
    background-color: transparent;
    width: 50px;
    position: relative;
    overflow: hidden;
}

nav.main_menu ul li.divider:before {
    content: '';
    position: absolute;
    top: -17px;
    left: -32px;
    width: 50px;
    height: 120%;
    border-style: solid;
    border-width: 0;
    background-color: #fff;
    transform: rotate(30deg);
}

nav.main_menu ul li.divider:after{
    content: '';
    position: absolute;
    top: 6px;
    right: -30px;
    width: 54px;
    height: 130%;
    border-style: solid;
    border-width: 0;
    background-color: #f9d919;
    transform: rotate(30deg);
}
 
.banner span.text {
    display: block;
}

.banner span.text.white {
    color: #fff;
    font-size: 2rem;
}

.banner span.text.yellow {
    color: #f9d919;
    font-size: 3.5rem;
}

section.section-form {
    margin-bottom: 60px;
}

.section-form form {
    background-color: #f9d919;
    margin-top: -150px;
    z-index: 1000;
    position: relative;
    padding: 20px;
    color: #012040;

    -webkit-box-shadow: 0px 0px 4px 0px rgba(115,115,115,1);
    -moz-box-shadow: 0px 0px 4px 0px rgba(115,115,115,1);
    box-shadow: 0px 0px 4px 0px rgba(115,115,115,1);
}

.section-form form .form-control{
    border: 1px solid transparent;
    border-radius: .50rem;
}

.section-form form input::placeholder{
    color: #B1B6BC;
}

.section-form form textarea::placeholder{
    color: #B1B6BC;
}

.section-form form h1 {
    color: #034ea2
}

.section-form form .btn,
.section-form form .btn:hover {
    background-color: #034ea2;
    border-color: #034ea2;
}

.btn-wide {
    padding-left: 50px;
    padding-right: 50px;
}

section.about-us {
    background: #fff;
    color: #888;
    margin-bottom: 70px;
}

section.about-us .row {
    align-items: center;
}

section.about-us h1 {
    color: #034ea2;
    margin-bottom: 50px;
}

section.projects {
    background-color: #034da0;
    color: #fff;
    padding-bottom: 80px;
}

section.projects h1 {
    color: #034da0;
    background-color: #fff;
    display: inline-block;
    padding: 5px 50px;
    border: 2px solid #034da0;
    margin-top: -50%;
}

section.projects nav.nav-tab ul {
    margin: 0;
    padding: 0;
}

section.projects nav.nav-tab ul li {
    width: 130px;
    height: 130px;
    color: #034da0;
    background-color: #fff;
    margin-bottom: 20px;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

section.projects nav.nav-tab ul li.active {
    color: #012040;
    background-color: #f9d919;
    position: relative;
}

section.projects nav.nav-tab ul li.active:after {
    content: '';
    display: block;
    position: absolute;
    top: 40%;
    right: -30px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #f9d919;
}

section.projects nav.nav-tab ul li.active a{
    color: #012040;
}


section.projects nav.nav-tab ul li a {
    color: #034da0;
}

section.projects nav.nav-tab ul li a:hover {
    text-decoration: none;
}

section.projects nav.nav-tab ul li img {
    height: 75px;
    margin-bottom: 5px;
}

section.projects .content-tab > div {
    display: none;
}

section.projects .content-tab > div.active {
    display: block;
}

section.projects .content-tab .tab-item {
    padding: 10px;
    box-sizing: border-box;
}

section.projects .content-tab .tab-item img {
    border: 2px solid #fff;
}

section.experience {
    background-blend-mode: screen;
    background: #f5f5f5 url(../img/bg-experience.png) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0;
    color: #034ea2;
}

section.experience h1 {
    margin-bottom: 30px;
}

section.experience span {
    font-weight: bold;
}

section.experience .text-large {
    display: block;
    color: #f9d919;
    font-size: 3.5rem;
}

.btn-call {
    background-color: #f9d919;
    border-color: #f9d919;
    color: #034ea2;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    padding: 5px 25px;
    font-size: 1.2rem;

    -webkit-box-shadow: 0px 0px 4px 0px rgba(115,115,115,1);
    -moz-box-shadow: 0px 0px 4px 0px rgba(115,115,115,1);
    box-shadow: 0px 0px 4px 0px rgba(115,115,115,1);
}

.btn-call:before{
    display: inline-block;
    content: '';
    height: 32px;
    width: 32px;
    background: url(../img/call.png) center center no-repeat;
    background-size: cover;
    margin-right: 5px;
}

section.services.tab {
    color: #034ea2;
    margin-top: 30px;
    padding-bottom: 50px;
}

section.services.tab img {
    display: inline-block;
    max-width: 100px;
}

section.services.tab a:hover{
    text-decoration: none;
}

section.services.tab span {
    display: block;
    margin-top: 10px;
}

section.services.tab-content {
    background-color: #012040;
    color: #fff;
    padding: 20px;
}

section.services.tab-content .tab-item {
    position: relative;
    display: none;
}

section.services.tab-content .active {
    display: block;
}

section.services.tab .tab-item.active:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    bottom: -80px;
    left: 50%;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #fff;
}

section.parks {
    padding: 60px 0;
    color: #888;
}

section.parks > .container > .row {
    align-items: center;
}

section.parks  .lSSlideOuter .lSPager.lSpg>li a {
    background-color: #034ea2;
    border: 1px solid #034ea2;
    height: 15px;
    width: 15px;
}

section.parks .lSSlideOuter .lSPager.lSpg > li.active,
section.parks .lSSlideOuter .lSPager.lSpg > li.active a, 
section.parks .lSSlideOuter .lSPager.lSpg > li:hover a {
    background-color: #fff;
}

section.portfolio {
    padding: 50px 0;
    margin-bottom: 30px;
    background-color: #f4f4f4;
    color: #012040;
}

section.portfolio h1 {
    color: #034ea2;
    margin-bottom: 20px;
}

section.portfolio ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

section.portfolio ul li.portfolio-card {
    padding: 10px;
}

section.portfolio ul li.portfolio-card div {
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;

    -webkit-box-shadow: 0px 0px 4px 0px rgba(115,115,115,1);
    -moz-box-shadow: 0px 0px 4px 0px rgba(115,115,115,1);
    box-shadow: 0px 0px 4px 0px rgba(115,115,115,1);
}

section.portfolio ul li.portfolio-card img {
    margin-bottom: 10px;
}

section.clients {
    padding: 30px 20px;
}

section.clients ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

section.contact {
    padding: 30px 0;
    background-color: #034ea2;
    color: #fff;
}

footer {
    padding: 20px 0;
    background-color: #012040;
    color: #fff;
}

section.thanks {
    padding: 60px 0;
    position: relative;
}

.responsive_menu {
    display: none;
}

aside.help {
    background-color: #D91887;
    width: 80px;
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 999;
    color: #fff;
    padding: 20px 6px;
    text-align: center;
    transform: translateY(-50%);
}

aside.help ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

aside.help li {
    height: 32px;
    width: 32px;
    margin-top: 15px;
    display: inline-block;
}

img.logo{
    max-width: 220px;
}

.video-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-background iframe,
.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

.video-background::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: '';
    background-color: rgba(0,0,0,.6);
    z-index: 1;
}

.phone, a:hover{
    color: white;
    text-decoration: none;
}

.btn-loading {
    color: transparent !important;
    position: relative
}

.btn-loading:after {
    content: " ";
    display: block;
    width: 20px;
    height: 20px;
    margin: 8px;
    border-radius: 50%;
    border: 4px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: btn-loading 1.2s linear infinite;

    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes btn-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@media(max-width: 900px) {
    div.logo:after {
        display: none;
    }

    header .row > div {
        padding: 15px;
        font-size: 1.3rem;
    }

    nav.main_menu {
        top: 20px;
        z-index: 999;
    }
}

@media(max-width: 576px) {
    img.logo {
        height: 60px;
    }

    .responsive_menu {
        display: block;
        padding: 10px;
        cursor: pointer;
    }

    /*nav.main_menu {
        position: static;
    }*/

    nav.main_menu ul {
        display: none;
        height: auto;
    }
    
    nav.main_menu ul li {
        display: block;
        height: 50px;
        width: 100%;
    }

    nav.main_menu ul li.divider {
        display: none;
    }

    header div.row > div:not(.logo) {
        padding: 10px 0;
        height: 50px;
    }

    header .row > div span:first-of-type {
        display: inline-block;
    }
    
    img.contact-head {
        float: none;
        display: inline-block;
        height: 30px;
        margin-top: -5px;
    }

    section.banner {
        padding: 20px 10px;
        align-self: unset;
        align-items: unset;
        display: block;
        min-height: 300px;
    }

    .section-form form {
        margin-top: 0;
    }

    section.about-us h1{
        font-size: 1.8rem;
    }

    section.projects h1{
        font-size: 1.8rem;
    }

    section.experience h1{
        font-size: 1.8rem;
    }

    section.experience .text-large{
        font-size: 2.5rem;
    }

    section.portfolio h1{
        font-size: 1.8rem;
    }

    section.projects nav.nav-tab ul li {
        width: 95px;
        height: 95px;
        margin-right: 5px;
        padding: 0;
    }

    section.projects nav.nav-tab ul li a {
       font-size: 0.7rem;
    }

    section.projects nav.nav-tab ul li img {
        height: auto;
        width: 50px;
    }

    section.projects nav.nav-tab ul li.active:after {
        display: none;
    }

    section.projects .content-tab .tab-item {
        text-align: center;
    }

    section.portfolio ul li.portfolio-card img {
        width: 100%;
    }

    aside.help {
        bottom: 0;
        width: 90%;
        z-index: 100000;
        height: 60px;
        top: 95%;
        padding: 10px 0px;
        left: 10%;
        margin-left: -20px;
    }

    aside.help li {
        float: left;
        width: 25%;
        /*border-right: 2px solid white;*/
        margin: 5px 0 auto;
    }

    aside.help img {
        max-width: 35px;
    }

    aside.help span{
        display: none;
    }

    footer{
        padding: 20px 0 90px;
    }
}