/*--------------------------------------------------------------
>>> GLOBAL - TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Typography
2.0 Elements
3.0 Header
4.0 Content
5.0 Footer
6.0 Custom masonry style
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Typography
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Abhaya+Libre:400,700|Open+Sans:300,300i,400,400i,700,900');

@font-face {
    font-family: 'MinionPro';
    src: url('../fonts/MinionPro/MinionPro.otf');
}

@font-face {
    font-family: 'MinionProBold';
    src: url('../fonts/MinionPro/MinionProBold.otf');
}

@font-face {
    font-family: 'MinionProItalic';
    src: url('../fonts/MinionPro/MinionProItalic.otf');
}

body {
    font: 14px/1.55 'Open Sans', Arial, sans-serif;
    color: #231f20;
    overflow-x: hidden;
    margin: 0;
    background: #f7f9fa;
    min-width: 320px;
    position: relative;
    transition: right 0.2s ease;
    right: 0;
}

body.body_move {
    right: 260px;
    overflow: hidden;
}

body.none-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Abhaya Libre', serif;
    line-height: 1;
    margin: 0 0 15px;
    text-transform: uppercase;
}

h1 {
    font-family: 'MinionPro', serif;
    font-size: 72px;
    color: #3a5661;
    margin-bottom: 30px;
}

h1 .mark {
    padding: 0;
    background: 0;
    font-size: 46px;
    color: #4588b8;
}

h2 {
    font-size: 72px;
    color: #4588b8;
    margin-bottom: 35px;
}

h3 {
    font-size: 36px;
    color: #4588b8;
    margin-bottom: 25px;
}

h4 {
    font-size: 24px;
    letter-spacing: 20px;
    color: #7b7c7c;
    margin-bottom: 45px;
}

h5 {

}

h6 {
    font-size: 20px;
    color: #7b7c7c;
    margin: 0;
}

p {
    margin-bottom: 10px;
}

a {
    color: #000;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #72a8ec;
}

b, strong {

}

span {

}

ul {
    padding-left: 20px;
}

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

/* Large devices (large desktops, 1200px and below) */
@media (max-width: 1199px) {

    h1 {
        font-size: 58px;
        margin-bottom: 25px;
    }

    h1 .mark {
        font-size: 40px;
    }

    h2 {
        font-size: 58px;
        margin-bottom: 30px;
    }

    h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    h4 {
        font-size: 22px;
        letter-spacing: 16px;
        margin-bottom: 35px;
    }
}

/* Medium devices (tablets, 991px and below) */
@media (max-width: 991px) {
    h1 {
        font-size: 46px;
        margin-bottom: 20px;
    }

    h1 .mark {
        font-size: 34px;
    }

    h2 {
        font-size: 44px;
        margin-bottom: 25px;
    }

    h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    h4 {
        font-size: 20px;
        letter-spacing: 12px;
        margin-bottom: 25px;
    }
}

/* Small devices (mobile, 768px and below) */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    h1 .mark {
        font-size: 24px;
    }

    h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    h4 {
        letter-spacing: 10px;
    }
}

/*--------------------------------------------------------------
2.0 Elements
--------------------------------------------------------------*/

img {
    max-width: 100%;
}

img.size-full {
    width: auto;
    height: auto;
}

img.alignnone {
    margin: 0;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.slick-slider *, .slick-slider *:focus {
    outline: none;
}

input[type="text"],
input[type="search"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[typ="password"] {
    background: #fff;
    border: 1px solid #3a5661;
    border-radius: 0;
    font-size: 14px;
    line-height: 18px;
    height: 49px;
    padding: 10px 15px;
    box-sizing: border-box;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    color: #7b7c7c;
}

input::-webkit-input-placeholder {
    font-family: 'Open Sans', sans-serif;
    color: #7b7c7c;
}

input::-moz-placeholder {
    font-family: 'Open Sans', sans-serif;
    color: #7b7c7c;
}

input:-moz-placeholder {
    font-family: 'Open Sans', sans-serif;
    color: #7b7c7c;
}

input:-ms-input-placeholder {
    font-family: 'Open Sans', sans-serif;
    color: #7b7c7c;
}

input::-webkit-input-placeholder {
    opacity: 1;
    transition: opacity 0.4s ease;
}

input::-moz-placeholder {
    opacity: 1;
    transition: opacity 0.4s ease;
}

input:-moz-placeholder {
    opacity: 1;
    transition: opacity 0.4s ease;
}

input:-ms-input-placeholder {
    opacity: 1;
    transition: opacity 0.4s ease;
}

input:focus::-webkit-input-placeholder {
    opacity: 0;
}

input:focus::-moz-placeholder {
    opacity: 0;
}

input:focus:-moz-placeholder {
    opacity: 0;
}

input:focus:-ms-input-placeholder {
    opacity: 0;
}

textarea {
    background: #fff;
    border: 1px solid #3a5661;
    border-radius: 0;
    font-size: 14px;
    line-height: 18px;
    padding: 15px;
    box-sizing: border-box;
    width: 100%;
    height: 150px;
    resize: none;
    display: block;
    font-family: 'Open Sans', sans-serif;
    color: #7b7c7c;
}

textarea::-webkit-input-placeholder {
    font-family: 'Open Sans', sans-serif;
    color: #7b7c7c;
}

textarea::-moz-placeholder {
    font-family: 'Open Sans', sans-serif;
    color: #7b7c7c;
}

textarea:-moz-placeholder {
    font-family: 'Open Sans', sans-serif;
    color: #7b7c7c;
}

textarea:-ms-input-placeholder {
    font-family: 'Open Sans', sans-serif;
    color: #7b7c7c;
}

textarea::-webkit-input-placeholder {
    opacity: 1;
    transition: opacity 0.4s ease;
}

textarea::-moz-placeholder {
    opacity: 1;
    transition: opacity 0.4s ease;
}

textarea:-moz-placeholder {
    opacity: 1;
    transition: opacity 0.4s ease;
}

textarea:-ms-input-placeholder {
    opacity: 1;
    transition: opacity 0.4s ease;
}

textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}

textarea:focus::-moz-placeholder {
    opacity: 0;
}

textarea:focus:-moz-placeholder {
    opacity: 0;
}

textarea:focus:-ms-input-placeholder {
    opacity: 0;
}

.wpcf7-form-control-wrap {
    display: block;
    margin: 0 0 15px;
}

label {
    cursor: pointer;
    font-weight: normal;
}

.btn, input[type="submit"] {
    color: #4588b8;
    background: none;
    border: 1px solid #506973;
    border-radius: 0;
    outline: none;
    display: inline-block;
    vertical-align: top;
    padding: 14px 15px 12px;
    font-family: 'MinionPro', serif;
    font-size: 20px;
    text-transform: uppercase;
    white-space: normal;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    position: relative;
    min-width: 200px;
    margin: 1px;
}

.btn:before, input[type="submit"]:before, .btn:after, input[type="submit"]:after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 35px;
    height: 35px;
    border: 3px solid #3a5661;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.btn:hover:before, input[type="submit"]:hover:before, .btn:hover:after, input[type="submit"]:hover:after {
    width: 25px;
    height: 25px;
}

