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

>>> TABLE OF CONTENTS:

----------------------------------------------------------------

# Fonts

# Typography

# Elements

# Forms

# Navigation

    ## Links

    ## Menus

# Accessibility

# Alignments

# Clearings

# Widgets

# Content

    ## Posts and pages

    ## Asides

    ## Comments

# Infinite scroll

# Media

    ## Captions

    ## Galleries

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

# Fonts

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

.col-md-left,
.col-md-right {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-md-left {
    /* width:81%; */
}
.col-md-right {
    /* width: 26%; */

    width: 230px;
}
.row.table-row > [class*="col-"].custom {
    background-color: lightgrey;
    text-align: center;
}
/* 100% height bootstrap columns */

@media (min-width: 768px) {
    img.img-fluid {
        width: 100%;
    }
    .row.table-row {
        display: table;
        /* width:100%; */
        /* margin:0 auto; */
    }
    .row.table-row > [class*="col-"] {
        float: none;
        float: none;
        display: table-cell;
        vertical-align: top;
    }
    .row.table-row > .col-sm-11 {
        width: 91.66666666666666%;
    }
    .row.table-row > .col-sm-10 {
        width: 83.33333333333334%;
    }
    .row.table-row > .col-sm-9 {
        width: 75%;
    }
    .row.table-row > .col-sm-8 {
        width: 66.66666666666666%;
    }
    .row.table-row > .col-sm-7 {
        width: 58.333333333333336%;
    }
    .row.table-row > .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666666666667%;
    }
    .col-sm-4 {
        width: 33.33333333333333%;
    }
    .row.table-row > .col-sm-3 {
        width: 25%;
    }
    .row.table-row > .col-sm-2 {
        width: 16.666666666666664%;
    }
    .row.table-row > .col-sm-1 {
        width: 8.333333333333332%;
    }
}
/*--------------------------------------------------------------

# Navigation

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

## Links

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

a {
    color: royalblue;
}
a:visited {
    color: purple;
}
a:hover,
a:focus,
a:active {
    color: midnightblue;
}
a:focus {
    outline: thin dotted;
}
a:hover,
a:active {
    outline: 0;
}
/*--------------------------------------------------------------

## Menus

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

.site-title {
    text-align: right;
    margin: 0;
    position: relative;
}
.site-title>a,
.site-title>img {
    position: relative;
    z-index: 3;
}
.main-navigation {
    display: block;
    float: right;
    direction: rtl;
    text-align: center;
    margin-top: 27px;
    padding: 5px 0;
    position: relative;
}

a#eng_link {
    position: absolute;
    top: -15px;
    right: 15px;
    color: #fff;
}
.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
    padding: 0;
}
.main-navigation li {
    float: right;
    display: block;
}
.main-navigation li a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    padding: 0px 15px;
    line-height: 35px;
    position: relative;
    font-size: 20px;
    float: right;
    z-index: 1;
}
.main-navigation .navbar-nav>li>a:before{
    content: ' ';
    display: block;
    background: #5e7ec3;
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    right: 0;
    opacity: 0;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); */
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.main-navigation .navbar-nav>li a:hover:before,
.main-navigation .navbar-nav>li a:focus:before,
.main-navigation .navbar-nav>li.current_page_item > a:before,
.main-navigation .navbar-nav>li.current-menu-item > a:before,
.main-navigation .navbar-nav>li.current_page_ancestor > a:before,
.main-navigation .navbar-nav>li.current-menu-ancestor > a:before{
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.main-navigation a:hover,
.main-navigation a:focus {
    outline: none;
}


.main-navigation .navbar-nav>li>a:after{
    content: ' ';
    float: left;
    display: block;
    width: 1px;
    height: 20px;
    background: #4864a1;
    position: absolute;
    top: 9px;
    left: 0;
    transition: all .25s ease-in-out;
    z-index: -1;
}
.main-navigation .navbar-nav>li>a:hover:after,
.main-navigation .navbar-nav>li>a:focus:after{
    width: 100%;
}
.main-navigation ul ul {
    position: absolute;
    margin-top: 35px;
    background: #fff;
    z-index: 99;
    overflow: hidden;
    margin-right: -30px;
    width: 150px;
    max-height: 0;
    transform: scale(.8);
    -webkit-transform: scale(.8);
    transition: max-height .4s ease-in-out, transform .5s ease-in-out;
    -webkit-transition: max-height .4s ease-in-out, transform .5s ease-in-out;
}
.main-navigation ul .vt_closed>ul,
.main-navigation ul .vt_closed.current_page_item>ul,
.main-navigation ul .vt_closed.current-menu-ancestor>ul {
    max-height: 0;
    transform: scale(.8);
    -webkit-transform: scale(.8);
}
.main-navigation ul li:hover ul {
    max-height: 700px;
    transform: scale(1);
    -webkit-transform: scale(1);
}
.main-navigation ul ul a {
    font-size: .92em;
    border-bottom: none!important;
    padding: 0 30px;
    line-height: 28px;
    color: #232323;
    width: 100%;
}
.main-navigation ul ul li {
    float: none;
}
.main-navigation ul ul .current-menu-item > a,
.main-navigation ul ul li.current-menu-parent>a,
.main-navigation li:focus > a {} .main-navigation ul ul:hover > a,
                                 .main-navigation ul ul:focus > a {}
.main-navigation ul ul a:hover,
.main-navigation ul ul a:focus {
    background: #2c4f9c;
    color: #fff;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li:focus > ul {
    left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li:focus > ul {
    left: 100%;
}
/*.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
    color: #fff;
    background-color: #f55716;
}*/
/* Small menu. */

.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}
@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }
    .main-navigation ul {
        display: block;
        text-align: center;
    }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}
