@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,500,700,800,200);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,800);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400);
@import url(https://fonts.googleapis.com/css?family=Poiret+One);
@import 'https://fonts.googleapis.com/css?family=Nunito:300,400';
html {
    -webkit-font-smoothing: antialiased;
}

body {
    position: relative;
    background-color: #FFFEFB;
}

a:hover {
    text-decoration: none !important;
}


/*----------------scrollbar----------------*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #f9f9f9;
    box-shadow: inset 1px -1px 1px 1px rgba(0, 0, 0, 0.15);
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 20px;
    border-radius: 20px;
    background: #757575;
    border: 3px solid #f7f7f7;
    width: 8px;
}

::-webkit-scrollbar-thumb:active {
    -webkit-border-radius: 0px;
    border-radius: 20px;
    background: #616161;
}


/*----------------scrollbar end----------------*/


/*-----------------buttons-------------------*/

.buttons_pane.center {
    text-align: center !important;
    margin-top: 20px;
}

#banner .buttons_pane.marg {
    margin-top: 65px;
}

.button {
    display: inline-block;
    background: #fff;
    position: relative;
    font-family: open sans;
    font-weight: 700;
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: 3px;
    text-align: center;
    border: 2px solid #05304c;
    border-radius: 0px;
    color: #05304c;
    padding-top: 0.6em;
    padding-bottom: 0.6em;
    padding-left: 2em;
    padding-right: 2em;
    transition: all 0.4s ease-in;
}

.button:focus {
    outline: 0;
}

.button:hover {
    background: 0;
    color: #fff;
}

.button.special::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease-in;
}

.button.special::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 2px;
    height: 13px;
    background: #fff;
    transition: all 0.3s ease-in;
}

.button.special span.circle {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #333;
    z-index: 1;
}

.button.special span.triangle {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 0px 0px;
    border-color: transparent transparent #2196F3 transparent;
    border-radius: 0;
    background: 0;
    transition: all 0.3s ease-in;
}

.button.special:hover {
    background: #fff;
    color: #05304c;
}

.button.special:hover::after {
    width: 8px;
}

.button.special:hover::before {
    height: 25px;
}

.button.special:hover span.triangle {
    height: 25px;
    border-width: 0 0 20px 20px;
}

.button.special2 {
    background: #05304c;
    color: #fff;
}

.button.special2:hover {
    color: #05304c;
    background: #fff;
}

.button.special2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transition: all 0.2s ease-in;
}

.button.special2::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 15px;
    height: 15px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transition: all 0.2s ease-in;
}

.button.special2:hover::before {
    top: -7px;
    left: -7px;
    border-top: 1px solid #05304c;
    border-left: 1px solid #05304c;
}

.button.special2:hover::after {
    right: -7px;
    bottom: -7px;
    border-right: 1px solid #05304c;
    border-bottom: 1px solid #05304c;
}

.button.cta_banner {
    background: 0;
    border: 2px solid #fff;
    color: #fff;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: center;
    margin-left: 2px;
    background: #05304c;
    padding-left: 3em;
    padding-right: 3em;
    border-radius: 15px;
}

.button.cta_banner span {
    position: relative;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    font-family: raleway;
    font-weight: 500;
    padding-bottom: 2px;
    font-size: 10px;
}

.button.cta_banner span::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    height: 1px;
    width: 20%;
    background: #fff;
    transition: all 0.2s ease-in;
}

.button.cta_banner:hover {
    background: 0;
}

.button.cta_banner:hover span::after {
    width: 93%;
}


/*-----------------buttons end-------------------*/

.negative h2, .negative h3, .negative p, .negative h4 {
    color: #fff !important;
}

.negative h4::after, .negative h4::before {
    background: #fff !important;
}


/*----------------navbar----------------*/

.navbar-default {
    position: relative;
    background-color: #fffefb;
    border: none;
    width: 100%;
    border-color: transparent;
    padding: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    z-index: 9;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
}

.navbar-default::after {
    position: absolute;
    top: 0;
    left: -33px;
    width: 40%;
    background: rgb(255, 249, 228);
    display: block;
    height: 100%;
    z-index: -1;
    transform: skew(-45deg);
    /* border-right: 10px solid rgba(255, 208, 120, 0.08); */
}

.navbar-default.small {
    background-color: #fff;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-active {
    box-shadow: 3px 2px 30px rgba(0, 0, 0, 0.4);
}

.navbar-default .navbar-brand {
    position: relative;
    top: -18px;
}