.btn:before, input[type="submit"]:before {
    left: -2px;
    top: -2px;
    border-bottom: none;
    border-right: none;
}

.btn:after, input[type="submit"]:after {
    bottom: -2px;
    right: -2px;
    border-top: none;
    border-left: none;
}

.btn:hover, input[type="submit"]:hover {
    color: #3a5661;
}

.btn.sm {
    min-width: 0;
    padding: 4px 10px;
    border: none;
    margin: 0 1px 1px 0;
}

.btn.more-home:after {
    height: 184px;
    right: -4px;
}

.btn.more-home:hover:after {
    height: 25px;
}

.info-slider .slick-list {
    overflow: visible;
    position: relative;
}

.info-slider .slick-list:after {
    clear: both;
    content: '';
    display: block;
}

.btn.sm:before {
    display: none;
}

.text-light {
    color: #b1aaac;
}

.custom-table {
    display: table;
    height: 100%;
    width: 100%;
}

.custom-table-row {
    display: table-cell;
    vertical-align: middle;
}

.indent-block {
    padding: 35px 0;
}

.text-group {
    margin-bottom: 50px;
}

.bottom-indent-el.lg {
    margin-bottom: 110px;
}

.bottom-indent-el.md {
    margin-bottom: 60px;
}

.bottom-indent-el.sm {
    margin-bottom: 40px;
}

body.page-template-template-services {
    font-size: 15px;
}

.tab-content .tab-item {
    display: none;
}

.tab-content .tab-item.active {
    display: block;
}

/* Large devices (large desktops, 1200px and below) */
@media (max-width: 1199px) {
    .indent-block {
        padding: 30px 0;
    }

    .text-group {
        margin-bottom: 40px;
    }

    .bottom-indent-el.lg {
        margin-bottom: 80px;
    }

    .bottom-indent-el.md {
        margin-bottom: 45px;
    }

    .bottom-indent-el.sm {
        margin-bottom: 30px;
    }

    .btn.more-home:after {
        height: 175px;
    }
}

/* Medium devices (tablets, 991px and below) */
@media (max-width: 991px) {
    .indent-block {
        padding: 20px 0;
    }

    .text-group {
        margin-bottom: 30px;
    }

    .bottom-indent-el.lg {
        margin-bottom: 45px;
    }

    .bottom-indent-el.md {
        margin-bottom: 35px;
    }

    .bottom-indent-el.sm {
        margin-bottom: 25px;
    }

    .btn.more-home:after {
        height: 200px;
    }
}

/* Small devices (mobile, 768px and below) */
@media (max-width: 768px) {
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-xs-1,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9 {
        margin-bottom: 15px;
    }

    .indent-block {
        padding: 15px 0;
    }

    .text-group {
        margin-bottom: 20px;
    }

    .btn, input[type="submit"] {
        border: 1px solid #506973;
        padding: 10px 15px 8px;
        font-size: 16px;
        min-width: 150px;
    }

    .bottom-indent-el.lg {
        margin-bottom: 30px;
    }

    .bottom-indent-el.md {
        margin-bottom: 25px;
    }

    .bottom-indent-el.sm {
        margin-bottom: 15px;
    }

    .btn.sm:after {
        border-width: 2px;
    }
}

/*--------------------------------------------------------------
3.0 Header
--------------------------------------------------------------*/
.site-header {
    padding: 5px 0 15px 0;
}

.home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.site-header .logo {
    display: inline-block;
    vertical-align: top;
    margin-right: 90px;
    width: 125px;
    height: 100px;
}

.site-header .logo img {
    width: 100%;
}

.site-nav {
    display: inline-block;
    vertical-align: top;
}

.site-nav ul {
    list-style: none;
    margin: 0;
}

.site-nav .menu {
    font-family: 'Abhaya Libre', serif;
    font-weight: normal;
    padding: 30px 0 0;
    font-size: 16px;
}

.site-nav .menu > li {
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    position: relative;
}

.site-nav .menu > li:not(:last-child) {
    margin-right: 30px;
}

.site-nav .menu > li:hover .sub-menu {
    display: block;
}

.site-nav .menu a {
    color: #3a5560;
}

.site-nav .menu > .current-menu-item > a,
.site-nav .menu .current-menu-ancestor > a,
.site-nav .menu a:hover,
.site-nav .menu a:focus {
    color: #a7a7a7;
}

.site-nav .menu > .menu-item-has-children:hover:after{
    content: '';
    position: absolute;
    top: 45px;
    left: -20px;
    right: -20px;
    height: 20px;
    display: block;
}

.site-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 3; /*Forces to be top*/
    list-style: none;
    margin: 0;
    padding: 15px 0 0;
    width: auto;
    min-width: 150%;
    font-size: 16px;
    text-transform: none;
}