/*--------------------------------------------------------------

# Alignments

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

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}
.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}
.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/*--------------------------------------------------------------

# Clearings

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

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}
/*--------------------------------------------------------------

# Widgets

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

.widget {
    margin: 0 0 1.5em;
}
/* Make sure select elements fit in widgets. */

.widget select {
    max-width: 100%;
}
/*--------------------------------------------------------------

# Content

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

## Posts and pages

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

.sticky {
    display: block;
}
.hentry {
    /*     margin: 0 0 1.5em; */
}
.byline,
.updated:not(.published) {
    display: none;
}
.single .byline,
.group-blog .byline {
    display: inline;
}
.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}
.page-links {
    clear: both;
    margin: 0 0 1.5em;
}
/*--------------------------------------------------------------

## Asides

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

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
    display: none;
}
/*--------------------------------------------------------------

## Comments

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

.comment-content a {
    word-wrap: break-word;
}
.bypostauthor {
    display: block;
}
/*--------------------------------------------------------------

# Infinite scroll

--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .posts-navigation,
    /* Older / Newer Posts Navigation (always hidden) */

.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */

    display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */

.infinity-end.neverending .site-footer {
    display: block;
}
/*--------------------------------------------------------------

# Media

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

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}
/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}
/*--------------------------------------------------------------

## Captions

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

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}
.wp-caption-text {
    text-align: center;
}
/*--------------------------------------------------------------

## Galleries

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

.gallery {
    margin-bottom: 1.5em;
}
.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
}
.gallery-columns-2 .gallery-item {
    max-width: 50%;
}
.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
    max-width: 25%;
}
.gallery-columns-5 .gallery-item {
    max-width: 20%;
}
.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}
.gallery-caption {
    display: block;
}
/* GRID 5th */

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}
.col-xs-5ths {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}
/* Design start here */
/*
Theme Name: team
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: team
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

team is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
    ## Links
    ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
    ## Asides
    ## Comments
# Infinite scroll
# Media
    ## Captions
    ## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

.wpcf7-submit {
    width: 90px;
    line-height: 29px;
    background: #8e1515;
    color: white;
    border: none;
    float: left;
    margin-top: 50px;
    font-size: 19px;
    font-weight: bold;
}
.wpcf7-submit:hover,
.wpcf7-submit:focus {
    background: #a52f2f;
    color: #fff;
}
div.wpcf7-response-output {
    float: left;
    width: 100%;
    text-align: center;
    background: rgba(247, 231, 0, 0.51);
    padding: 6px 0;
    margin-top: 5px;
}

@import url(http://fonts.googleapis.com/earlyaccess/opensanshebrew.css);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,300&subset=latin,cyrillic);
body{
    height: 100%;
    background: #e6e6e6;
    font-family: 'Open Sans Hebrew', 'Open Sans', sans-serif;
    direction: rtl;
}
body.rtl{
    font-family: 'Open Sans Hebrew', 'Open Sans', sans-serif;
}
h2{
    font-size: 22px;
    font-weight: bold;
    color: #3d3d3d;
}
p{
    font-size: 16px;
    color: #3d3d3d;
}
b{
    font-weight: 900;
}
li{
    list-style: none;
}
.content-area .page li{
    list-style: initial;
}

#navigation_wrap {
    background: url("../images/header_bg.png");
    height: 100px;
    background-size: 100% auto;
}
.logo{
    text-align: center;
    width: 300px;
    margin: auto;
}
.logo img{
    width: 100%;
    height: auto;
}
.navbar{
    border: none;
    border-radius: 0;
}
#primary-menu{
    float: none;
    margin: 0;
    padding: 0;
}
/* sub menu
.navbar-nav .sub-menu{
    position: absolute;
    width: 250px;
    margin: 0;
    border: 1px solid #DDD;
    background: #fff;
    padding: 0 5px;
    margin-top: 8px;
    border-radius: 5px;
    transition: all .25s ease-in-out;
    opacity: 0;
    transform: translate3d(0,-20px,0);
    -webkit-transform: translate3d(0,-20px,0);
    z-index: -1;
}
.navbar-nav>li:hover>.sub-menu, .navbar-nav>li:focus>.sub-menu{
    z-index: 99;
    overflow: visible;
    opacity: 1;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
}
.navbar-nav .sub-menu>li{
    width: 100%;
}*/
.top-logo {
    float: left;
    margin-top: -25px;
}

body.rtl .top-logo{
    text-align: right;
}

