@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);

.jq-checkbox {
    border: 1px solid #c3c3c3;
    border-radius: 3px;
    background: #f5f5f5;
    background: -webkit-linear-gradient(#fff, #e6e6e6);
    background: linear-gradient(#fff, #e6e6e6);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05), inset -1px -1px #fff, inset 1px -1px #fff;
}

.jq-checkbox:not(.disabled):hover {
    border-color: gray;
}

.jq-checkbox.checked .jq-checkbox__div,
.jq-checkbox.indeterminate .jq-checkbox__div {
    border-radius: 2px;
    background: #666;
    box-shadow: inset 0 -3px 6px #aaa;
}

.jq-checkbox.focused, .jq-radio.focused {
    border: 1px solid #08c;
}

.jq-radio {
    border: 1px solid #c3c3c3;
    border-radius: 50%;
    background: #f5f5f5;
    background: -webkit-linear-gradient(#fff, #e6e6e6);
    background: linear-gradient(#fff, #e6e6e6);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05), inset -1px -1px #fff, inset 1px -1px #fff;
}

.jq-radio:not(.disabled):hover {
    border-color: gray;
}

.jq-radio.checked .jq-radio__div {
    border-radius: 50%;
    background: #777;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .7);
}

.jq-file {
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

.jq-file__name {
    border: 1px solid #ccc;
    border-bottom-color: #b3b3b3;
    border-radius: 4px;
    background: #fff;
    box-shadow: inset 1px 1px #f1f1f1;
    color: #333;
}

.jq-file__browse {
    border-left: 1px solid #ccc;
    border-radius: 0 4px 4px 0;
    background: #f5f5f5;
    background: -webkit-linear-gradient(#fff, #e6e6e6);
    background: linear-gradient(#fff, #e6e6e6);
    box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
    color: #333;
    text-shadow: 1px 1px #fff;
}

.jq-file:hover .jq-file__browse {
    background: #e6e6e6;
    background: -webkit-linear-gradient(#f6f6f6, #e6e6e6);
    background: linear-gradient(#f6f6f6, #e6e6e6);
}

.jq-file:active .jq-file__browse {
    background: #f5f5f5;
    box-shadow: inset 1px 1px 3px #ddd;
}

.jq-file.focused .jq-file__name {
    border: 1px solid #5794bf;
}

.jq-file.disabled, .jq-file.disabled .jq-file__browse,
.jq-file.disabled .jq-file__name {
    border-color: #ccc;
    background: #f5f5f5;
    box-shadow: none;
    color: #888;
}

.jq-number__field, .jq-number__spin {
    border: 1px solid #ccc;
    border-bottom-color: #b3b3b3;
    border-radius: 4px;
    box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
}

.jq-number__field:hover, input[type=email].styler:hover,
input[type=password].styler:hover, input[type=search].styler:hover,
input[type=tel].styler:hover, input[type=text].styler:hover,
input[type=url].styler:hover, textarea.styler:hover {
    border-color: #b3b3b3;
}

.jq-number__field input {
    color: #333;
}

.jq-number__spin {
    background: #f5f5f5;
    background: -webkit-linear-gradient(#fff, #e6e6e6);
    background: linear-gradient(#fff, #e6e6e6);
    box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
    text-shadow: 1px 1px #fff;
}

.jq-number__spin:hover {
    background: #e6e6e6;
    background: -webkit-linear-gradient(#f6f6f6, #e6e6e6);
    background: linear-gradient(#f6f6f6, #e6e6e6);
}

.jq-number__spin:active {
    background: #f5f5f5;
    box-shadow: inset 1px 1px 3px #ddd;
}

.jq-number__spin.minus:after, .jq-number__spin:after {
    border-right: 5px solid transparent;
    border-bottom: 5px solid #999;
    border-left: 5px solid transparent;
}

.jq-number__spin.minus:after {
    border-top: 5px solid #999;
    border-bottom: none;
    top: 5px;
}

.jq-number__spin.minus:hover:after {
    border-top-color: #000;
}

.jq-number__spin.plus:hover:after {
    border-bottom-color: #000;
}

.jq-number.focused .jq-number__field {
    border: 1px solid #5794bf;
}

.jq-number.disabled .jq-number__field, .jq-number.disabled .jq-number__spin {
    border-color: #ccc;
    background: #f5f5f5;
    box-shadow: none;
    color: #888;
}

.jq-number.disabled .jq-number__spin:after {
    border-bottom-color: #aaa;
}

.jq-number.disabled .jq-number__spin.minus:after {
    border-top-color: #aaa;
}

.jq-selectbox__select {
    background: #fbfbfb;
    color: #333;
}

.jq-selectbox__select:hover {
    background: #e6e6e6;
}

.jq-selectbox__select:active {
    background: #f5f5f5;
}

.jq-selectbox.disabled .jq-selectbox__select {
    background: #f5f5f5;
    box-shadow: none;
    color: #888;
}

.jq-selectbox .placeholder {
    color: #888;
}

.jq-selectbox__dropdown {
    background: #fbfbfb;
}

.jq-selectbox.opened .jq-selectbox__trigger-arrow:after {
    content: "\f106";
}

.jq-selectbox li, .jq-selectbox.opened .jq-selectbox__trigger-arrow:after,
.jq-selectbox__trigger-arrow:after {
    -webkit-transition: all .15s ease-in;
            transition: all .15s ease-in;
}

.jq-selectbox__trigger-arrow:after {
    content: "\f107";
    position: absolute;
    right: 10px;
    font-size: 18px;
    font-family: fontawesome;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.jq-selectbox__search input {
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: inset 1px 1px #f1f1f1;
    color: #333;
}

.jq-selectbox__not-found {
    background: #f0f0f0;
}

.jq-selectbox li {
    margin: 0;
    padding: 12px 0;
    text-indent: 15px;
    border-top: 1px solid #fff;
    min-height: 18px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    white-space: nowrap;
}

.jq-selectbox li.selected {
    background-color: #a3abb1;
    color: #fff;
}

.jq-selectbox li:hover {
    color: #c0392b;
    background: #fff;
}

.jq-selectbox li.disabled {
    color: #aaa;
}

.jq-selectbox li.disabled:hover {
    background: 0 0;
}

.jq-selectbox li.optgroup {
    font-weight: 700;
}

.jq-selectbox li.optgroup:hover {
    background: 0 0;
    color: #231f20;
}

.jq-select-multiple {
    border: 1px solid #ccc;
    border-bottom-color: #b3b3b3;
    border-radius: 4px;
    background: #fff;
    box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
    color: #333;
}

.jq-select-multiple.focused {
    border: 1px solid #5794bf;
}

.jq-select-multiple.disabled {
    border-color: #ccc;
    background: #f5f5f5;
    box-shadow: none;
    color: #888;
}

.jq-select-multiple li:first-child {
    border-radius: 3px 3px 0 0;
}

.jq-select-multiple li:last-child {
    border-radius: 0 0 3px 3px;
}

.jq-select-multiple li.selected {
    background: #08c;
    color: #fff;
}

.jq-select-multiple li.disabled {
    color: #aaa;
}

.jq-select-multiple li.selected.disabled,
.jq-select-multiple.disabled li.selected {
    background: #ccc;
    color: #fff;
}

input[type=email].styler, input[type=password].styler, input[type=search].styler,
input[type=tel].styler, input[type=text].styler, input[type=url].styler,
textarea.styler {
    padding: 8px 9px;
    border: 1px solid #ccc;
    border-bottom-color: #b3b3b3;
    border-radius: 4px;
    box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
    color: #333;
}

input[type=search].styler {
    -webkit-appearance: none;
}

textarea.styler {
    overflow: auto;
}

input[type=email].styler:focus, input[type=password].styler:focus,
input[type=search].styler:focus, input[type=tel].styler:focus,
input[type=text].styler:focus, input[type=url].styler:focus,
textarea.styler:focus {
    border-color: #ccc;
    border-top-color: #b3b3b3;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

button.styler, input[type=button].styler, input[type=reset].styler,
input[type=submit].styler {
    overflow: visible;
    padding: 8px 11px;
    border: 1px solid #ccc;
    border-bottom-color: #b3b3b3;
    border-radius: 4px;
    outline: none;
    background: #f5f5f5;
    background: -webkit-linear-gradient(#fff, #e6e6e6);
    background: linear-gradient(#fff, #e6e6e6);
    box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
    color: #333;
    text-shadow: 1px 1px #fff;
    cursor: pointer;
}

button.styler::-moz-focus-inner, input[type=button].styler::-moz-focus-inner,
input[type=reset].styler::-moz-focus-inner,
input[type=submit].styler::-moz-focus-inner {
    padding: 0;
    border: 0;
}

button.styler:not([disabled]):hover,
input[type=button].styler:not([disabled]):hover, input[type=reset].styler:hover,
input[type=submit].styler:not([disabled]):hover {
    background: #e6e6e6;
    background: -webkit-linear-gradient(#f6f6f6, #e6e6e6);
    background: linear-gradient(#f6f6f6, #e6e6e6);
}

button.styler:not([disabled]):active,
input[type=button].styler:not([disabled]):active,
input[type=reset].styler:active,
input[type=submit].styler:not([disabled]):active {
    background: #f5f5f5;
    box-shadow: inset 1px 1px 3px #ddd;
}

button.styler[disabled], input[type=button].styler[disabled],
input[type=submit].styler[disabled] {
    border-color: #ccc;
    background: #f5f5f5;
    box-shadow: none;
    color: #888;
}

.jq-checkbox, .jq-radio {
    top: -1px;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin: 0 4px 0 0;
    cursor: pointer;
}

.jq-checkbox.checked .jq-checkbox__div {
    width: 12px;
    height: 12px;
    margin: 2px 0 0 2px;
}

.jq-checkbox.indeterminate .jq-checkbox__div {
    width: 12px;
    height: 4px;
    margin: 6px 0 0 2px;
}

.jq-checkbox.disabled {
    opacity: .55;
}

.jq-radio.checked .jq-radio__div {
    width: 10px;
    height: 10px;
    margin: 3px 0 0 3px;
}

.jq-radio.disabled {
    opacity: .55;
    cursor: default;
}

.jq-file {
    width: 270px;
}

.jq-file input {
    height: auto;
    line-height: 1em;
    cursor: pointer;
}

.jq-file__name {
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    height: 34px;
    padding: 0 80px 0 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.jq-file__browse {
    position: absolute;
    top: 1px;
    right: 1px;
    padding: 0 10px;
}

.jq-number {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0 36px 0 0;
}

.jq-number__field {
    width: 100px;
}

.jq-number__field input {
    box-sizing: border-box;
    width: 100%;
    padding: 8px 9px;
    border: none;
    outline: none;
    background: 0 0;
    text-align: left;
    -moz-appearance: textfield;
}

.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.jq-number__spin {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 14px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
}

.jq-number__spin.minus {
    top: auto;
    bottom: 0;
}

.jq-number__spin:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 11px;
    width: 0;
    height: 0;
}

.jq-selectbox {
    vertical-align: middle;
    cursor: pointer;
}

.jq-selectbox__select {
    height: 45px;
    padding: 0 45px 0 15px;
}

.jq-selectbox__select-text {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.jq-selectbox__trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 100%;
}

.jq-selectbox__trigger-arrow {
    position: absolute;
    width: 30px;
    height: 45px;
}

.jq-selectbox__dropdown {
    box-sizing: border-box;
    width: 100%;
    padding: 0;
}

.jq-selectbox__search {
    margin: 5px;
}

.jq-selectbox__search input {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 5px 27px 6px 8px;
    outline: none;
    -webkit-appearance: textfield;
}

.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
    -webkit-appearance: none;
}

.jq-selectbox__not-found {
    margin: 5px;
    padding: 5px 8px 6px;
    font-size: 13px;
}

.jq-select-multiple ul, .jq-selectbox ul {
    margin: 0;
    padding: 0;
}

.jq-selectbox li.optgroup:hover {
    cursor: default;
}

.jq-selectbox li.option {
    padding-left: 25px;
}

.jq-select-multiple {
    box-sizing: border-box;
    padding: 1px;
    cursor: default;
}

.jq-select-multiple li {
    padding: 3px 9px 4px;
    list-style: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    white-space: nowrap;
}

.jq-select-multiple li.optgroup {
    font-weight: 700;
}

.jq-select-multiple li.option {
    padding-left: 25px;
}

.main-nav {
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
    opacity: 0;
}

@-webkit-keyframes zoomInNew {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomInNew {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.zoomInNew {
    -webkit-animation-name: zoomInNew;
            animation-name: zoomInNew;
    opacity: 1 !important;
}

body {
    background-color: #fff;
    font-size: 14px;
    color: #5c5c5c;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

::selection {
    background: #1674c4;
    color: #fff;
}

::-moz-selection {
    background: #1674c4;
    color: #fff;
}

ol, ul {
    padding: 10px;
}

ul.list-inline {
    margin-left: 0;
}

h1, h2, h3, h4, h5, h6, ol, p, ul {
    margin: 0;
}

p {
    color: #5c5c5c;
}

p {
    font-size: 14px;
}

a {
    -webkit-transition: background .3s, color .3s;
            transition: background .3s, color .3s;
}

a:hover {
    outline: none;
    text-decoration: none;
    color: #034990;
}

a:focus {
    outline: none;
    outline-offset: 0;
    text-decoration: none;
}

.btn {
    border-radius: 0;
}

.btn:focus {
    outline: none;
}

.transform-middle {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.mtb10 {
    margin-bottom: 10px;
}

.mtb20 {
    margin-bottom: 20px;
}

.mtb30 {
    margin-bottom: 30px;
}

.mtb40 {
    margin-bottom: 40px;
}

.mtb50 {
    margin-bottom: 50px;
}

.mtb60 {
    margin-bottom: 60px;
}

.mtb70 {
    margin-bottom: 70px;
}

.mtb80 {
    margin-bottom: 80px;
}

.mtb90 {
    margin-bottom: 90px;
}

.mtb100 {
    margin-bottom: 100px;
}

.ptb10 {
    padding-bottom: 10px;
}

.ptb20 {
    padding-bottom: 20px;
}

.ptb30 {
    padding-bottom: 30px;
}

.ptb40 {
    padding-bottom: 40px;
}

.ptb50 {
    padding-bottom: 50px;
}

.ptb60 {
    padding-bottom: 60px;
}

.ptb70 {
    padding-bottom: 70px;
}

.ptb80 {
    padding-bottom: 80px;
}

.ptb90 {
    padding-bottom: 90px;
}

.ptb100 {
    padding-bottom: 100px;
}

.ptt10 {
    padding-top: 10px;
}

.ptt20 {
    padding-top: 20px;
}

.ptt30 {
    padding-top: 30px;
}

.ptt40 {
    padding-top: 40px;
}

.ptt50 {
    padding-top: 50px;
}

.ptt60 {
    padding-top: 60px;
}

.ptt70 {
    padding-top: 70px;
}

.ptt80 {
    padding-top: 80px;
}

.ptt90 {
    padding-top: 90px;
}

.ptt100 {
    padding-top: 100px;
}

.img-100p, .our-heros ul.heres-content>li img {
    width: 100%;
}

.overflow {
    overflow: hidden;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

.link-color {
    color: #c8293c;
}

.section-info, .section-title {
    text-align: center;
    text-transform: uppercase;
}

.section-title {
    margin-top: 100px;
    color: #000;
    position: relative;
    font-size: 36px;
    margin-bottom: 40px;
}

.section-title:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    background: url(../img/bg/border.png) no-repeat;
    width: 140px;
    height: 8px;
}

.section-info {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 70px;
}

.btn-main {
    background: 0 0;
    border: 2px solid;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-transition: all .3s !important;
            transition: all .3s !important;
}

.btn-main:after, .btn-main:before {
    content: '';
    width: 0;
    height: 0;
    -webkit-transform: rotate(360deg);
    border-style: solid;
    border-width: 0;
    position: absolute;
    z-index: -1;
    -webkit-transition: .5s;
            transition: .5s;
}

.btn-main:before {
    border-color: transparent transparent transparent #fff;
    bottom: 0;
    left: 0;
}

.btn-main:after {
    border-color: transparent #fff transparent transparent;
    top: 0;
    right: 0;
}

.btn-main:hover:after, .btn-main:hover:before {
    border-width: 165px 0 0 165px;
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
}

.btn-main:hover:after {
    border-width: 0 165px 165px 0;
}

.btn-main:active {
    background: 0 0;
    border-color: #fff;
    color: #e64e3e;
}

.btn-main:focus, .btn-main:hover {
    background: 0 0;
    color: #e64e3e;
}

.btn-main:focus, .btn-main:hover {
    border-color: #fff;
}

.horizontal-center {
    position: absolute;
    left: 50%;
    -webkit-transform: translateZ(-50%);
            transform: translateZ(-50%);
}

.vertical-center {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.horizontal-vertical-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.caption-full-width {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.servise-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.servise-icon:hover {
    cursor: pointer;
    -webkit-animation-name: bounce;
            animation-name: bounce;
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}

.loader-running #wrapper {
    opacity: 0;
}

.loader {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.loader-inactive {
    display: none;
}

.loader .loader-progress {
    background-color: #1674c4;
    position: fixed;
    z-index: 2000;
    top: 50%;
    left: 0;
    height: 6px;
    overflow: hidden;
    -webkit-transition: width 1s;
            transition: width 1s;
}

.loader .loader-progress-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: -32px;
    bottom: 0;
    background: #1674c4;
    background-size: 32px 32px;
    -webkit-animation: pace-stripe-animation 500ms linear infinite;
            animation: pace-stripe-animation 500ms linear infinite;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    z-index: 100;
    background: rgba(22, 116, 196, .9);
    -webkit-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
}

.main-nav-change .languages, .main-nav-change .logo-left {
    top: 20px !important;
}

.main-nav-change {
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-name: zoomInNew;
            animation-name: zoomInNew;
    opacity: 1 !important;
}

.logo-text {
    font-size: 32px;
    line-height: 46px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    text-transform: uppercase;
}

.logo-left {
    -webkit-transition: top .5s ease-in-out;
            transition: top .5s ease-in-out;
    height: 86px;
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
    float: left;
    background: #fff;
}

.logo-left a {
    display: inline-block;
    color: #1674c4;
}

.header-menu-list {
    float: right;
    margin-top: 19px;
}

.header-menu-list>a {
    height: 86px;
}

.header-menu-list a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 30px 15px;
    color: #fff;
}

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

.main-nav ul li {
    position: relative;
    float: left;
}

.main-nav ul li a {
    display: block;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
}

.main-nav li ul {
    display: none;
    position: absolute;
    right: 0;
}

.main-nav li:hover>ul, .work-item .content:hover .icon {
    display: block;
}

.main-nav li:hover li {
    float: none;
}

.main-nav li:hover a {
    background: #1982db;
}

.main-nav li:hover li a:hover {
    background: #268ee7;
}

.main-nav ul ul ul {
    right: 100%;
    top: 0;
}

.main-nav ul:after, .main-nav ul:before {
    content: " ";
    display: table;
}

.main-nav ul:after {
    clear: both;
}

.languages {
    position: fixed;
    right: 50px;
    top: 50px;
    z-index: 16;
    font-size: 16px;
    -webkit-transition: top .5s ease-in-out, right .5s;
            transition: top .5s ease-in-out, right .5s;
}

.languages a {
    color: #fff;
    font-weight: 700;
    -webkit-transition: opacity .3s;
            transition: opacity .3s;
}

.languages .active a {
    opacity: 1;
}

.languages .active a:hover, .languages .disabled a {
    opacity: .5;
}

.languages .disabled a:hover {
    opacity: 1;
}

.nav-header {
    z-index: 999;
    border-bottom: 1px solid #cbc2c1;
    padding: 20px 100px;
}

.nav-header .dismiss-button {
    margin-top: 10px;
    cursor: pointer;
    -webkit-animation-delay: .5s;
            animation-delay: .5s;
    -webkit-animation-duration: .5s;
            animation-duration: .5s;
}

.nav-header .dismiss-button img {
    -webkit-transition: -webkit-transform .3s;
            transition: transform .3s;
            transition: transform .3s, -webkit-transform .3s;
}

.nav-header .dismiss-button:hover img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

.menu-trigger {
    z-index: 20;
    display: block;
    font-size: 18px;
    margin-top: 10px;
    margin-left: 30px;
}

.nav-menu {
    font-family: inherit;
    top: 0;
    left: 0;
    z-index: 150;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(251, 251, 251, .95);
    text-transform: uppercase;
    overflow-y: scroll;
}

.nav-menu>ul {
    width: 100%;
    margin: 0 auto;
    text-align: right;
}

.nav-menu>li {
    display: block;
    padding: 0;
    margin: 0;
}

.nav-menu ul>li>a {
    font-size: 40px;
    font-weight: 700;
    display: block;
    color: #5e5e5e;
    border: none;
    padding: 25px 100px;
    text-transform: uppercase;
    -webkit-transition: none;
            transition: none;
}

.nav-menu ul>li span.info, .nav-menu ul>li span.title {
    float: left;
    width: 220px;
    text-align: left;
    margin-left: 25px;
}

.nav-menu ul>li span.info {
    display: none !important;
    margin-top: 2px;
    font-size: 14px;
    text-transform: lowercase;
    font-weight: 400;
}

.nav-menu ul>li span.title {
    font-size: 40px;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    -webkit-transition: none;
            transition: none;
}

.nav-menu .active a, .nav-menu ul>li>a:hover {
    color: #fff;
    background: rgba(22, 116, 196, .9);
    text-decoration: none;
}

.nav-menu ul>li.active .info, .nav-menu ul>li:hover .info {
    display: block !important;
}

.mobile-menu__link.has-menu {
    position: relative;
}

.mobile-menu__link.has-menu:before {
    right: 40px;
}

.mobile-menu__link.has-menu:after, .mobile-menu__link.has-menu:before {
    position: absolute;
    content: '';
    top: 50%;
    background: #333;
    height: 1px;
    width: 10px;
}

.mobile-menu__link.has-menu:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.mobile-menu__link.has-menu:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    right: 33px;
}

.mobile-menu__link.has-menu[aria-expanded=true]:before {
    right: 33px;
}

.mobile-menu__link.has-menu[aria-expanded=true]:after {
    right: 40px;
}

.mobile-menu .list-group-item {
    border: none;
}

.mobile-menu .list-group-item:first-child {
    border: none;
    border-radius: 0;
}

.mobile-menu .list-group-item:last-child {
    border: none;
    border-radius: 0;
}

.mobile-menu__link {
    background: #fff;
    font-size: 40px !important;
    font-weight: 700;
    padding: 23px 20px 23px 120px;
}

.mobile-menu__link:hover {
    background-color: #1674c4 !important;
    color: #fff !important;
}

.mobile-menu__link:hover:after, .mobile-menu__link:hover:before {
    background: #fff !important;
}

.mobile-menu__content>.mobile-menu__link {
    font-size: 20px !important;
    padding: 23px 20px 23px 140px;
}

.mobile-menu__content>.mobile-menu__content>.mobile-menu__link {
    padding: 23px 20px 23px 150px;
}

#home-slider {
    overflow: hidden;
    position: relative;
}

#home-slider .item {
    background-size: cover;
}

#home-slider .color-overlay {
    width: 100%;
    height: 100%;
    opacity: .8;
    z-index: 10;
    background-size: cover;
}

#home-slider .caption {
    position: absolute;
    top: 50%;
    margin-top: -180px;
    left: 0;
    padding: 10px;
    right: 0;
    text-transform: uppercase;
    z-index: 15;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    text-align: center;
}

.slider-logo {
    margin-bottom: 40px;
}

#home-slider .caption .main-title {
    color: #fff;
    font-size: 140px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#home-slider .caption .sub-title {
    font-size: 34px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

#home-slider .carousel-indicators .active {
    height: 10px;
}

#home-slider .carousel-indicators li {
    width: 45px;
    height: 8px;
    border: 1px solid #fff;
}

.navbar-right li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    padding-top: 30px;
    padding-bottom: 30px;
}

.navbar-right li.active a {
    background-color: rgba(0, 0, 0, .2);
}

.navbar-brand h1 {
    margin-top: 5px;
}

.left-control, .right-control {
    position: absolute;
    top: 50%;
    height: 51px;
    width: 51px;
    line-height: 48px;
    z-index: 20;
    font-size: 70px;
    color: #fff;
    text-align: center;
    -webkit-transition: all .5s ease;
            transition: all .5s ease;
}

.left-control:focus, .left-control:hover, .right-control:focus,
.right-control:hover {
    color: #fff;
}

.left-control {
    left: -51px;
}

.right-control {
    right: -51px;
}

#home-slider:hover .right-control {
    right: 30px;
}

#home-slider:hover .left-control {
    left: 30px;
}

#home-slider #arrow-bellow {
    position: absolute;
    left: 50%;
    bottom: 50px;
    display: inline-block;
    margin-left: -12px;
    z-index: 10;
    -webkit-animation: bounce 3000ms infinite;
            animation: bounce 3000ms infinite;
}

#features {
    padding-top: 100px;
    position: relative;
}

#features:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    border-left: 550px solid transparent;
    border-right: 550px solid transparent;
    border-top: 403px solid #f2f2f2;
}

.feature-item .content {
    padding-top: 130px;
}

.feature-item:nth-child(2) .content {
    padding-top: 0;
}

.feature-item .icon {
    margin-bottom: 30px;
}

.feature-item .title {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.feature-item .info, .why-kings .tab-content p {
    font-size: 16px;
}

.information-item {
    padding: 0;
}

.information-item:hover .content figcaption,
.work-item:hover .content figcaption {
    -webkit-transform: scale(.9);
            transform: scale(.9);
    display: block;
    background: #1674c4;
    opacity: 0.8;
}

.information-item:hover .caption {
    opacity: 0;
}

.information-item-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
}

.information-item .content {
    position: relative;
    -webkit-transition: all .3s;
            transition: all .3s;
    overflow: hidden;
}

.information-item .content figcaption *, .work-item .content figcaption * {
    color: #fff;
}

.information-item .content figcaption {
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 30px;
    display: none;
    color: #fff;
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
 }

.information-item .content figcaption .text {
    font-size: 16px;
    text-align: left;
}

.information-item .content figcaption .text .title-client,
.work-item .content figcaption .text .title-client {
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
    display: block;
}

.information-item .caption {
    text-align: center;
    width: 100%;
    padding: 20px;
}

.work-item {
    padding: 0;
}

.work-item-titles {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
}

.work-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
}

.work-item .content {
    position: relative;
    -webkit-transition: all .3s;
            transition: all .3s;
    overflow: hidden;
}

.work-item .content .icon {
    display: none;
}

.work-item .content figcaption {
    display: none;
    color: #fff;
    opacity: 0;
    -webkit-transition: all .5s;
            transition: all .5s;
}

.work-item .content figcaption .icon, .work-item .content figcaption .title {
    -webkit-animation-duration: .5s;
            animation-duration: .5s;
}

.work-item .content figcaption .title {
    font-size: 30px;
    font-weight: 700;
}

.work-item .content figcaption .text {
    font-size: 16px;
    text-align: left;
}

.work-item .caption {
    text-align: center;
    width: 100%;
    padding: 20px;
}

.single-skill:nth-child(1) .progress-bar {
    background-color: #7d0032;
}

.single-skill:nth-child(2) .progress-bar {
    background-color: #ed1c24;
}

.single-skill:nth-child(3) .progress-bar {
    background-color: #ff6c40;
}

.single-skill .lead {
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
}

.single-skill .progress {
    height: 6px;
    background-color: #dbdbdb;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 25px;
}

.single-skill .progress-bar {
    box-shadow: none;
    text-align: right;
    padding-right: 12px;
    font-size: 12px;
    font-weight: 600;
    background: #ed1c24;
}

.single-skill .progress .progress-bar.six-sec-ease-in-out {
    -webkit-transition: width 2s ease-in-out;
            transition: width 2s ease-in-out;
}

.why-kings {
    background-color: #1674c4;
    position: relative;
}

.why-kings .title {
    font-size: 26px !important;
    text-transform: none !important;
    margin-bottom: 30px !important;
}

.placeholder-left, .placeholder-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
}

.placeholder-left {
    left: 0;
    float: left;
}

.placeholder-right {
    right: 0;
    background: url(../img/design/skills.jpg) top left no-repeat;
    background-size: cover;
}

.why-kings .left-part {
    margin-right: 30px;
}

.why-kings .left-part * {
    color: #fff;
}

.why-kings .left-part .title {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
}

.why-kings .nav-tabs {
    border: none;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.why-kings .nav>li>a {
    border: none !important;
    border-radius: 0;
}

.why-kings .nav>li>a:focus, .why-kings .nav>li>a:hover {
    background: #034990;
    color: #fff;
}

.why-kings .nav-tabs>li.active>a, .why-kings .nav-tabs>li.active>a:focus,
.why-kings .nav-tabs>li.active>a:hover {
    background: #034990;
    color: #fff;
    text-transform: uppercase;
}

.other-page-nav.main-nav {
    background: url(../img/services/breadcrumbs.jpg) no-repeat center center;
    background-size: cover;
    height: 80px;
}

.other-page-nav .languages, .other-page-nav .logo-left {
    top: 20px !important;
}

#our-services, #portfolio-section {
    background-color: #eceded;
}

#our-services .feature-item {
    margin-bottom: 80px;
}

#our-services .feature-item img {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    -webkit-transition: all .3s;
            transition: all .3s;
}

#our-services .feature-item:hover {
    cursor: pointer;
}

#our-services .feature-item:hover img {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
}

#some-principles .right-part * {
    font-size: 16px;
}

#some-principles .right-part .title {
    font-size: 30px;
    color: #5c5c5c;
}

#some-principles .right-part ul>li {
    margin-bottom: 30px;
    position: relative;
    margin-left: 40px;
}