.site-nav .sub-menu:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #4588b8;
    z-index: 2;
}

.site-nav .sub-menu:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    margin-left: -6px;
    border-top: none;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #4588b8;
    border-left: 6px solid transparent;
}

.site-nav .sub-menu > li {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #eff0f1;
    transition: background .3s linear;
    -webkit-transition: background .3s linear;
}

.site-nav .sub-menu li:hover {
    background: #d7d8dc;
}

.site-nav .sub-menu a {
    display: block;
    padding: 7px 10px;
}

.site-nav .sub-menu li:not(:last-child) {
    margin-bottom: 3px;
}

.site-header .social-list {
    float: right;
    padding: 20px 0 0;
    font-size: 22px;
    margin: 0;
}

.site-header .social-list li {
    display: inline-block;
    vertical-align: middle;
}

.site-header .social-list li:not(:last-child) {
    margin-right: 20px;
}

.site-header .social-list a {
    color: #0079c2;
}

.site-header .opener {
    display: none;
    width: 30px;
    margin: 0;
    cursor: pointer;
}

.site-header .opener span {
    width: 100%;
    height: 4px;
    margin-bottom: 5px;
    background: #758896;
    display: block;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.site-header .opener.active span {
    background: #a93232;
}

.site-header .opener.active span:last-child {
    transform: translate3d(4px, -4px, 0) rotate(-45deg);
}

.site-header .opener.active span:first-child {
    transform: translate3d(4px, 5px, 0) rotate(45deg);
}

.site-header .opener.active span:nth-child(2n) {
    display: none;
}

.onload-block {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 105;
    background: #fff;
}

.preloader {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -5px;
    z-index: 2;
}

/* Large devices (large desktops, 1200px and below) */
@media (max-width: 1199px) {
    .site-header .logo {
        margin-right: 82px;
    }
}

/* Medium devices (tablets, 991px and below) */
@media (max-width: 991px) {
    .site-header .logo {
        margin-right: 35px;
        width: 100px;
    }

    .site-nav .menu {
        padding-top: 20px;
    }

    .site-nav .menu > li:not(:last-child) {
        margin-right: 20px;
    }

    .site-header .social-list {
        padding-top: 13px;
        font-size: 20px;
    }

    .site-header .opener {
        display: block;
        margin: 20px 0 0 25px;
    }

    .site-header .logo {
        margin-right: 0;
        width: 85px;
        height: 69px;
    }

    .site-nav {
        display: block;
        position: fixed;
        overflow-y: scroll;
        width: 260px;
        right: -260px;
        top: 0;
        bottom: 0;
        /*background: #d4d4d4;*/
        transition: right 0.2s ease;
        text-transform: uppercase;
        z-index: 10;
    }

    .site-nav.active {
        right: 0;
    }

    .site-nav .menu {
        padding: 0;
    }

    .site-nav .menu a {
        color: #0079c2;
    }

    .site-nav .menu .sub-menu {
        padding: 0 0 0 30px;
        text-transform: none;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        min-width: 0;
        display: block !important;
        position: static;
        background: transparent;
        margin-top: -5px;
    }

    .site-nav .menu .sub-menu li {
        background: transparent;
        text-align: left;
    }

    .site-nav .sub-menu:after, .site-nav .sub-menu:before {
        display: none;
    }

    .site-nav .menu > li {
        /*border-top: 1px solid #1a1a1a;*/
        border-bottom: 1px solid #4588b8;
        padding: 0;
        display: block;
        margin: 0;
    }

    .site-nav .menu > li:not(:last-child) {
        margin-right: 0;
    }

    .site-nav .menu > li > a {
        padding: 5px 15px;
        display: block;
        text-align: left;
        border: none;
    }

    .site-nav .sub-menu li > a {
        color: #4588b8;
    }

    .site-nav .sub-menu .sub-menu {
        display: none;
    }
}

/* Small devices (mobile, 768px and below) */
@media (max-width: 768px) {

    /* new fox for titles */
    .description-box .decor-title p, .decor-title p {
        line-height: 27px;

    }
}

/*--------------------------------------------------------------
4.0 Content
--------------------------------------------------------------*/
.main {
    overflow: hidden;
}

.date-list-holder {
    max-width: 100%;
    text-align: center;
}

.date-list {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    list-style: none;
    padding: 0 8px;
    margin: 23px 0 25px 0;
    color: #7b7c7c;
    border-top: 1px solid #dcdedf;
    font-size: 0;
    line-height: 0;
    letter-spacing: -4px;
}

.date-list li {
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: normal;
    position: relative;
    padding-top: 10px;
    min-width: 95px;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

.date-list li:last-child {
    min-width: 0;
}

.date-list li:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #1c303e;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

.date-list > .active {
    padding-top: 26px;
}

.date-list > .active:before {
    width: 45px;
    height: 45px;
    top: -23px;
}

.date-list .time {
    float: left;
    display: block;
    font-size: 20px;
    width: 46px;
    text-align: center;
    font-family: 'Abhaya Libre', serif;
    cursor: pointer;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

.date-list .time:hover, .date-list .active .time {
    color: #f51010;
}

.date-list .content-box {
    overflow: hidden;
    padding: 15px 10px 0 20px;
    max-width: 270px;
    min-width: 240px;
    display: none;
}

.address p {
    margin: 0;
}

.address p a {
    color: #231f20;
}

.map-holder {
    position: relative;
    padding: 80px 0 0;
}

.map-holder iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.m-grid {
    margin: 0 -15px;
}

.grid-item {
    overflow: hidden;
    width: 100%;
    padding: 0 15px 50px;
}

.grid-item.half-box, .half-box {
    width: 50%;
}

.inner-box {
    float: left;
    max-width: 570px;
}

.m-grid h3 {
    text-transform: none;
    margin: 20px 0;
}

.decor-shadow {
    position: relative;
}

.decor-shadow:before {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    z-index: -1;
    background: #ebeced;
}
.decor-shadow:after{
    content: '';
    position: absolute;
    z-index: 10;
    background-image: url('../img/watermark.png');
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: center center;
}
.right-bottom {
    margin: 0 30px 30px 0;
}

.right-bottom:before {
    bottom: -30px;
    right: -30px;
}

.left-top {
    margin: 30px 0 0 30px;
}

.left-top:before {
    left: -30px;
    top: -30px;
}

.top-right {
    margin: 30px 30px 0 0;
}

.top-right:before {
    right: -30px;
    top: -30px;
}

.bottom-left {
    margin: 0 0 30px 30px;
}

.bottom-left:before {
    left: -30px;
    bottom: -30px;
}

.slider-holder {
    padding: 90px 0;
    position: relative;
    background: #eff0f1;
}

.slider-holder:before, .slider-holder:after {
    content: "";
    position: absolute;
    width: 9999px;
    height: 100%;
    background: #eff0f1;
    top: 0;
    z-index: 2;
}

.slider-holder:before {
    right: 100%;
}

.slider-holder:after {
    left: 100%;
}

.decor-title {
    font-size: 60px;
    font-family: 'Abhaya Libre', serif;
    color: #4588b8;
    text-transform: uppercase;
    line-height: .7;
    overflow: hidden;
}

.decor-title span {
    display: inline-block;
    vertical-align: top;
    font-size: 36px;
    color: #3a5560;
    position: relative;
    margin-top: 5px;
}

.decor-title span:before {
    content: "";
    position: absolute;
    top: -1px;
    margin-right: 10px;
    right: 100%;
    width: 100%;
    height: 22px;
    background: #3a5560;
}

.decor-title.rotate {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateX(-100%) rotate(-90deg);
    -webkit-transform-origin: right top;
    transform: translateX(-100%) rotate(-90deg);
    transform-origin: right top;
    float: left;
}

.description-box .decor-title p, .decor-title p {
    white-space: nowrap;
    margin-bottom: 5px;
}

.scroll-slider {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-family: 'MinionPro', serif;
    white-space: nowrap;
}

.scroll-slider-holder:after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 100%;
    width: 9999px;
    height: 2px;
    background: #0b354b;
    margin-left: -16px;
    z-index: 3;
}

.scroll-slider li {
    display: inline-block;
    vertical-align: top;
    width: 270px;
    white-space: normal;
}

.scroll-slider li a, .scroll-slider li span {
    color: #4588b8;
}

.scroll-slider li:not(:last-child) {
    margin-right: 80px;
}

.scroll-slider .img-box {
    background: center center no-repeat;
    background-size: cover;
    height: 265px;
    margin-bottom: 30px;
}

.scroll-slider-holder .mCSB_scrollTools {
    opacity: 1 !important;
}

.scroll-slider-holder .mCSB_scrollTools .mCSB_dragger {
    width: 144px !important;
}

.scroll-slider-holder .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    height: 6px !important;
    background: #0b354b !important;
    border-radius: 0;
    top: -1px;
    margin: 6px 12px;
    width: 120px !important;
}

.scroll-slider-holder .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:before, .scroll-slider-holder .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: -2px;
    width: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.scroll-slider-holder .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:before {
    border-right: 6px solid #0b354b;
    border-left: none;
    left: -13px;
}

.scroll-slider-holder .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:after {
    border-left: 6px solid #0b354b;
    border-right: none;
    right: -13px;
}

.scroll-slider-holder .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:hover, .scroll-slider-holder .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background: #0b354b !important;
}