#primary-menu>ul {
    margin: 0;
}
.content-backround{
    /*     float: left;
        width: 100%; */
}
#footer{
    background: #e3e3e3;
    text-align: center;
    padding: 20px 0;
    clear: both;
    float: left;
    width: 100%;
    color: #f35916;
    font-weight: bold;
}
#footer>nav.widget{
    margin:0;
}
footer p{
    display: inline;
    font-size: 16px;
    color: #333;
}
footer p:after{
    content: "|";
    padding: 10px;
}
footer p:last-child:after{
    content: "";
}
#gallary{
    padding:10px 6px;
}
.gallary-block {
    float: left;
    margin-bottom: 9px;
    background-size: auto 100%!important;
    background-position: center center!important;
    cursor: pointer;
    transition: all .2s;
    overflow: hidden;
}
.gallary-block:hover {
    background-size: auto 110%!important;
}
.gallary-block-content{
    text-align: center;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);display: table
}
.gallary-block-content h2{
    color: white;
    margin: 0;

}
.gallary-block-content p{
    color: white;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about_us-template{
    margin: 70px 0 50px 0;
}

.gallery-carousel .gallery-item>a {
    height: 140px;
    display: block;
    margin-bottom: auto;
    overflow: hidden;
    position: relative;
    margin-right: 15px;
}

.gallery-carousel {
    margin: 0;
}

.gallery-picture {
    text-align: center;
    background-image: url("../images/gallery_bg.png");
    background-size: cover;
    padding: 50px 0;
}
.responsive {
    max-width: 100%;
}

.gallery-carousel .gallery-item>a img{
    min-height: 100%;
    min-width: 100%;
    max-width: 100%;
}
.gallery-carousel .gallery-item>a .gallery-item--image{
    display: block;
    height: 100%;
    background-size: cover;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    transform: scale(1);
    -webkit-transform: scale(1);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.gallery-carousel .gallery-item>a:hover .gallery-item--image,
.gallery-carousel .gallery-item>a:focus .gallery-item--image{
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
}

.gallery-carousel .gallery-item>a .gallery_overlay{
    background: #62b2f1;
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}
.gallery-carousel .gallery-item>a:hover .gallery_overlay,
.gallery-carousel .gallery-item>a:focus .gallery_overlay{
    opacity: .4;
}

/*
* Top banner
*/
.top_banner-wrap {
    min-height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.top_banner-wrap.descr-on {
}

.top_banner-gradient {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f35916+0,f35916+100&0+0,1+100 */
    background: -moz-linear-gradient(left,  rgba(243,89,22,0) 0%, rgba(243,89,22,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(243,89,22,0) 0%,rgba(243,89,22,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(243,89,22,0) 0%,rgba(243,89,22,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f35916', endColorstr='#f35916',GradientType=1 ); /* IE6-9 */
    position: absolute;
    right: 45%;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 5;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out ;
    -ms-transition: all .25s ease-in-out ;
    -o-transition: all .25s ease-in-out ;
    transition: all .25s ease-in-out ;
}

.top-banner>a:hover .top_banner-gradient,
.top-banner>a:focus .top_banner-gradient{
    width: 55%;
}

.top_banner-infoBlock {
    position: relative;
    z-index: 6;
}

.top_banner-infoBlock-title {
    color: #1744a7;
    font-size: 44px;
    margin-top: 35px;
    line-height: 1;
    font-weight: bold;
}

.descr-off .top_banner-infoBlock-title {
    margin-top: 125px;
}

.top_banner-infoBlock-descr {
    color: #bdbbb6;
    font-size: 20px;
    margin-top: 15px;
}

.btn.btn_more.btn-more-reversed {
    border-color: #fff;
    background-color: transparent;
}

.top-banner>a:hover .btn.btn_more,
.top-banner>a:focus .btn.btn_more,
.btn.btn_more.btn-more-reversed:hover,
.btn.btn_more.btn-more-reversed:focus{
    background-color: #fff;
    color: #757575;
}

.top-banner .btn.btn_more {
    margin-top: 25px;
}

h1.title{
    padding-bottom: 15px;
    color: #003660;
    text-transform: uppercase;
    font-size: 32px;
}

ul.archive-links-ul {
    margin: 0;
    padding-left: 15px;
}

ul.archive-links-ul li{
    padding: 2px 0;
}

ul.archive-links-ul>li a{
    color: #2651d2;
    font-size: 16px;
    position: relative;
}

.search_vt_c {
    float: right;
    margin-top: 6px;
}

body.rtl .search_vt_c{
    float: left;
}

#site-navigation>div {
    float: left;
}

body.rtl #site-navigation>div{
    float: right;
}

.search_vt_c #search {
    height: 30px;
    line-height: 30px;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: url(../images/searchbox_magnifier.png) 0 50% no-repeat;
    padding-left: 25px;
    width: 150px;
}

ul#responsive-menu-pro {
    margin-top: 20px;
}

body.rtl .search_vt_c #search{
    background: url(../images/searchbox_magnifier.png) right 50% no-repeat;
    padding-left: 0;
    padding-right: 25px;
}

.footer-menu li {
    display: inline-block;
    padding-right: 10px;
}

.footer-menu li a{
    color: #006786;
}

.logos_section_title_wrap {
    background: #052466;
}

h2.service_section_title, h2.logos_section_title {
    color: #ffffff;
    font-weight: normal;
    font-size: 34px;
    text-align: center;
    margin: 7px 0;
}

#services a.service_item {
    display: block;
    border: 1px solid #d7d7d7;
    min-height: 410px;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    padding-top: 50px;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

#services a.service_item:hover, #services a.service_item:focus{
    border-color: #f25915;
    outline: none;
}

#services h3.service_title {
    color: #f45917;
    font-size: 20px;
    margin-top: 30px;
}
#services .service_descr{
    margin-top: 15px;
}