#some-principles .right-part ul>li:before {
    content: "";
    position: absolute;
    top: 5px;
    left: -40px;
    width: 9px;
    height: 9px;
    background-color: #c8293c;
    border-radius: 10px;
}

.call-to-action {
    background: url(../img/services/01.jpg) no-repeat center;
    background-size: cover;
}

.call-to-action .color-overlay {
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(45deg, rgba(125, 0, 50, .8), rgba(200, 41, 60, .8));
    background-image: linear-gradient(45deg, rgba(125, 0, 50, .8), rgba(200, 41, 60, .8));
}

.call-to-action * {
    color: #fff;
}

.call-to-action h3, .each-price .title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

.call-to-action h5 {
    font-size: 18px;
}

.each-price {
    padding: 60px 20px;
    -webkit-transition: all .3s;
            transition: all .3s;
}

.each-price .title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
}

.each-price .price {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #c8293c;
}

.each-price .details {
    margin-bottom: 40px;
}

.each-price .details p {
    margin-bottom: 10px;
}

.each-price .btn-main {
    padding: 10px 25px;
    text-transform: uppercase;
    border-color: #000;
    color: #000;
    overflow: hidden;
}

.each-price .btn-main:before {
    border-color: transparent transparent transparent #c8293c;
}

.each-price .btn-main:after {
    border-color: transparent #c8293c transparent transparent;
}