.scroll-slider-holder .mCSB_draggerContainer .mCSB_draggerRail {
    background: #0b354b !important;
}

.description-box p {
    margin-bottom: 30px;
}

.search-form label {
    width: 100%;
    max-width: 450px;
}

.search-form .search-field {

}

.search-form .search-submit {
    margin: 0;
    padding: 12px 15px 11px;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-list li {
    position: relative;
}

.project-list > li:not(:last-child) {
    margin-bottom: 75px;
}

.project-list > li:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7%;
    width: 100%;
    height: 45%;
    background: #eff0f1;
    z-index: -2;
}

.project-list .container {
    position: relative;
}

.project-list .main-img-holder {
    position: relative;
    padding-bottom: 60%;
}

.project-list .main-img-holder .img-box {
    background: center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.project-list h4 {
    color: #4588b8;
    letter-spacing: normal;
    margin-bottom: 20px;
}

.project-list .img-list {
    list-style: none;
    padding: 0;
    margin: 0 -7px;
    max-height: 278px;
}

.project-list .project-info {
    margin-bottom: 25px;
}

.project-list .project-info h5{
    font-size: 18px;
}

.project-list .img-list li {
    float: left;
    padding: 0 7px;
    margin-bottom: 14px;
    width: 33.33%;
}

.project-list .img-list li a {
    background: center center no-repeat;
    background-size: cover;
    height: 125px;
    display: block;
    position: relative;
}

.project-list .img-list li:hover a {
    opacity: .55;
}

.project-list .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical, .project-list .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical {
    right: -10px;
}

.banner-list {
    list-style: none;
    margin: 0 -1.5%;
    padding: 0;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.banner-list li {
    /*width: 47%;*/
    width: 22%;
    /*padding: 0 30px 20px 0;*/
    padding: 0 18px 18px 0;
    margin: 0 1.5% 20px;
    position: relative;
}

.banner-list li:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 95%;
    height: 95%;
    z-index: -1;
    background: #eff0f1;
}

.banner-list li img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.scheme-block {
    position: relative;
    padding-top: 30px;
    margin-bottom: 100px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.scheme-block:before, .scheme-block:after {
    content: "";
    position: absolute;
    top: 0;
    width: 9999px;
    height: 165px;
    max-height: 100%;
    background: #eff0f1;
    z-index: -2;
}

.scheme-block:before {
    left: 50%;
}

.scheme-block:after {
    right: 50%;
}

.scheme-block .content-box {
    width: 50%;
}

.scheme-block h5 {
    display: inline-block;
    vertical-align: top;
    font-size: 70px;
    line-height: .75;
    margin-bottom: 25px;
    color: #4588b8;
    padding: 0 16.66666667% 0 0;
}

.scheme-block h5 span {
    display: block;
    text-align: center;
    font-size: 46px;
}

.scheme-block .img-box {
    position: relative;
    z-index: 2;
    background: #e1e3e4;
}

.scheme-block .img-box img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.scheme-block .img-box .zoom-btn {
    background: rgba(69, 136, 184, .45);
    display: inline-block;
    vertical-align: top;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-100%, -100%);
    -webkit-transform: translate(-100%, -100%);
    z-index: 2;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 15px;
    text-align: center;
    color: #fff;
    opacity: 0;
}

.scheme-block .img-box .zoom-btn .plus {
    display: block;
    font-size: 25px;
    font-weight: bold;
    line-height: .7;
}

.scheme-block .img-box:hover .zoom-btn:hover {
    background: rgba(69, 136, 184, .7);
}

.scheme-block .img-box:hover .zoom-btn {
    opacity: 1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.scheme-block .img-box:hover {
    z-index: 3;
}

.scheme-block .out-box {
    margin-top: -50px;
    width: 50%;
}

.scheme-block .out-box .img-box {
    margin: 0 0 0 -16.66666667%;
}

.scheme-block .out-box .img-box img {
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .15);
}

/* even scheme-block styles */
.scheme-block:nth-child(odd) .content-box {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    text-align: right;
}

.scheme-block:nth-child(odd) .out-box .img-box {
    margin: 0 -16.66666667% 0 0;
}

.scheme-block:nth-child(odd) h5 {
    padding: 0 0 0 16.66666667%;
}

/* even scheme-block styles  - END*/

.service-box {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 80px;
}

.service-box:not(:last-child) {
    margin-bottom: 160px;
}

.service-box .img-box {
    position: relative;
    width: 25%;
    margin: -15px 8.33333333% 0 0;
}

.service-box .img-box img {
    width: 100%;
}

.service-box:nth-child(even) .img-box {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin: -15px 0 0 8.33333333%;
}

.service-box .img-box:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 70%;
    height: 70%;
    background: #f1f1f1;
}

