/*-------------------------------------------------------------------------------------

	Theme Name:        Bumba
	Theme URI:		
	Description:	   
	Author:			
	Author URI:		
	Version:           1.0.0
	License:		
	License URI:

--------------------------------------------------------------------------------------
    //Table of contents
      
    1.	    Typography and Reset CSS
    2.	    Global CSS
    3.      Header style
    4.      Video-bg section style
    5.      Project Section style
    6.      Service section style
    7.      About section style
    8.      Special-thing section style
    9.      Team section style
    10.     Client section style
    11.     Recent post section style
    12.     Counter area section style
    13.     Contact section style
    14.     Footer style
	15.     Mobile Menu Icon

-------------------------------------------------------------------------------------*/

/* 1 - Typography and Reset CSS
------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900|Montserrat:400,700');

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding:0;
}

body{
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

h1, h2, h3, h4, h5, h6{
    clear: both;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    line-height: 1;
    color: #191b1f;
    font-weight: 700;
}

h2{
    font-family: 'Montserrat', sans-serif;
}

p{
    margin: 0;
    line-height: 1.7;
}

ul,li{
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    overflow: visible;
}

button,
input,
select,
textarea {
    max-width: 100%;
}

svg:not(:root) {
    overflow: hidden;
}

section{
    overflow: hidden;
}

.btn-default.active.focus, 
.btn-default.active:focus, 
.btn-default.active:hover, 
.btn-default:active.focus, 
.btn-default:active:focus, 
.btn-default:active:hover, 
.open>.dropdown-toggle.btn-default.focus, 
.open>.dropdown-toggle.btn-default:focus, 
.open>.dropdown-toggle.btn-default:hover{
    color: #fff;
    background-color: transparent;
    border-color: transparent;
}

.input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group{
    margin-left: 0;
}

.cp img {
	width: 100%;
}

.list li {
	list-style: disc;
	margin-left: 30px;
}

/* 2 - Global CSS
------------------------------------------------------------------------*/
.angular-area{
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 100px;
    display: block;
}

.section-top-padding{
    padding-top: 80px;
}

.section-bottom-padding{
    padding-bottom: 80px;
}

.btn{
    font-weight: 700;
    color: #fff;
    background: #0a2360;
    border: 3px solid #0a2360;
    padding: 10px 30px;
    border-radius: 0;
    font-size: 18px;
    display: inline-block;
    outline: none;
    opacity: 1;
    height: auto;
    text-decoration: none !important;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    text-transform: uppercase;
}

.btn:hover,
.btn:focus {
    color: #fff;
    background: #133b9b;
    border: 3px solid #133b9b;
}

.btn-2{
    font-weight: 700;
    color: #fff;
    display: inline-block;
    background: transparent;
    border: 3px solid #fff;
    padding: 10px 30px;
    border-radius: 0;
    font-size: 18px;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    outline: none;
    text-decoration: none !important;
    text-transform: uppercase;
}

.btn-2:hover{
    background: #0a2360;
    border-color: #0a2360;
    color: #fff;
}

.btn-3{
    text-transform: uppercase;
    display: inline-block;
    background: transparent;
    border-radius: 0;
    font-size: 18px;
    border: none;
    outline: none;
    text-decoration: none !important;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    position: relative;
    font-weight: 900;
    color: #101010;
    padding: 5px 0;
}