.navbar-default .brand {
    position: relative;
    left: 90px;
    width: 160px;
    height: 61px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    margin-top: 2px;
    /* margin-left: 40px; */
    background: url('../img/logo.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}

.navbar-default.small .brand {
    position: relative;
    left: 48px;
    width: 100px;
    height: 63px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    margin-top: 5px;
    margin-left: 40px;
    background: url('../img/logo.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}

.nav>li {
    padding-bottom: 7px;
    margin-left: 35px;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    transition: all 0.2s ease-in;
}

.nav>li:hover {
    border-bottom: 2px solid #ffd078;
}

.small .nav>li {
    padding-bottom: 0px;
}

.navbar-default .navbar-brand a:hover, .navbar-default .navbar-brand a:focus, .navbar-default .navbar-brand a:active {
    text-decoration: none;
}

.navbar-default .navbar-nav {
    padding: 0;
    margin-top: 9px;
    margin-bottom: -5px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin-left: -50px;
    /* border-right: 1px solid #666; */
}

.navbar-default.small .navbar-nav {
    padding: 0;
    margin-top: 9px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.navbar-default .navbar-nav>li>a {
    color: #2e3038;
    text-transform: uppercase;
    font-family: nunito;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    padding-left: 5px;
    padding-right: 5px;
}

.navbar-default.small .navbar-nav>li>a {
    color: #616161;
}

.navbar-default.small .navbar-nav>li>a {
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    font-size: 10px;
    font-weight: 400;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
    color: #fff;
    text-transform: uppercase;
    font-family: open sans;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    background: 0;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
    font-size: 12px;
    -webkit-transition: all 0s ease-in;
    transition: all 0s ease-in;
    color: #ff5f54;
}

.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
    text-decoration: none;
    color: #ffb832;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus {
    color: #ccc;
    text-decoration: none;
    background: none;
}

.navbar-default .navbar-nav>a:hover .caret {
    transform: rotate(180deg);
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 0px;
    }
    .navbar-nav {
        float: none;
    }
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu>li>a, .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus, .navbar-default .navbar-nav .open .dropdown-menu>li>a:active {
        color: #60646D;
    }
}

.navbar-default .navbar-toggle {
    border-color: transparent;
    padding-top: 20px;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #dcdcdc;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: transparent;
}


/*----------------navbar end----------------*/

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 0px;
    padding-left: 0px;
}


/*dropdown menu*/

.dropdown-menu:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: -11px;
    left: 30px;
    background: url("../img/arrow-orange.png") no-repeat;
    background-size: contain;
    height: 30px;
    width: 30px;
}

.dropdown-menu>li>a, .dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
    color: #33373C;
    background: 0;
    font-size: 11px;
    font-family: open sans;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 2em;
}

.dropdown-menu {
    position: absolute;
    top: 90%;
    background: #fff;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0px;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 0px;
    box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #ffd078;
}

.dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    opacity: 1;
    animation-name: dropdown;
    animation-duration: 0.4s;
}

.dropdown:hover .caret {
    transform: rotate(180deg);
    -webkit-animation-name: dropdown_caret;
    -webkit-animation-duration: 0.4s;
    animation-name: : dropdown_caret;
    animation-duration: 0.4s;
}

.dropdown .caret {
    transform: rotate(0deg);
    -webkit-animation-name: dropdown_caret_drop;
    -webkit-animation-duration: 0.4s;
    animation-name: : dropdown_caret_drop;
    animation-duration: 0.4s;
}

@-webkit-keyframes dropdown_caret {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(180deg);
    }
}

@-webkit-keyframes dropdown_caret_drop {
    from {
        transform: rotate(180deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@-webkit-keyframes dropdown {
    from {
        top: 150%;
        opacity: 0;
    }
    to {
        top: 100%;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        text-align: center;
    }
    .dropdown-menu:before {
        content: "";
        display: none;
        position: absolute;
        top: -11px;
        left: 30px;
        background: url("../img/arrow-orange.png") no-repeat;
        background-size: contain;
        height: 30px;
        width: 30px;
    }
}


/*content css*/

#owl-demo .owl-item>div .banner_head {
    position: absolute;
    top: 35%;
    left: 491px;
    margin-left: -400px;
    margin-top: -100px;
}

#owl-demo .owl-item>div .banner_head .head {
    overflow: hidden;
    position: relative;
    top: -100px;
    height: 0px;
    transform: rotateX(90deg);
}

#owl-demo .owl-item.active>div .banner_head .head {
    -webkit-animation-name: show;
    -webkit-animation-duration: 0.5s;
    animation-name: show;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    height: 140px;
    top: 0px;
    transform: rotateX(0deg);
}

@-webkit-keyframes show {
    from {
        height: 0px;
        transform: rotateX(90deg);
    }
    to {
        height: 140px;
        top: 0px;
        transform: rotateX(0deg);
    }
}

#owl-demo .owl-item>div .banner_head .head h3 {
    font-family: dosis;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 35px;
    line-height: 1.6em;
    color: #2e3038;
    letter-spacing: 3px;
}

#owl-demo .owl-item>div .banner_head .head h4 {
    font-family: raleway;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 27px;
    line-height: 1.6em;
    color: #FFC107;
    letter-spacing: 4px;
    word-spacing: 7px;
    margin-top: -15px;
}