.each-price .btn-main:active, .each-price .btn-main:hover {
    border-color: #c8293c;
    color: #fff;
}

.each-price.active {
    background-image: -webkit-linear-gradient(45deg, #c8293c, #ff6c40);
    background-image: linear-gradient(45deg, #c8293c, #ff6c40);
    -webkit-transition: all .3s;
            transition: all .3s;
}

.each-price.active .btn-main:hover {
    background: 0 0;
    border-color: #fff;
    color: #c8293c;
}

.each-price.active .btn-main:hover:before {
    border-color: transparent transparent transparent #fff;
}

.each-price.active .btn-main:hover:after {
    border-color: transparent #fff transparent transparent;
}

.each-price.active * {
    color: #fff;
    border-color: #fff;
}

#portfolio-section .color-overlay {
    width: 100%;
    height: 100%;
    background: url(../img/portfolio/left-bg.png) left 50% no-repeat,
                url(../img/portfolio/right-bg.png) right 50% no-repeat;
}

#portfolio-section .left-part, #portfolio-section .right-part {
    padding: 0 45px;
}

#portfolio-section .title, .work-filter>li>a {
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
}

#portfolio-section .title {
    margin-bottom: 20px;
    font-size: 30px;
}

#portfolio-section .details p {
    font-size: 16px;
    margin-bottom: 10px;
}