#services .service_descr p{
    color: #6b7375;
    font-size: 14px;
    font-weight: bold;
}

.service_img_wrap {
    height: 110px;
}

#services .btn.btn_more {
    margin-top: 40px;
}

.btn.btn_more {
    background-color: #f35816;
    border: 1px solid #f35816;
    color: #fff;
    font-size: 20px;
    padding: 6px 53px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

#services a.service_item:hover .btn.btn_more, #services a.service_item:focus .btn.btn_more{
    background-color: transparent;
    color: #f35816;
}

section#banner{
    margin-top: 90px;
}
section#banner img {
    width: 100%;
    height: auto;
}

section#banner a:hover img, section#banner a:focus img{
    opacity: .9;
}

#hp_reviews{
    background: #e3e3e3;
    padding: 60px 0;
    text-align: center;
    margin-top: 90px;
    direction: ltr;
}

#hp_reviews .hp_reviews-carousel-item-logo{
    display: inline-block;
}

#hp_reviews .hp_reviews-carousel-item-content{
    margin-top: 60px;
}

#hp_reviews .hp_reviews-carousel-item-content, #hp_reviews .hp_reviews-carousel-item-content p{
    color: #f35916;
    font-size:30px;
    padding: 0px 60px;
}
#hp_reviews .hp_reviews-carousel-item-content p{
    display: inline-block;
    font-style: italic;
    font-weight: lighter;
}
#hp_reviews .hp_reviews-carousel-item-author{
    margin-top: 15px;
}

#hp_reviews .hp_reviews-carousel-item-author p{
    color: #f35916;
    font-size: 18px;
}

#hp_reviews .hp_reviews-carousel{
    margin-bottom: 0;
    padding: 0 80px;
}

#hp_reviews .slick-prev, #hp_reviews .slick-next{
    height: 205px;
    width: 78px;
    z-index: 3;
    opacity: 1;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

#hp_reviews .slick-prev:hover, #hp_reviews .slick-next:hover, #hp_reviews .slick-prev:focus, #hp_reviews .slick-next:focus{
    opacity: .5;
}
#hp_reviews .slick-prev:before, #hp_reviews .slick-next:before{
    content: "";
    background-repeat: no-repeat;
}
#hp_reviews .slick-prev{
    background-image: url(../images/arrow_left.png);
    left: 0;
}

#hp_reviews .slick-next{
    background-image: url(../images/arrow_right.png);
    right: 0;
}
.hp_logos-carousel-item {
    display: block;
    float: left;
    /* width: 12.5%!important; */
    padding-bottom: 30px;
    padding-top: 15px;
    text-align: center;
    line-height: 110px;
}
.hp_logos-carousel-item>span{
    display: block;
    line-height: 1;
    color: #052466;
    font-size: 18px;
}
.hp_logos-carousel-item img{
    display: inline-block!important;
}
section#hp_logos {
    direction: ltr;
    background: #fff;
}

.hp_logos-carousel {
    text-align: center;
    float: left;
    width: 100%;
}

img.hp_logos-carousel-item-logo {
    /*     -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        transition: all .25s ease-in-out;
        -webkit-transition: all .25s ease-in-out; */
    max-width: 100%;
}

.hp_logos-carousel-item:hover img.hp_logos-carousel-item-logo, .hp_logos-carousel-item:focus img.hp_logos-carousel-item-logo {
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}

#contacts_footer {
    background: #e5e5e5;
    clear: both;
}

footer#contacts_footer .contact_footer_wrap h1{
    color: #fff;
    text-align: center;
    margin-top: 0;
    line-height: 38px;
    margin: 0;
}

.footer_contact_col.fc_btn>.ajax-loader {
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -8px;
}

.contact_footer_wrap .form-control{
    background-color: #fff;
    border: none;
    border-radius: 0;
    color: black;
    box-shadow: none;
    text-align: right;
    font-weight: bold;
    padding: 7px 12px;
}

.contact_footer_wrap .form-control:hover, .contact_footer_wrap .form-control:focus{
    background-color: #edf2fd;
    
}

.contact_footer_wrap .form-control.wpcf7-textarea{
    height: 197px;
    padding: 11px 12px;
}
.contact_footer_wrap ::-webkit-input-placeholder {
    color: #00052b!important;
}

.contact_footer_wrap :-moz-placeholder { /* Firefox 18- */
    color: #00052b!important;
}

.contact_footer_wrap ::-moz-placeholder {  /* Firefox 19+ */
    color: #00052b!important;
}

.contact_footer_wrap :-ms-input-placeholder {
    color: #00052b!important;
}

.contact_footer_wrap .btn.btn-send{
    margin-top:0;
    border-radius: 0;
    width: 100%;
    background: #ffffff;
    color: #f35916;
    padding: 0;
    line-height: 52px;
    border: 1px solid transparent;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.contact_footer_wrap .btn.btn-send:hover, .contact_footer_wrap .btn.btn-send:focus{
    background: #c15221;
    color:#fff;
    border: 1px solid #fff;
}

.contact_footer_wrap {
    margin: 40px 0px;
    background: #062d7e;
    float: right;
    width: 100%;
    padding: 10px 5px;
}


footer#nav_footer {
    clear: both;
    background-color: #052466;
    color: #fff;
    padding: 30px 0;
}