#owl-demo .owl-item>div .banner_head h3 span {
    color: #ff5722;
}

#owl-demo .owl-item>div .banner_head p {
    font-family: raleway;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 1.5em;
    color: #777777;
    margin-top: 13px;
    letter-spacing: 0px;
    width: 42%;
}

#owl-demo .owl-item>div .buttons_pane {
    margin-top: 25px;
}

#owl-demo .owl-item>div .button_down_pane {
    position: absolute;
    bottom: 35px;
    left: 460px;
    margin-left: -400px;
    margin-top: -100px;
    text-align: center;
    width: 100%;
}

#banner {
    position: relative;
    background: url('../img/banner.jpg');
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    /* margin-top: 68px; */
}

/*#banner .overlay {
    background: rgba(255, 255, 255, 0.83);
    padding: 70px;
    padding-top: 30px;
    padding-bottom: 30px;
}*/
#banner .overlay {
    background: rgba(255, 255, 255, 0.83);
    padding: 30px;
    padding-top: 10px;
    padding-bottom: 30px;
}
#banner .topimg {
    width: 100%;
    opacity: 0.8;
    padding: 45px;
    margin-top: 0px;
    text-align: center;
}

#banner .topimg img {
    display: inline-block;
    width: 100%;
    height: auto;
}

#banner .head {
    margin-top: 100px;
    border-left: 1px solid #05304c;
    padding: 10px 0px 10px 10px;
}
/*#banner .head h3 {
    font-family: raleway;
    font-size: 49px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 4px;
    word-spacing: 5px;
}*/
#banner .head h3 {
    font-family: raleway;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 4px;
    word-spacing: 5px;
    margin-bottom: 0px;
    margin-top: 0px;
}
#banner .head h5 {
    font-family: raleway;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 1px;
    word-spacing: 5px;
    margin-top: 0px;
}
#banner .head h5 img {
    width: 20px;
    cursor: pointer;
}
/*#banner .head h4 {
    font-family: raleway;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 23px;
    line-height: 1.5em;
    color: #05304c;
    padding-left: 0;
    letter-spacing: 10px;
    margin-top: 20px;
}*/
#banner .head h4 {
    font-family: raleway;
    font-size: 23px;
    line-height: 1.5em;
    color: #05304c;
    padding-left: 0;
    margin-top: 0px;
    margin-bottom: 0px;
}
#banner .head p {
    font-family: raleway;
    font-weight: 400;
    text-transform: lowercase;
    font-size: 14px;
    line-height: 1.5em;
    color: #05304c;
    padding-left: 0;
    letter-spacing: 2px;
    word-spacing: 5px;
    /*margin-top: 25px;*/
    margin-top: 0px;
}
#banner .head p.fade-text {
    margin-top: 0;
    padding-left: 15px;
    color: #5d5d5d;
}
#banner .scrolldown {
    display: inline-block;
    /* position: absolute; */
    /* margin-top: -50px; */
    margin-left: 0px;
}

#banner .scrolldown p {
    font-family: raleway;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 10px;
    color: #05304c;
    letter-spacing: 7px;
    word-spacing: 5px;
}

#banner .scrolldown .sd_button {
    position: relative;
    background: 0;
    border: 3px solid #ffc107;
    width: 22px;
    height: 32px;
    border-radius: 12px;
}

#banner .scrolldown .sd_button::after {
    display: block;
    content: '';
    position: absolute;
    top: 17px;
    left: 1px;
    background: url('../img/icons/arrow_down.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 14px;
    height: 24px;
}

#banner .scrolldown .sd_button::before {
    display: block;
    content: '';
    position: absolute;
    top: -9px;
    left: 7px;
    width: 3px;
    height: 16px;
    background: #ffc107;
}

#banner .scrolldown .sd_button:focus {
    outline: 0;
}

.wrapper {
    text-align: center;
}

.ultra_big_head {
    display: inline-block;
    margin-top: 45px;
}

.ultra_big_head h4 {
    position: relative;
    font-family: raleway;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    color: #27a1b1;
    letter-spacing: 6px;
    word-spacing: 4px;
    margin: 0;
    text-align: center;
    padding-left: 5px;
    line-height: 1.8em;
}

.ultra_big_head.left h3 {
    margin-left: -18px;
}

.ultra_big_head.negative h3 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.ultra_big_head h3 {
    font-family: raleway;
    font-weight: 800;
    text-transform: capitalize;
    font-size: 32px;
    color: #05304c;
    letter-spacing: 4px;
    word-spacing: 5px;
    margin: 0;
    margin-bottom: 8px;
}

.ultra_big_head h4::before {
    content: '';
    position: absolute;
    display: block;
    top: 7px;
    left: -20px;
    width: 20px;
    height: 2px;
    background: #3aa9b8;
}