.work-filter {
    margin-bottom: 80px;
}

.work-filter>li>a {
    font-size: 18px;
}

.work-filter>li>.active, .work-filter>li>a:hover {
    color: #1674C4;
}

#filterable-portfolio .all-work-items {
    margin: -15px;
}

#filterable-portfolio .work-item {
    width: 33.33%;
    float: left;
    padding: 15px;
    box-sizing: border-box;
}

#filterable-portfolio .work-item:hover .content figcaption {
    -webkit-transform: scale(1);
            transform: scale(1);
}

#filterable-portfolio .work-item .content:hover figcaption .title {
    top: 70%;
    -webkit-transform: translate(-50%, -70%);
            transform: translate(-50%, -70%);
    opacity: 1;
}

#filterable-portfolio .work-item .content:hover figcaption .icon {
    top: 30%;
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
    opacity: 1;
}

.isotope, .isotope .isotope-item {
    -webkit-transition-duration: .8s;
            transition-duration: .8s;
}

.isotope {
    -webkit-transition-property: height, width;
            transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: opacity, -webkit-transform;
            transition-property: transform, opacity;
            transition-property: transform, opacity, -webkit-transform;
}

.isotope .isotope-item.no-transition, .isotope.no-transition,
.isotope.no-transition .isotope-item {
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
}