.btn-3:before{
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: #0a2360;
    left: 0;
    bottom: 0;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.btn-3:hover{
    color: #0a2360;
}

.btn-3:hover:before{
    width: 100%;
}

.section-title{
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2{
    font-size: 36px;
    color: #0a2360;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.section-title h2:before{
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background: #0a2360;
    border-radius: 73px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section-title h2>span{
    color: #101010;
}

.section-title p{
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #101010;
    line-height: 30px;
    display: block;
}

.social-profile li{
    list-style: none;
    display: inline-block;
    padding: 0 20px;
}

.social-profile li:first-child{
    padding-left: 0;
}

.social-profile li a{
    font-size: 56px;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}


/* 3 - Header style
------------------------------------------------------------------------*/
.navbar{
    padding-top: 50px;
    background: #000000;
    backface-visibility: hidden;
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    margin-bottom: 0;
    border: none;
}

.navbar.fixed-top{
    background: #101010;
    padding: 10px 0;
}

.navbar-collapse{
    position: relative;
}

form.navbar-form[role="search"] {
    position: absolute;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.navbar-collapse form.navbar-form[role="search"] {
    top: 0;
    right: 0;
}

.navbar-header form.navbar-form[role="search"]{
    right: 70px;
    top: 0;
}

.navbar-header form.navbar-form[role="search"].active, .navbar-header form.navbar-form[role="search"].active {
    right: 70px;
}

form.navbar-form[role="search"] button[type="reset"] {
    display: none;
}

.navbar-collapse form[role="search"].active,
form.navbar-form[role="search"].active {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50%!important;
    padding: 0px;
    margin: 0px;
}

.nav.navbar-nav{
    padding-right: 40px;
}

form.navbar-form[role="search"] input {
    font-size: 18px;
    opacity: 0;
    display: none;
    height: 50px;
}

form.navbar-form[role="search"] {
    width: 38px;
}

form.navbar-form[role="search"].active button, form.navbar-form[role="search"].active input {
    display: table-cell;
    opacity: 1;
}

form.navbar-form[role="search"].active button, form.navbar-form[role="search"].active input {
    display: table-cell;
    opacity: 1;
}

form.navbar-form[role="search"].active input {
    width: 100%;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 300;
}

form.navbar-form[role="search"] button, form.navbar-form[role="search"] input {
    padding: 15px 12px;
}


.navbar-nav>li>a{
    font-size: 16px;
    color: #fff;
    padding: 2px 0px;
    font-weight: 400;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    position: relative;
}

.navbar-nav>li>a:before{
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    left: 0;
    bottom: 0;
    background: #0a2360;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

}

.navbar-nav>li {
    padding: 13px 15px;
}

.nav>li>a:focus{
    color: #fff;
    background: transparent;
}

.nav>li>a:hover,
.nav>li.current>a{
    background: transparent;
    color: #0a2360;    
}

.nav>li>a:hover:before,
.nav>li.current>a:before{
    width: 100%;
}

.search-btn{
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
}

.search-btn:hover,
.search-btn:focus,
.search-btn:active,
.search-reset-btn:focus,
.search-reset-btn:active{
    background: transparent;
    border: none;
    color: #fff;
}

.search-reset-btn{
    background: #101010;
    border: 1px solid #ebebeb;
    font-size: 13px;
    color: #fff;
}

.search-reset-btn:hover{
    background: #101010;
    color: #fff;
    border: 1px solid #ebebeb;
}

.search-input{
    background: #101010;
    font-size: 14px;
    color: #fff;
}

.navbar-toggle .icon-bar{
    background: #fff;
}

.navbar-toggle .icon-bar{
    padding-left: 0;
    padding-right: 0;
}

.navbar-collapse{
    border-top: none;
}

.navbar-header .navbar-form{
    display: none;
}


/* 4 - Video-bg section style
------------------------------------------------------------------------*/
.video-bg{
    position: relative;
    overflow: hidden;
    background: url(../images/slide2.jpg) no-repeat fixed 0 0;
    background-position: 100%;
    background-size: cover;
}

.video-container{
    height: 100vh;
}

.video-container > video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-bg-content{
    position: absolute;
    width: 100%;
    height: 100%;
    width: 100%;
    height: 100%;
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.video-bg-content h2{
    font-size: 60px;
    font-weight: 900;
    color: #fff;
}

.video-bg-content h3{
    font-size: 30px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 45px;
	margin-top: 12px;
}

.video-bg-content .btn-2{
    margin: 0 12px;
}

.scroll-down{
    position: absolute;
    font-size: 36px;
    color: #fff;
    bottom: 5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.scroll-down:hover,
.scroll-down:focus{
    color: #fff;
    text-decoration: none;
}

/* 5 - Project section style
------------------------------------------------------------------------*/

.project-items{
    text-align: center;
}

.project-item{
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-item h3 {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 900;
    padding: 30px;
    background: rgba(12, 37, 94,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-item img{
    width: 100%;
    height: auto;
    display: block;
}

.project-item:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.project-item-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(12, 37, 94,.85);
    opacity: 0;
    top: 0;
    left: 0;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.project-item:hover:before{
    border: 19px solid #e4e0df;
}

.project-item:hover .project-item-overlay{
    opacity: 1;
}
.project-item:hover h3 {
    display: none;
}

.project-overlay-content{
    position: absolute;
    top: 43%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.project-item:hover .project-overlay-content{
    top: 50%;
    opacity: 1;
}

.project-overlay-content h3>a{
    font-size: 24px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
}

.project-overlay-content span{
    font-size: 18px;
    color: #101010;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
}

.project-action-btn{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: inline-block;
    margin: 0 auto;
    line-height: 36px;
    color: #fff;
    font-size: 18px;
    border: 2px solid #fff;
    text-decoration: none !important;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.project-action-btn:hover{
    color: #fff;
    background: #101010;
}
.project-overlay-content a {
    color: #fff;
    font-weight: 900;
    font-size: 30px;
}

/* 6 - Service section style
------------------------------------------------------------------------*/
.service-item{
    padding: 24px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin-bottom: 30px;
}

.service-item:hover{
    box-shadow: 15px 10px 60px 5px #d4d4d4;
}

.service-item:hover>i,
.service-item:hover>.title{
    color: #0a2360
}


.service-item i{
    font-size: 60px;
    color: #101010;
    margin-bottom: 20px;
    display: block;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.service-item .title{
    font-size: 24px;
    font-weight: 900;
    color:#101010;
    text-transform: uppercase; 
    margin-bottom: 20px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.service-item p{
    font-size: 18px;
    color: #101010;
    font-weight: 300;
    line-height: 30px;
    font-family: 'Montserrat', sans-serif;
}

/* 7 - About section style
------------------------------------------------------------------------*/
.about{
    background: url(../images/culture-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-bottom: 100px;
	background-attachment: fixed;
}

.about-inner{
    background: #fff;
    overflow: hidden;
}

.about-img img{
    width: 100%;
    height: auto;
    display: block;
}

.about-detail{
    padding: 100px 65px 0 65px;
}

.about-detail h2{
    font-size: 36px;
    color: #0a2360;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.about-detail h2:before{
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background: #0a2360;
    border-radius: 73px;
    bottom: 0;
    left: 0;
}

.about-detail h2>span{
    color: #101010;
}

.about-detail p{
    color: #101010;
    line-height: 30px;
    margin-bottom: 30px;
    font-size: 18px;
}

.about-detail .btn-3{
    margin-right: 30px;
}

/* 8 - Special-thing section style
------------------------------------------------------------------------*/
.special-item-icon{
    float: left;
}

.hexagon{
    width: 60px;
    height: 40px;
    background: #0a2360;
    position: relative;
    border-radius: 9px;
    margin: 20px 25px 20px 0;
}

.hexagon,
.hexagon:before,
.hexagon:after{
    border-left: 2px solid #0a2360;
    border-right: 2px solid #0a2360;
}

.hexagon:before,
.hexagon:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    background: inherit;
    margin-left: -2px;
    left: 0;
}

.hexagon:before{
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}

.hexagon:after{
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

.hexagon span{
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 40px;
    z-index: 9;
    font-size: 36px;
    color: #fff;
}

.special-item-txt{
    display: table;
}

.special-item-txt h3{
    font-size: 24px;
    font-weight: 900;
    color: #101010;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.special-item-txt p{
    color: #101010;
    line-height: 30px;
}

/* 9 - Team section style
------------------------------------------------------------------------*/

.team{
    background: #f3f2f2;
}

.team-slide{
    position: relative;
    margin:  0 auto;
    overflow: hidden;
    z-index: 1;
}

.slide-wrapper{
    position: relative;
}

.slide-next,
.slide-prev{
    position: absolute;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    color: #0a2360;
    z-index: 9;
}

@media (min-width: 0px){
    .slide-next{
        right: 0px;
    }

    .slide-prev{
        left: 0px;
    }
}

@media (min-width: 1280px){
    .slide-next{
        right: -60px;
    }

    .slide-prev{
        left: -60px;
    }
}

@media (min-width: 1440px){
    .slide-next{
        right: -100px;
    }

    .slide-prev{
        left: -100px;
    }
}

.team-item{
    position: relative;
    overflow: hidden;
}

.team-item img{
    width: 100%;
    height: auto;
    display: block;
}

.team-caption{
    position: absolute;
    background: rgba(12, 37, 94,.95);
    bottom: -150px;;
    width: 100%;
    height: 100px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.team-item:hover .team-caption{
    bottom: 0;
}

.caption-inner{
    position: relative;
    width: 100%;
    height: 100%;
}

.caption-content{
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-transform: uppercase;
    white-space: nowrap;
}

.caption-content h3{
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

.caption-content h4{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 30px;
}

.caption-triangle{
    position: absolute;
    border-bottom: 36px solid rgba(12, 37, 94,.95);
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    top: -36px;
}


/* 10 - Client section style
------------------------------------------------------------------------*/
.testimonial-item{
    position: relative;
    padding: 40px;
    border: 1px solid #dcdcdc;
}

.client-slide{
    position: relative;
    margin:  0 auto;
    overflow: hidden;
    z-index: 1;
    padding-top: 30px;
}

.testimonial-item .hexagon{
    width: 45px;
    height: 30px;
    position: absolute;
    top: -15px;
    left: 20px;
    border-radius: 7px;
    margin: 0;   
}

.testimonial-item .hexagon span{
    font-size: 18px;
    line-height: 30px;
}

.testimonial-item p{
    color: #101010;
    margin-bottom: 20px;
}

.testimonial-item h4{
    font-size: 18px;
    font-weight: 900;
    color: #101010;
    text-transform: uppercase;
}

.clients-logo{
    padding-top: 80px;
}

.client-logo-item{
    float: left;
    list-style: none;
    width: 20%;
    text-align: center;
}
.client-logo-item img {
    width: 100%;
}
.client-logo-item img:hover {
    opacity: 0.7;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/* 11 - Recent post section style
------------------------------------------------------------------------*/
.recent-post{
    background: #f3f2f2;
}

.recent-post-slide{
    position: relative;
    margin:  0 auto;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.post-item{
    background: #fff;
    overflow: hidden;
    margin-bottom: 35px;
    text-align: justify;
}

.post-thumb img{
    width: 100%;
    height: auto;
    display: block;
}

.post-content{
    padding: 25px;
}

.post-content .title>a{
    font-size: 24px;
    color: #101010;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.post-content .title>a:hover{
    color: #0a2360;
}

.meta-post{
    margin-bottom: 15px;
}

.meta-post span{
    font-size: 18px;
    color: #101010;
    font-weight: 400;
    display: inline-block;
    padding: 0 5px;
    border-right: 2px solid #101010;
    line-height: 1;
}

.meta-post span:first-child{
    padding-left: 0;
}

.meta-post span:last-child{
    padding-right: 0;
    border-right: none;
}

.post-content .excerpt{
    font-size: 18px;
    color: #101010;
}


/* 12 - Counter area section style
------------------------------------------------------------------------*/
.counter-area{
    background: #0a2360;
}

.counter-area .social-profile{
    padding: 40px 0;
    overflow: hidden;
    background: #0a2360;
}

.counter-item{
    padding: 50px 0;
}

.counter-item .counter{
    font-size: 72px;
    color: #fff;
    font-weight: 400;
}

.counter-item h4{
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
}

.counter-item.item-1{
    background:#2485c6; 
}

.counter-item.item-2{
    background:#1a72ab; 
}


/* 13 - Contact section style
------------------------------------------------------------------------*/
.contact-items,
.contact-form-title{
    margin-bottom: 70px;
    overflow: hidden;
}

.contact-item-icon{
    float: left;
    margin: 0 15px 20px 0;
}

.contact-item-icon i{
    font-size: 24px;
    color: #101010;
}

.contact-item-txt{
    display: table;
}

.contact-item-txt h3,
.contact-form-title h3{
    font-size: 24px;
    color: #101010;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 900;
}

.contact-item-txt span,
.contact-form-title p{
    font-size: 18px;
    color: #101010;
    font-weight: 300;
    line-height: 30px;
    display: block;
}

#map{
    width: 100%;
    height: 510px;
}

.help-block{
    font-size: 16px;
    background: #faebd7;
    padding: 0 10px;
    font-weight: 400;
}

#msgSubmit{
    font-size: 16px;
    padding: 10px;
    font-weight: 400;
    color: #a94442;
}

.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 700;
    color: #101010;
    border-bottom: 1px solid #101010;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.form-control:focus {
    border-color: #101010;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.has-error .form-control{
    -webkit-box-shadow: none;
    box-shadow: none;
}

.has-error .form-control:focus {
    border-color: #a94442;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#contactForm .btn{
    padding: 10px 50px;
    float: right;
    margin-top: 30px;
    opacity: 1;
}

#contactForm input::-webkit-input-placeholder,
#contactForm textarea::-webkit-input-placeholder{
    color: #101010;
}

#contactForm input::-moz-input-placeholder,
#contactForm textarea::-moz-input-placeholder{
    color: #101010;
}

#contactForm input:-ms-input-placeholder,
#contactForm textarea:-ms-input-placeholder{
    color: #101010;
}

/* 14 - Footer style
------------------------------------------------------------------------*/
.footer{
    background: #101010;
}

.footer .copyright{
    font-size: 24px;
    color: #fff;
    float: left;
    padding: 20px 0;
}

.footer .copyright a{
    font-weight: 900;
    color: #0a2360;
    text-decoration: none;
}

.scroll-top{
    width: 100px;
    height: 80px;
    float: right;
    text-align: center;
    background: #0a2360;
    line-height: 80px;
    color: #fff;
    font-size: 60px;
    cursor: pointer;
    margin-right: 110px;
}


/* 14 - Page Preloader
------------------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    /* change if the mask should be a color other than white */
    
    z-index: 999999;
    /* makes sure it stays on top */
}
 
/*loading3*/
#loading3{
    position: absolute;
	width: 60px;
	height: 30px;
	left: 50%;
    /* centers the loading animation horizontally on the screen */
    
    top: 50%;
    /* centers the loading animation vertically on the screen */
}
#loading3>div{
	width: 6px;
	height: 40px;
	display: inline-block;
	background-color: #3b3b3b;
	-webkit-animation:strechdelay 1.2s ease-in-out infinite;
	animation:strechdelay 1.2s ease-in-out infinite;
}
#loading3 .line2{
	-webkit-animation-delay:-1.1s;
}
#loading3 .line3{
	-webkit-animation-delay:-1.0s;
}
#loading3 .line4{
	-webkit-animation-delay:-0.9s;
}

@-webkit-keyframes strechdelay{
	0%,50%,100%{
		-webkit-transform:scaleY(.4);
	}
	20%{
		-webkit-transform:scaleY(1);
	}
}


 

/* 15 - Mobile Menu Icon
------------------------------------------------------------------------*/
 
#nav-icon {
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #ffffff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon span:nth-child(odd) {
  left:0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon span:nth-child(1), #nav-icon span:nth-child(2) {
  top: 0px;
}

#nav-icon span:nth-child(3), #nav-icon span:nth-child(4) {
  top: 11px;
}

#nav-icon span:nth-child(5), #nav-icon span:nth-child(6) {
  top: 23px;
}

#nav-icon.navbar-toggle:not(.collapsed) span:nth-child(1),#nav-icon.navbar-toggle:not(.collapsed) span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.navbar-toggle:not(.collapsed) span:nth-child(2),#nav-icon.navbar-toggle:not(.collapsed) span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.navbar-toggle:not(.collapsed) span:nth-child(1) {
  left: 5px;
  top: 7px;
}

#nav-icon.navbar-toggle:not(.collapsed) span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#nav-icon.navbar-toggle:not(.collapsed) span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon.navbar-toggle:not(.collapsed) span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon.navbar-toggle:not(.collapsed) span:nth-child(5) {
  left: 5px;
  top: 18px;
}

#nav-icon.navbar-toggle:not(.collapsed) span:nth-child(6) {
  left: calc(50% - 5px);
  top: 18px;
}
 .navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 13px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
	width: 38px;
	cursor: pointer;
}