.ultra_big_head h4::after {
    content: '';
    position: absolute;
    display: block;
    top: 7px;
    right: -20px;
    width: 20px;
    height: 2px;
    background: #39a9b7;
}

#cta_banner {
    position: relative;
    background: url('../img/cta_banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    min-height: 150px;
    overflow: hidden;
}

#cta_banner .overlay {
    background: rgba(14, 29, 36, 0.8);
    min-height: inherit;
    overflow: hidden;
}

#cta_banner .first_half {
    display: block;
    background: rgb(122, 237, 251);
    min-height: 150px;
    width: 100%;
    transform: skew(-45deg);
    position: relative;
    left: -82px;
    padding-left: 145px;
    padding-right: 45px;
    border-right: 17px solid rgb(0, 171, 193);
}

#cta_banner .first_half .wrapper {
    transform: skew(45deg);
    text-align: left;
}

#cta_banner .head {
    padding: 15px;
}

#cta_banner .head h4 {
    font-family: raleway;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    color: #05304c;
    letter-spacing: 2px;
    word-spacing: 2px;
}

#cta_banner .head h3 {
    margin: 0;
    font-family: raleway;
    font-weight: 300;
    text-transform: capitalize;
    font-size: 23px;
    color: #05304c;
    letter-spacing: 3px;
    padding-top: 9px;
}

#cta_banner .head p {
    margin: 0;
    font-family: open sans;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 13px;
    color: #ffffff;
    letter-spacing: 1px;
    margin-top: 15px;
}

#cta_banner .buttons_pane {
    padding: 30px;
}

#services {
    position: relative;
    margin-top: 60px;
    margin-bottom: 80px;
}

#services .ultra_big_head {
    margin-bottom: 30px;
}

#services .wrapper.item {
    position: relative;
    padding: 25px;
    text-align: left;
}

#services .inner {
    padding: 9px;
    border: 1px solid rgba(5, 48, 76, 0.14);
}

/*#services .icon {
    position: absolute;
    top: 40px;
    display: inline-block;
    width: 45px;
}*/

#services .icon img {
    width: 100%;
    height: auto;
}

/*#services .head {
    padding-left: 55px;
    margin-top: 25px;
    display: inline-block;
    width: 100%;
}*/
#services .head {
    text-align: center;
    margin-top: 25px;
    display: inline-block;
    width: 100%;
}
#services .icon {
    margin: auto;
    width: 50px;
    display: block;
}
#services .head h2 {
    margin: 0;
    font-family: raleway;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 16px;
    color: #05304c;
    letter-spacing: 1px;
}

#services .text {
    position: relative;
    margin-left: 7px;
    margin-top: 15px;
    padding: 15px;
    padding-top: 0;
    display: inline-block;
    width: 100%;
}

#services .text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0%;
    background: #00BCD4;
    transition: all 0.2s ease-in;
}

#services .text::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 2px;
    background: #00BCD4;
    transition: all 0.2s ease-in;
}

#services .wrapper.item:hover .inner {
    cursor: pointer;
}

#services .wrapper.item:hover .inner .text::after {
    height: 100%;
}

#services .wrapper.item:hover .inner .text::before {
    width: 20px;
}

#services .text p {
    margin: 0;
    font-family: raleway;
    font-weight: 400;
    /*text-transform: capitalize;*/
    font-size: 13px;
    color: #05304c;
    letter-spacing: 1px;
}

#about {
    position: relative;
    margin-top: 85px;
}

#about .wrapper {
    text-align: left;
    padding-left: 15px;
    padding-left: 15px;
}

#about .ultra_big_head {
    margin-left: 22px;
    margin-bottom: 35px;
}

#about .text p {
    margin: 0;
    font-family: raleway;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 13px;
    color: #05304c;
    letter-spacing: 1px;
    line-height: 1.7em;
    padding-left: 15px;
    border-left: 2px solid #ffd078;
}

#about .buttons_pane {
    margin-top: 25px;
}

#about .img {
    width: 100%;
    padding: 28px;
    padding-top: 0;
}

#about .infobox {
    margin-top: 45px;
}

#about .infobox .icon {
    display: block;
    text-align: center;
}

#about .infobox .icon img {
    width: 44px;
    height: auto;
    display: inline-block;
}

#about .infobox .text h3 {
    margin: 0;
    font-family: raleway;
    font-weight: 800;
    text-transform: capitalize;
    font-size: 20px;
    color: #05304c;
    letter-spacing: 4px;
    text-align: center;
    margin-top: 10px;
}

#about .infobox .text p {
    border: 0;
    text-align: center;
    font-family: raleway;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 13px;
    color: #05304c;
    letter-spacing: 1px;
    padding-left: 0;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 10px;
}

#openings {
    position: relative;
    margin-top: 45px;
    min-height: 500px;
    background: url(../img/whyus.png);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