#nav_footer ul.menu li:first-child a {
    font-size: 22px;
}
#nav_footer ul.menu li:first-child{
    margin-bottom: 15px;
}
#nav_footer ul.menu li {
    margin-top: 7px;
}

#nav_footer ul.menu li a {
    color: #fff;
}

.content_with_image_section h2 {
    color: #f35916;
    font-weight: lighter;
    font-size: 40px;
    margin-top: 4px;
    margin-bottom: 17px;
}
.image_part{
    text-align: center;
    padding-top: 39px;
}
.image_part.pull-left{
    text-align: left;
}
.image_part img {
    max-width: 100%;
    width: 70%;
}

.imgcontent_content p{
    color: #6d7376;
}

.content_with_image_section {
    margin: 80px 0;
    border-bottom: 1px solid #d6d7d7;
    padding-bottom: 120px;
}

.contact_items_img_wrap {
    height: 160px;
    line-height: 160px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

#contact_items {
    text-align: center;
    margin-top: 60px;
}

h3.contact_items_title {
    color: #f35916;
    font-size: 26px;
    font-weight: lighter;
}

.contact_items_descr {
    color: #6d7376;
    font-weight: bold;
    font-size: 16px;
}

#contact_items a {
    text-decoration: none;
    color: #6d7376;
    display: block;
}

#contact_items a:hover, #contact_items a:focus{
    opacity: .8;
}

#contact_items a:hover .contact_items_img_wrap,
#contact_items a:focus .contact_items_img_wrap{
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
}

.transition-on{
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out ;
    -ms-transition: all .25s ease-in-out ;
    -o-transition: all .25s ease-in-out ;
    transition: all .25s ease-in-out ;
}
.contact_us_section .form-control {
    border-radius: 0;
    background-color: #ebebeb;
    color: #f35916;
    font-weight: bold;
    border: none;
    box-shadow: none;
    text-align: right;
    padding: 21px 12px;
}

.contact_us_section .form-control:hover, .contact_us_section .form-control:focus{
    background-color: rgb(241, 241, 241);
}

.contact_us_section .form-control.wpcf7-textarea{
    height: 197px;
    padding: 11px 12px;
}
.contact_us_section ::-webkit-input-placeholder {
    color: #f35916!important;
}

.contact_us_section :-moz-placeholder { /* Firefox 18- */
    color: #f35916!important;
}

.contact_us_section ::-moz-placeholder {  /* Firefox 19+ */
    color: #f35916!important;
}

.contact_us_section :-ms-input-placeholder {
    color: #f35916!important;
}


.vt_form-control .form-control::-webkit-input-placeholder {
    color: #666!important;
    font-weight: bold;
}

.vt_form-control .form-control:-moz-placeholder { /* Firefox 18- */
    color: #666!important;
    font-weight: bold;
}

.vt_form-control .form-control::-moz-placeholder {  /* Firefox 19+ */
    color: #666!important;
    font-weight: bold;
}

.vt_form-control .form-control:-ms-input-placeholder {
    color: #666!important;
    font-weight: bold;
}

.contact_us_section .btn.btn-send {
    border-radius: 0;
    margin-top: 0;
    width: 40%;
    float: right;
    background-color: #f35916;
    color: #fff;
    padding: 0;
    line-height: 50px;
}


.acf-map {
    width: 100%;
    height: 400px;
    border: 1px solid transparent;
    margin: 20px 0;
}

/* fixes potential theme css conflict */
.acf-map img {
    max-width: inherit !important;
}

.contact_us_section .acf-map{
    height: 390px;
    margin: 0;
}

section.contact_us_section {
    margin-top: 110px;
}

#offices .acf-map{
    height: 200px;
    border: 1px solid #f35916;
}

section#offices {
    background: #e3e3e3;
    padding: 60px 0;
    margin-top: 100px;
}

h3.offices_title {
    color: #f35916;
    font-size: 22px;
    font-weight: lighter;
}

.vt_icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    top: -3px;
}

.vt_icon.address {
    background-image: url("../images/mail.png");
}

.vt_icon.fax {
    background-image: url("../images/fax.png");
}

.vt_icon.phone {
    background-image: url("../images/phone.png");
}

.office_details_icon {
    float: right;
    width: 50px;
}

.office_details_item {
    float: right;
    width: 100%;
    margin-top: 2px;
}

.office_details_content {
    font-weight: bold;
    color: #6d7376;
}

h2.office_title {
    color: #f35916;
    font-size: 42px;
    font-weight: lighter;
}

h2.content_title {
    color: #f35916;
    font-weight: normal;
    font-size: 40px;
}
.two_columns-row{
    margin-top: 60px;
}
.two_columns-title{
    margin-top: 40px;
}
.two_columns-item p{
    color: #6d7376;
    font-size: 15px;
    font-weight: bold;
}

.text-bold{
    font-weight: bold!important;
}

.text-normal{
    font-weight: normal!important;
}

.text-ligher{
    font-weight: lighter!important;
}

.slick-dots {
    left: 0;
}

.slick-slider .slick-dots li button:before {
    font-size: 25px;
}

.footer_contact_col {
    float: right;
    width: 30%;
    padding: 0 7px;
    position: relative;
}

.contact_footer_col.fc_heading {
    float: right;
    width: 10%;
}

.contact_footer_col.fc_heading>h1{
    font-size: 24px;
    color: #d1d2d3;
}