.service-box:nth-child(odd) .img-box:before {
    bottom: -40px;
    right: -40px;
}

.service-box:nth-child(even) .img-box:before {
    top: -40px;
    left: -40px;
}

.service-box .content {
    width: 66.66666667%;
}

.service-box h3 {
    font-size: 70px;
    line-height: .8;
}

.service-box:nth-child(odd) h3 {
    margin-left: -8.33333333%;
}

.service-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-box ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.service-box ul li:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    z-index: 2;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
}
.columns{
    columns: 2;
}
/* Large devices (large desktops, 1200px and below) */
@media (max-width: 1199px) {
    .slider-holder {
        padding: 75px 0;
    }

    .decor-title {
        font-size: 50px;
    }

    .decor-title span {
        font-size: 32px;
    }

    .scroll-slider .img-box {
        height: 220px;
        margin-bottom: 20px;
    }

    .scroll-slider li {
        width: 220px;
    }

    .scroll-slider li:not(:last-child) {
        margin-right: 55px;
    }

    .grid-item {
        padding-bottom: 35px;
    }

    .inner-box {
        max-width: 470px;
    }

    .m-grid h3 {
        margin: 15px 0;
    }

    .project-list > li:not(:last-child) {
        margin-bottom: 40px;
    }

    .project-list .img-list {
        max-height: 254px;
    }

    .project-list .img-list li {
        width: 50%;
    }

    .project-list .img-list li a {
        height: 120px;
    }

    .project-list .project-info {
        margin-bottom: 20px;
    }

    .scheme-block {
        margin-bottom: 60px;
        padding-top: 20px;
    }

    .scheme-block h5 {
        font-size: 56px;
        margin-bottom: 20px;
    }

    .scheme-block h5 span {
        font-size: 42px;
    }

    .scheme-block .out-box {
        margin-top: -40px;
    }

    .scheme-block:before, .scheme-block:after {
        height: 140px;
    }

    .service-box:not(:last-child) {
        margin-bottom: 100px;
    }

    .service-box h3 {
        font-size: 56px;
    }

    .service-box:nth-child(odd) .img-box:before {
        bottom: -30px;
        right: -30px;
    }

    .service-box:nth-child(even) .img-box:before {
        top: -30px;
        left: -30px;
    }
}