#openings .overlay{
  position: relative;
  display: block;
  width:100%;
  min-height:inherit;
  background: rgba(255, 255, 255, 0.64);
  overflow: hidden;
}
#openings .ultra_big_head {
    margin-bottom: 45px;
    margin-left: 20px;
}

#openings .first_half {
    background: #1f3340;
    min-height: 500px;
    /* transform: skew(-15deg); */
    margin-left: -70px;
    position: relative;
    z-index: 1;
    /* overflow: hidden; */
}

#openings .wrapper {
    padding-left: 100px;
    padding-right: 60px;
}

#openings .wrapper.skew {
    /* transform: skew(15deg); */
    padding-left: 135px;
    padding-right: 60px;
    text-align: left;
}

#openings .wrapper.skew.marg_bottom {
    padding-bottom: 35px;
}

#openings .news {
    display: block;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.78);
    cursor: pointer;
    margin-top: 15px;
}

#openings .inner {
    padding: 15px;
}

#openings .text h6 {
    margin: 0;
    font-family: raleway;
    font-size: 14px;
    font-weight: 800;
    text-transform: capitalize;
    color: #05304c;
    text-align: left;
    letter-spacing: 2px;
}

#openings .text p {
    margin: 0;
    font-family: raleway;
    font-size: 12px;
    /*text-transform: capitalize;*/
    color: #05304c;
    text-align: left;
    padding-top: 5px;
}

#openings .news_detail {
    position: relative;
    width: 100%;
    min-height: 300px;
    border: 2px solid rgba(255, 255, 255, 1);
    padding: 30px;
}

#openings .news_detail .text {
    padding-bottom: 45px;
}

#openings .news_detail .text h4 {
    position: relative;
    color: #fff;
    text-align: left;
    font-family: raleway;
    font-size: 14px;
    font-weight: 500;
    /*text-transform: capitalize;*/
    letter-spacing: 1px;
}

#openings .news_detail .text h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 1px;
    background: #fff;
}

#openings .news_detail .text p {
    margin-top: 15px;
    color: #fff;
    font-family: open sans;
    font-size: 12px;
    letter-spacing: 1px;
}

#openings .news_detail .text p::first-letter {
    margin-top: 35px;
    color: #fff;
    font-family: raleway;
    font-size: 35px;
    padding-right: 2px;
}

#openings .buttons_pane {
    position: absolute;
    bottom: 25px;
    width: 100%;
    margin-left: -35px;
}

#openings a {
    position: relative;
    font-family: raleway;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}

#openings a::after {
    content: '';
    position: absolute;
    top: 6px;
    right: -20px;
    width: 0px;
    height: 2px;
    background: #fff;
    transition: all 0.2s ease-in;
}

#openings a::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -22px;
    width: 0px;
    height: 2px;
    background: #fff;
    transition: all 0.2s ease-in;
}

#openings a:hover::before, #openings a:hover::after {
    width: 15px;
}

#contact {
    margin-top: 25px;
}

#contact .buttons_pane {
    margin-top: 20px;
}

#contact .ultra_big_head {
    margin-left: 27px;
}

.input_group {
    margin-top: 5px;
    display: block;
    padding: 3px;
}

.input_group label {
    margin: 0;
    display: block;
    text-align: left;
    font-family: raleway;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

.input_group .input {
    display: block;
    width: 100%;
    background: 0;
    border: 1px solid rgba(52, 52, 52, 0.5);
    padding: 10px;
    text-align: left;
    font-family: raleway;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
}

#contact .wrapper {
    padding-right: 25px;
    padding-left: 25px;
    text-align: left;
}

#contact .number {
    margin-top: 0;
    display: block;
    border: 1px solid #ffd078;
    padding: 19px;
    padding-top: 13px;
    text-align: center;
    margin-top: 30px;
}

#contact .number h3 {
    display: inline-block;
    font-family: lato;
    font-size: 25px;
    font-weight: 400;
    padding-left: 23px;
    letter-spacing: 3px;
}

#contact .number h3 span {
    display: block;
    font-family: lato;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 5px;
    text-transform: capitalize;
    letter-spacing: 0;
    text-align: left;
}

#contact .number .icon {
    display: inline-block;
}

#contact .number .icon img {
    width: 45px;
    margin-top: -10px;
}

#contact .timing h6 {
    font-family: open sans;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 13px;
    color: #05304c;
}

#contact .timing span {
    font-weight: 700;
}

#contact .form {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    box-shadow: 2px 2px 9px -2px rgba(0, 0, 0, 0.15);
    padding: 35px;
    overflow: hidden;
    margin-top: 30px;
}

#contact .form form {
    position: relative;
    z-index: 1;
}

#contact .form::after {
    content: '';
    position: absolute;
    right: -17%;
    bottom: 0;
    width: 67%;
    height: 100%;
    background: rgb(232, 252, 255);
    z-index: 0;
    transform: skew(-34deg);
}

#partners {
    margin-top: 85px;
}

#partners .wrapper {
    text-align: left;
}