#contact-breadcrumbs, .about-us-header {
    background-color: #eceded;
}

.some-info {
    margin: 70px 20px 60px;
}

.some-info .title {
    font-size: 24px;
    color: #000;
    font-weight: 500;
    margin-bottom: 50px;
    text-align: center;
}

.some-info .info {
    font-size: 16px;
    text-align: center;
}

.our-heros .title {
    font-size: 24px;
    color: #000;
    font-weight: 500;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
}

.our-heros ul.heres-content>li {
    display: inline-block;
    float: left;
    width: 20%;
}

#twitter>div, .each-hero {
    position: relative;
}

.each-hero * {
    color: #fff;
}

.each-hero .details {
    background-image: -webkit-linear-gradient(bottom, rgba(200, 41, 60, .95), rgba(255, 108, 64, .8));
    background-image: linear-gradient(to top, rgba(200, 41, 60, .95), rgba(255, 108, 64, .8));
    padding: 40px;
    display: none;
    -webkit-animation-duration: .8s;
            animation-duration: .8s;
}

.each-hero:hover .details {
    display: block;
}

.each-hero .name {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    -webkit-animation-delay: .5s;
            animation-delay: .5s;
}

.each-hero .position, .each-hero .social-icon {
    -webkit-animation-delay: .7s;
            animation-delay: .7s;
}