/* Medium devices (tablets, 991px and below) */
@media (max-width: 991px) {
    .service-box{
        padding-top: 0;
    }
    .decor-title {
        font-size: 44px;
    }

    .decor-title span {
        font-size: 28px;
    }

    .decor-title span:before {
        height: 18px;
    }

    .right-bottom {
        margin: 0 15px 15px 0;
    }

    .right-bottom:before {
        bottom: -15px;
        right: -15px;
    }

    .top-right {
        margin: 15px 15px 0 0;
    }

    .top-right:before {
        right: -15px;
        top: -15px;
    }

    .left-top {
        margin: 15px 0 0 15px;
    }

    .left-top:before {
        left: -15px;
        top: -15px;
    }

    .bottom-left {
        margin: 0 0 15px 15px;
    }

    .bottom-left:before {
        left: -15px;
        bottom: -15px;
    }

    .grid-item {
        padding-bottom: 25px;
    }

    .inner-box {
        max-width: 360px;
    }

    .m-grid h3 {
        margin: 10px 0;
    }

    .inner-box.half-box {
        width: 100%;
    }

    .slider-holder {
        padding: 50px 0;
    }

    .scroll-slider {
        font-size: 16px;
    }

    .scroll-slider .img-box {
        height: 200px;
        margin-bottom: 15px;
    }

    .scroll-slider li {
        width: 200px;
    }

    .scroll-slider li:not(:last-child) {
        margin-right: 35px;
    }

    .short-info-block .col-md-6 + .col-md-6 {
        margin-top: 40px;
    }

    .description-box .decor-title p, .decor-title p {
        line-height: 36px;
    }

    .project-list > li:not(:last-child) {
        margin-bottom: 25px;
    }

    .project-list .main-img-holder {

    }

    .project-list .project-info {
        margin-bottom: 15px;
    }

    .project-list .img-list {
        max-height: 318px;
    }

    .project-list .img-list li {
        width: 33.33%;
    }

    .project-list .img-list li a {
        height: 145px;
    }

    .project-list h4 {
        margin-bottom: 10px;
    }

    .banner-list li {
        padding: 0 15px 15px 0;
        margin: 0 1.5% 15px;
    }

    .scheme-block {
        margin-bottom: 40px;
        padding-top: 15px;
    }

    .scheme-block h5 {
        font-size: 42px;
        margin-bottom: 10px;
        padding: 0;
    }

    .scheme-block:nth-child(odd) h5 {
        padding: 0;
    }

    .scheme-block h5 span {
        font-size: 36px;
    }

    .scheme-block .out-box {
        margin-top: -15px;
    }

    .scheme-block .out-box .img-box, .scheme-block:nth-child(odd) .out-box .img-box {
        margin: 30px 0 0;
    }

    .scheme-block .img-box .zoom-btn {
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        opacity: 1;
    }

    .service-box h3 {
        font-size: 42px;
    }

    .service-box:nth-child(even) .img-box:before {
        bottom: -20px;
        right: -20px;
    }

    .service-box:nth-child(odd) .img-box:before {
        top: -20px;
        left: -20px;
    }

    .service-box ul li {
        margin-bottom: 4px;
    }

    .service-box .img-box {
        width: 29%;
        margin: -5px 4.33333333% 0 0;
    }

    .service-box:nth-child(odd) .img-box {
        margin: -5px 0 0 4.33333333%;
    }

    .service-box:nth-child(even) h3 {
        margin-left: -4.33333333%;
    }

    .service-box:not(:last-child) {
        margin-bottom: 60px;
    }
    .service-box:nth-child(even) .img-box{
        margin-top: 30px;
    }

}

/* Small devices (mobile, 768px and below) */
@media (max-width: 768px) {
    .slider-holder {
        padding: 30px 0;
    }

    .date-list-holder {
        text-align: left;
    }

    .date-list {
        border: none;
        padding: 0;
        margin: 0 0 0 23px;
    }

    .date-list li {
        display: block;
        border-left: 1px solid #dcdedf;
        min-width: 0;
        min-height: 95px;
        padding: 5px 0 0 10px;
    }

    .date-list > .active {
        padding: 8px 0 0 25px;
    }

    .date-list > .active:before {
        top: 0;
        left: -23px;
    }

    .date-list li:before {
        top: 12px;
        left: -8px;
    }

    .date-list .time {
        float: none;
    }

    .date-list .content-box {
        padding: 5px 0 0 3px;
        max-width: 240px;
    }

    .map-holder {
        padding-top: 40px;
    }

    .decor-title.rotate {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
    }

    .top-right {
        margin: 10px 10px 0 0;
    }

    .top-right:before {
        right: -10px;
        top: -10px;
    }

    .right-bottom {
        margin: 0 10px 10px 0;
    }

    .right-bottom:before {
        bottom: -10px;
        left: -10px;
    }

    .left-top {
        margin: 10px 0 0 10px;
    }

    .left-top:before {
        left: -10px;
        top: -10px;
    }

    .bottom-left {
        margin: 0 0 10px 10px;
    }

    .bottom-left:before {
        left: -10px;
        bottom: -10px;
    }

    .grid-item {
        padding-bottom: 20px;
    }

    .inner-box {
        max-width: 100%;
    }

    .grid-item.half-box, .half-box {
        width: 100%;
    }

    .decor-title {
        font-size: 30px;
    }

    .decor-title span {
        font-size: 26px;
        margin-top: 0;
        line-height: 16px;
    }

    .description-box .decor-title p, .decor-title p {
        white-space: normal;
        line-height: 26px;
    }

    .decor-title span:before {
        height: 16px;
    }

    .description-box p {
        margin-bottom: 20px;
    }

    .date-list-holder .mCSB_container {
        width: 100% !important;
        max-width: 100%;
    }

    .project-list > li:not(:last-child) {
        margin-bottom: 15px;
    }

    .project-list .img-list {
        text-align: center;
        max-height: 304px;
    }

    .project-list .img-list li {
        float: none;
        padding: 0;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        max-width: 240px;
    }

    .project-list > li:before {
        bottom: 0;
        height: 100%;
    }

    .project-list .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical, .project-list .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical {
        right: 0;
    }

    .scheme-block {
        margin-bottom: 20px;
        display: block;
    }

    .scheme-block:before, .scheme-block:after {
        height: 100px;
    }

    .scheme-block .content-box {
        width: 100%;
    }

    .scheme-block h5 {
        font-size: 32px;
        display: block;
        text-align: center;
    }

    .scheme-block h5 span {
        font-size: 28px;
    }

    .scheme-block .out-box {
        margin: 0;
        width: 100%;
    }

    .scheme-block .out-box .img-box, .scheme-block:nth-child(odd) .out-box .img-box {
        margin: 15px 0 0;
    }

    .service-box {
        display: block;
    }

    .service-box:not(:last-child) {
        margin-bottom: 15px;
    }

    .service-box .img-box {
        width: 100%;
        margin: 0 0 15px;
        text-align: center;
    }

    .service-box .img-box img {
        width: auto;
    }

    .service-box:nth-child(odd) .img-box {
        margin: 0 0 15px;
    }

    .service-box .content {
        width: 100%;
    }

    .service-box h3 {
        font-size: 26px;
    }

    .service-box:nth-child(even) h3 {
        margin-left: 0;
    }

    .service-box .img-box:before {
        display: none;
    }
}