.footer_contact_col.fc_btn {
    width: 10%;
}

.contact_footer_wrap .wpcf7 {
    float: right;
    width: 90%;
}

#footer-menu {
    margin: 0;
    text-align: center;
}

#footer-menu>li{
    display: inline-block;
    padding: 0 15px;
    position: relative;
}
#footer-menu>li:last-child:after{
    display: none;
}
#footer-menu>li:after{
    content: "|";
    color: #183f8c;
    display: inline-block;
    position: absolute;
    left: -2px;
}
#footer-menu>li>a{
    color: #ffffff;
}
.btn.btn-contact_submit {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

section#top_home {
    background: url(../images/home_top_bg.png);
    height: 235px;
    padding: 15px 0;
}

.th_heading {
    color: #fff;
    background: #1744a7;
    padding: 2px 0;
    text-align: center;
    line-height: 1;
}

a.th_block-item {
    background: #e6e6e6;
    float: left;
    width: 100%;
    margin-top: 6px;
    line-height: 50px;
    color: #052466;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    overflow: hidden;
}

a.th_block-item:hover,
a.th_block-item:focus {
    background: rgb(255, 255, 255);
}

.th_block-item>img{
    /* float: right; */
    display: inline-block;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}


a.th_block-item:hover>img,
a.th_block-item:focus>img {
    background: rgb(255, 255, 255);
    transform: translateX(10px);
}

.th_block-title {
    font-size: 18px;
    float: left;
    margin-left: 25px;
    line-height: 50px;
    font-weight: bold;
}

.th_block-item.th_block-news_item {
    background: none;
    /* margin: 3px 0; */
    padding: 3px 10px;
    min-height: 52px;
}

.th_block.th_block_news {
    background: #e6e6e6;
    float: left;
    width: 100%;
    padding: 5px 0;
    min-height: 131px;
    margin-bottom: 0;
}

.th_block-news-date {
    float: right;
}

.th_block-news-date {
    color: #3570ec;
    font-size: 16px;
}

.th_block-news-title,
.th_block-news-title:visited {
    color: #052466;
    font-weight: bold;
    font-size: 16px;
    text-align: right;
    direction: rtl;
}
.th_heading.th_img_heading {
    background-image: url(../images/block_title_bg.png);
    background-color: #e6e6e6;
    background-size: 100% 100%;
    height: 45px;
}

.promote-aside .th_img_heading,
.promote-aside .th_block.th_block_news,
.promote-aside .th_block-item {
    background-color: #fff;
}
.promote-aside .top_home-sections{
    margin-bottom: 15px;
    clear: both;
    float: left;
    width: 100%;
    padding-left: 0;
    padding-right: 15px;
}
.th_block.th_block_calendar {
    background: #e6e6e6;
    height: 167px;
}

.vt_content_bg {
    height: 100%;
    background-image: url('../images/gray_bg.png');
    background-repeat: repeat-y;
    background-size: 50% auto;
    background-position: right;
}


.vt_content_bg_2{background-image: url('../images/white_bg.png');background-size: auto 30%;background-position: right;background-repeat: repeat-y;}

.vt_bgs_container{
    height: 100%;
    background-image: url('../images/gray_bg.png');
    background-repeat: repeat-y;
    background-size: 67% auto;
    background-position: right;
    position: relative;
}