.each-hero .position {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 20px;
}

.each-hero .social-icon {
    font-size: 16px;
    margin-bottom: 30px;
}

.each-hero .social-icon>li {
    margin-right: 15px;
    display: inline;
}

.each-hero .social-icon>li a:hover {
    -webkit-animation: bounceIn .5s;
            animation: bounceIn .5s;
}

.each-hero .info {
    -webkit-animation-delay: .5s;
            animation-delay: .5s;
}

.about-page .work-item .icon {
    -webkit-animation-delay: .3s;
            animation-delay: .3s;
}

.about-page .work-item .icon .zoom-icon {
    font-size: 35px;
}

#book-certificates-slider .owl-controls .owl-buttons,
#client-feedback .owl-controls .owl-buttons {
    width: 60px;
    margin: 0 auto;
    overflow: hidden;
}

#book-certificates-slider .owl-controls .owl-buttons .owl-next,
#book-certificates-slider .owl-controls .owl-buttons .owl-prev,
#client-feedback .owl-controls .owl-buttons .owl-next,
#client-feedback .owl-controls .owl-buttons .owl-prev {
    float: left;
}

#book-certificates-slider .owl-controls .owl-buttons .owl-prev,
#client-feedback .owl-controls .owl-buttons .owl-prev {
    margin-right: 15px;
}

#book-certificates-slider .owl-controls .icon-nav,
#client-feedback .owl-controls .icon-nav {
    font-family: fontawesome;
    font-size: 50px;
    font-style: normal;
    display: inline;
    text-align: center;
    -webkit-transition: all .3s;
            transition: all .3s;
}

#book-certificates-slider .owl-controls .icon-nav:hover,
#client-feedback .owl-controls .icon-nav:hover {
    color: #1674c4;
}

#book-certificates-slider .owl-item .item {
    margin-bottom: 30px;
    text-align: center;
}

#book-certificates-slider .owl-item .item img {
    display: inline-block;
}

#client-feedback .owl-item .item {
    -webkit-transform: translateY(60px) !important;
            transform: translateY(60px) !important;
    margin: 0 2px;
    text-align: center;
    padding: 30px;
    -webkit-transform: scale(.8);
            transform: scale(.8);
    overflow: hidden;
    opacity: .3;
    -webkit-transition: all .3s;
            transition: all .3s;
}

#about-info p, #client-feedback .owl-item .item * {
    color: #000;
}

#client-feedback .owl-item .item img {
    border-radius: 100%;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
}

.client-image {
    margin-bottom: 20px;
}

#client-feedback .owl-item .item .title {
    font-size: 22px;
    margin-bottom: 10px;
}

#client-feedback .owl-item .item .position {
    font-size: 16px;
    margin-bottom: 30px;
}

#client-feedback .owl-item .item .feedback {
    font-size: 16px;
}

#client-feedback .owl-item .content {
    display: none;
    -webkit-transition: all .3s;
            transition: all .3s;
}

#client-feedback .owl-item.active .item {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
}

#client-feedback .owl-item.active .content, #footer .footer-adress strong,
#our-clients .each-client a {
    display: block;
}

#client-feedback .owl-item.active img {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
}

#gmap {
    height: 660px;
}

.comments-form .section-title {
    margin-top: 0;
    margin-bottom: 70px;
}

.comments-form .form input, .comments-form .form textarea {
    border-radius: 0;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    margin-bottom: 20px;
    padding: 20px;
    background: 0 0;
}

.comments-form .form textarea {
    height: 165px;
}

.comments-form .form input:focus, .comments-form .form textarea:focus {
    box-shadow: none;
    border-color: #c8293c;
}

.comments-form .form .btn-submit {
    background: #c8293c;
    color: #fff;
    padding: 12px 25px;
}

#blog-section article *, .comments-form .form .btn-submit:hover {
    color: #fff;
}

.sort-item .second-sort {
    float: left;
}

.sort-item .second-sort .select {
    width: 200px;
}

.sort-item .select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.sort-item .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    color: #5e5e5e;
    width: auto;
    min-width: 150px;
    height: 40px;
    text-transform: uppercase;
}

.sort-item .select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: none;
    color: #5e5e5e;
    padding: 8px 15px;
    -webkit-transition: all .2s ease-in;
            transition: all .2s ease-in;
}

.sort-item .select-styled:after {
    content: "\f107";
    position: absolute;
    top: 5px;
    margin-left: 20px;
    font-size: 18px;
    font-family: fontawesome;
}

.sort-item .select-styled.active, .sort-item .select-styled:active {
    background: #fbfbfb;
    color: #5e5e5e !important;
}

.sort-item .select-styled.active:after, .sort-item .select-styled:active:after {
    content: "\f106";
}

.sort-item .select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fbfbfb;
}

.sort-item .select-options li {
    margin: 0;
    padding: 12px 0;
    text-indent: 15px;
    border-top: 1px solid #fff;
    -webkit-transition: all .15s ease-in;
            transition: all .15s ease-in;
}

.sort-item .select-options li:hover {
    color: #c0392b;
    background: #fff;
}

.sort-item .select-options li[rel=hide] {
    display: none;
}

#blog-section article {
    position: relative;
    margin-bottom: 30px;
    height: 250px;
}

#blog-section article:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, .5);
    -webkit-transition: background-color .25s;
            transition: background-color .25s;
}

#blog-section article:hover:before {
    background-image: -webkit-linear-gradient(45deg, rgba(22, 116, 196, .8), rgba(77, 183, 200, .8));
    background-image: linear-gradient(45deg, rgba(22, 116, 196, .8), rgba(77, 183, 200, .8));
}

#blog-section article a {
    -webkit-transition: opacity 0s;
            transition: opacity 0s;
}

#blog-section article a:hover {
    opacity: .8;
}