#owl-demo3 {
    margin-top: 45px;
}

#owl-demo3 .owl-item>.item img {
    width: 105px;
}

#footer {
    position: relative;
    background: #15545d;
    min-height: 400px;
    margin-top: 125px;
    margin-bottom: 0;
}

#footer .animated_contain {
    position: relative;
    padding-left: 10px;
}

#footer .animated {
    display: inline-block;
    background: url('../img/balloon.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    width: 300px;
    height: 270px;
    margin-top: -88px;
}

#footer .animated::after {
    content: '';
    position: absolute;
    bottom: 48px;
    right: -13px;
    display: block;
    background: url('../img/cloud1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 55px;
    width: 114px;
}

#footer .animated::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 46px;
    display: block;
    background: url('../img/cloud.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 49px;
    width: 75px;
}

#footer .animated span {
    position: relative;
    top: 80px;
    left: 0;
}

#footer .animated span::before {
    content: '';
    position: absolute;
    top: 96px;
    left: 5px;
    display: block;
    background: url('../img/cloud2.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 49px;
    width: 75px;
}

#footer .brand {
    display: block;
    text-align: left;
}

#footer .brand img {
    display: inline-block;
    margin-left: 45px;
    margin-top: 35px;
    width: 158px;
    height: auto;
}

#footer .intro {
    margin-left: 45px;
    margin-top: 15px;
}

#footer .intro p {
    color: rgb(255, 255, 255);
    font-family: open sans;
    font-weight: 300;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 12px;
    width: 80%;
}

#footer_strip {
    background: #032125;
    padding: 10px;
    padding-left: 45px;
    padding-right: 45px;
}

#footer_strip p {
    margin: 0;
    color: #b1c1cc;
    text-transform: capitalize;
    font-family: open sans;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
}

#footer_strip p.right {
    text-align: right;
}

#footer_strip p span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 5px;
    padding-right: 5px;
}

#footer .wrapper {
    padding: 45px;
    padding-left: 22px;
    /* padding-right: 20px; */
    position: relative;
}

#footer .head {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 45px;
}

#footer .head.nomarg {
    margin-bottom: 15px;
}

#footer .head.margtop {
    margin-top: 45px;
    margin-bottom: 0px;
}

#footer .head h6 {
    text-align: left;
    font-family: open sans;
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 17px;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0px;
    margin-bottom: 8px;
}

#footer .head p {
    text-align: left;
    font-family: open sans;
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 12px;
    text-transform: capitalize;
    margin-bottom: 30px;
    letter-spacing: 1px;
    margin-bottom: 0;
    margin-top: 0;
}

#footer .nav ul {
    list-style: none;
    margin-left: -35px;
}

#footer .nav ul li {
    position: relative;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-left: 0px;
    transition: all 0.2s ease-in;
    text-align: left;
}

#footer .nav ul li:hover {
    padding-top: 3px;
    padding-bottom: 3px;
    margin-left: 5px;
}

#footer .nav ul li a {
    color: #cacaca;
    font-family: lato;
    font-size: 13px;
    letter-spacing: 1px;
    text-align: left;
    padding-right: 45px;
}

#footer .infobox {
    margin-top: 25px;
}

#footer .infobox {
    clear: both;
    position: relative;
    width: 100%;
    padding: 15px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
}

#footer .infobox .icon {
    float: left;
    margin-top: -1px;
}

#footer .infobox .icon img {
    width: 23px;
}

#footer .infobox .text {
    margin-left: 35px;
}

#footer .infobox .text p {
    font-family: open sans;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    text-align: left;
}

#footer .input_group {
    position: relative;
}

#footer .input {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid #00b2b6;
    padding: 9px;
    color: rgb(5, 48, 76);
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 13px;
    font-family: open sans;
    background: rgb(255, 255, 255);
    padding-right: 96px;
    box-shadow: inset 2px 4px 6px 1px rgba(0, 0, 0, 0.15);
}

#footer .input:focus {
    outline: 0;
}

#footer .input.submit {
    position: absolute;
    top: 3px;
    right: 3px;
    color: #fff;
    text-transform: uppercase;
    font-family: open sans;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    display: inline-block;
    width: auto;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    background: #1e8895;
    border: 1px solid #1e8895;
    box-shadow: 1px 1px 14px 1px rgba(0, 0, 0, 0.15);
}

#footer .social {
    margin-top: 20px;
    text-align: left;
}

#footer .social .icon:first-child {
    margin-left: 0;
}

#footer .social .icon {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.58);
    width: 35px;
    height: 35px;
    padding: 5px;
    cursor: pointer;
    margin-left: 15px;
    background: #fff;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    box-shadow: 2px 3px 2px 1px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

#footer .social .icon img {
    width: 100%;
    height: auto;
}