.vt_bgs_container_after{
    content: "";
    display: block;
    position: absolute;
    left: 33%;
    bottom:0;
    height: 100%;
    width: 44px;
    background-image: url('../images/final_bg.png');
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.vt_bgs_container_2{
    height: 100%;
    background-image: url('../images/white_bg.png');
    background-repeat: repeat-y;
    background-size: 67% auto;
    background-position: right;
    position: relative;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 27%;
    z-index: 1;
}

.vt_bgs_container_before{
    content: "";
    display: block;
    position: absolute;
    left: 33%;
    bottom:0;
    height: 100%;
    width: 44px;
    background-image: url('../images/final_bg_gray.png');
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.vt_end-half-bg {
    padding-left: 85px;
}
h1.content-title {
    color: #1744a7;
    font-size: 24px;
}

.vt_content{
    color: #052466;
    margin-top: 5px;
    margin-bottom: 35px;
}
.protocols-main-title {
    margin-top: 23px;
    color: #1744a7;
    font-size: 16px;
    padding: 0 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid #8cadf5;
    font-weight: bold;
}
.vt_content p{
    color: #052466;
}

.th_block.th_block_contact {
    background: #fff;
    padding: 10px 15px;
}

.btn.btn-submit {
    margin-top: 5px;
    background: #145cca;
    border-radius: 0;
    float: none;
    font-size: 16px;
    width: auto;
    padding: 6px 20px;
}


.btn.btn-submit:hover,
.btn.btn-submit:focus{
    background: #2a6fd8;
}

.vt_form-control .form-control {
    border-radius: 0;
    background: #e6e6e6;
    border-color: transparent;
    box-shadow: none;
    margin-bottom: 5px;
    text-align: right;
    direction: rtl;
    font-weight: bold;
}

.vt_form-control .form-control:hover{
    border-color: #ccc;
}

.vt_form-control .form-control:focus{
    border-color: #c5c5c5;
    background: #f1f1f1;
}

.big_contact_form {
    background: #052466;
}

header.big_contact_form-header {
    background-image: url("../images/big_block_title_bg.png");
    background-size: 100% 100%;
    height: 158px;
    background-position: top;
    color: #2e76e4;
    font-size: 24px;
    padding: 0 150px;
    padding-top: 40px;
}

footer.big_contact_form-footer {
    background-image: url("../images/big_block_footer_bg.png");
    background-size: 100% 100%;
    height: 163px;
    background-position: bottom;
    padding-top: 80px;
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.big_contact_form-form {
    padding: 0 150px;
}

.col-z-index{
    position: relative;
    z-index: 3;
}

.vt_child_menu {
    margin-top: 23px;
}

.vt_child_menu ul li>a {
    color: #4d4d4d;
    font-size: 16px;
    display: block;
    padding: 2px 10px;
}

.english_class h1.content-title {
    text-align: left;
    direction: ltr;
}

.english_class .vt_content {
    text-align: left;
    direction: ltr;
}

.vt_child_menu ul li.current_page_item>a{
    background: #f2f2f2;
    color: #052466;
}

.vt_child_menu ul li>a:hover,
.vt_child_menu ul li>a:focus{
    background: #f2f2f2;
    color: #052466;
}

.vt_child_menu>ul {
    padding: 0;
}

.protocols-subtitle{
    color: #1744a7;
    font-size: 24px;
    border-bottom: 2px solid #2458ca;
    margin: 0;
    padding: 10px 15px;
}
.protocols_links{
    margin-top: 15px;
}

.protocol_link_item{
    border-bottom: 1px solid #c9d6f4;
    padding: 15px 0;
}

.protocol_link, .protocol_link:visited{
    color: #052466;
    font-size: 16px;
    display: block;
    padding: 5px 15px;
}

.slick-slider {
    direction: ltr;
}

.gallery_wrap{
    background: url(../images/footer_bg.png);
    background-size: 100% auto;
    padding: 30px 0;
}

.gallery-picture-holder{
    height: 680px;
    line-height: 680px;
    background-color: #333;
    overflow: hidden;
}


#wpadminbar .screen-reader-text, #wpadminbar .screen-reader-text span {
    display: none;
}

#main_pic {
    height: 680px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.gallery-caption{
    display: none;
}

#gallery-picture-caption {
    margin-top: 15px;
    color: #052466;
    font-size: 18px;
    text-align: right;
}

.slick-prev:before, .slick-next:before{
    content: " "!important;
    position: absolute;
    height: 53px;
    width: 17px;
    margin-top: -37px;
    background-repeat: no-repeat;
}

.slick-prev:before {
    background-image: url("../images/arrow_left.png");
    left: 0;
}

.slick-next:before {
    background-image: url("../images/arrow_right.png");
    left: 0;
}

.slick-vertical .slick-prev:before, .slick-vertical .slick-next:before{
    height: 9px;
    width: 15px;
    margin-top: 0px;
}
.slick-vertical .slick-prev{
    right: 0px;
    top: 0;
    left: auto;
}
.slick-vertical .slick-next{
    left: auto!important;
    bottom:0;
    top: auto;
    right: 0;
}
.slick-vertical .slick-prev:before{
     background-image: url("../images/arrow_top.png");
}

.slick-vertical .slick-next:before{
     background-image: url("../images/arrow_bottom.png");
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

table.table.table-calendar {
    width: 85%;
    text-align: center;
    margin: 0 auto;
}


table.table.table-calendar th{
    padding: 3px 0;
    color: #1744a7;
}


table.table.table-calendar td{
    padding: 5px 2px;
    font-size: 12px;
    cursor: default;
}

table.table.table-calendar td.calendar-current_date {
    font-weight: bold;
}

table.table.table-calendar td.calendar-event_date{
    font-weight: bold;
    color: #fff;
    background-color: rgb(109, 135, 193);
    position: relative;
}

table.table.table-calendar td.calendar-event_date:hover{
    background-color: rgb(86, 110, 165);
}

.calendar_popup{
    position: absolute;
    background: #e6e6e6;
    border: 1px solid #0d2c71;
    padding: 5px 10px;
    left: 0;
    z-index: 3;
    text-align: right;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

table.table.table-calendar td.calendar-event_date:hover .calendar_popup{
    opacity: 1;
    visibility: visible;
}

.calendar_popup p{
    font-size: 14px;
    color: #052466;
}
.hp_logos-carousel.activate_carousel {
    margin-bottom: 0;
}
.hp_logos-carousel .slick-track{
    display: flex;
    align-items: center;
}

#login_link .login_icon{
	display: inline-block;
	position: absolute;
	top: 5px;
	left: 5px;
	height: 16px;
	width: 20px;
	background: url("../images/login-icon.png");
	background-size:contain;
	background-repeat: no-repeat;
}
a#login_link {
    position: absolute;
    right: 45px;
    top: -19px;
    color: #fff;
    background: #8e1515;
    padding: 3px 12px;
    text-decoration: none;
    padding-left: 27px;
}

a#login_link:hover,
a#login_link:focus{
    background: #9e1a1a;
}

@media (max-width: 1400px){
    #services h3.service_title {
        min-height: 44px;
    }
}


