@import url(shop.css);
@import url(transition.css);

body {
    position: relative;
    color: #a75ec4;
    color: #0f7c82;
    color: #ee811c;
    color: #249bd7;
    color: #d31f64;
    color: #31af20;
    color: #8b8a1f;
    color: #0cb7eb;
    color: #ffbbc3;
}

.tooltipster-fall,
.tooltipster-grow.tooltipster-show {
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-base {
    display: flex;
    pointer-events: none;
    position: absolute;
}

.tooltipster-box {
    flex: 1 1 auto;
}

.tooltipster-content {
    box-sizing: border-box;
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
}

.tooltipster-ruler {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
}

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
    opacity: 1;
}

.tooltipster-grow {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
    opacity: 1;
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    transform: rotateZ(0);
    -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
    -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-initial {
    top: 0 !important;
}

.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    top: 0 !important;
    opacity: 0;
}

.tooltipster-slide {
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-initial {
    left: -40px !important;
}

.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    left: 0 !important;
    opacity: 0;
}

@keyframes tooltipster-fading {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.tooltipster-update-fade {
    animation: tooltipster-fading 0.4s;
}
@keyframes tooltipster-rotating {
    25% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(2deg);
    }
    100% {
        transform: rotate(0);
    }
}

.tooltipster-update-rotate {
    animation: tooltipster-rotating 0.6s;
}

