body {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: #675c53;
    background: #ffffff;
}

a,
a:active,
a:visited {
    text-decoration: none;
    color: #3f3b40;
    transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
}

a:hover,
li.active a,
a.active {
    text-decoration: none;
    color: #ffb612;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

img {
    vertical-align: bottom;
}


/*-----Header--------*/

#page {
    position: relative;
}

.header-wrapper {
    position: fixed;
    width: 100%;
    top: 0;
    background: #fff;
    z-index: 100;
}

.header {
    width: 990px;
    margin: 0 auto;
    padding: 10px 15px 0;
}

.header-top {
    margin-bottom: 38px;
}

a.logo {
    margin-top: 10px;
    float: left;
}

a.logo-link {
    float: right;
    margin-left: 40px;
    margin-top: 3px;
}

a.header-contact {
    float: right;
    font-size: 16px;
    background: #0088ce;
    padding: 5px 9px 3px;
    color: #ffffff;
    margin-left: 40px;
    margin-top: 9px;
    font-family: 'AvenirLTStd-Book';
    text-transform: uppercase;
    transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
}

a.header-contact:hover,
a.header-contact.active {
    background: #ffb612;
}

.header-icon-search {
    float: right;
    /*margin-top: 6px;*/
}

a.close-form {
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url('../images/sprite.png') no-repeat;
    background-position: -24px -698px;
    margin-top: 11px;
    visibility: hidden;
}

a.close-form:hover {
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -698px;
}

.hp-search-block {
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin-top: 6px;
    /*margin-right: 18px;*/
}

.hp-search-block input[type="text"] {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px #675c53 solid;
    padding: 5px 0px;
    width: 0px;
    height: 40px;
    box-sizing: border-box;
    -wekit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 18px;
    font-family: 'AvenirLTStd-Book';
    visibility: hidden;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
}

.hp-top-srch-btn {
    background: #fff;
    border: none;
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 0 0 0 5px;
}

.hp-top-srch-btn:focus {
    outline: none;
}

.hp-top-srch-btn.active span {
    background: url('../images/icon-close.png') no-repeat center;
    width: 34px;
    height: 34px;
}

.hp-top-srch-btn.active:hover span {
    background: url('../images/icon-close-hover.png') no-repeat center;
}

.hp-top-srch-btn span {
    width: 34px;
    height: 34px;
    display: inline-block;
    background: url('../images/icon-search.png') no-repeat;
    /*background-position: -0px -664px;*/
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
}

.hp-top-srch-btn:hover span {
    background: url('../images/icon-search-open-hover.png') no-repeat;
    /*background-position: -0px -630px;*/
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #675c53;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #675c53;
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #675c53;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #675c53;
}


/*------main-menu---------*/

.main-menu>ul>li {
    display: inline-block;
    margin-right: 43px;
    position: relative;
    height: 80px;
}

.main-menu>ul>li:last-child {
    margin-right: 0;
}

.main-menu>ul>li>a {
    display: inline-block;
    font-size: 14px;
    color: #675c53;
    font-family: 'AvenirLTStd-Medium';
    text-transform: uppercase;
}

.main-menu>ul>li>a>span {
    display: block;
    font-size: 20px;
    font-family: 'AvenirLTStd-Book';
}

.main-menu>ul>li>a>span>span {
    color: #0088ce;
}

.main-menu>ul>li:hover>a>span>span,
.main-menu>ul>li.active>a>span>span {
    color: #ffb612;
}


/*--------------------menu---------------------*/

ul.navigation {
    font-size: 100%;
    list-style: none;
    margin: 0;
    outline: 0;
    vertical-align: baseline;
}

ul.navigation li ul {
    background: #ffffff url('../images/menu-arrow.png')no-repeat 30px 0px;
    border-bottom: 2px solid #ffb612;
    border-top: 2px solid #ffb612;
    padding: 36px 30px 34px;
    margin: 0px;
    position: absolute;
    display: none;
    z-index: 999;
    width: 328px;
    left: -30px;
    top: 78px;
}

ul.navigation li ul li {
    margin-bottom: 13px;
}

ul.navigation li ul li a {
    display: block;
    font-size: 16px;
    border: none;
    color: #675c53;
    text-transform: uppercase;
    font-family: 'AvenirLTStd-Book';
}

ul.navigation li ul li:hover a,
ul.navigation li ul li.active a,
ul.navigation li ul li a.active {
    color: #ffb612;
}

ul.navigation li ul li:last-child {
    margin-bottom: 0;
}

ul.navigation li ul li.last {
    margin-bottom: 0;
}


/*---------footer------*/

.footer-wrapper {
    background: #0088ce;
}