@media (max-width: 481px) {
    .banner-list {
        display: block;
        margin: 0;
    }

    .banner-list li {
        width: 100%;
        margin: 0 0 10px;
        padding: 0;
    }
}

/*--------------------------------------------------------------
5.0 Footer
--------------------------------------------------------------*/
.site-footer {
    padding: 65px 0 25px;
    font-size: 12px;
    color: #acaeaf;
}

.site-footer p a {
    color: #acaeaf;
}

.site-footer .foo-title {
    font-family: 'Abhaya Libre', serif;
    text-transform: capitalize;
    font-size: 54px;
    color: #d5dce1;
    line-height: 0.8;
    margin-bottom: 35px;
    display: block;
}

.site-footer .foo-title .mark {
    background: none;
    padding: 0;
    border-bottom: 2px dashed #47616b;
    color: #76a7cb;
    display: inline-block;
    vertical-align: top;
}

.site-footer .menu {
    list-style: none;
    text-align: center;
    padding: 0;
    font-size: 16px;
    font-family: 'Abhaya Libre', serif;
    color: #3a5560;
    margin: 0 0 5px;
}

.site-footer .menu li {
    display: inline-block;
    vertical-align: top;
    padding: 0 15px;
}

.site-footer .menu a {
    color: #3a5560;
    text-transform: uppercase;
}

.site-footer .menu .sub-menu {
    display: inline-block;
    vertical-align: top;
}

.site-footer .menu .menu-item-has-children > a {
    display: none;
}

/* Large devices (large desktops, 1200px and below) */
@media (max-width: 1199px) {
    .site-footer {
        padding-top: 55px;
    }

    .site-footer .foo-title {
        font-size: 54px;
        margin-bottom: 30px;
    }
}

/* Medium devices (tablets, 991px and below) */
@media (max-width: 991px) {
    .site-footer {
        padding-top: 35px;
    }

    .site-footer .foo-title {
        font-size: 44px;
        margin-bottom: 25px;
    }
}

/* Small devices (mobile, 768px and below) */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 0 10px;
    }

    .site-footer .foo-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------------------
6.0 Custom masonry style
--------------------------------------------------------------*/

#masonry-grid-preloaded {
    display: block;
    width: 100%;
    padding-bottom: 60px;
    position: relative;
}

#masonry-grid-preloaded .alm-btn-wrap {
    position: absolute;
    bottom: -60px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.alm-listing {
    list-style: none;
    padding: 0;
    margin: 0 -15px;
}