#scrolltop {
    position: fixed;
    bottom: 40px;
    background: transparent;
    width: 23px;
    height: 38px;
    border: 2px solid #FFEB3B;
    border-radius: 25px;
    cursor: pointer;
    opacity: 0;
    right: -75px;
    transition: all 0.2s ease-in;
}

#scrolltop.active {
    opacity: 1;
    right: 31px;
}

#scrolltop::after {
    display: block;
    content: '';
    position: absolute;
    top: -13px;
    left: 2px;
    background: url('../img/icons/arrow_up.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 14px;
    height: 24px;
}

#scrolltop::before {
    display: block;
    content: '';
    position: absolute;
    bottom: -8px;
    left: 8px;
    width: 3px;
    height: 16px;
    background: #FFEB3B;
}

.navbar-collapse.in {
    overflow-y: initial;
    padding-bottom: 5px;
}

#chatbox {
    position: fixed;
    bottom: 36px;
    right: -300px;
    width: auto;
    height: auto;
    z-index: 9;
    transition: all 0.2s ease-in;
}

#chatbox.active {
    right: -3px;
}

#chatbox .handle {
    position: relative;
    left: -35px;
    top: 270px;
    width: 36px;
    max-height: 250px;
    background: #fff;
    border: 2px solid rgb(5, 48, 76);
    border-right: 0;
    box-shadow: -1px -1px 5px 0px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: -1;
    overflow: hidden;
}

#chatbox .handle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background:rgb(255, 222, 160);
    transform: skew(-34deg);
    z-index: -1;
}

#chatbox .handle .head {
    display: block;
    width: 100%;
    text-align: center;
}

#chatbox .handle .head h5 {
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: raleway;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#chatbox .handle .head span {
    display: block;
    padding-top: 7px;
}

#chatbox .handle span.word_break {
    margin-top: 20px;
}

#chatbox .chatbox_container {
    position: relative;
    width: 300px;
    height: 400px;
    background: #fff;
    box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.15);
    border: 2px solid rgb(5, 48, 76);
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

#chatbox .chatbox_container span.effect {
    content: '';
    position: absolute;
    right: -17%;
    bottom: 0;
    width: 67%;
    height: 100%;
    background: rgba(255, 247, 178, 0.52);
    z-index: -1;
    transform: skew(-45deg);
}

#chatbox .chatbox_container::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 2px;
    height: 30px;
    background: rgb(5, 48, 76);
}

#chatbox .chatbox_container::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 2px;
    height: 62px;
    background: rgb(5, 48, 76);
}

#chatbox .wrapper {
    position: relative;
    text-align: left;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#chatbox .chatbox_container .upper_effect {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
    background: #564f70;
    z-index: 1;
}

#chatbox .chatbox_container .avatar {
    position: relative;
    top: 2px;
    left: 5px;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: url('../img/avatar.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
}

#chatbox .chatbox_container .name {
  display: inline-block;
  position: relative;
  top: -7px;
  padding-left: 15px;
}
#chatbox .chatbox_container .name h3 {
  margin: 0;
  font-family: raleway;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 3px;
  color: #fff;
}
#chatbox .chatbox_container .name h3 span {
  margin: 0;
  padding-top: 4px;
  display: block;
  font-family: open sans;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}
#chatbox .chatbox_container .chatbox_inner{
  position: relative;
  padding: 15px;
  overflow: auto;
  height: 270px;
}
#chatbox .chatbox_container .intro p {
  margin: 0;
  padding-top: 4px;
  display: block;
  font-family: open sans;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  color: #a9a9a9;
}
#chatbox .chatbox_container .messages{
  padding-top: 15px;
}
#chatbox .chatbox_container .messages .item{
  margin-top: 18px;
}
#chatbox .chatbox_container .messages .item.user{
  border: 1px solid rgba(0, 0, 0, 0.13);
  background: #6c7277;
  padding: 6px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 38px;
  border-radius: 20px;
  border-bottom-right-radius: 0px;
  box-shadow: -3px 3px 10px -2px rgba(0, 0, 0, 0.15);
}
#chatbox .chatbox_container .messages .item.representative{
  border: 1px solid rgba(0, 0, 0, 0.13);
  background: #fff;
  padding: 6px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 38px;
  border-radius: 20px;
  border-bottom-left-radius: 0px;
  box-shadow: -3px 3px 10px -2px rgba(0, 0, 0, 0.15);
}
#chatbox .chatbox_container .messages .item.user p,#chatbox .chatbox_container .messages .item.representative p{
  font-family: open sans;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  color: #fff;
  line-height: 1.4em;
  margin: 0;
}
#chatbox .chatbox_container .messages .item.representative p{
  color: #60676d;
}
#chatbox .chatbox_container .messages .user_name,#chatbox .chatbox_container .messages .representative_name{
  text-align: right;
  text-align: right;
  letter-spacing: 1px;
  font-family: raleway;
  font-size: 11px;
  text-transform: capitalize;
  font-weight: 500;
  color: #6f777b;
}
#chatbox .chatbox_container .messages .representative_name{
  text-align: left;
}
#chatbox .chatbox_container .chatbox_form .input{
  width: 100%;
  height: 62px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding-top:0
  font-family: open sans;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  padding: 10px;
  padding-top: 5px;
}
#chatbox .chatbox_container .chatbox_form .input:focus{
  outline: 0;
}
#chatbox .chatbox_container .upper_effect .largeit{
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  background: #fff;
  width: 8px;
  height: 8px;
  cursor: pointer;
}
#chatbox .chatbox_container .upper_effect .largeit::after{
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 1);
  border-left:0;
  border-bottom:0;
  transition: all 0.2s ease-in;
}
#chatbox .chatbox_container .upper_effect .largeit::before{
  content: '';
  position: absolute;
  bottom: -6px;
  left: -6px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 1);
  border-right:0;
  border-top:0;
  transition: all 0.2s ease-in;
}
#chatbox .chatbox_container .upper_effect .largeit:hover::after{
  top: -8px;
  right: -8px;
  width: 10px;
  height: 10px;
}
#chatbox .chatbox_container .upper_effect .largeit:hover::before{
  bottom: -8px;
  left: -8px;
  width: 10px;
  height: 10px;
}

#overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 0%;
    background: rgba(0, 0, 0, 1);
    opacity: 0;
    transition: all 0.2s ease-in;
    opacity: 0;
    display: none;
}

#overlay.active {
    width: 100%;
    display: none;
    opacity: 0.3;
    z-index: 1;
}
.tr {
    height: 110%;
    padding-left: 70px;
    position: absolute;
    top: -13px;
    right: -70px;
    overflow: hidden;
    transform: rotate(0);
    z-index: 1;
}
.tr:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1f3340;
    transform-origin: 100% 0;
    transform: rotate(7deg);
}
#banner_small {
    position: relative;
    width: 100%;
    min-height: 230px;
    background: url('../img/banner.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

#banner_small .overlay {
    position: relative;
    width: 100%;
    min-height: inherit;
    background: rgba(255, 254, 251, 0.78);
    text-align: left;
    padding: 0px;
    border-bottom: 6px solid #82ccfe;
}

#banner_small .overlay span.triangle1::before, #banner_small .overlay span.triangle1::after, #banner_small .overlay span.triangle2::before, #banner_small .overlay span.triangle2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-radius: 0;
    background: 0;
    transform: rotate(90deg);
}

#banner_small .overlay span.triangle1::before {
    border-width: 0 0 160px 160px;
    border-color: transparent transparent #2b8dcc transparent;
}

#banner_small .overlay span.triangle1::after {
    border-width: 0 0 140px 140px;
    border-color: transparent transparent #40677f transparent;
}

#banner_small .overlay span.triangle2::before {
    border-width: 0 0 120px 120px;
    border-color: transparent transparent #36acf9 transparent;
}

#banner_small .overlay span.triangle2::after {
    border-width: 0 0 100px 100px;
    border-color: transparent transparent #82ccfe transparent;
}

#banner_small .head {
    display: block;
    background: rgba(50, 116, 146, 0.52);
    padding: 20px;
    padding-left: 155px;
    padding-right: 155px;
    position: absolute;
    margin-left: 0px;
    opacity: 1;
    bottom: 0px;
    left: 0;
    max-width: 100%;
    border-top-right-radius: 15px;
    animation-name: small_head;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.10, 0.20, 0.30, 0.50);
}

@keyframes small_head {
    from {
        margin-left: -150px;
        opacity: 0;
        transform: skew(5deg);
    }
    to {
        margin-left: 0px;
        opacity: 1;
        transform: skew(0deg);
    }
}

#banner_small .head .wrapper {
    text-align: left;
}

#banner_small .head h3 {
    margin: 0;
    font-family: raleway;
    font-weight: 200;
    font;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgb(255, 254, 251);
}

#banner_small .head h4 {
    font-family: open sans;
    text-align: left;
    font-size: 12px;
    letter-spacing: 4px;
    color: #ffffff;
    margin-top: 8px;
    transform: skew(0deg);
    border-top: 1px solid rgba(255, 254, 251, 0.95);
    padding-top: 8px;
    text-transform: capitalize;
    display: inline-block;
    text-align: center;
    line-height: 1.8em;
}
#contact .map {
    width: 100%;
    height: 412px;
    padding: 20px;
}

#contact .map iframe {
    width: 100%;
    height: 100%;
}
.map_add h3 {
    font-family: raleway;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4D5664;
}

.map_add {
    padding-bottom: 20px;
}

.map_icon {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
}

.map_icon img {
    height: 25px;
    width: 25px;
}

.map_icon p {
    display: inline-block;
    padding-left: 20px;
    font-family: open sans;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
}

.space-h-xs.item {
    height: 105px;
}

.middle-align-helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}