.nav>li.current>a {
    color: #fff;
}
.navbar-nav>li>a:before {
    background: #fff;
}

.navbar-brand {
    width: 30%;
    height: auto;
}
.fixed-top .navbar-brand {
    width: 20%
}
.navbar-brand img {
    width: 100%;
}
.video-bg {
    background-position: 30% 50%;
}
.video-bg h3 {
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
}
.navbar-toggle {
    margin-top: 50px;
}
.fixed-top .navbar-toggle {
    margin-top: 28px;
}
.service-item i {
    color: #0a2360;
}
.post-content h3 {
    margin-bottom:10px;
}
.post-content .btn {
    margin-top: 15px;
}
.navbar-nav>li>a:hover {
    color: #fff;
}
.modal-career .modal-footer {
    background: #0a2360;
    text-align: center;
    padding: 20px 0;
}
.modal-career .modal-apply {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.testimonial-item {
    min-height: 450px;
    display: flex;
    flex-direction: column;
}
.testimonial-item h4 {
    margin-bottom: 10px;
}
.testimonial-item .btn {
    margin-top: auto;
}
.apply-bg {
    background: url('../images/apply.jpg');
}
.apply {
    padding: 80px 0;
}
.content-modal {
    padding-right: 0 !important;
}
.content-modal .modal-content {
    width: 100%;
    margin: 0;
    border-radius: 0;
    height: 100%;
}
.content-modal .modal-title {
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (min-width:767px) {
    .navbar-brand {
        width: 50%;
        height: auto;
        padding: 0;
    }
    .navbar-brand img {
        width: 100%;
    }
    .fixed-top .navbar-brand {
        width: 25%;
    }
    .navbar {
        padding-top: 20px;
    }
    .navbar-fixed-top .navbar-collapse {
        padding-top: 50px;
    }
    .fixed-top .navbar-collapse {
        padding-top: 12px;
    }
    .video-bg h3 {
        font-size: 3rem;
    }
    .content-modal .modal-body {
        padding: 60px 40px;
    }
    .content-modal .modal-dialog {
	    width: 80%;
	    margin: 30px auto 0 auto;
	}
}

.img-container {
    position: relative;
    margin-bottom: 20px;
}
.img-container img {
    width: 100%;
}
.img-container h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    position: absolute;
    background: rgba(12, 37, 94,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-profile img {
    height: 50px;
    margin-top:-10px;
}

.about-detail {
	padding: 80px 65px 60px 65px;
}
.culture .about-title {
	text-align: center;
}
.culture h2:before {
	content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background: #0a2360;
    border-radius: 73px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.culture .subtitle {
	font-size:18px;
	font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom:15px;
    text-align: center;
}
.culture h3 {
	margin-bottom: 20px;
	text-align: center;
}
.culture img {
	margin-bottom: 20px;
}

#services {
	padding-top: 60px;
}
.what-we-do {
	margin-bottom: 30px;
	background: #f6f6f6;
	padding: 40px;
	min-height: 440px;
}
.what-we-do .hexagon {
	margin-bottom: 40px;
	width: 100px;
	height: 65px;
}
.what-we-do .hexagon span {
	font-size: 50px;
	line-height: 65px;
}
.what-we-do h3 {
	margin-bottom: 20px;
}
.what-we-do ul li {
	margin-bottom: 5px;
}
.nav>li>a>img {
	height: 16px;
}
.navbar-nav>li.hidden-xs {
	padding: 13px 5px;
}
.modal-content p {
	margin-bottom: 15px;
}
.post-item h3 {
	text-align: left;
	font-size: 21px;
}

.footer-upper {
	border-top: 1px solid #dcdcdc;
}

.footer-upper a,
.footer-upper img {
	display: block;
	margin: 0 auto;
}

.fairbusiness,
.chamber {
	display: block;
	margin: 0 auto;
}

@media screen and (max-width:767px) {
	.video-bg {
		background-attachment: inherit;
		background-position: 50% 50%;
	}
	.navbar.fixed-top {
		background: #4f4f4f;
	}
}

@media screen and (min-width:768px) {
	.fairbusiness,
	.chamber {
		margin-top: 30px;
	}
}

.feedback {
  background-color : #31B0D5;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  border-color: #46b8da;
}

#mybutton {
  position: fixed;
  bottom: -4px;
  right: 10px;
  z-index: 10;
}

.styledList li{
	list-style-type: disc;
	margin-left: 30px;
}

.bio {
	display: block;
	margin: 20px auto;
	width: 100%;
}