@media (max-width: 800px){
    section#top_home {
        height: auto;
    }

    .vt_content img {
        max-width: 100%;
        height: auto;
    }

    .vt_end-half-bg {
        padding: 0 15px;
    }

    .vt_bgs_container_after {
        display: none;
    }

    .vt_bgs_container {
        background: #e6e6e6;
    }

    .promote-aside .top_home-sections {
        padding: 0;
    }

    #navigation_wrap{
        background: none;
        height: auto;
    }

    .footer_contact_col.fc_btn{
        width: 100%;
        margin-top: 10px;
    }

    .contact_footer_wrap .wpcf7{
        width: 100%;
    }

    .contact_footer_col.fc_heading{
        width: 100%;
    }

    .footer_contact_col{
        width: 100%;
        margin-top: 4px;
    }
    .top-logo {
        position: fixed;
        top: -13px;
        margin-right: -10px;
        margin: 0;
        z-index: 11;
        right: 15px;
    }

    .mobile_bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 68px;
        background: #1744a7;
        z-index: 10;
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.38);
    }

    .top-logo img{
        width: 80px;
    }

    .top_banner-wrap {
        background-size: cover;
        min-height: 290px;
    }

    .top_banner-gradient {
        width: 100%;
        right: 0;
        background: rgba(68, 23, 3, 0.66);
    }

    .top_banner-infoBlock-title {
        font-size: 45px;
    }

    .descr-on .top_banner-infoBlock-title{
        margin-top: 14px;
    }

    html {
        margin-top: 68px!important;
    }

    .top_banner-infoBlock {
        text-align: center;
    }

    .top-banner .btn.btn_more {
        margin-top: 50px;
    }

    .top_banner-infoBlock-descr {
        margin-top: 15px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.73);
        color: #fff;
        font-size: 24px;
    }

    #services a.service_item {
        border: none;
        border-bottom: 1px dashed #ccc;
    }

    section#banner {
        margin-top: 15px;
    }

    #hp_reviews {
        padding: 10px 0;
        margin-top: 15px;
        padding-bottom: 45px;
    }

    #hp_reviews .slick-prev, #hp_reviews .slick-next{
        display: none!important;
    }

    #hp_reviews .hp_reviews-carousel {
        padding: 0;
    }

    #hp_reviews .hp_reviews-carousel-item-content, #hp_reviews .hp_reviews-carousel-item-content p {
        padding: 0;
        font-size: 20px;
    }

    #hp_reviews .hp_reviews-carousel-item-content {
        margin-top: 15px;
    }

    #hp_reviews .hp_reviews-carousel-item-author {
        margin-top: 5px;
    }

    footer#footer {
        font-weight: normal;
    }

    .slick-slider .slick-dots li button:before {
        font-size: 30px;
    }

    section#hp_logos {
        padding-bottom: 45px;
        clear: both;
    }

    img.hp_logos-carousel-item-logo {
        -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
        filter: grayscale(0%);
    }

    footer#contacts_footer form .col-md-4 {
        margin-top: 15px;
    }

    h2.service_section_title, h2.logos_section_title{
        text-align: center;
    }

    .content_with_image_section {
        margin: 0px 0;
        padding-bottom: 20px;
    }

    .image_part {
        width: 100%;
        text-align: center!important;
    }

    .image_part img {
        width: 160px;
        max-width: 60%;
    }

    .content_with_image_section h2 {
        font-size: 28px;
        margin-top: 15px;
        clear: both;
        float: right;
        width: 100%;
        text-align: center;
    }
    .contact_items_img_wrap img {
        max-height: 70px;
        max-width: 100px;
    }

    .contact_items_img_wrap {
        height: 90px;
        line-height: 90px;
        margin-top: 10px;
    }

    .map_wrapper {
        margin-bottom: 15px;
    }

    section.contact_us_section {
        margin-top: 40px;
    }

    div.wpcf7 {
        text-align: center;
    }

    .contact_us_section .btn.btn-send {
        display: inline-block;
        float: none;
    }

    section#offices {
        margin-top: 30px;
        padding: 10px 0;
    }

    #offices .row>.col-md-6 {
        border-bottom: 1px dashed #a5a5a5;
        padding-bottom: 15px;
        float: left;
        width: 100%;
    }

    .office_details{
        float: left;
        width: 100%;
    }

    h2.office_title {
        text-align: center;
    }

    h3.offices_title {
        text-align: center;
    }

    footer#nav_footer {
        padding-top: 10px;
    }
    #contact_items {
        margin-top: 0;
    }

    #contact_items a {
        border-bottom: 1px dashed #ccc;
        padding-bottom: 40px;
    }

    #responsive-menu-pro-container li.responsive-menu-pro-item a .responsive-menu-pro-subarrow {
        right: auto!important;
        left: 0!important;
    }

    #footer-menu {
        padding: 0;
    }

    .vt_bgs_container_2{
        display: none;
    }

    .protocols_menu, .protocols_content, .promote-aside{
        float: none!important;
    }

    #main_pic {
        height: 300px;
    }

    .gallery-picture-holder {
        height: 300px;
    }

    .gallery-carousel .gallery-item>a{
        height:80px;
    }

    .big_contact_form-form {
        padding: 0 15px;
    }

    header.big_contact_form-header {
        padding: 0 15px;
        text-align: center;
        height: 60px;
        padding-top: 6px;
    }


    .responsive-menu-pro-button {
        background: #11388c!important;
    }

    .responsive-menu-pro-button:hover {
        background: #183b88!;
    }

}