#blog-section article:nth-child(n) {
    background-size: cover;
}

#blog-section .article-01 {
    background: url(../img/blog/01.jpg) no-repeat center;
}

#blog-section .article-02 {
    background: url(../img/blog/02.jpg) no-repeat center;
}

#blog-section .article-03 {
    background: url(../img/blog/03.jpg) no-repeat center;
}

#blog-section .article-04 {
    background: url(../img/blog/04.jpg) no-repeat;
}

#blog-section .article-05 {
    background: url(../img/blog/05.jpg) no-repeat;
}

.row-full-height {
    height: 100%;
}

.col-full-height {
    height: 100%;
    vertical-align: middle;
}

.row-same-height {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.col-xs-height {
    display: table-cell;
    float: none !important;
}

#blog-section .post-info .date {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 15px 10px 30px 20px;
}

#blog-section .post-info .post-number {
    font-size: 180px;
    letter-spacing: -30px;
    font-weight: 300;
    line-height: 70%;
}

#blog-section .details {
    border-left: 3px solid;
    padding-left: 30px;
    margin: 60px 10px;
}

.entry-meta li {
    margin-right: 15px;
    font-weight: 300;
    padding: 0;
}

.entry-meta li:after {
    content: "/";
    padding-left: 10px;
}

.entry-meta li:last-child:after {
    content: none;
    padding-left: 0;
}

#blog-section .details h4 {
    font-size: 36px;
    margin-bottom: 10px;
}

.blog-pagination .pagination {
    padding-right: 0;
}

.blog-pagination li:first-child>i {
    margin-right: 60px;
}

.blog-pagination li.disabled>i {
    color: #eee;
}

.blog-pagination li.disabled>i:hover {
    color: #eee;
    cursor: default;
}

.blog-pagination li>i {
    border: none;
    font-size: 60px;
    color: #dcdcdc;
    padding: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.blog-pagination li>i:hover {
    background: 0 0;
    color: #c8293c;
    cursor: pointer;
}

.blog-pagination li>i:focus {
    background: 0 0;
    color: #c8293c;
}

#blog-details-section .post-info {
    background-image: -webkit-linear-gradient(bottom, #1674C4, #4DB7C8);
    background-image: linear-gradient(to top, #1674C4, #4DB7C8);
}

#blog-details-section .post-info * {
    color: #fff;
}

#blog-details-section .post-info .date {
    font-size: 10px;
    font-weight: 300;
    padding: 10px;
    text-transform: uppercase;
}

#blog-details-section .post-info .post-number {
    font-size: 61px;
    letter-spacing: -10px;
    line-height: 70%;
}

.post-details .headline {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}

.post-details .entry-meta {
    font-weight: 300;
    color: #000;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.post-details .details p {
    margin-bottom: 30px;
    font-size: 15px;
}

.comments-content .section-title {
    margin-top: 0;
}

.each-comments {
    margin-bottom: 60px;
}

.each-comments .media-left {
    padding-right: 30px;
}

.each-comments .headline {
    font-size: 24px;
    color: #8d8d8d;
    margin-bottom: 7px;
}

.each-comments .date, .main-accordion .panel-body p {
    margin-bottom: 20px;
}

.each-comments p {
    font-size: 16px;
    color: #838383;
}

#count-down .counter-content .icon, .each-comments .comments-info {
    margin-bottom: 30px;
}

#our-clients img {
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    opacity: .5;
    -webkit-transition: all .3s;
            transition: all .3s;
}

#our-clients .each-client:hover img {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
    opacity: 1;
}

#count-down .color-overlay {
    width: 100%;
    height: 100%;
    background-color: #242121;
    background-image: -webkit-linear-gradient(45deg, #c8293c, #ff6c40);
    background-image: linear-gradient(45deg, #c8293c, #ff6c40);
}

#count-down .counter-content *, #twitter-carousel .item p {
    color: #fff;
}

#count-down .counter-content .counter {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
}

#count-down .counter-content .title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#count-down .counter-content .info {
    font-weight: 16;
}

#about-info .icon {
    margin-bottom: 30px;
}

#about-info .title {
    font-weight: 400;
    margin-bottom: 22px;
    font-size: 22px;
}

#about-info .info {
    font-size: 22px;
    font-weight: 300;
}

#about-info .text {
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    line-height: 30px;
    display: table;
    margin: 0 auto;
}

#text-info-section {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #1674c4;
}

#text-info-section p {
    color: #fff;
    font-size: 16px;
    padding-bottom: 20px;
}

#text-info-section ul {
    padding-left: 20px;
}

#text-info-section li {
    line-height: 30px;
    font-size: 16px;
    color: #fff;
    list-style: initial;
}

#twitter {
    background: -webkit-linear-gradient(left, #0075be 10%, #0095da 50%, #00adef 100%);
    background: linear-gradient(to right, #0075be 10%, #0095da 50%, #00adef 100%);
    padding: 40px 0;
}

#twitter-carousel {
    position: relative;
    z-index: 15;
}

.twitter-icon {
    position: absolute;
    left: -100px;
}

.twitter-icon .fa-twitter {
    font-size: 24px;
    height: 64px;
    width: 64px;
    line-height: 65px;
    border-radius: 50%;
    position: relative;
}

.twitter-icon .fa-twitter:after {
    position: absolute;
    content: "";
    border-width: 8px;
    border-style: solid;
    left: 24px;
    bottom: -14px;
}

#twitter-carousel .item .info {
    font-size: 18px;
    margin-bottom: 10px;
}

#twitter-carousel .item .link {
    font-size: 16px;
    font-weight: 300;
}

#twitter-carousel .item a {
    color: #002d59;
}

.twitter-left-control, .twitter-right-control {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 100;
    opacity: 0;
    font-size: 80px;
    color: #fff;
    -webkit-transition: all .3s;
            transition: all .3s;
}

.twitter-left-control:focus, .twitter-right-control:focus {
    box-shadow: none;
}

.twitter-left-control {
    left: 40px;
}

.twitter-right-control {
    right: 40px;
}

#twitter:hover .twitter-left-control {
    left: 80px;
    opacity: 1;
}

#twitter:hover .twitter-right-control {
    right: 80px;
    opacity: 1;
}

.content-section p {
    margin-bottom: 10px;
}

.main-accordion .panel {
    box-shadow: none;
    border-radius: 0;
}

.main-accordion .panel-heading {
    padding: 0;
}

.main-accordion .panel-heading strong {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}

.main-accordion .panel-heading a {
    display: block;
    padding: 15px 45px 15px 15px;
    position: relative;
}

.main-accordion .panel-heading a:hover {
    color: #333;
}

.main-accordion .panel-heading a:before {
    right: 22px;
}

.main-accordion .panel-heading a:after, .main-accordion .panel-heading a:before {
    position: absolute;
    content: '';
    top: 50%;
    background: #1674c4;
    height: 1px;
    width: 10px;
}