.footer {
    width: 990px;
    margin: 0 auto;
    /*padding: 40px 15px 27px;*/
    padding: 40px 15px;
    font-size: 14px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 35px;
}

.footer-links {
    text-align: center;
    margin-bottom: 32px;
}

.footer-links ul li {
    display: inline-block;
}

.footer-links ul li a {
    font-size: 14px;
    color: #ffffff;
    padding: 0 9px 0 6px;
    border-right: 1px #fff solid;
    line-height: 10px;
    display: inline-block;
}

.footer-links ul li:hover a {
    text-decoration: underline;
}

.footer-links ul li:last-child a {
    border-right: none;
    padding-right: 0;
}

.footer-copyright {
    color: #ffffff;
}

.footer-copyright a {
    float: right;
    color: #ffffff;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-copyright .credit-link {
    float: right;
}

.footer-copyright .credit-link a {
    float: unset;
    text-decoration: none;
}


/*-----------header-slide-------*/

.header-slide {
    background: url('../images/sncf-consulting-bg.jpg');
    height: 252px;
    position: relative;
    margin-top: 174px;
}

.header-slide-inner {
    width: 960px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
    height: 100%;
}

.owl-carousel2 .owl-nav>div {
    width: 50px;
    height: 121px;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 100;
    text-indent: -9999px;
}

.owl-carousel2 .owl-nav .owl-prev {
    left: 0;
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -225px;
}

.owl-carousel2 .owl-nav .owl-prev:hover {
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -104px;
}

.owl-carousel2 .owl-nav .owl-next {
    right: 0;
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -467px;
}

.owl-carousel2 .owl-nav .owl-next:hover {
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -346px;
}

.header-slide.hp {
    height: 486px;
    margin-bottom: 78px;
}


/*--------page-slide--------*/

.page-slide>a {
    width: 50px;
    height: 121px;
    display: inline-block;
    position: fixed;
    top: 240px;
    margin: auto;
    z-index: 100;
    transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
}

.page-slide>.page-slide-left {
    left: 0;
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -225px;
}

.page-slide>.page-slide-left:hover {
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -104px;
}

.page-slide>.page-slide-right {
    right: 0;
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -467px;
}

.page-slide>.page-slide-right:hover {
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -346px;
}


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

.hp-slider-slide {
    height: 486px;
    background-size: cover;
}

.slider-static-content {
    width: 990px;
    margin: 0 auto;
    padding: 20px 15px;
    position: absolute;
    left: 0;
    right: 0;
    top: 275px;
    z-index: 98;
}

.slider-static-content>div {
    width: 525px;
}

.slider-static-content>div h1 {
    margin-bottom: 5px;
    text-align: left;
}

.slider-static-content>div h2 {
    font-size: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: left;
    background: none;
    line-height: 25px;
}

.slider-static-content .page-icon {
    position: absolute;
    right: -92px;
    top: -245px;
}

.hp-slider {
    max-height: 528px;
    overflow: hidden;
}

.butterfly {
    position: absolute;
    left: 50%;
    top: 35px;
    z-index: 99;
    margin-left: 55px;
    opacity: 0;
    right: 0;
}

.butterfly.active {
    opacity: 1;
    margin-left: 85px;
    transition: all 0.5s ease 2s;
}

.butterfly img {
    max-width: 100%;
}


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

.navigate-icon {
    text-align: center;
    margin-bottom: 16px;
    position: absolute;
    width: 100%;
}

.navigate-icon>a {
    width: 38px;
    height: 21px;
    display: inline-block;
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -609px;
    transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
}

.navigate-icon>a:hover {
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -588px;
}

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

.page-title {
    display: table-cell;
    vertical-align: middle;
    font-size: 38px;
    color: #675c53;
    text-transform: uppercase;
    font-family: 'AvenirLTStd-Medium';
    line-height: 59px;
}

.page-title>span {
    color: #f8af00;
}

.page-title.inner>span {
    display: inline-block;
}