.alm-listing > li {
    width: 50%;
    padding: 0 15px 50px;
    float: left;
    display: inline;
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {

}

.modal-certificat .modal-body{
    padding: 0;
    position: relative;
}
.modal-certificat .modal-body img{
    padding-right: 30px;
    padding-bottom: 25px;
}
.modal-certificat .modal-content{
    background-color: transparent;
    box-shadow: none;
    border: none;
}
.modal-certificat .close{
    position: absolute;
    font-weight: 400;
    font-size: 40px;
    top: -35px;
    right: 0;
    text-shadow: none;
    color: #fff;
    opacity: 1;
}
.modal-certificat .modal-body:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 95%;
    height: 95%;
    z-index: -1;
    background: #eff0f1;
}
.modal-certificat .modal-header{
    border: none;
}
.modal {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}
.team .team-holder{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.team .team-holder .item{
    width: 50%;
    text-align: center;
    margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .team .team-holder .item {
        width: 25%;
    }
}
@media screen and (min-width: 1200px) {
    .team .team-holder .item {
        width: 20%;
    }
}
.team-holder .item img{
    margin-bottom: 20px;
    display: inline-block;
    width: 175px;
    height: 175px;
    border-radius: 50%;
    box-shadow: 0 5px 30px -10px #3c424a;
}
.team-holder .item .name{
    font-size: 24px;
    line-height: 1.46;
    text-transform: capitalize;
    color: #4588b8;
    margin-bottom: 0;
}
.team-holder .item .position{
    font-weight: 700;
}
.modal-team{

}
.modal-team .img-box{
    width: 230px;
    position: relative;
    padding: 20px;

}
.modal-team .img-box:before{
    content: "";
    position: absolute;
    background: #f1f1f1;
    top: 40px;
    left: -20px;
    width: 100%;
    height: 100%;
}
.modal-team .content{
    overflow: hidden;
}
.modal-team .content .img-box{
    float: left;
    margin-right: 20px;
}
.modal-team .content .img-box img{
    position: relative;
    box-shadow: 0 5px 30px -10px #3c424a;
    display: inline-block;
}
.modal-team .content .text-box{
    float: left;
    max-width: 500px;
    width: 100%;
    padding: 20px 0;
}
.modal-team .modal-body{
    padding: 45px;
}
.modal-team .modal-body .name{
    font-size: 24px;
    text-transform: capitalize;
    color: #4588b8;
    margin-bottom: 0;
}
.modal-team .modal-body .position{
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}
@media (min-width: 768px){
    .modal-dialog {
        width: 900px;
    }
}
.modal-team .close{
    position: absolute;
    font-weight: 400;
    font-size: 40px;
    top: -35px;
    right: -35px;
    text-shadow: none;
    color: #fff;
    opacity: 1;
}
/*project-menu*/
.menu .menu-item-object-custom{
    position: static !important;
}
.menu .menu-item-object-custom .sub-menu{
    left: 0;
    right: 0;
    top: 57%;
    width: 100%;
    transform: none;
    min-width: 100%;
    background: #eff0f1;
    padding: 20px 0 50px;
    box-shadow: 0 5px 15px -10px #3c424a;
}
.menu .menu-item-object-custom .sub-menu:before{
    top: 0;
}
.menu .menu-item-object-custom .sub-menu:after{
    top: -6px;
}
.menu .menu-item-object-custom .sub-menu > li{
    display: block;
    width: 100%;
    margin-bottom: 3px;
    position: relative;
    vertical-align: top;
}
@media (min-width: 768px){
    .menu .menu-item-object-custom .sub-menu > li{
        display: inline-block;
        width: 24.6%;
    }
}
.menu .menu-item-object-custom .sub-menu > li .sub-menu{
    padding: 0;
    position: static;
    box-shadow: none;
}
.menu .menu-item-object-custom .sub-menu > li .sub-menu > li{
    white-space: normal;
    width: 100%;
    text-align: left;
    display: block;
    padding: 0 10px;
}
.menu .menu-item-object-custom .sub-menu > li .sub-menu:before{
    display: none;
}

.menu .menu-item-object-custom .sub-menu > li .sub-menu:after{
    display: none;
}

.menu .menu-item-object-custom .sub-menu:after{
    margin-left: -36px;
}
.site-header .container{
    position: relative;
}
/*references*/
.references .text, .references .img-box{
    margin-bottom: 30px;
}
.project-info .won{
    color: #fec909
}

.contact h6{
    font-size: 30px;
    line-height: 1.2;
    color: #76a7cb;
    text-transform: initial;
}

.contact-us .address{
    background-color: #ebeced;
    padding: 55px 30px 55px 60px;
}

.contact-us .tel-icon, .contact-us .address-icon, .contact-us .mail-icon{
    position: relative;
}

.contact-us .tel-icon:before{
    content: '';
    width: 17px;
    height: 17px;
    background-image: url('../img/tel.png');
    background-repeat: no-repeat;
    position: absolute;
    left: -15px;
    top: 5px;
}

.contact-us .address-icon:before{
    content: '';
    background-image: url('../img/pin.png');
    background-repeat: no-repeat;
    position: absolute;
    left: -15px;
    top: 5px;
    width: 14px;
    height: 17px;
}

.contact-us .mail-icon:before{
    content: '';
    background-image: url('../img/mail.png');
    background-repeat: no-repeat;
    position: absolute;
    top: 5px;
    left: -15px;
    width: 17px;
    height: 15px;
}

.testimonials{
    background-image: url('../img/quote.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    padding-top: 65px;
    padding-right: 30px;
    margin-bottom: 50px;
}

.testimonials .cite-text{
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    max-height: 120px;
    overflow: hidden;
}

.testimonials .cite-text:after{
    position: absolute;
    content: '';
    display: block;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #3a5661;
}

.bottom-holder{
    overflow: hidden;
}

.bottom-holder .holder{
    float: left;
}

.bottom-holder .more-btn{
    float: right;
    color: #4588b8;
    cursor: pointer;
    transition: all linear .3s;
}
.bottom-holder .more-btn:hover, .bottom-holder .more-btn:focus{
    color: #3a5661;
    font-weight: 700;
}

.bottom-holder .name{
    font-family: 'MinionPro';
    color: #4588b8;
    font-size: 23px;
    line-height: 1;
    display: block;
}

.bottom-holder .position{
    color: #b9b9b9;
    font-size: 14px;
    display: block;
}

.testimonials-modal{
    position: relative;
}

.testimonials-modal .modal-body{
    padding: 40px 70px;
}

.testimonials-modal .modal-content .close{
    position: absolute;
    color: #fff;
    right: -25px;
    top: -40px;
    opacity: 1;
    font-weight: 400;
    font-size: 40px;
}

.testimonials-modal .modal-content .prev{
    position: absolute;
    display: block;
    left: -5%;
    top: 50%;
    width: 17px;
    height: 28px;
    background-image: url('../img/left-btn.png');
    background-repeat: no-repeat;
    cursor: pointer;
}

.testimonials-modal .modal-content .next{
    position: absolute;
    display: block;
    right: -5%;
    top: 50%;
    width: 17px;
    height: 28px;
    background-image: url('../img/right-btn.png');
    background-repeat: no-repeat;
    cursor: pointer;
}

.testimonials-modal .modal-content .cite-text{
    max-height: none;
    overflow: visible;
}

.modal {
    display: block !important;
    position: fixed;
    visibility: hidden;
    overflow-y: hidden;
}
.modal.in {
    visibility: visible;
}

@media (max-width: 991px) {
    .testimonials-modal .modal-dialog{
        width: 100%;
    }
    .testimonials-modal .modal-content .close{
        right: 25px;
        top: 25px;
        color: #000;
        z-index: 10;
    }
}

.gallery .slider-for{
    width: 100%;
    margin: 0 auto 15px;
    max-width: 970px;
}

.gallery .slider-nav{
    width: 100%;
    margin: 0 auto 15px;
    max-width: 850px;
    position: relative;
}

.gallery .slider-nav .prev{
    display: block;
    width: 12px;
    height: 22px;
    background-image: url('../img/prev-btn.png');
    position: absolute;
    top: 50%;
    z-index: 10;
    left: -55px;
}

.gallery .slider-nav .next{
    background-image: url('../img/next-btn.png');
    display: block;
    width: 12px;
    height: 22px;
    position: absolute;
    top: 50%;
    right: -55px;
    z-index: 10;
}

@media (max-width: 768px) {
    .gallery .slider-nav{
        width: 80%;
    }
    .gallery .slider-nav .prev{
        left: -30px;
    }
    .gallery .slider-nav .next{
        right: -30px;
    }
}

.gallery .slider-nav .item-slick{
    height: 150px;
    width: 200px;
    margin: 0 7px;
}

.bg-prop{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery-large {
    height: 420px;
    background: #eff0f2 no-repeat center center;
    background-size: contain;
}
.gallery-nav-item img,
.gallery-large img {
    opacity: 0;
}

.gallery-nav-item{
    background: no-repeat center center;
    background-size: cover;
}


.slider-nav  .slick-slide img{
    height: 150px;
}

.slick-lightbox-inner .slick-next, .slick-lightbox-inner .slick-prev{
    position: absolute;
    top: 50%;
    z-index: 10;
}