.main-accordion .panel-heading a:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.main-accordion .panel-heading a:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    right: 15px;
}

.main-accordion .panel-heading a[aria-expanded=true]:before {
    right: 15px;
}

.main-accordion .panel-heading a[aria-expanded=true]:after {
    right: 21px;
}

.main-accordion .panel-body {
    padding: 15px;
}

.main-accordion .panel-body strong {
    display: block;
    font-size: 16px;
}

.popup-gallery .work-item {
    width: 25% !important;
}

#footer {
    background: #3b3b3b;
}

#footer address {
    margin-bottom: 0;
}

#footer .footer-adress, #footer .footer-adress a {
    color: #999;
}

#footer .address-wrap {
    height: 200px;
    max-width: 200px;
}

#footer .footer-logo {
    height: 200px;
}

#footer .color-overlay {
    width: 100%;
    height: 100%;
    background: url(../img/bg/footer-overlay-bg.png) no-repeat left;
}

.nav-footer>li, .social-icon-footer>li {
    margin-right: 30px;
}

.nav-footer>li:last-child, .social-icon-footer>li:last-child {
    margin-right: 0;
}

.nav-footer>li>a {
    font-size: 16px;
    color: #fff;
    display: block;
}

.social-icon-footer>li a {
    font-size: 20px;
    color: #bdbdbd;
}

.copyright {
    background-color: #363536;
    padding: 35px;
}

.copyright .info {
    color: #fff;
}

.copyright a.designed-by:hover {
    color: #fff !important;
}

.copyright .info .designed-by, .copyright .info a:hover, .nav-footer>li.active a,
.nav-footer>li>a:hover, .social-icon-footer>li a:hover {
    color: #e64e3e;
}

.image-wall-portfolio {
    padding-top: 30px;
    padding-bottom: 20px;
}

.image-wall-portfolio .free-wall {
    margin: 15px;
}

.image-wall-portfolio .free-wall .popup-modal {
    position: relative;
    display: block;
}

.image-wall-portfolio .free-wall .popup-modal:hover:after {
    opacity: 1;
}

.image-wall-portfolio .free-wall .popup-modal:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: 0;
    background: rgba(22, 116, 196, .9);
    -webkit-transition: all .5s;
            transition: all .5s;
}

.image-wall-portfolio .brick {
    width: 221.2px;
    display: block;
}

.image-wall-portfolio .info {
    padding: 15px;
    color: #333;
}

.image-wall-portfolio .brick img {
    margin: 0;
    padding: 0;
    display: block;
}

.preload-bg {
    position: fixed;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 101;
}

@media only screen and (max-width:1400px) {
    .each-hero .name {
        font-size: 22px !important;
    }

    .each-hero .position {
        font-size: 18px !important;
    }
}

@media only screen and (max-width:1200px) {
    #filterable-portfolio .work-item {
        width: 50% !important;
    }

    .our-heros ul.heres-content>li {
        width: 33.33% !important;
    }
}

@media only screen and (max-width:992px) {
    #features:before {
        border: none !important;
    }

    .feature-item .content {
        padding-top: 0 !important;
    }

    .single-skill .lead {
        font-size: 17px !important;
    }

    .why-kings .left-part .title {
        font-size: 40px !important;
        margin-bottom: 30px !important;
    }

    .caption .main-title {
        font-size: 60px !important;
        margin-bottom: 15px !important;
    }

    .caption .sub-title {
        font-size: 30px !important;
        margin-bottom: 50px !important;
    }

    .home-slider .slider-button {
        font-size: 14px !important;
    }

    .feature-item {
        margin-bottom: 30px;
    }

    #some-principles .right-part {
        margin-bottom: 100px;
    }

    #blog-details .social-icon {
        text-align: left;
    }

    #our-clients .each-client, #some-principles .left-part {
        margin-bottom: 50px;
    }

    #contact-breadcrumbs .color-overlay, #portfolio-section .color-overlay {
        background: 0 0 !important;
    }
}

@media only screen and (max-width:768px) {
    .nav-header {
        padding: 20px 30px !important;
    }

    .nav-menu ul>li>a {
        padding: 25px !important;
        font-size: 25px !important;
    }

    .about-us-header .header-image img {
        width: 100%;
    }

    #filterable-portfolio .all-work-items {
        margin: 15px !important;
    }

    #filterable-portfolio .work-item {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 15px;
    }

    .logo-left {
        left: 50px !important;
    }

    .twitter-left-control {
        left: 30px !important;
    }

    .twitter-right-control {
        right: 30px !important;
    }

    .caption .main-title {
        font-size: 40px !important;
        margin-bottom: 10px !important;
    }

    .caption .sub-title {
        font-size: 20px !important;
        margin-bottom: 30px !important;
    }

    #about-info .each-part, #count-down .counter-content .each-counter {
        margin-bottom: 50px;
    }

    #portfolio-section .left-part, #portfolio-section .right-part {
        padding: 45px !important;
    }

    #blog-section .post-info {
        text-align: center;
        border-bottom: 2px solid;
        margin: 15px !important;
        padding-bottom: 20px;
    }

    #blog-section .post-info .date {
        margin: 20px !important;
    }

    #blog-section .col-xs-height {
        display: block !important;
    }

    #blog-section .post-info .post-number {
        font-size: 80px !important;
        letter-spacing: 0 !important;
    }

    .our-heros ul.heres-content>li {
        width: 50% !important;
    }

    #client-feedback .owl-item .item {
        padding: 0 !important;
    }

    #client-feedback .owl-item .item img {
        display: none !important;
    }
}

@media only screen and (max-width:480px) {
    .logo-left {
        left: 20px !important;
    }

    .our-heros ul.heres-content>li {
        width: 100% !important;
    }
}

@media (max-width:768px) {
    .logo-left {
        float: none;
        width: auto;
        padding-left: 20px;
    }

    .mobile-menu__link {
        font-size: 30px !important;
    }

    .mobile-menu__content>.mobile-menu__link, .mobile-menu__link {
        padding: 23px 20px 23px 30px;
    }

    .mobile-menu__content>.mobile-menu__content>.mobile-menu__link {
        padding: 23px 20px 23px 50px;
    }

    .slider-logo img {
        width: 100%;
    }

    #blog-section article {
        height: auto;
    }

    #blog-section .details {
        border: none;
        padding-left: 0;
        margin: 20px 0;
    }

    #blog-section .details h4 {
        font-size: 20px;
    }
}

@media (max-width:1200px) {
    .information-item-title {
        font-size: 24px;
    }
}

@media (max-width:992px) {
    .why-kings .left-part {
        max-height: none;
    }

    #footer {
        text-align: center;
    }

    #footer .transform-middle {
        -webkit-transform: none;
                transform: none;
        position: static;
    }

    #footer .address-wrap {
        display: table;
        margin: 0 auto;
    }

    #footer .address-wrap, #footer .footer-logo {
        height: auto;
        padding: 30px 0;
    }
}