@keyframes tooltipster-scaling {
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.tooltipster-update-scale {
    animation: tooltipster-scaling 0.6s;
}

.tooltipster-sidetip .tooltipster-box {
    background: #565656;
    border: 2px solid #000;
    border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
    margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
    margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
    margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
    margin-bottom: 8px;
}

.tooltipster-sidetip .tooltipster-content {
    color: #fff;
    line-height: 18px;
    padding: 6px 14px;
}

.tooltipster-sidetip .tooltipster-arrow {
    overflow: hidden;
    position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
    height: 10px;
    margin-left: -10px;
    top: 0;
    width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    right: 0;
    top: 0;
    width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    left: 0;
    top: 0;
    width: 10px;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
    bottom: 0;
    height: 10px;
    margin-left: -10px;
    width: 20px;
}

.tooltipster-sidetip .tooltipster-arrow-background,
.tooltipster-sidetip .tooltipster-arrow-border {
    height: 0;
    position: absolute;
    width: 0;
}

.tooltipster-sidetip .tooltipster-arrow-background {
    border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #565656;
    left: 0;
    top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #565656;
    left: -3px;
    top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #565656;
    left: 3px;
    top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #565656;
    left: 0;
    top: -3px;
}

.tooltipster-sidetip .tooltipster-arrow-border {
    border: 10px solid transparent;
    left: 0;
    top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #000;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #000;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #000;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #000;
}

.tooltipster-sidetip .tooltipster-arrow-uncropped {
    position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
    left: -10px;
}

.tooltipster-sidetip.tooltipster-borderless .tooltipster-box {
    border: none;
    background: #1b1b1b;
    background: rgba(10, 10, 10, 0.9);
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-bottom .tooltipster-box {
    margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-left .tooltipster-box {
    margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-right .tooltipster-box {
    margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-top .tooltipster-box {
    margin-bottom: 8px;
}

.tooltipster-sidetip.tooltipster-borderless .tooltipster-arrow {
    height: 8px;
    margin-left: -8px;
    width: 16px;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-left .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-borderless.tooltipster-right .tooltipster-arrow {
    height: 16px;
    margin-left: 0;
    margin-top: -8px;
    width: 8px;
}

.tooltipster-sidetip.tooltipster-borderless .tooltipster-arrow-background {
    display: none;
}

.tooltipster-sidetip.tooltipster-borderless .tooltipster-arrow-border {
    border: 8px solid transparent;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #1b1b1b;
    border-bottom-color: rgba(10, 10, 10, 0.9);
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #1b1b1b;
    border-left-color: rgba(10, 10, 10, 0.9);
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #1b1b1b;
    border-right-color: rgba(10, 10, 10, 0.9);
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #1b1b1b;
    border-top-color: rgba(10, 10, 10, 0.9);
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -8px;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-right .tooltipster-arrow-uncropped {
    left: -8px;
}

.tooltipster-follower .tooltipster-box {
    background: #565656;
    border: 2px solid #000;
    border-radius: 4px;
}

.tooltipster-follower .tooltipster-content {
    color: #fff;
    line-height: 18px;
    padding: 6px 14px;
}

.tooltipster-follower.tooltipster-borderless .tooltipster-box {
    border: none;
    background: #1b1b1b;
    background: rgba(10, 10, 10, 0.9);
}

.tooltipster-follower.tooltipster-light .tooltipster-box {
    border-radius: 3px;
    border: 1px solid #ccc;
    background: #ededed;
}

.tooltipster-follower.tooltipster-light .tooltipster-content {
    color: #666;
}

.tooltipster-follower.tooltipster-noir .tooltipster-box {
    border-radius: 0;
    border: 3px solid #000;
    background: #fff;
}

.tooltipster-follower.tooltipster-noir .tooltipster-content {
    color: #000;
}

.tooltipster-follower.tooltipster-punk .tooltipster-box {
    border-radius: 5px;
    border: none;
    border-bottom: 3px solid #f71169;
    background: #2a2a2a;
}

.tooltipster-follower.tooltipster-shadow .tooltipster-box {
    border: none;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.1);
}

.tooltipster-follower.tooltipster-shadow .tooltipster-content {
    color: #8d8d8d;
}

.art-img-wrapper {
    margin: 4px 15px 30px 0;
}

.art-img {
    border: 1px solid #ccc;
    padding: 2px;
}

.content strong,
.content b,
.content h2,
.content h3,
.content .title-h2,
.content .title-h3 {
    color: #000;
}

.content p {
    text-align: justify;
}

.push1 {
    height: 1px;
}

.push2 {
    height: 2px;
}

.push3 {
    height: 3px;
}

.push4 {
    height: 4px;
}

.push5 {
    height: 5px;
}

.push6 {
    height: 6px;
}

.push7 {
    height: 7px;
}

.push8 {
    height: 8px;
}

.push9 {
    height: 9px;
}

.push10 {
    height: 10px;
}

.push15 {
    height: 15px;
}

.push20 {
    height: 20px;
}

.push25 {
    height: 25px;
}

.push30 {
    height: 30px;
}

.push35 {
    height: 35px;
}

.push40 {
    height: 40px;
}

.push45 {
    height: 45px;
}

.push50 {
    height: 50px;
}

.push55 {
    height: 55px;
}

.push60 {
    height: 60px;
}

.push70 {
    height: 70px;
}

.push80 {
    height: 80px;
}

.push90 {
    height: 90px;
}

.push100 {
    height: 100px;
}

.f8 {
    font-size: 8px;
}

.f9 {
    font-size: 9px;
}

.f10 {
    font-size: 10px;
}

.f11 {
    font-size: 11px;
}

.f12 {
    font-size: 12px;
}

.f13 {
    font-size: 13px;
}

.f14 {
    font-size: 14px;
}

.f15 {
    font-size: 15px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

.f20 {
    font-size: 20px;
}

.f22 {
    font-size: 22px;
}

.f24 {
    font-size: 24px;
}

.f26 {
    font-size: 26px;
}

.f28 {
    font-size: 28px;
}

.f30 {
    font-size: 30px;
}

.f34 {
    font-size: 34px;
}

.f36 {
    font-size: 36px;
}

.red {
    color: red;
}

.kelson {
    font-family: "Open Sans Condensed", sans-serif;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    overflow-x: hidden;
}

.main-wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    padding: 0;
    margin-bottom: -425px;
}

.footer-push {
    height: 425px;
}

.footer-wrapper {
    min-height: 425px;
    background: #fff;
    position: relative;
    z-index: 301;
    font-size: 13px;
    color: #000;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-top-wrapper {
    padding: 50px 0;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

.footer-top-inner {
    padding-right: 280px;
    min-height: 150px;
}

.footer-top-last {
    max-width: 250px;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
}

.footer-top-wrapper {
    min-height: 315px;
}

.footer-top-wrapper .title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
    color: #0f7c82;
    text-transform: uppercase;
}

.footer-text {
    padding-right: 30px;
}

.footer-menu li {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-menu .active a {
    color: #ea285e;
    cursor: auto;
    pointer-events: none;
}

.footer-menu li:last-of-type {
    margin-bottom: 0;
}

.footer-menu a {
    text-decoration: none;
}

.footer-contacts-el {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
}

.footer-contacts-el a {
    text-decoration: none;
}

.footer-contacts-el a:hover {
    color: #0f7c82;
}

.footer-top-last .button:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.footer-img {
    width: 15px;
    color: #ea285e;
}

.social-links a {
    margin: 0 10px 0 0;
}

.footer-wrapper .social-links {
    padding-top: 15px;
}

.social-links a {
    color: #0f7c82;
    margin: 0 5px 0 0;
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 40px;
    text-align: center;
    transition: color 0.1s ease-in-out;
}

.social-links .vk_link {
    color: #5d84ae;
}

.social-links .fb_link {
    color: #3b5998;
}

.social-links .tw_link {
    color: #00acee;
}

.social-links .telegram_link {
    color: #249bd7;
}

.social-links .yutb_link {
    color: #f50000;
}

.social-links .ok_link {
    color: #ee811c;
}

.social-links a:hover {
    color: #0f7c82;
}

@media (max-width: 1259px) {
    .footer-top-inner {
        padding-right: 0;
    }

    .footer-top-first {
        margin-bottom: 50px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-top-last {
        max-width: 100%;
        position: static;
        padding: 0 10px;
    }

    .footer-text {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .footer-menu {
        margin-bottom: 50px;
    }

    .footer-contacts {
        margin-bottom: 50px;
    }
}

hr {
    border: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
}

h1,
.title-h1 {
    font-size: 25px;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: bold;
}

h2,
.title-h2 {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: bold;
}

h3,
.title-h3 {
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: bold;
}

h4,
.title-h4 {
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: bold;
}

h5,
.title-h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

p {
    margin-bottom: 20px;
}

a {
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #0f7c82;
}

strong,
b,
.bold {
    font-weight: bold;
}

blockquote {
    position: relative;
    text-align: left;
    color: rgb(95, 95, 95);
    margin: 30px 0px;
    padding: 2px 0px 5px 20px;
    border-left: 2px solid #000;
}

/* fancybox */
.fancybox-wrap {
    padding: 35px 0 0;
}

.fancybox-skin {
    margin-bottom: 35px;
}

.fancybox-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.fancybox-close {
    background: #ea285e !important;
    top: 15px !important;
    right: 15px !important;
    width: 30px !important;
    height: 30px !important;
    cursor: pointer;
    z-index: 8040;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    border-radius: 100%;
}

.fancybox-close:after {
    background: url(/assets/templates/img/fancybox/close.png) 50% 50% no-repeat;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    content: "";
    display: block;
    position: absolute;
    margin-top: -5px;
    margin-left: -5px;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.fancybox-close:hover {
    background: #353948 !important;
}

.fancybox-close:hover:after {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fancybox-skin {
    background: #fff;
    box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, 0.3) !important;
    border-radius: 0;
}

.fancybox-nav span {
    visibility: visible;
    opacity: 0.5;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.fancybox-next span {
    background: url(/assets/templates/img/fancybox/fancy-prev.png) 50% 50% no-repeat;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fancybox-prev span {
    background: url(/assets/templates/img/fancybox/fancy-prev.png) 50% 50% no-repeat;
    width: 48px;
    height: 48px;
    margin-top: -24px;
}

.fancybox-next span:hover,
.fancybox-prev span:hover {
    opacity: 1;
}

.fancybox-title-float-wrap {
    left: 0;
    margin-bottom: -28px;
    width: 100%;
    text-align: left;
    overflow: hidden;
}

.fancybox-title-float-wrap .child {
    background: rgba(255, 255, 255, 1);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-shadow: none;
    color: #000;
    display: block;
    font-size: 14px;
    padding: 12px 20px;
    font-weight: normal;
}

.fancybox-title-float-wrap .child {
    white-space: normal;
    width: 100%;
}
/* end fancybox */

/***********************slick carousel*******************************/
.slick-slider {
    position: relative;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slider-wrapper {
    margin-bottom: 1px;
}

.aside-gallery {
    margin-bottom: 20px;
}

.slick-prev,
.slick-next {
    display: inline-block;
    position: absolute;
    z-index: 50;
    top: 50%;
    margin-top: -20px;
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    text-align: center;
    opacity: 0.6;
}

.slick-prev:hover,
.slick-next:hover {
    opacity: 1;
}

.slick-prev {
    left: 0px;
}

.slick-next {
    right: 0px;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.slick-prev:after,
.slick-next:after {
    content: "\f053";
    display: inline-block;
    font-family: "FontAwesome";
    color: #000;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.slick-prev:hover:after,
.slick-next:hover:after {
    color: #373b4b;
}

.slick-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    display: block;
}

.slick-dots li button {
    position: absolute;
    top: -5px;
    left: -5px;
    border: none;
    border-radius: 50%;
    display: block;
    opacity: 0;
}

.slick-dots li {
    cursor: pointer;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 5px;
    cursor: pointer;
    position: relative;
}

.slick-dots li.slick-active {
    background: #0f7c82;
}
/****************end slick carousel****************/

.modal {
    display: none;
    width: 480px;
    max-width: 100%;
    background: #fff;
    padding: 55px 25px 35px;
}

.modal.big {
    width: 800px;
    max-width: 100%;
}

.label {
    display: block;
    margin-bottom: 4px;
}

.dashed {
    text-decoration: none;
    border-bottom: 1px dashed;
}

.dashed:hover {
    border-bottom-color: transparent;
}

.static {
    position: static;
}

.menu-btn {
    display: inline-block;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1500;
}

.menu-btn span {
    display: block;
    width: 32px;
    height: 2px;
    background: #000000;
    margin-bottom: 7px;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    opacity: 1;
    position: relative;
}

.menu-btn.active span.line1 {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px;
    background-color: #e14739;
    width: 28px;
    height: 2px;
}

.menu-btn.active span.line2 {
    opacity: 0;
}

.menu-btn.active span.line3 {
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -8px;
    background-color: #e14739;
    width: 28px;
    height: 2px;
}

.mobile-menu .uMenuH > ul > li.down > a {
    padding-right: 60px;
}

.top-menu-wrapper .uMenuH {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -800px;
    background: #ffff;
    height: 100%;
    width: 850px;
    max-width: 100%;
    z-index: 1000;
    overflow-y: scroll;
    transition: all 200ms ease-out 0s;
    padding-top: 50px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .uMenuH > ul > li > a {
    display: block;
    text-decoration: none;
    padding: 15px;
    text-transform: uppercase;
}

.mobile-menu .uMenuH > ul > li.uMenuItemA > a {
    color: #ea285e;
    cursor: auto;
    pointer-events: none;
}

.mobile-menu .uMenuH ul ul > li > a {
    display: block;
    text-decoration: none;
    padding: 10px 15px 10px 40px;
    position: relative;
    font-size: 13px;
}

.mobile-menu .uMenuH ul ul > li > a:before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    top: 18px;
    left: 25px;
    background: #0f7c82;
    border-radius: 100%;
}

.mobile-menu .uMenuH ul .active ul > li > a {
    background: #242838;
    border-bottom-color: #323644;
}

.mobile-menu .uMenuH ul ul > li.active > a {
    color: #0f7c82;
    background: #242838 !important;
}

.mobile-menu .uMenuH ul ul > li > a:hover {
    color: #0f7c82;
    background: #43495c;
}

.mobile-menu .uMenuH ul ul {
    display: none;
}

.mobile-menu .uMenuH ul ul ul {
    display: block;
}

.mobile-menu .uMenuH ul ul ul li a {
    padding-left: 53px;
}

.mobile-menu .uMenuH ul ul ul > li > a::before {
    left: 42px;
    width: 4px;
    height: 4px;
}

.mobile-menu .uMenuH ul ul ul ul {
    display: none !important;
}

.mobile-menu .down {
    position: relative;
}

.mobile-menu .down .dropdown-button {
    display: block;
    width: 21px;
    height: 21px;
    position: absolute;
    right: 20px;
    top: 13px;
}

.mobile-menu .down .dropdown-button:after {
    content: "";
    display: block;
    position: absolute;
    width: 11px;
    height: 1px;
    top: 10px;
    left: 5px;
    background: #000;
    opacity: 0.7;
}

.mobile-menu .down .dropdown-button:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 11px;
    top: 5px;
    left: 10px;
    background: #000;
    opacity: 0.7;
}

.mobile-menu .down .dropdown-button.active:before {
    display: none;
}
.hid den {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.visible {
    opacity: 1;
}
/*************************************************************/

.main-container {
    padding: 50px 0;
}

.header {
    padding-top: 50px;
    position: relative;
    z-index: 900;
    background: #fff;
}

.header-top {
    border-bottom: 1px solid #eee;
    font-size: 11px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 300;
    height: 50px;
    background: #fff;
}

.header-top-inner {
    height: 50px;
}

.header-bottom-inner {
    height: 100px;
}

.schedule {
    position: absolute;
    font-size: 20px;
    line-height: 30px;
    max-width: 100%;
    top: 0;
    bottom: 0;
    right: 400px;
}

.schedule span {
    font-size: 23px;
    font-weight: bold;
}

.logo {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 230px;
}

.footer-wrapper .logo {
    position: static;
    margin-bottom: 20px;
}

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

.logo a {
    text-decoration: none;
    font-family: "Open Sans Condensed", sans-serif;
    font-size: 27px;
    line-height: 1.2;
    display: block;
    font-weight: bold;
    color: #000;
}

.logo a span {
    color: #ea285e;
}

.logo div {
    font-size: 11px;
}

@-webkit-keyframes fadeInDownSmall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownSmall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDownSmall {
    -webkit-animation-name: fadeInDownSmall;
    animation-name: fadeInDownSmall;
}

@-webkit-keyframes fadeOutUpSmall {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes fadeOutUpSmall {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}
.fadeOutUpSmall {
    -webkit-animation-name: fadeOutUpSmall;
    animation-name: fadeOutUpSmall;
}

.btn.mini {
    font-size: 12px;
    padding: 12px 15px 10px;
    line-height: 12px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    background: #ea285e;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    line-height: 14px;
    padding: 15px 30px;
    border: none;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    text-align: center;
}

.btn.big {
    padding: 17px 30px;
}

.btn:hover {
    background: #0f7c82;
    color: #fff;
}

.btn.block {
    display: block;
    width: 100%;
}

.header-tel {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 150px;
}

.header-tel a {
    font-weight: bold;
    font-size: 20px;
    color: #0f7c82;
    text-decoration: none;
    font-family: "Open Sans Condensed", sans-serif;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    margin-left: 5px;
}

.header-tel a:hover {
    color: #ea285e;
}

.header-tel-img {
    color: #ea285e;
}

@media (max-width: 991px) {
    .header-tel {
        right: 200px;
    }

    .header-tel a {
        margin-left: 10px;
    }
}

@media (max-width: 767px) {
    .header-btn-wrapper .btn {
        font-size: 10px;
        font-weight: normal;
        line-height: 1;
        padding: 10px 10px;
    }

    .header-btn-wrapper {
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
        bottom: 0;
    }

    .logo {
        width: 150px;
    }

    .header-tel {
        left: 0;
        right: 0;
    }
}

@media (max-width: 430px) {
    .header-tel {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .header-tel .element {
        display: inline-block;
    }
}

#up {
    position: fixed;
    z-index: 500;
    bottom: 20px;
    right: 20px;
    display: none;
    color: #ffffff;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 36px;
    cursor: pointer;
    -webkit-transition: background-color 200ms ease-out;
    -moz-transition: background-color 200ms ease-out;
    -o-transition: background-color 200ms ease-out;
    transition: background-color 200ms ease-out;
    background: #ea285e;
    font-size: 24px;
}

#up:hover {
    background-color: #0f7c82;
}

.index-services-wrapper {
    padding: 34px 0 40px;
}

.services-element {
    text-align: center;
    padding: 10px 10px 20px;
    background: #fff;
    position: relative;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    max-width: 300px;
    margin: auto;
}

.services-carousel > div {
    display: none;
}

.services-carousel > div:first-of-type,
.services-carousel.slick-slider > div {
    display: block;
}

.services-carousel .slick-prev {
    left: -30px;
}

.services-carousel .slick-next {
    right: -30px;
}

@media only screen and (max-width: 669px) {
    .services-carousel {
        padding: 0;
    }
}

.services-carousel .item {
    padding: 8px;
}

.services-element .img-wrapper {
    margin-bottom: 15px;
    overflow: hidden;
}

.services-element .element-img {
    -moz-transition: all 350ms ease-out;
    -o-transition: all 350ms ease-out;
    -webkit-transition: all 350ms ease-out;
    height: 235px;
    background: url(/assets/templates/img/fancybox/no-photo.png) 50% 50% no-repeat;
}

.services-element:hover .element-img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.services-element .title {
    font-size: 14px;
    line-height: 18px;
    color: #000;
    height: 36px;
    overflow: hidden;
    padding: 0 5px;
    margin-bottom: 10px;
}

.services-element .element-price {
    margin-bottom: 15px;
    color: #373b4b;
    font-size: 15px;
    height: 20px;
    overflow: hidden;
}

.services-element .title {
    text-align: center;
    font-weight: bold;
}

.services-element .btn {
    position: relative;
    z-index: 10;
}

.main-column {
    margin-bottom: 40px;
}

.content {
    line-height: 1.8;
}

.aside-reviews-block {
    margin-bottom: 20px;
    background: #e8e8e8;
    border: 2px solid #fff;
    padding: 20px;
    box-shadow: 0px 0 22px rgba(0, 0, 0, 0.3);
}

.aside-reviews-element {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d5d5d5;
}

.aside-reviews-block > div:last-of-type {
    border-bottom: none;
}

.aside-reviews-element .introtext {
    font-size: 13px;
}

.aside-reviews-element .introtext a {
    color: #000;
}

.aside-reviews-element .title-h4 {
    margin-bottom: 7px;
}

.aside-reviews-block .title-h3 {
    position: relative;
    margin-bottom: 20px;
}

.aside-reviews-block .title-h3 .fa-comments {
    color: #0f7c82;
    font-size: 30px;
    margin: -5px 6px 0 0;
    vertical-align: middle;
}

.review-date {
    font-size: 13px;
    font-weight: 600;
    color: #acacac;
    margin-bottom: 5px;
}

.review-date .fa-calendar-o {
    margin-right: 4px;
}

.aside-reviews-element .img-wrapper {
    margin-bottom: 10px;
}

.aside-banner {
    margin-bottom: 40px;
}

.aside-banner > div {
    display: none;
}

.aside-banner > div:first-of-type,
.aside-banner.slick-slider > div {
    display: block;
}

.block {
    display: block;
}

.excellence-element {
    margin-bottom: 30px;
    position: relative;
    background: #fff;
    padding: 30px 30px 30px 150px;
    height: 1px;
    min-height: 150px;
    margin-top: -75px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.excellence-element h5 {
    margin-bottom: 0;
}

.excellence-element .img-wrapper {
    position: absolute;
    top: 30px;
    left: 30px;
    max-width: 95px;
}

@media (max-width: 1259px) {
    .excellence-element {
        margin-bottom: 20px;
        padding: 20px 20px 20px 110px;
        min-height: 130px;
        margin-top: -65px;
    }

    .excellence-element .img-wrapper {
        top: 20px;
        left: 10px;
    }

    .excellence-element h5 {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .excellence-element {
        padding: 10px 10px 10px 100px;
        min-height: 110px;
        margin-top: -55px;
    }

    .excellence-element .img-wrapper {
        top: 10px;
        left: 10px;
    }

    .excellence-element h5 {
        font-size: 12px;
        line-height: 1.4;
    }
}

@media (max-width: 767px) {
    .excellence-wrapper {
        padding-top: 60px;
    }

    .excellence-element {
        padding: 20px 20px 20px 110px;
        min-height: 130px;
        margin-top: 0;
    }

    .excellence-element .img-wrapper {
        top: 20px;
        left: 20px;
    }

    .excellence-element h5 {
        font-size: 13px;
        line-height: 1.5;
    }
}

.info-wrapper {
    padding: 60px 0 30px;
}

.info-wrapper .title-h2 {
    position: relative;
}

.info-wrapper .title-h2 i {
    color: rgb(251, 192, 30);
    font-size: 26px;
    vertical-align: middle;
    margin: -2px 6px 0px 0px;
}

.info-element {
    margin-bottom: 30px;
    padding-right: 20px;
}

.info-element .date {
    color: #626270;
    margin-bottom: 7px;
    position: relative;
    font-size: 13px;
    font-weight: 600;
}

.info-element h5 {
    margin-top: -5px;
}

.info-element .img-wrapper {
    margin-bottom: 10px;
}

.info-element .introtext {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 10px;
    color: #838383;
}

.info-element .more {
    color: #0f7c82;
    font-weight: bold;
}

.info-wrapper .btn {
    margin-bottom: 30px;
}

.content ul,
.content ol,
ul.list,
ol.list {
    margin-bottom: 20px;
}

.content ul > li,
.content ol > li,
ul.list > li,
ol.list > li {
    margin-bottom: 10px;
    position: relative;
}

.content ul > li,
ul.list > li {
    padding-left: 15px;
}

.content ul > li:after,
ul.list > li:after {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    top: 11px;
    left: 0;
    background: #0f7c82;
    border-radius: 50%;
}

.content ul ul,
.content ol ul,
.content ol ol,
.content ul ol,
ul.list ul,
ol.list ul,
ol.list ol,
ul.list ol {
    padding-top: 10px;
    padding-left: 10px;
}

.content ul ul li,
.content ol ul li,
.content ul ol li,
.content ol ol li,
ul.list ul li,
ol.list ul li,
ul.list ol li,
ol.list ol li {
    padding-left: 18px;
}

.content ul ul li:after,
.content ol ul li:after,
ul.list ul li:after,
ol.list ul li:after {
    height: 1px;
    width: 10px;
    top: 12px;
}

.content ol,
ol.list {
    counter-reset: item;
}

.content ol > li,
ol.list > li {
    display: block;
}

.content ol > li:before,
ol.list > li:before {
    content: counters(item, ".") ". ";
    counter-increment: item;
}

.content ol ol li:before,
ol.list ol li:before {
    content: counters(item, ".") " ";
}

img.border {
    border: 1px solid #ccc;
}

span.highlight {
    background-color: #fbe53e;
}

#preloader {
    background: #fff;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 0;
    position: fixed;
    z-index: 9999;
    display: block;
    -webkit-transition: all 600ms ease-out;
    -moz-transition: all 600ms ease-out;
    -o-transition: all 600ms ease-out;
    transition: all 600ms ease-out;
    opacity: 1;
}

#preloader:after {
    content: "";
    display: block;
    position: absolute;
    width: 187px;
    height: 209px;
    top: 50%;
    left: 50%;
    margin-left: -93px;
    margin-top: -85px;
    background: url(/assets/templates/img/fancybox/hex-loader2.gif) 0 0 no-repeat;
}

#preloader.hid {
    opacity: 0;
    z-index: -100;
}

body::-webkit-resizer {
    background-image: url("");
    background-repeat: no-repeat;
    width: 8px;
    height: 1px;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-button {
    background-image: url("");
    background-repat: no-repeat;
    width: 8px;
    height: 0px;
}

body::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-color: #0f7c82;
}

body::-webkit-scrollbar-track {
    background-color: #2c2c2c;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: -100;
    opacity: 0;
    -webkit-transition: opacity 200ms ease-out;
    -moz-transition: opacity 200ms ease-out;
    -o-transition: opacity 200ms ease-out;
    transition: opacity 200ms ease-out;
}

.overlay.active {
    z-index: 1000;
    opacity: 1;
}

.person {
    background: url(/assets/templates/img/fancybox/person-icon.png) right 50% no-repeat #fff;
}

.tel,
.phone {
    background: url(/assets/templates/img/fancybox/tel-icon.png) right 50% no-repeat #fff;
}

.top-slider .slick-prev {
    left: 15px;
}

.top-slider .slick-next {
    right: 15px;
}

.top-slider > div {
    display: none;
}

.top-slider > div:first-of-type,
.top-slider.slick-slider > div {
    display: block;
}

.top-slider .item .element-img {
    height: 650px;
    width: 100%;
}

.slider-content {
    position: absolute;
    left: 0;
    top: 20%;
    width: 100%;
    z-index: 100;
    color: #fff;
}

.slider-content .title2 {
    margin-bottom: 6px;
    display: inline-block;
}

.slider-content .title2 span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-size: 26px;
    padding: 6px 8px;
    line-height: 1;
    color: #0d0d0d;
}

.slider-content .title3 span {
    background: rgba(255, 255, 255, 0.5);
    color: #333333;
    font-size: 14px;
    padding: 6px 8px;
    font-weight: normal;
}

@media only screen and (max-width: 1259px) {
    .top-slider .item .element-img {
        height: 450px;
    }
}

@media only screen and (max-width: 991px) {
    .top-slider .item .element-img {
        height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .top-slider .item .element-img {
        height: 60vw;
    }

    .slider-content .title2 span {
        font-size: 16px;
    }

    .slider-content .title3 span {
        font-size: 12px;
        padding: 3px 4px;
    }

    .slider-content .btn {
        padding: 10px 20px;
        border-radius: 3px;
        font-size: 12px;
    }

    .slider-content {
        top: auto;
        bottom: 10%;
    }
}

.fix-body .main-wrapper {
    width: 1260px;
    max-width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    margin-left: auto;
    margin-right: auto;
}

.fix-body .container {
    max-width: 100%;
    width: 100%;
}

.fix-body .footer-wrapper {
    width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

.fix-body .top-menu-wrapper .inner {
    width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

/****************** ASIDE MENU *******************/
.aside-menu {
    margin-bottom: 30px;
}

.aside-menu > div > ul > li > a {
    display: block;
    text-decoration: none !important;
    color: #2d2d2d;
    padding: 15px 20px 15px 0;
    font-size: 14px;
    line-height: 1.3;
    border-top: 1px solid #eee;
    font-weight: 600;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.aside-menu > div > ul > li:first-of-type > a {
    border-top: none;
}

.aside-menu li > a:hover {
    color: #0f7c82;
}

.aside-menu li.active > a {
    color: #0f7c82;
}

.aside-menu > div > ul > li > a span {
    position: absolute;
    right: 0;
}

.aside-menu > div > ul ul {
    display: none;
    padding-bottom: 15px;
}

.aside-menu > div > ul > li.active ul {
    display: block;
}

.aside-menu > div > ul li {
    position: relative;
}

.aside-menu > div > ul li.down > a {
    padding-right: 50px;
}

.aside-menu .dropdown-button {
    width: 50px;
    height: 49px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.aside-menu .dropdown-button:after {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
    margin-top: -7px;
    margin-left: -5px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.aside-menu .open .dropdown-button:after {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: -2px;
}

.aside-menu .active .dropdown-button:after {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: -2px;
}

.aside-menu .active.open .dropdown-button:after {
    margin-top: -7px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.aside-menu ul ul a {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px 10px 35px;
    display: block;
    color: #000;
    position: relative;
}

.aside-menu ul ul a:before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    top: 18px;
    left: 20px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.aside-menu ul ul .active a {
    color: #0f7c82;
    background: #ededed;
    border-color: #dbdbdb;
}

.aside-menu ul ul .active + li > a {
    border-color: #dbdbdb;
}

.aside-menu-title {
    padding: 15px 42px 15px 20px;
    background: #f1f1f1;
    position: relative;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}

.aside-menu-title i {
    vertical-align: middle;
}

.aside-menu-title:after {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    right: 20px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    margin-top: -8px;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.active .aside-menu-title:after {
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin-top: -3px;
}

@media only screen and (max-width: 991px) {
    .aside-menu > div > ul > li:first-of-type > a {
        border-top: 1px solid #eee;
    }

    .aside-menu > div > ul {
        display: none;
        margin-top: 10px;
    }

    .aside-menu.active > div > ul {
        display: block;
    }

    .aside-menu > div > ul ul {
        padding-bottom: 0;
    }

    .aside {
        border-right: none;
    }

    .aside-menu a {
        border-right: 1px solid #f5f5f5;
        border-left: 1px solid #f5f5f5;
    }

    .aside-menu > div > ul > li:last-of-type > a {
        border-bottom: 1px solid #eee;
    }
}

@media only screen and (min-width: 992px) {
    .base-template .main-column {
        padding-left: 40px;
    }
}
/****************** ASIDE MENU END*******************/

.aside-block {
    margin-bottom: 40px;
}

.aside-block .title {
    border: 1px solid #e0e0e0;
    text-align: center;
    padding: 11px 10px;
    margin-bottom: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.aside-latest-post .element {
    padding-left: 120px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cacaca;
    min-height: 100px;
    font-size: 13px;
}

.aside-latest-post .element .img-wrapper {
    position: absolute;
    left: 0;
    top: 0;
}

.aside-latest-post a {
    text-decoration: none;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.aside-latest-post .element .img-wrapper a {
    display: block;
}

.aside-latest-post .element .img-wrapper a:hover {
    opacity: 0.7;
}

.aside-latest-post .inner > div:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    min-height: 80px;
}

.aside-subscribe-inner {
    background: #f3f3f3;
    padding: 20px;
}

/* tag cloud begin */
.tag-cloud {
    overflow: hidden;
    color: #fff;
}

.tag-cloud p {
    margin-bottom: 10px;
}

.tag-cloud a {
    font-size: 13px !important;
    text-decoration: none;
    display: inline-block;
    padding: 0 5px 2px;
    border: none;
    margin: 0 5px 5px 0;
    text-transform: lowercase;
    float: left;
    background: #323644;
    color: #fff !important;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    border-radius: 3px;
}

.tag-cloud a:hover {
    background: #000;
    color: #fff;
}
/* tag cloud end */

.cleaner-hr {
    height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    border: none;
}

.excellence > .row > hr:nth-of-type(2n) {
    clear: both;
}

@media only screen and (min-width: 1260px) {
    .excellence > .row > hr:nth-of-type(2n) {
        clear: none;
    }

    .excellence > .row > hr:nth-of-type(3n) {
        clear: both;
    }
}

.index-template .partners {
    border-top: 1px solid #e5e5e5;
}

.partners-carousel > div {
    display: none;
}

.partners-carousel > div:first-of-type,
.partners-carousel.slick-slider > div {
    display: block;
}

.partners-carousel {
    margin: 0 -10px;
}

.partners-carousel .item {
    padding: 0 10px;
}

.partners-carousel img {
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    opacity: 0.5;
}

.partners-carousel img:hover {
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
    opacity: 1;
}

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

.table-cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.specialist-block {
    border-bottom: 2px solid #ededed;
}

.specialist-block .table-cell {
    padding-left: 10px;
    width: auto;
}

.specialist-block .bold-italic {
    color: #5e6066;
    font-size: 16px;
    line-height: 24px;
    font-style: italic;
    font-weight: bold;
}

.specialist-block .table-cell.pict {
    width: 40%;
    padding: 0;
    vertical-align: bottom;
    text-align: center;
}

.specialist-block .table-cell.pict img {
    vertical-align: bottom;
}

.certificate-gallery .element {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    padding: 5px;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.certificate-gallery .element:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.certificate-gallery .element a {
    position: relative;
    display: block;
    overflow: hidden;
}

.certificate-gallery .element a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    opacity: 0;
}

.certificate-gallery .element:hover a:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}

.certificate-gallery .element a:before {
    content: "";
    width: 50px;
    height: 50px;
    background: url(/assets/templates/img/fancybox/zoom.png) 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin-top: -22px;
    margin-left: -22px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    opacity: 0;
}

.certificate-gallery .element:hover a:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}

.base-template .partners p img {
    border: 1px solid #e0e0e0;
}

.aside {
    margin-bottom: 20px;
}

.row.big {
    margin-left: -10px;
    margin-right: -10px;
}

.row.big > div[class^="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.row.no-padding {
    margin-left: 0;
    margin-right: 0;
}

.row.no-padding > div[class^="col-"] {
    padding-left: 0;
    padding-right: 0;
}

table.tpl-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
    margin-bottom: 30px;
}

table.tpl-table td {
    border: 1px solid #ccc;
}

table.tpl-table td,
table.tpl-table th {
    padding: 8px 15px;
    border-left: 1px solid #ccc;
    vertical-align: middle;
    color: #232323;
}

table.tpl-table td:first-child,
table.tpl-table th:first-child {
    border-left: none;
}

table.tpl-table th {
    font-weight: bold;
    background: #f3f3f3;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    table.tpl-table td,
    table.tpl-table th {
        padding: 8px 10px;
        font-size: 12px;
        line-height: 1.2;
    }
}

.team .element {
    box-shadow: 0 0 0 1px #ebebeb;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 20px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.team .element .img-wrapper {
    height: 270px;
    overflow: hidden;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.team .element .img-wrapper img {
    width: 100%;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.team .element .element-content {
    padding: 15px 10px;
    height: 75px;
    overflow: hidden;
}

.team .element .title {
    font-weight: bold;
    color: #000;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.team .element .subtitle {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team .element:hover .img-wrapper img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.team .element:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 991px) {
    .team .element .img-wrapper {
        height: 260px;
    }

    .excellence-element h5 {
        padding-left: 15px;
    }
}

@media only screen and (max-width: 870px) {
    .team .element .img-wrapper {
        height: 240px;
    }
}

@media only screen and (max-width: 790px) {
    .team .element .img-wrapper {
        height: 230px;
    }
}

@media only screen and (max-width: 767px) {
    .team .element .img-wrapper {
        height: 300px;
    }
}

@media only screen and (max-width: 650px) {
    .team .element .img-wrapper {
        height: 250px;
    }
}

@media only screen and (max-width: 560px) {
    .team .element .img-wrapper {
        height: 220px;
    }
}

@media only screen and (max-width: 490px) {
    .team .element .img-wrapper {
        height: auto;
    }
    .team > .row > .col-xs-6 {
        width: 100%;
    }
}

.job-why .element {
    margin-bottom: 20px;
    min-height: 70px;
    padding-left: 80px;
}

.job-why .element img {
    position: absolute;
    left: 10px;
    top: 5px;
}

/************************* accordeon **************************/
.accordeon .element-content {
    display: none;
    padding: 0 15px 13px 30px;
    border-left: 1px solid #efefef;
    border-right: 1px solid #efefef;
}

.accordeon .element {
    background: #fff;
}

.accordeon .element .title {
    cursor: pointer;
    padding: 10px 45px 10px 15px;
    font-weight: 600;
    position: relative;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    border: 1px solid #efefef;
    border-top: none;
}

.accordeon .element.active .title {
    color: #e32924;
    background: #f8f8f8;
    border-bottom-color: #f8f8f8;
    border-left: 1px solid #e32924;
}

.accordeon .element.active .element-content {
    background: #f8f8f8;
    border-left: 1px solid #e32924;
}

.accordeon .element .title:before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    right: 20px;
    margin-top: -4px;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.accordeon .element.active .title:before {
    -moz-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    border-color: #e32924;
}

.accordeon > div:first-of-type .element-content {
    display: block;
}

.accordeon .element .title:hover:before {
    border-color: #e32924;
}

.accordeon .element .title:hover {
    color: #e32924;
}

.accordeon > div:last-of-type {
    margin-bottom: 0;
}

.accordeon > div:first-of-type .title {
    border-top: 1px solid #efefef;
}

.accordeon > div:last-of-type .element-content {
    border-bottom: 1px solid #efefef;
}

.accordeon.invert .element .title {
    background: #f8f8f8;
}

.accordeon.invert .element.active .title {
    background: #fff;
    border-bottom-color: #fff;
}

.accordeon.invert .element.active .element-content {
    background: #fff;
}
/************************* end accordeon **************************/

/*=============================== SERVICES BEGIN ===============================*/

.services-section .element {
    margin-bottom: 10px;
}

.services-section .element .element-content {
    padding: 20px;
    background: #f5f5f5;
    border: 1px solid #e2e6e7;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.services-section .element:hover .element-content {
    background: #fff;
}

.services-section .element .img-wrapper {
    overflow: hidden;
    position: relative;
}

.services-section .element .img-wrapper:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.services-section .element:hover .img-wrapper:after {
    opacity: 1;
}

.services-section .element .img-wrapper .hiddentitle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    z-index: 2;
    opacity: 0;
    text-align: center;
}

.services-section .element:hover .img-wrapper .hiddentitle {
    opacity: 1;
}

.services-section .element .img-wrapper .hiddentitle span {
    text-transform: uppercase;
    border: 2px solid #fff;
    padding: 10px 30px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
}

.services-section .element .element-img {
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    height: 200px;
}

.services-section .element:hover .element-img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.services-elements > .row > div:nth-of-type(3n) .element .element-content {
    border-right: 1px solid #e2e6e7;
}

.services-elements .title {
    overflow: hidden;
    color: #000;
    height: 40px;
}

@media only screen and (max-width: 767px) {
    .services-section .element .element-img {
        height: 50vw;
    }
}
/*=============================== SERVICES END ===============================*/

.art-gallery .element {
    margin-bottom: 10px;
}

.art-gallery .element a {
    position: relative;
    display: block;
    overflow: hidden;
}

.art-gallery .element-img {
    height: 140px;
}

.art-gallery .element a:before {
    content: "";
    width: 50px;
    height: 50px;
    background: url(/assets/templates/img/fancybox/zoom.png) 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin-top: -22px;
    margin-left: -22px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    opacity: 0;
}

.art-gallery .element a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    opacity: 0;
}

.art-gallery .element:hover a:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}

.art-gallery .element a:before {
    content: "";
    width: 50px;
    height: 50px;
    background: url(/assets/templates/img/fancybox/images/zoom.png) 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin-top: -22px;
    margin-left: -22px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    opacity: 0;
}

.art-gallery .element:hover a:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}

@media only screen and (max-width: 1259px) {
    .art-gallery .element-img {
        height: 190px;
    }
}

@media only screen and (max-width: 991px) {
    .art-gallery .element-img {
        height: 15vw;
    }
}

@media only screen and (max-width: 767px) {
    .art-gallery .element-img {
        height: 40vw;
    }
}

/*======================= NEWS BEGIN ===================*/

.news-element {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.news-list > div:first-of-type,
.news-list .archiveEntries > div:first-of-type .news-element {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.news-element h3 {
    font-family: "Open Sans", sans-serif;
}

.news-element h3 a {
    text-decoration: none;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.news-element .img-wrapper {
    padding-right: 10px;
    overflow: hidden;
}

.news-element .img-wrapper > a {
    display: block;
    overflow: hidden;
}

/* Shine */
.element-img picture::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(255, 255, 255, 0)),
        to(rgba(255, 255, 255, 0.3))
    );
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    -moz-transition: skewX(-25deg);
    -o-transition: skewX(-25deg);
    transform: skewX(-25deg);
}

.element-img picture:hover::before {
    -webkit-animation: shine 0.75s;
    -moz-transition: shine 0.75s;
    -o-transition: shine 0.75s;
    animation: shine 0.75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.news-element .btn {
    margin-bottom: 0;
}

.news-list .element-info {
    margin: -10px 0 15px;
}

.element-info {
    margin: 0 0 10px;
    font-size: 13px;
    color: #969696;
}

.element-info a {
    text-decoration: none;
    color: #969696;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.element-info a:hover {
    color: #2e2e2e;
}

.element-info span {
    margin-right: 10px;
}
.element-info .fa {
    margin-right: 4px;
}

@media only screen and (max-width: 1259px) {
    .news-element .element-img {
        height: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .news-element .element-img {
        height: 15vw;
    }
}

@media only screen and (max-width: 767px) {
    .news-element .img-wrapper {
        margin-bottom: 20px;
    }
    .news-element {
        padding-top: 40px;
    }
    .news-element .element-img {
        height: 50vw;
    }
}
/*======================= NEWS END ===================*/

/* blog list */

.blog .element {
    height: 295px;
    margin-bottom: 10px;
    overflow: hidden;
}

.blog .element-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: all 400ms ease-out;
    -moz-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.blog .element-content .inner {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #000;
    line-height: 1.3;
    -webkit-transition: all 400ms ease-out;
    -moz-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

.blog .element-content .inner {
    color: #fff;
}

.blog .element-content .text {
    height: 58px;
    overflow: hidden;
    font-size: 15px;
    font-weight: 100;
}

.blog .element-content .title {
    font-size: 22px;
    margin: 5px 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog .element-content .date {
    font-size: 13px;
}

.blog .element:hover .element-content {
    background: rgba(0, 0, 0, 0.8);
}

.blog .element:hover .element-content .inner {
    bottom: 55px;
    color: #fff;
}

.blog .element-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 600ms ease-out;
    -moz-transition: all 600ms ease-out;
    -o-transition: all 600ms ease-out;
    transition: all 600ms ease-out;
}

.blog .element:hover .element-img {
    -webkit-transform: scale(1.2) rotate(10deg);
    -moz-transform: scale(1.2) rotate(10deg);
    -o-transform: scale(1.2) rotate(10deg);
}

.blog .element-info {
    color: #fff;
}
/* end blog list */

.map-wrapper {
    border: 2px solid #e3e3e4;
    padding: 4px;
    border-radius: 3px;
}

.map-wrapper .map {
    height: 391px;
}

.contacts-content .element {
    padding-left: 25px;
}
.contacts-content .element > i {
    position: absolute;
    left: 0px;
    top: 5px;
    color: #000;
    font-size: 16px;
}

/***************************** pagination **************************/

.pagination {
    display: inline-block;
    margin: 30px 0 0;
}

.pagination li {
    display: inline;
}

.pagination li > span {
    cursor: default;
}

.pagination li > a,
.pagination li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #626262;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    font-weight: 100;
    margin-bottom: 5px;
    margin-right: 5px;
}

.pagination li:first-child > a,
.pagination li:first-child > span {
    margin-left: 0;
}

.pagination li > a:hover {
    background-color: #eeeeee;
}

.pagination .active > a,
.pagination .active > a:hover {
    background-color: #313543;
    color: #fff;
    border-color: #313543;
    cursor: default;
}
/*************************** end pagination ***********************/

/**************************************************   MEDIA QUERIS   *****************************************************/

@media only screen and (min-width: 768px) {
    .slider-content {
        top: 30%;
    }

    .slider-content .title2 {
        margin-bottom: 10px;
        position: relative;
    }

    .slider-content .title2 span {
        padding: 10px 5px;
        border: 1px solid transparent;
    }

    .slider-content .title2 span:last-of-type {
        padding-right: 15px;
    }

    .slider-content .title3 span {
        font-size: 22px;
    }

    .modal {
        padding: 55px 40px 40px;
    }

    h1,
    .title-h1 {
        font-size: 31px;
        margin-bottom: 30px;
    }

    h2,
    .title-h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .header-btn-wrapper {
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
        bottom: 0;
    }

    .slogan {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        max-width: 50%;
        overflow: hidden;
    }

    .header-top {
        font-size: 13px;
    }

    .mobile-menu {
        width: 350px;
        right: -400px;
    }

    .info-wrapper .btn {
        float: right;
    }
}

@media only screen and (min-width: 992px) {
    h1,
    .title-h1 {
        font-size: 41px;
    }

    h2,
    .title-h2 {
        font-size: 35px;
    }

    h3,
    .title-h3 {
        font-size: 25px;
        line-height: 1.4;
    }

    h4,
    .title-h4 {
        font-size: 23px;
        line-height: 1.4;
    }

    h5,
    .title-h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .index-services-wrapper {
        padding: 48px 0 58px;
    }

    .header-top {
        position: static;
        font-size: 13px;
    }

    .header {
        padding-top: 0;
    }

    .top-menu-wrapper .uMenuH {
        display: table;
        width: 100%;
    }

    .top-menu-wrapper .uMenuH > ul {
        display: table-row;
    }

    .top-menu-wrapper .uMenuH > ul > li {
        display: table-cell;
        text-align: center;
        position: relative;
    }

    .uMenuH > ul > li > ul {
        display: none;
    }

    .uMenuH .topmenuactivity {
        display: block;
    }

    .uMenuH .topmenuactivity.hidden {
        display: none;
    }

    .top-menu-wrapper .uMenuH > ul > li > a {
        text-decoration: none;
        color: #000;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 16px 10px;
        display: block;
        -webkit-transition: background-color 200ms ease-out;
        -moz-transition: background-color 200ms ease-out;
        -o-transition: background-color 200ms ease-out;
        transition: background-color 200ms ease-out;
        position: relative;
        margin-top: -1px;
        border-top: 1px solid transparent;
        border-radius: 0;
        background: #fef9f9;
    }

    .top-menu-wrapper .uMenuH > ul > li > a:after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        top: -1px;
        left: 0;
        -webkit-transition: all 200ms ease-out;
        -moz-transition: all 200ms ease-out;
        -o-transition: all 200ms ease-out;
        transition: all 200ms ease-out;
    }

    .top-menu-wrapper .uMenuH > ul > li.uMenuItemA > a,
    .top-menu-wrapper .uMenuH > ul > li.uMenuItemA > a:after,
    .top-menu-wrapper .uMenuH > ul > li.uMenuItemA > a:hover {
        background: #0f7c82 !important;
        color: #fff;
    }

    .top-menu-wrapper .uMenuH > ul > li.mod > a,
    .top-menu-wrapper .uMenuH > ul > li.mod.mod2 > a,
    .uMenuH > ul > li.mod > a:hover,
    .top-menu-wrapper
        .uMenuH
        > ul
        > li.mod2.uMenuItemA
        > a
        .top-menu-wrapper
        .uMenuH
        > ul
        > li.mod2.uMenuItemA
        > a:hover {
        border-right-color: #0f7c82;
    }

    .top-menu-wrapper .uMenuH > ul > li.mod2 > a,
    .top-menu-wrapper .uMenuH > ul > li.mod2 > a:hover {
        border-right-color: #e4e4e4;
    }

    .top-menu-wrapper .uMenuH > ul > li:hover > a,
    .top-menu-wrapper .uMenuH > ul > li:hover > a:after {
        background: #ffebeb;
        border-color: #ffebeb;
    }

    .top-menu-wrapper .uMenuH > ul ul {
        position: absolute;
        width: 280px;
        top: 52px;
        padding-top: 12px;
        left: 0;
        z-index: 300;
        -webkit-animation-duration: 0.2s;
        -moz-animation-duration: 0.2s;
        -o-animation-duration: 0.2s;
        -ms-animation-duration: 0.2s;
        animation-duration: 0.2s;
        text-align: left;
    }

    .top-menu-wrapper .uMenuH > ul ul li {
        background: #ffebeb;
    }

    .top-menu-wrapper .uMenuH > ul > li > ul > li {
        z-index: 20;
        position: relative;
    }

    .top-menu-wrapper .uMenuH > ul ul li > a {
        padding: 15px;
        display: block;
        font-size: 14px;
        line-height: 18px;
        color: #000;
        text-decoration: none;
        -webkit-transition: all 200ms ease-out;
        -moz-transition: all 200ms ease-out;
        -o-transition: all 200ms ease-out;
        transition: all 200ms ease-out;
    }

    .top-menu-wrapper .uMenuH > ul ul li.active > a {
        background: #242838 !important;
        color: #0f7c82;
    }

    .top-menu-wrapper .uMenuH > ul ul li > a:hover,
    .top-menu-wrapper .uMenuH > ul ul li.uMenuItemA > a {
        background: #0f7c82;
        color: #ffffff;
    }

    .top-menu-wrapper .uMenuH > ul ul li:last-child > a {
        border: none;
    }

    .top-menu-wrapper .uMenuH > ul ul > div {
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
        overflow: hidden;
    }

    .top-menu-wrapper .uMenuH > ul > li > ul > li:first-of-type:before {
        content: "";
        display: block;
        border-bottom: 10px solid #ffebeb;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        position: absolute;
        left: 30px;
        top: -10px;
        -webkit-transition: all 200ms ease-out;
        -moz-transition: all 200ms ease-out;
        transition: all 200ms ease-out;
    }

    .top-menu-wrapper .uMenuH > ul > li > ul > li.uMenuItemA:first-of-type:before,
    .top-menu-wrapper .uMenuH > ul > li > ul > li:first-of-type:hover:before {
        border-bottom-color: #0f7c82;
    }

    .top-menu-wrapper .uMenuH > ul ul ul {
        left: 280px;
        top: 0;
        padding-left: 10px;
        padding-top: 0;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 200ms ease-out;
        -moz-transition: all 200ms ease-out;
        -o-transition: all 200ms ease-out;
        transition: all 200ms ease-out;
        z-index: 10;
    }

    .top-menu-wrapper .uMenuH > ul ul ul > li {
        position: relative;
    }

    .top-menu-wrapper .uMenuH > ul ul ul > li:first-of-type:before {
        content: "";
        display: block;
        border-right: 8px solid #ffebeb;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        position: absolute;
        left: -8px;
        top: 15px;
    }

    .top-menu-wrapper .uMenuH > ul ul li:hover ul {
        left: 280px;
        visibility: visible;
        opacity: 1;
    }

    .top-menu-wrapper .uMenuH > ul ul ul > li:hover:before,
    .top-menu-wrapper .uMenuH > ul ul ul > li.uMenuItemA:before {
        border-right-color: #0f7c82;
    }

    .top-menu-wrapper .uMenuH > ul ul ul ul {
        display: none !important;
    }

    .top-menu-wrapper ul ul li.uWithSubmenu > a:after {
        content: "";
        display: block;
        position: absolute;
        width: 8px;
        height: 8px;
        top: 50%;
        right: 15px;
        border-top: 1px solid #000;
        border-right: 1px solid #000;
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-top: -4px;
    }

    .top-menu-wrapper ul ul li.uWithSubmenu:hover > a:after,
    .top-menu-wrapper ul ul li.uWithSubmenu.uMenuItemA > a:after {
        border-color: #fff;
    }

    .mobile-menu {
        display: none !important;
    }

    .menu-btn,
    .search-btn {
        display: none;
    }

    .top-menu-wrapper {
        margin-bottom: 0;
    }

    .top-menu-wrapper .uMenuH-menu > ul > li {
        display: block;
        float: left;
    }

    .search_box {
        position: static;
        box-shadow: none;
        display: block !important;
    }

    .top-menu-wrapper-push.active {
        height: 55px;
    }

    .top-menu-wrapper.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 300;
    }

    .top-menu-wrapper.fixed .inner {
        background: #fff;
    }

    .search_box {
        padding: 7px 0px;
    }

    .footer-tel {
        margin-bottom: 20px;
        margin-top: -7px;
        display: block;
        text-align: right;
    }

    .footer-tel a {
        font-weight: bold;
        font-size: 24px;
        line-height: 34px;
        color: #000;
        text-decoration: none;
        font-family: "Open Sans Condensed", sans-serif;
    }

    .footer-tel a span {
        color: #b3b3b3;
    }

    .main-container {
        padding: 75px 0 50px;
        position: relative;
    }

    .main-container:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: url(/assets/templates/img/fancybox/689.jpg) right center no-repeat #fbe0e5;
        background-size: cover;
        opacity: 0.2;
    }

    .overlay.active {
        opacity: 0 !important;
        z-index: -400 !important;
    }
}

.searchresults-element {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
}

.searchresults-element .title {
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.agreement {
    position: relative;
    margin-bottom: 30px;
}

.agreement input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.agreement i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 16px;
}

.agreement label {
    padding-left: 25px;
    display: inline-block;
    position: relative;
}

.agreement input + label:before {
    background: url(/assets/templates/img/fancybox/check-empty.svg) 0 0 no-repeat;
    content: "";
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    top: 2px;
    left: 0px;
}

.agreement input:checked + label:before {
    background: url(/assets/templates/img/fancybox/checked.svg) 0 0 no-repeat;
}

.agreement input.error + label {
    color: red;
}

.index-template .content {
    padding-right: 50px;
    padding-top: 10px;
}

.index-form-wrapper {
    padding-right: 180px;
}

.index-form-block-inner {
    background: #fff;
    padding: 60px 60px 70px;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.01);
    position: relative;
    z-index: 10;
}

.index-form-block-inner .title {
    line-height: 1.8;
    font-size: 21px;
    margin-bottom: 40px;
}

.counter-box {
    position: absolute;
    right: 0;
    top: 50px;
    bottom: 50px;
    width: 180px;
    background: #fff;
    box-shadow: 0 5px 23px 0 rgba(0, 0, 0, 0.05);
}

.counter-element {
    position: absolute;
    text-align: center;
    color: #000;
    left: 0;
    width: 100%;
    height: 33.33333%;
    overflow: hidden;
    padding: 0 15px;
}

.counter-box > div:nth-of-type(1) {
    top: 0;
}

.counter-box > div:nth-of-type(2) {
    top: 33.33333%;
}

.counter-box > div:nth-of-type(3) {
    top: 66.66666%;
    border: none;
}

.counter-element-num {
    font-weight: bold;
    font-size: 35px;
    margin-bottom: 15px;
    color: #ea285e;
}

.counter-element-title {
    font-size: 16px;
}

@media (max-width: 1259px) and (min-width: 991px) {
    .index-form-wrapper {
        padding-right: 0;
    }

    .index-form-block-inner {
        box-shadow: none;
        border-bottom: 1px solid #ededed;
    }

    .counter-box {
        position: static;
        width: 100%;
        overflow: hidden;
        box-shadow: none;
    }

    .counter-element {
        position: static;
        height: 160px;
        width: 33.33333%;
        border-right: 1px solid #ededed;
        border-bottom: none;
        float: left;
    }

    .counter-element-num {
        font-size: 25px;
    }

    .counter-element-title {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .index-template .content {
        padding-right: 0;
    }

    .index-form-block-inner {
        box-shadow: 5px 5px 25px 0 rgba(0, 0, 0, 0.05);
    }

    div.header-user__block {
        right: 55px;
    }
}

@media (max-width: 767px) {
    .index-form-wrapper {
        padding-right: 0;
    }

    .index-form-block-inner {
        padding: 40px 20px;
        margin-bottom: 30px;
    }

    .index-form-block-inner .title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .index-form-block-inner .btn {
        display: block;
        width: 100%;
    }

    .counter-box {
        position: static;
        width: 100%;
        overflow: hidden;
        box-shadow: 5px 5px 25px 0 rgba(0, 0, 0, 0.05);
    }

    .counter-element {
        position: static;
        height: 100px;
        width: 100%;
    }

    .counter-element-num {
        font-size: 25px;
    }

    .counter-element-title {
        font-size: 13px;
    }

    .info-wrapper {
        padding-top: 0;
    }
}

@media only screen and (max-width: 420px) {
    div[id^="recaptcha"] {
        width: 230px;
        transform: scale(0.79);
        -webkit-transform: scale(0.79);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

@media only screen and (max-width: 340px) {
    div[id^="recaptcha"] {
        transform: scale(0.75);
        -webkit-transform: scale(0.75);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

@media only screen and (min-width: 1260px) {
    .slider-content .title2 span {
        font-size: 48px;
    }

    .top-menu-wrapper .uMenuH > ul > li > a {
        padding: 17px 20px;
    }

    .header-btn-wrapper .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

.comments .ticket-comment__message {
    padding: 20px 0 30px;
    margin-bottom: 10px;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #e3e3e4;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.8;
}

.comments .ticket-comment__date {
    font-size: 12px;
    color: #0f7c82;
    padding-left: 0;
}

.contacts-block .element {
    position: relative;
    padding-left: 26px;
    margin-bottom: 20px;
}

.contacts-block .element svg {
    position: absolute;
    left: 0;
    color: #22282e;
    top: 4px;
}

.contacts-block .element.el-address svg {
    width: 14px;
    height: 18.5px;
    top: 1px;
}

.contacts-block .element.el-phones svg {
    width: 15px;
    height: 15px;
    top: 4px;
}

.contacts-block .element.el-schedule svg {
    width: 15px;
    height: 15px;
}

.contacts-block .element.el-mail svg {
    width: 15px;
    height: 15px;
    top: 5px;
}

.gallery .element {
    margin-bottom: 10px;
}

.gallery .element a {
    display: block;
    position: relative;
}

.gallery .element a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    opacity: 0;
}

.gallery .element:hover a:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}

.gallery .element a:before {
    content: "";
    width: 50px;
    height: 50px;
    background: url(/assets/templates/img/fancybox/zoom.png) 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin-top: -22px;
    margin-left: -22px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    opacity: 0;
}

.gallery .element:hover a:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}

.feedback-section {
    padding: 50px 0;
    background: #fef9f9;
}

.feedback-form {
    width: 600px;
    margin: auto;
    max-width: 100%;
}

.services-categories-template .services-wrapper > .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.services-categories-template .services-wrapper > .row > div {
    margin-bottom: 10px;
}

.services-categories-template .services-element {
    height: 100%;
    max-width: 100%;
}

@media (max-width: 619px) {
    .services-categories-template .services-wrapper > .row {
        display: block;
    }

    .services-categories-template .services-wrapper > .row > div {
        margin-bottom: 0;
        width: 100%;
    }

    .services-categories-template .services-element {
        margin-bottom: 10px;
        height: auto;
    }
}

.aside-info-block {
    margin: 0 0 30px;
    padding: 30px 20px 15px;
    background: #fef9f9;
}

.aside-info-block .title {
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.4;
}

.page-img .element-price {
    position: absolute;
    left: 0;
    top: 20px;
    font-weight: bold;
    font-size: 20px;
    background: #ea285e;
    color: #fff;
    padding: 10px 20px;
}

/* table */
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
    font-size: 15px;
    color: #4d4d4d;
}

th {
    font-weight: bold;
    border: 1px solid #e8e8e8;
    padding: 15px;
    color: #000000;
    font-size: 16px;
    background: #fff;
}

td {
    border: 1px solid #e8e8e8;
    padding: 10px 15px;
    vertical-align: middle;
}

td:nth-child(2) {
    width: 25%;
}

table strong {
    font-size: 17px;
    color: #000;
}

@media only screen and (max-width: 767px) {
    table td,
    table th {
        padding: 8px 10px;
        font-size: 12px;
    }
}
/* /. table*/

/*Portfolio*/
.portfoliolist .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.portfoliolist .row > div {
    margin-bottom: 10px;
}

.portfoliolist .element-inner {
    height: 350px;
    color: #f2f2f2;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 20px 20px 85px;
    overflow: hidden;
}

.portfoliolist .element-inner:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 0 180px rgba(0, 0, 0, 0.5) inset;
    transition: all 0.3s ease-in 0s;
    -webkit-transition: all 0.3s ease-in 0s;
    -moz-transition: all 0.3s ease-in 0s;
}

.portfoliolist .element:hover .element-inner:before {
    box-shadow: none !important;
}

.portfoliolist .element .element-date {
    margin-bottom: 25px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.portfoliolist .element .element-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.portfoliolist .element .btn {
    margin-bottom: 0;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    padding: 10px 15px;
    text-transform: none;
    font-weight: normal;
    border-radius: 2px;
}

.portfoliolist .element:hover .btn {
    background: #313543;
    color: #fff;
}

@media (max-width: 1259px) {
    .portfoliolist .element-inner {
        height: 265px;
    }

    .portfoliolist .element .element-title {
        font-size: 20px;
    }

    .portfoliolist .element .element-date {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .portfoliolist .element-inner {
        height: 36vw;
    }
}

@media (max-width: 767px) {
    .portfoliolist .element-inner {
        height: 40vw;
    }

    .portfoliolist .element .element-title {
        font-size: 16px;
    }
}

@media (max-width: 550px) {
    .portfoliolist .row {
        display: block;
    }

    .portfoliolist .row > div {
        width: 100%;
    }

    .portfoliolist .element-inner {
        height: 80vw;
        max-height: 350px;
    }

    .portfoliolist .element .element-title {
        font-size: 20px;
    }
}

.neighbors .link-prev,
.neighbors .link-next {
    width: 44px;
    height: 44px;
    position: fixed;
    top: 50%;
    margin-top: -22px;
    z-index: 300;
    background: #fef9f9;
    color: #313543;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.neighbors .link-prev {
    left: 0;
}

.neighbors .link-next {
    right: 0;
    left: auto;
}

.neighbors .link-prev svg,
.neighbors .link-next svg {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
}

.neighbors .link-prev:hover,
.neighbors .link-next:hover {
    background: #e0e0e0;
}

.back_to_subcat a {
    font-family: "Open Sans Condensed", sans-serif;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #0f7c82;
    margin-bottom: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.back_to_subcat svg {
    width: 28px;
    height: 32px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 5px;
}

.back_to_subcat a:hover {
    color: #313543;
}

.price-tables-list .element .element-title {
    color: #0f7c82;
}

.price-anchor-menu {
    margin-bottom: 30px;
}

.price-anchor-menu li {
    display: inline-block;
    margin: 0 10px 10px 0;
}

.price-anchor-menu .btn {
    padding: 10px 12px;
    text-transform: none;
}

.price-anchor-menu .btn svg {
    width: 16px;
    height: 18px;
    vertical-align: middle;
    margin-left: 10px;
}

@media (max-width: 991px) {
    .price-anchor-menu li {
        margin: 0 5px 5px 0;
    }

    .price-anchor-menu .btn {
        padding: 8px 10px;
        font-size: 13px;
        font-weight: normal;
    }

    .price-anchor-menu .btn svg {
        width: 12px;
        height: 14px;
        margin-left: 5px;
    }
}

@media (max-width: 991px) {
    .price-anchor-menu .btn {
        padding: 6px 8px;
        font-size: 11px;
    }
    .price-anchor-menu .btn svg {
        width: 10px;
        height: 12px;
        margin-left: 3px;
    }
}

.ticket-comment {
    min-height: 20px;
    padding: 19px;
    background-color: #f0f0f0;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.ticket-comment p:last-child {
    margin-bottom: 0;
}

.comments.reviews .ticket-comment {
    background-color: #ffffff;
    border: none;
    border-bottom: 1px solid #ededed;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    line-height: 1.8;
    color: #1e1e1e;
    border-radius: 0;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.comments.reviews .ticket-comment .username {
    font-family: "Open Sans Condensed", sans-serif;
    font-size: 18px;
    color: #000;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .comments.reviews .ticket-comment__date {
        padding-left: 0;
    }
}

/* BREADCRUMBS */
.breadcrumb {
    margin: 20px 0 35px;
    font-size: 14px;
    position: relative;
    top: -30px;
    text-align: left;
    text-transform: uppercase;
}

.breadcrumb li {
    display: inline-block;
    margin-right: 25px;
    color: #000;
}

.breadcrumb a {
    text-decoration: none;
    position: relative;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    color: #0f7c82;
}

.breadcrumb a:hover {
    color: #000;
}

.breadcrumb a:after {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    top: 7px;
    right: -16px;
    border-top: 1px solid #0f7c82;
    border-right: 1px solid #0f7c82;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.breadcrumb a:hover:after {
    border-color: #000;
}
/* /. BREADCRUMBS */

/* BLOG */

.meta {
    font-size: 105%;
}

.meta__news-date {
    color: #21b31c;
}

.meta__e-category {
    color: #b3901c;
}

.glyphicon-folder-open {
    margin-right: 7px;
}

.meta__e-reads {
    color: #41a3ff;
}

.meta__e-comments {
    color: #ce36c1;
}
/* END BLOG */

.form-group {
    position: relative;
}

.error-blog {
    position: absolute;
    left: 5px;
    bottom: -17px;
}

.card.register {
    margin-left: auto;
    margin-right: auto;
}

.card.register .form-group,
.card.register .form-group .btn {
    padding-top: 15px;
}

.pagination li > a,
.pagination .active > a {
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.pagination .active > a,
.pagination .active > a:hover {
    background-color: #0f7c82;
    border-color: #0f7c82;
}

.pagination li > a:hover {
    border-color: #0f7c82;
    background-color: white;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
}

.success-danger.danger {
    color: #a22129;
    padding: 30px;
    background: #f8d7da;
    border: 1px solid #ffc1c6;
    line-height: 1.6;
    text-align: center;
}

#message-success .success-message.success,
.success-message.success {
    color: green;
    padding: 30px;
    background: #e5fddf;
    border: 1px solid #caeec1;
    line-height: 1.6;
    text-align: center;
}

.search-container {
    margin-bottom: 20px;
}

.btn-search {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
}

.header-user__block {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0;
}

.btn.login-in {
    margin-top: 5px;
    padding: 12px;
}

@media only screen and (max-width: 768px) {
    .btn.login-in {
        margin-top: 9px;
        /* padding: 8px 12px; */
        font-size: 13px;
    }
}

.login-bg::before {
    content: "";
    width: 100%;
    height: 100vh;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-image: url("/assets/templates/img/site/login_1920_1280.jpg");
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    z-index: -1;
}

.user-registration {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.forgot-password {
    margin-top: 20px;
}

.login-registration {
    margin-top: 15px;
}

.forgot-password a,
span.title-h4,
a.registration-in {
    color: #0f7c82;
}

.forgot-password:hover a {
    color: #ea285e;
}

.list-group {
    display: flex;
    flex-direction: column;
}

.list-group-item {
    margin-bottom: 20px;
}

div.title-h3 {
    margin-bottom: 3px;
}

.card-user {
    padding-top: 20px;
}

.list-group-item.user-card {
    border-bottom: 1px solid grey;
}

.rounded-circle {
    border-radius: 50%;
}

.file-form {
    padding-right: 190px;
}

.file-form .select-btn {
    position: absolute;
    top: 18px;
    right: 2px;
}

.file-text {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 55%;
    height: 20px;
    overflow: hidden;
}

.form-group input[type="file"] {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    bottom: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    opacity: 0;
    z-index: 20;
    cursor: pointer;
}

.file-form.error {
    border-color: red;
}

.focused {
    border-color: #0f7c82;
}

.form-group:hover .select-btn {
    background-color: #0f7c82;
}

@media only screen and (max-width: 420px) {
    .form-group input[name="login-register-btn"],
    .form-group input[name="login_fp"],
    .form-group input[name="change-password"],
    #login-updprof-btn {
        margin-bottom: 10px;
    }
}