.page-icon {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

.header-slide-inner.hp {
    padding-top: 72px;
}

.header-slide-inner.hp .page-container {
    display: block;
    position: relative;
}

.page-block-left {
    float: left;
}

.page-block-left p,
.page-block-left h2 {
    font-size: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: left;
    background: none;
    line-height: 25px;
}

.page-block-left .page-title {
    line-height: 56px;
    margin-bottom: 55px;
    display: block;
}

.page-block-left h1 {
    margin-bottom: 5px;
}

.header-slide-inner.hp .page-icon {
    position: absolute;
    right: -92px;
    top: -47px;
}

.hp-title {
    font-size: 30px;
    color: #675c53;
    text-transform: uppercase;
    font-family: 'AvenirLTStd-Book';
    text-align: center;
    padding-bottom: 5px;
    margin-bottom: 4px;
    background: url('../images/border-btm.png') no-repeat bottom center;
}

.hp-title a:hover {
    color: #f8af00;
}

.read-more {
    text-align: center;
    margin-bottom: 11px;
}

.read-more a {
    display: inline-block;
    font-size: 16px;
    color: #675c53;
    text-transform: uppercase;
    font-family: 'AvenirLTStd-Book';
    height: 36px;
    min-width: 184px;
    border: 1px #675c53 solid;
    padding: 0 10px;
    line-height: 38px;
    text-align: center;
    transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
}

.read-more a:hover {
    background: #ffb612;
    color: #ffffff;
    border: 1px #ffb612 solid;
}

.numbers-container.hp {
    margin-bottom: 33px;
}

.hp-gray-block {
    padding: 40px 0;
    background: #f7f7f6;
}

.hp-team-block {
    width: 960px;
    position: relative;
    margin: 0 auto;
}

.hp-team-block .read-more {
    margin-bottom: 0;
    margin-top: 40px;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    background: #0088ce;
    display: inline-block;
    margin: 0 3px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
}

.owl-dots .owl-dot:hover,
.owl-dots .owl-dot.active {
    background: #f8af00
}


/*------content------*/

.content {
    width: 990px;
    margin: 0 auto;
    padding: 49px 15px;
    position: relative;
}

h1 {
    font-size: 1.125em;
    color: #675c53;
    font-weight: bold;
    text-align: center;
    margin-bottom: 37px;
    text-transform: uppercase;
}

h2 {
    font-size: 1.125em;
    color: #675c53;
    text-align: center;
    padding-bottom: 19px;
    background: url('../images/border-btm.png') no-repeat bottom center;
    margin-bottom: 45px;
    line-height: 30px;
}

p {
    font-size: 1em;
    color: #675c53;
    margin-bottom: 25px;
}


/*-----intro-block-------*/

.intro-block-container {
    padding-top: 20px;
    overflow: hidden;
}

.intro-block {
    display: table;
    width: 100%;
    margin-bottom: 25px;
}

.intro-block .half {
    display: table-cell;
    vertical-align: middle;
    /*width: 472px;*/
    width: 48%;
    position: relative;
    float: left;
}

.intro-block .half:first-child {
    margin-right: 15px;
}

.intro-block:nth-child(odd) .half:first-child {
    text-align: center;
}

.intro-block:nth-child(even) .half:first-child {
    float: right;
    text-align: center;
}

.intro-block .half h3 {
    margin-bottom: 14px;
}

.intro-block .half a {
    font-size: 14px;
    display: block;
    color: #675c53;
    line-height: 24px;
}

.intro-block .half h3,
.intro-block .half h3>a {
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'AvenirLTStd-Heavy';
    display: block;
    color: #675c53;
    line-height: 24px;
}

.icon-plus {
    position: absolute;
    right: 0px;
    bottom: -25px;
    visibility: hidden;
}

.intro-block .half:hover h3>a {
    color: #ffb612;
}

.intro-block .half:hover .icon-plus {
    visibility: visible;
}


/*------team------*/

.our-team-container {
    padding-top: 15px;
    margin-right: -18px;
}

.our-team {
    position: relative;
    width: 226px;
    height: 226px;
    border-radius: 50%;
    float: left;
    margin-right: 18px;
    margin-bottom: 20px;
    overflow: hidden;
}

.our-team>span,
.our-team>a {
    display: block;
    z-index: 1000;
}

.our-team .our-team-img {
    position: absolute;
    width: 206px;
    height: 206px;
    border-radius: 50%;
    display: block;
    top: 10px;
    left: 10px;
}

.our-team .our-team-img img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.our-team .our-team-img:before {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0 0 0 10px rgba(204, 216, 228, 0.6);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.our-team .our-team-info {
    background: #ffb612;
    background: rgba(255, 182, 18, 0.8);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 10px;
    right: 0;
    text-align: center;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: block;
    width: 206px;
    height: 206px;
}

.our-team .spinner {
    width: 226px;
    height: 226px;
    border: 5px solid #0088ce;
    border-right-color: #C7C7C7;
    border-bottom-color: #C7C7C7;
    border-radius: 50%;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    display: block;
}

.our-team .our-team-info .our-team-back {
    display: block;
    padding: 81px 0 0 0;
    text-align: center;
}

.our-team .our-team-info .our-team-back>p {
    visibility: hidden;
    color: #fff;
    padding: 10px 5px;
    margin: 0 28px;
    font-size: 14px;
    border-top: 1px solid #fff;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.our-team .our-team-info .our-team-back>span {
    visibility: hidden;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin: 0 10px 10px;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.our-team>span:hover .our-team-info,
.our-team>a:hover .our-team-info {
    opacity: 1;
}

.our-team>a:hover>.spinner,
.our-team>span:hover>.spinner {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.our-team>span:hover .our-team-info .our-team-back>span,
.our-team>a:hover .our-team-info .our-team-back>span {
    visibility: visible;
}

.our-team>span:hover .our-team-info .our-team-back>p,
.our-team>a:hover .our-team-info .our-team-back>p {
    visibility: visible;
}

.our-team.categ-team {
    display: table;
}

.our-team.categ-team>span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background: #ffb612;
    border-radius: 50%;
    text-transform: uppercase;
    padding: 0 10px;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
}

.our-team.categ-team>span a {
    color: #ffffff;
}


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

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

.bold {
    font-weight: bold;
}

.gmap iframe {
    vertical-align: bottom;
}

.mb0 {
    margin-bottom: 0;
}


/*-------form-----*/

.contact-form-container {
    background: #f8f8f8;
    padding: 40px 0 34px;
}

.contact-form-container.jod {
    padding: 40px 0;
}

.form-contents {
    background: #f8f8f8;
    position: relative;
    width: 880px;
    margin: 0 auto;
}

.form-left {
    width: 370px;
    float: left;
    margin-right: 140px;
}

.form-right {
    width: 370px;
    float: left;
    position: relative;
}

div.input,
div.row {
    clear: both;
    margin-bottom: 10px;
    vertical-align: text-top;
}

label {
    float: left;
    text-align: left;
    width: 122px;
    margin: 7px 0 0px 0px;
    font-size: 16px;
    color: #675c53;
    line-height: 19px;
}

select {
    width: 154px;
    padding: 4px 11px;
    color: #675c53;
    border: 1px solid #e0dedc;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

select:focus {
    outline: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="file"] {
    border: none;
    border: 1px solid #e0dedc;
    padding: 5px 11px;
    width: 223px;
    color: #675c53;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

input:focus {
    outline: none;
}

textarea {
    padding: 6px 11px;
    color: #675c53;
    border: 1px solid #e0dedc;
    width: 223px;
    height: 92px;
    font-size: 18px;
    vertical-align: top;
    font-family: 'Open Sans', sans-serif;
}

textarea:focus {
    outline: none;
}

div.input.textarea {
    margin-bottom: 20px;
}

div.submit {
    border: 0 none;
    clear: both;
    text-align: right;
}

input[type="submit"],
input[type="button"],
a.btn {
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    background: #0088ce;
    color: #FFF;
    font-size: 18px;
    border: none;
    width: 123px;
    height: 33px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    line-height: 33px;
    transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
}

input[type="submit"]:hover,
input[type="button"]:hover,
a.btn:hover {
    background: #ffb612;
}

.from-required-text {
    position: absolute;
    left: 0;
    bottom: 7px;
    color: #675c53;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}


/*---------consultant-block-----*/

.consultant-container {
    padding-top: 15px;
}

.consultant-left {
    text-align: center;
    float: left;
    width: 500px;
    padding: 0 15px;
}

.consultant-right {
    float: left;
    width: 460px;
}

.consultant-block {
    margin-bottom: 26px;
}

.consultant-title a {
    font-size: 18px;
    color: #675c53;
    font-weight: bold;
}

.consultant-date a,
.consultant-desc a {
    font-size: 18px;
    color: #675c53;
}

.consultant-title a:hover,
.consultant-date a:hover,
.consultant-desc a:hover {
    color: #ffb612;
}

.consultant-date {
    margin-bottom: 23px;
}

.align-right {
    text-align: right;
}

.consultant-desc {
    margin-bottom: 24px;
}


/*------numbers-block-----*/

.numbers-container {
    text-align: center;
    margin-right: -70px;
    margin-bottom: 62px;
}

.numbers-block {
    display: inline-block;
    margin-right: 70px;
}

.numbers {
    display: block;
    font-size: 90px;
    color: #0088ce;
    font-weight: bold;
}

.numbers-desc {
    display: block;
    font-size: 20px;
    color: #675c53;
    margin-top: -25px;
}


/*--------content-block----------*/

.content-block-container {
    margin-right: -25px;
    margin-bottom: 10px;
    text-align: center;
}

.content-block {
    display: inline-block;
    width: 300px;
    vertical-align: top;
    margin-right: 25px;
    text-align: left;
}


/*---------content-block-two-----------*/

.content-block-container.two-cb {
    margin-left: -15px;
    margin-right: 0;
}

.content-block-container.two-cb .content-block {
    width: 48%;
    margin-left: 15px;
    margin-right: 0;
}

.content-block-container.four-cb {
    margin-left: -15px;
    margin-right: 0;
}

.content-block-container.four-cb .content-block {
    width: 23%;
    margin-left: 15px;
    margin-right: 0;
}


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

.content-img {
    text-align: center;
    margin-bottom: 16px;
    height: 125px;
}

.content-block h3 {
    font-size: 16px;
    color: #675c53;
    font-family: 'AvenirLTStd-Heavy';
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}


/*---tabs---*/

.nav-tabs {
    text-align: center;
    margin-bottom: 26px;
}

.nav-tabs li {
    display: inline-block;
    min-width: 222px;
}

.nav-tabs li a {
    font-size: 16px;
    color: #cb0044;
    font-family: 'AvenirLTStd-Heavy';
    text-transform: uppercase;
    display: block;
    text-align: center;
    padding: 11px 10px 9px;
    margin: 0 3px;
    transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
}

.nav-tabs li.r-tabs-state-active a,
.nav-tabs li a:hover {
    background: #cb0044;
    color: #ffffff;
}

.tabs-content p {
    margin-bottom: 0;
}

.backtooffers {
    text-align: center;
    margin: 34px 15px 54px;
}

.backtooffers a {
    font-size: 18px;
    color: #0088ce;
}

.font-normal {
    font-weight: normal;
}


/*-----two-colume-block--------*/

.two-colume-block {
    margin-right: -105px;
    margin-bottom: 5px;
    padding-top: 12px;
}

.colume-block {
    display: inline-block;
    width: 425px;
    margin-right: 105px;
    vertical-align: top;
}

.colume-block h3 {
    text-align: center;
    font-size: 16px;
    color: #675c53;
    font-family: 'AvenirLTStd-Heavy';
    text-transform: uppercase;
    margin-bottom: 11px;
}

.colume-block p {
    font-size: 15px;
    margin-bottom: 0;
}


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

.apply-icon {
    text-align: center;
    margin-bottom: 16px;
}

.apply-offers-block h3 {
    text-transform: uppercase;
    text-align: center;
    color: #cb0044;
    font-family: 'AvenirLTStd-Heavy';
    margin-bottom: 24px;
}

.apply-offers-block p {
    margin-bottom: 0;
    line-height: 26px;
}

.apply-offers-block {
    margin-bottom: 40px;
    border-bottom: 1px #e0dedc solid;
    padding-bottom: 33px;
}

.support-block {
    width: 990px;
    margin: 0 auto;
    padding: 53px 15px 70px;
}

.support-block .hp-title {
    margin-bottom: 45px;
}


/*-------hp-contact-us-----*/

.hp-contact-us {
    background: url('../images/sncf-consulting-bg.jpg');
    padding: 32px 0 30px;
}

.hp-contact-us .consultant-container {
    width: 960px;
    margin: 0 auto;
    padding-top: 0;
}

.hp-contact-us .hp-title {
    margin-bottom: 40px;
}

.hp-contact-us .read-more {
    margin-top: 41px;
}

.jobs-container {
    display: table;
    width: 100%;
}

.jobs-container .consultant-left {
    display: table-cell;
    vertical-align: middle;
}

.jobs-container .consultant-right {
    float: none;
    display: table-cell;
    vertical-align: middle;
}

.job-title {
    font-size: 18px;
    color: #675c53;
    text-transform: uppercase;
    font-family: 'AvenirLTStd-Heavy';
    margin-bottom: 13px;
}

.jobs {
    margin-bottom: 12px;
}

.jobs a {
    font-size: 18px;
    color: #675c53;
    display: inline-block;
}

.jobs a span {
    font-weight: bold;
    display: block;
}

a.gotop {
    width: 52px;
    height: 52px;
    display: inline-block;
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -52px;
    position: fixed;
    right: 100px;
    bottom: 71px;
    display: none;
    transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
}

a.gotop:hover {
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -0px;
}


/*-----bxslider-----*/

.owl-nav>div {
    width: 15px;
    height: 45px;
    display: inline-block;
    position: absolute;
    top: 90px;
    z-index: 100;
    text-indent: -9999px;
}

.owl-nav>.owl-prev {
    background: url('../images/sprite.png') no-repeat;
    background-position: -0px -722px;
    left: -35px;
}

.owl-nav>.owl-prev:hover {
    background: url('../images/sprite.png') no-repeat;
    background-position: -34px -630px;
}

.owl-nav>.owl-next {
    background: url('../images/sprite.png') no-repeat;
    background-position: -30px -722px;
    right: -35px;
}

.owl-nav>.owl-next:hover {
    background: url('../images/sprite.png') no-repeat;
    background-position: -15px -722px;
}


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

.searchresult-container {
    width: 620px;
    margin: 0 auto;
    padding: 0 10px;
}

.searchresult>.cf {
    margin-bottom: 15px;
}

.searchresult>.cf .title {
    display: block;
}

.searchresult>.cf .title a {
    color: #0088ce;
}

.result-search-btn {
    text-align: center;
}

.result-search-btn input[type="text"] {
    width: 60%;
}

.result-search-btn input[type="submit"] {
    width: 30%;
}

.font-block {
    position: absolute;
    right: 15px;
    top: 10px;
}

.inc-dec-font {
    float: right;
    margin-left: 20px;
    vertical-align: middle;
    margin-top: 2px;
}

.inc-dec-font .dec-font {
    width: 19px;
    height: 17px;
    transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    background: url('../images/fonts-sprites.png') no-repeat;
    background-position: -0px -97px;
    display: inline-block;
}

.inc-dec-font .dec-font:hover {
    background-position: -0px -80px;
}

.inc-dec-font .inc-font {
    width: 21px;
    height: 20px;
    transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    background: url('../images/fonts-sprites.png') no-repeat;
    background-position: -0px -20px;
    display: inline-block;
}

.inc-dec-font .inc-font:hover {
    background-position: -0px -0px;
}

a.icon-print {
    width: 20px;
    height: 20px;
    display: inline-block;
    transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    background: url('../images/fonts-sprites.png') no-repeat;
    background-position: -0px -60px;
    vertical-align: middle;
    margin-left: 13px;
}

a.icon-print:hover {
    background-position: -0px -40px;
}

.content.contact {
    padding: 43px 0 55px;
}

.addthis_toolbox {
    width: 145px;
    margin: 0 auto;
}


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

.mobile-menu {
    display: none;
    background: #0088ce;
    padding: 10px 15px;
    margin-left: -15px;
    margin-right: -15px;
    height: 45px;
    position: relative;
}

.mobile-menu a {
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    vertical-align: top;
}

.offcenvas-menu {
    font-size: 18px;
    color: #FFF;
    line-height: 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 88px;
    height: 40px;
    display: none;
    text-align: right;
    text-transform: uppercase;
}

.offcenvas-menu a {
    background: center center no-repeat transparent;
    background-image: url('../images/menu-lines.png');
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 5px;
}

.offcenvas-menu>span {
    margin-left: 45px;
    display: inline-block;
}

.mobile-search-block {
    float: right;
    position: relative;
    margin-left: 27px;
    margin-top: 3px;
}

.mobile-menu .mobile-top-srch-btn {
    padding-left: 16px;
    border-left: 1px #fff solid;
    width: auto;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 16px;
}

.mobile-menu .mobile-top-srch-btn span {
    background: url('../images/icon-search-mobile.png') no-repeat;
    width: 16px;
    height: 16px;
    display: inline-block;
}

.dropdown-search-box {
    display: none;
    margin-right: -15px;
    margin-left: -15px;
}

.dropdown-search-box input {
    width: 85% !important;
    border: 1px solid #0088ce !important;
    float: left;
    color: #675c53 !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

.dropdown-search-box button {
    height: 34px;
    border: none;
    margin-top: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    background: #0088ce;
    color: #fff;
    width: 15%;
    font-weight: bold;
}


/*-------menu-------------*/

.mm-list>li>a,
.mm-list>li>span {
    text-transform: uppercase;
    color: #333;
}

.mm-menu {
    background: #fff;
}

.mm-menu .mm-list>li>a.mm-subclose {
    background: #0088ce;
    color: #ffffff;
}

.mm-menu .mm-list>li>a.mm-subopen:before {
    border-color: #0088ce;
}

.mm-menu .mm-list>li.mm-subtitle>a.mm-subopen:after,
.mm-menu .mm-list>li>a.mm-subclose:before {
    border-color: #ffffff !important;
}

.mm-menu .mm-list>li>a.mm-subopen:after,
.mm-menu .mm-list>li>a.mm-subclose:before {
    border-color: #0088ce;
}

.mm-list>li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
    border-bottom-width: none;
    border-bottom-style: none;
}

.mm-list>li {
    border-bottom: 1px rgba(0, 0, 0, 0.15) solid;
}

.mm-list>li.main-link>a.mm-subopen {
    width: 100%;
}

.mm-menu .mm-list>li.mm-selected>a:not(.mm-subopen),
.mm-menu .mm-list>li.mm-selected>span {
    background: #0088ce;
    color: #ffffff;
}

.mm-list a.mm-subclose {
    padding-top: 10px;
}

.mm-list a.mm-subclose:before {
    margin-bottom: -5px;
}

.mm-opened .fix-header {
    position: static;
}

.mm-opened .hp-slider-container,
.mm-opened .inner-slider {
    margin-top: 0;
}

#mm-0.mm-list>li.mm-subtitle>a:before {
    display: none;
}

.mm-menu #mm-0.mm-list>li>a.mm-subclose {
    text-indent: 0;
}

.owl-carousel .owl-item .our-team {
    margin: 0 auto;
    float: none;
    display: block;
}

.cookie-bar-wrapper {
    display: none;
    position: fixed;
    width: 100%;
    padding: 5px;
    background: rgba(0, 136, 206, 0.8);
    border-top: 1px solid #ECECEC;
    bottom: 0;
    z-index: 100;
}

.cookie-bar {
    font-size: 16px;
    position: relative;
    text-align: center;
    color: #ffffff;
}

.cookie-bar a {
    color: #ffffff;
}

.cookie-text {
    margin-right: 30px;
}

.cookie-close {
    position: absolute;
    right: 10px;
    top: 0;
    cursor: pointer;
}

html.mm-opened .header-slide {
    margin-top: 0;
}


/*-----------sitemap--------------*/

.sitemap ul li {
    margin-bottom: 5px;
    padding-left: 15px;
    background: url('../images/icon-square.png') no-repeat left 9px;
}

.sitemap ul ul {
    margin: 0px 0px 0px 20px;
}


/*------------Media Quary--------------*/

@media all and (max-width: 1024px) {
    .page-slide {
        display: none;
    }
}

@media all and (max-width: 1024px) and (min-width: 991px) {
    .two-colume-block {
        margin-right: 0;
    }
    .colume-block:last-child {
        margin-right: 0;
    }
    .our-team-container {
        margin-right: 0;
    }
    .our-team:nth-child(4n+4) {
        margin-right: 0;
    }
    .header-slide-inner.hp .page-icon {
        right: 10px;
        top: -25px;
    }
    .header-slide-inner.hp .page-icon img {
        width: 350px;
    }
    .numbers-container {
        margin-right: 0;
    }
    .numbers-block:last-child {
        margin-right: 0;
    }
    .carousel-arrow>.carousel-right {
        right: -25px;
    }
    .carousel-arrow>.carousel-left {
        left: -25px;
    }
    .owl-nav>.owl-prev {
        left: 10px;
    }
    .owl-nav>.owl-next {
        right: 10px;
    }
    .butterfly {
        left: 50%;
        top: 120px;
    }
    .butterfly img {
        width: 400px;
    }
    .page-title {
        padding-left: 15px;
    }
}

@media all and (max-width: 990px) and (min-width: 768px) {
    .form-left {
        width: 48%;
        margin-right: 4%;
    }
    .form-right {
        width: 48%;
    }
    label {
        margin-bottom: 10px;
    }
    .consultant-left,
    .consultant-right {
        width: 50%;
    }
    .content-block-container.two-cb .content-block {
        display: inline-block;
        width: 47%;
    }
    .content-block-container.four-cb .content-block {
        display: inline-block;
        width: 22%;
    }
    .butterfly {
        left: 58%;
        top: 105px;
    }
    .butterfly img {
        width: 225px;
    }
    .page-title {
        padding-left: 15px;
    }
}

@media all and (max-width: 990px) {
    .owl-dots {
        display: none !important;
    }
    .owl-nav>.owl-prev {
        left: 10px;
    }
    .owl-nav>.owl-next {
        right: 10px;
    }
    .header {
        width: 100%;
    }
    .header-top {
        margin-bottom: 15px;
        text-align: center;
    }
    .main-menu {
        display: none;
    }
    a.logo img {
        width: 200px;
    }
    .header-icon-search {
        display: none;
    }
    a.header-contact {
        display: none;
    }
    a.logo-link {
        margin-left: 10px;
    }
    a.logo-link img {
        width: 65px;
    }
    /*--------------------*/
    .header-slide-inner {
        width: 100%;
    }
    .page-icon {
        float: none;
        text-align: right;
    }
    .page-icon img {
        width: auto;
        max-width: 100%;
        height: auto;
    }
    .header-slide {
        min-height: 1px;
        margin-top: 107px;
    }
    .header-slide.hp {
        height: auto;
        margin-bottom: 15px;
    }
    .content {
        width: 100%;
    }
    .font-block {
        right: 15px;
    }
    .img-responsive {
        width: auto;
        height: auto;
        max-width: 100%;
    }
    .footer {
        width: 100%;
        padding: 15px;
    }
    a.gotop {
        display: none;
        right: 10px;
        bottom: 10px;
    }
    .intro-block-left {
        width: 50%;
    }
    .intro-block-left img {
        width: auto;
        max-width: 100%;
        height: auto;
    }
    .intro-block {
        margin-bottom: 25px;
    }
    .footer-copyright {
        text-align: center;
    }
    .footer-copyright .credit-link {
        float: unset;
        display: block;
    }
    .footer-copyright a {
        float: none;
        display: block;
        margin-top: 10px;
    }
    .footer-copyright .credit-link a {
        display: inline-block;
    }
    .contact-form-container {
        padding: 30px 15px;
    }
    .form-contents {
        width: 100%;
    }
    label {
        width: 100%;
        float: none;
        display: block;
    }
    select,
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="file"],
    textarea {
        width: 100%;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
    }
    .numbers-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .numbers-block {
        margin: 0 25px 20px;
    }
    .numbers {
        font-size: 60px;
    }
    .numbers-desc {
        margin-top: -15px;
    }
    .content-block-container {
        margin-right: 0;
    }
    .content-block {
        width: 100%;
        display: block;
    }
    .two-colume-block {
        margin-right: 0;
    }
    .colume-block {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }
    .contact-form-container.jod {
        padding: 30px 15px;
    }
    .searchresult-container {
        width: 100%;
    }
    .hp-team-block {
        width: 100%;
    }
    .support-block {
        width: 100%;
        padding: 15px;
    }
    .header-slide-inner.hp .page-icon {
        display: none;
    }
    .hp-contact-us .consultant-container {
        width: 100%;
        padding: 15px;
    }
    .jobs-container .consultant-left {
        width: 50%;
    }
    .jobs-container .consultant-left img {
        width: auto;
        max-width: 100%;
        height: auto;
    }
    .carousel-arrow>.carousel-left {
        left: 0;
    }
    .carousel-arrow>.carousel-right {
        right: 0;
    }
    .mobile-menu {
        display: block;
    }
    .offcenvas-menu {
        display: block;
        position: absolute;
        top: 3px;
        left: 0px;
        z-index: 1000;
    }
    .our-team-container {
        margin-right: 0;
        text-align: center;
    }
    .our-team.categ-team {
        display: inline-block;
        vertical-align: top;
    }
    .our-team.categ-team>span {
        display: block;
        height: 100%;
        line-height: 226px;
    }
    .our-team {
        float: none;
        display: inline-block;
        margin: 0 10px 20px;
    }
    .slider-static-content {
        width: 100%;
    }
    .slider-static-content>div {
        width: 100%;
    }
}

@media all and (max-width: 767px) {
    .intro-block .half {
        width: 100%;
        margin-right: 0 !important;
    }
    .intro-block .half:first-child {
        margin-bottom: 15px;
    }
    .intro-block .half img {
        max-width: 100%;
    }
    .form-left {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    .form-right {
        width: 100%;
        float: none;
    }
    .slider-static-content {
        position: static;
    }
    .consultant-left {
        width: 100%;
        float: none;
        display: block;
        margin-bottom: 25px;
    }
    .consultant-right {
        width: 100%;
        display: block;
        float: none;
    }
    .page-title {
        font-size: 26px;
        line-height: 40px;
        padding-right: 30px;
        padding-left: 15px;
    }
    .page-block-left .page-title {
        line-height: 34px;
        padding-left: 25px;
    }
    .header-slide-inner.hp {
        padding-top: 15px;
    }
    .support-block .hp-title {
        margin-bottom: 15px;
    }
    .intro-block-container {
        padding-top: 0;
    }
    .nav-tabs li {
        display: block;
    }
    .r-tabs .r-tabs-accordion-title a {
        display: block;
        text-align: center;
        padding: 11px 10px 9px;
        background: #cb0044;
        color: #ffffff;
        margin-bottom: 5px;
    }
    .font-block {
        display: none;
    }
    .content {
        padding: 20px 15px;
    }
    .butterfly {
        margin-left: 0;
        left: 0;
        text-align: center;
        top: 180px;
    }
    .butterfly.active {
        margin-left: 0;
    }
    .butterfly img {
        width: 250px;
    }
    /*---------------------*/
    .content-block-container.two-cb,
    .content-block-container.four-cb {
        margin: 0;
    }
    .content-block-container.two-cb .content-block {
        width: 100%;
        margin-left: 0;
    }
    .content-block-container.four-cb .content-block {
        width: 100%;
        margin-left: 0;
    }
}