* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
    text-decoration: none !important;
}

body {
    background-color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    font-family: 'Fontfabric', sans-serif;
    position: relative;
}

/* utilities */
.text-center {
    text-align: center;
}

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

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

/* a */
a {
    color: #4a94cf;
    font-size: 17px;
    font-weight: 400;
    padding-bottom: 1px;
    border-bottom: 1px solid rgba(74, 148, 207, 0.5);
    -webkit-transition: .3s color, .3s border-bottom-color;
    -moz-transition: .3s color, .3s border-bottom-color;
    -ms-transition: .3s color, .3s border-bottom-color;
    -o-transition: .3s color, .3s border-bottom-color;
    transition: .3s color, .3s border-bottom-color;
}

a:hover,
a:active {
    color: #0064b4;
    border-bottom-color: transparent;
    -webkit-transition: .3s color, .3s border-bottom-color;
    -moz-transition: .3s color, .3s border-bottom-color;
    -ms-transition: .3s color, .3s border-bottom-color;
    -o-transition: .3s color, .3s border-bottom-color;
    transition: .3s color, .3s border-bottom-color;
}

a:focus {
    color: #7eb9e8;
    border-bottom-color: rgba(126, 185, 232, 0.5);
    -webkit-transition: .3s color, .3s border-bottom-color;
    -moz-transition: .3s color, .3s border-bottom-color;
    -ms-transition: .3s color, .3s border-bottom-color;
    -o-transition: .3s color, .3s border-bottom-color;
    transition: .3s color, .3s border-bottom-color;
}

a.no-dec {
    border-bottom: none;
}

/* .container */
.container {
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    position: relative;
}

/* nav */
nav {
    width: 100%;
    position: relative;
    z-index: 2;
}

nav:not(.nav-transparent) {
    background-color: #151716;
    padding-bottom: 18px;
}

/*nav.nav-transparent {*/
/*position: relative;*/
/*}*/

nav .menu-btn {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
    font-family: 'Fontfabric', sans-serif;
    padding-left: 65px;
    margin-top: 3rem;
    margin-bottom: 2rem;
    position: relative;
    cursor: pointer;
}

nav .menu-btn:before {
    position: absolute;
    top: -0.25rem;
    left: 0;
    width: 50px;
    height: 26px;
    background: url("../img/icons/menu.svg") no-repeat center;
    background-size: 100% 100%;
    content: '';
    /*-webkit-transition: .3s opacity;
    -moz-transition: .3s opacity ;
    -ms-transition: .3s opacity ;
    -o-transition: .3s opacity ;
    transition: .3s opacity ;*/
    opacity: 1;
    z-index: 1;
}

nav .menu-btn:after {
    position: absolute;
    top: -0.25rem;
    left: 0;
    width: 50px;
    height: 26px;
    background: url("../img/icons/menu_hover.svg") no-repeat center;
    background-size: 100% 100%;
    content: '';
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    opacity: 0;
    z-index: 2;
}

nav .menu-btn:hover:after {
    opacity: 1;
}

nav .logo {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    width: 355px;
    height: 125px;
    display: inline-block;
    background: url("../img/logo.png") no-repeat center;
    background-position-y: -6px;
    background-size: 100% 100%;
    border-bottom: 0;
}

nav:not(.nav-transparent) .logo {
    background: none;
}

nav:not(.nav-transparent) .logo:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    z-index: 1;
    content: '';
    background: url(../img/logo_shining.png) no-repeat center;
    background-position-y: -6px;
    background-size: 180% 180%;
    background-position-x: -43px;
    background-position-y: -18px;
    filter: blur(5px);
}

nav:not(.nav-transparent) .logo:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    z-index: 2;
    content: '';
    background: url("../img/logo.png") no-repeat center;
    background-position-y: -6px;
    background-size: 100% 100%;
}

nav .contacts {
    text-align: right;
    display: inline-block;
    float: right;
    padding: 1.3rem;
}

nav .contacts a.tel {
    display: inline-block;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    border-bottom: none;
    margin-bottom: 0.5rem;
}

@media (min-width: 551px) and (max-width: 900px) {
    nav {
        background-color: #151716;
        padding-bottom: 25px;
    }

    nav .logo {
        position: relative;
        left: unset;
        display: block;
        margin: 0 auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        background-position-y: 0 !important;
    }

    nav:not(.nav-transparent) .logo:after {
        background-position-y: 0 !important;
    }

    nav .contacts {
        position: absolute;
        top: 0;
        right: 0;
    }
}

@media (max-width: 550px) {
    nav {
        background-color: #151716;
        padding-bottom: 25px;
        padding-top: 1px;
    }

    nav .menu-btn {
        display: block;
        margin: 2.5rem auto 2.5rem;
    }

    nav .logo {
        position: relative;
        left: unset;
        display: block;
        margin: 0 auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        background-position-y: 0 !important;
    }

    nav:not(.nav-transparent) .logo:after {
        background-position-y: 0 !important;
    }

    nav .contacts {
        display: block;
        float: none;
        text-align: center;
    }
}

/* .nav-menu */
.nav-menu {
    position: fixed;
    width: 40%;
    min-height: 100%;
    background-color: #0064b4;
    top: 0;
    z-index: 5;
    left: 0;
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    -o-transform: translateX(-200%);
    transform: translateX(-200%);
    -webkit-transition: .5s transform;
    -moz-transition: .5s transform;
    -ms-transition: .5s transform;
    -o-transition: .5s transform;
    transition: .5s transform;
}

.nav-menu.open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.full-page-dimmer {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.5);
}

.nav-menu:after {
    position: absolute;
    content: '';
    top: -100%;
    left: 35%;
    width: 100%;
    height: 300%;
    background-color: #0064b4;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
}

.nav-menu > .close {
    border: none;
    content: '';
    width: 55px;
    height: 55px;
    position: absolute;
    top: 5%;
    right: -50%;
    z-index: 2;
    cursor: pointer;
    background-color: transparent;
}

.nav-menu > .close:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background: url("../img/icons/close.svg") no-repeat center;
    background-size: 100% 100%;
    opacity: 1;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

.nav-menu > .close:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background: url("../img/icons/close_hover.svg") no-repeat center;
    background-size: 100% 100%;
    opacity: 0;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

.nav-menu > .close:hover:before {
    opacity: 0;
}

.nav-menu > .close:hover:after {
    opacity: 1;
}

.nav-menu .links {
    display: block;
    position: absolute;
    top: 50%;
    left: 60%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.nav-menu .links > .item {
    display: block;
    border-bottom: none;
    margin: 3rem 0;
    color: #d0e4ee;
    font-size: 36px;
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: .3s color;
    -moz-transition: .3s color;
    -ms-transition: .3s color;
    -o-transition: .3s color;
    transition: .3s color;
}

.nav-menu .links > .item:hover {
    color: #ffffff;
    -webkit-transition: .3s color;
    -moz-transition: .3s color;
    -ms-transition: .3s color;
    -o-transition: .3s color;
    transition: .3s color;
}

@media (max-width: 1000px) {
    .nav-menu {
        width: 100%;
    }

    .nav-menu:after {
        display: none;
    }

    .nav-menu > .close {
        right: 5%;
    }

    .nav-menu .links {
        left: 50%;
    }
}

/* .full-block */
.full-block {
    position: relative;
    width: 100%;
    max-width: 100vw;
    max-width: calc(100vw + 1px);
    min-height: 100vh;
    overflow: hidden;
}

.full-block > .content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
}

.full-block > .content > .container {
    width: 100%;
}

.fb-title {
    text-align: center;
    color: #212121;
    font-size: 50px;
    font-weight: 300;
    padding: 0 18px;
    margin-bottom: 45px;
    position: relative;
}

.full-block > .fb-title {
    margin-top: 5%;
}

.fb-title:after,
.fb-title:before {
    position: absolute;
    content: '';
    width: 108px;
    height: 0;
    border: 4px solid transparent;
}

.fb-title:after {
    bottom: -20px;
    left: calc(50% - 56px);
    border-top-color: #2589d9;
}

.fb-title:before {
    bottom: -16px;
    left: calc(50% - 60px);
    border-bottom-color: #2589d9;
}

.full-block > .dimmer {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.full-block > .dimmer.dimmer-right {
    width: 50%;
    right: 0;
}

.full-block > .dimmer.dimmer-left {
    width: 50%;
    left: 0;
}

.full-block > .arrow-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    border: none;
    cursor: pointer;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url("../img/fb_arrow.png") no-repeat center;
    background-size: 100% 100%;
    width: 43px;
    height: 23px;
    z-index: 3;
}

@media (max-width: 1200px) {
    .full-block {
        max-width: unset;
    }

    .full-block > .content {
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: none;
        top: 0;
        left: 0;
        padding: 10% 8% calc(10% + 60px);
        width: 100%;
        position: relative;
    }
}

/* .header-1 */
.header-1 {
    text-align: center;
    min-height: calc(100vh + 41px);
}

/*.header-1:before {
    background: url("../img/header-1.jpg") no-repeat center bottom;
    background-size: cover;
    content: '';
    position: absolute;
    top: 0;
    left: 0;

    

    width: 100%;
    height: 100%;
    overflow: hidden;
}*/
/*/*background-position-x: 110px;
    background-position-x: 0;
    background-position-y: -400px;
    /*width: calc(100% + 110px);
    width: calc(100% + 100px);
    height: calc(100% + 450px);*/

.header-1 h1 {
    color: #ffffff;
    font-weight: 300;
    font-size: 50px;
    margin-bottom: 2rem;
}

.header-1 h1 > span {
    display: block;
}

@media (min-width: 901px) {
    .header-1 {
        top: -142px;
        margin-bottom: -142px;
    }
}

/* .d-block */
.d-block {
    display: block;
    width: 100%;
}

/* .btn */
.btn {
    position: relative;
    display: inline-block;
    background-color: #fdd835;
    color: #212121;
    padding: 1.3rem 1.5rem 1.2rem;
    font-size: 19px;
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: .3s box-shadow, .3s background-color, .3s color;
    -moz-transition: .3s box-shadow, .3s background-color, .3s color;
    -ms-transition: .3s box-shadow, .3s background-color, .3s color;
    -o-transition: .3s box-shadow, .3s background-color, .3s color;
    transition: .3s box-shadow, .3s background-color, .3s color;
    border: none;
}

.btn:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    background-color: #d6b212;
    bottom: -3px;
    left: 0;
    -webkit-transition: .3s background-color;
    -moz-transition: .3s background-color;
    -ms-transition: .3s background-color;
    -o-transition: .3s background-color;
    transition: .3s background-color;
}

.btn[disabled] {
    background-color: #c2a111 !important;
    cursor: not-allowed !important;
}

.btn[disabled]:after {
    background-color: #9a7e04 !important;
}

.btn:hover,
.btn:active {
    background-color: #ffdf52;
}

.btn:focus {
    background-color: #fdd835;
}

/* .btn-blue */
.btn-blue {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: .3s box-shadow, .3s background-color, .3s color, .3s font-weight, .3s padding;
    -moz-transition: .3s box-shadow, .3s background-color, .3s color, .3s font-weight, .3s padding;
    -ms-transition: .3s box-shadow, .3s background-color, .3s color, .3s font-weight, .3s padding;
    -o-transition: .3s box-shadow, .3s background-color, .3s color, .3s font-weight, .3s padding;
    transition: .3s box-shadow, .3s background-color, .3s color, .3s font-weight, .3s padding;
    border: none;
    color: #ffffff;
    font-size: 19px;
    font-weight: 400;
    box-shadow: 0 15px 30px rgba(0, 100, 180, 0.5);
    background-color: #0064b4;
    text-align: center;
    padding: 1.3rem 1.91rem 1.2rem;
}

.btn-blue:hover {
    box-shadow: 0 15px 30px rgba(0, 100, 180, 0.5);
    background-color: #0064b4;
    font-weight: 500;
    padding: 1.3rem 1.5rem 1.2rem;
    -webkit-transition: .3s box-shadow, .3s background-color, .3s color, .3s font-weight, .3s padding;
    -moz-transition: .3s box-shadow, .3s background-color, .3s color, .3s font-weight, .3s padding;
    -ms-transition: .3s box-shadow, .3s background-color, .3s color, .3s font-weight, .3s padding;
    -o-transition: .3s box-shadow, .3s background-color, .3s color, .3s font-weight, .3s padding;
    transition: .3s box-shadow, .3s background-color, .3s color, .3s font-weight, .3s padding;
}

.btn-blue span {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    -webkit-transition: .3s border-bottom-color;
    -moz-transition: .3s border-bottom-color;
    -ms-transition: .3s border-bottom-color;
    -o-transition: .3s border-bottom-color;
    transition: .3s border-bottom-color;
}

.btn-blue:hover span {
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* .btn-outline */
.btn-outline {
    position: relative;
    display: inline-block;
    border: 3px solid #fdd835 !important;
    color: #ffffff;
    padding: 1.3rem 1.5rem 1.2rem;
    font-size: 19px;
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: .3s box-shadow, .3s background-color, .3s color;
    -moz-transition: .3s box-shadow, .3s background-color, .3s color;
    -ms-transition: .3s box-shadow, .3s background-color, .3s color;
    -o-transition: .3s box-shadow, .3s background-color, .3s color;
    transition: .3s box-shadow, .3s background-color, .3s color;
}

.btn-outline:after {
    position: absolute;
    content: '';
    width: calc(100% + 6px);
    height: 3px;
    background-color: transparent;
    bottom: -3px;
    left: -3px;
    -webkit-transition: .3s background-color;
    -moz-transition: .3s background-color;
    -ms-transition: .3s background-color;
    -o-transition: .3s background-color;
    transition: .3s background-color;
}

.btn-outline:hover,
.btn-outline:active {
    background-color: #ffdf52;
    color: #212121;
    -webkit-transition: .3s box-shadow, .3s background-color, .3s color;
    -moz-transition: .3s box-shadow, .3s background-color, .3s color;
    -ms-transition: .3s box-shadow, .3s background-color, .3s color;
    -o-transition: .3s box-shadow, .3s background-color, .3s color;
    transition: .3s box-shadow, .3s background-color, .3s color;
}

.btn-outline:hover:after,
.btn-outline:active:after {
    background-color: #cca90e;
}

.btn-outline:focus {
    background-color: #fad530;
    color: #212121;
    -webkit-transition: .3s box-shadow, .3s background-color, .3s color;
    -moz-transition: .3s box-shadow, .3s background-color, .3s color;
    -ms-transition: .3s box-shadow, .3s background-color, .3s color;
    -o-transition: .3s box-shadow, .3s background-color, .3s color;
    transition: .3s box-shadow, .3s background-color, .3s color;
}

.btn-outline:focus:after {
    background-color: #b89706;
}

/* input */
input[type="text"] {
    display: block;
    background-color: #ffffff;
    opacity: 0.9;
    color: #8b8a8a;
    font-size: 17px;
    font-weight: 400;
    padding: 10px 10px 10px 10px;
    margin-bottom: 20px;
    border: 2px solid transparent;
    width: 100%;
    -webkit-transition: .3s background-color, .3s box-shadow, .3s color;
    -moz-transition: .3s background-color, .3s box-shadow, .3s color;
    -ms-transition: .3s background-color, .3s box-shadow, .3s color;
    -o-transition: .3s background-color, .3s box-shadow, .3s color;
    transition: .3s background-color, .3s box-shadow, .3s color;
    outline: none !important;
}

input[type="text"]:hover,
input[type="text"]:focus {
    box-shadow: 0 0 30px rgba(114, 180, 227, 0.75);
    background-color: #ffffff;
    -webkit-transition: .3s background-color, .3s box-shadow, .3s color;
    -moz-transition: .3s background-color, .3s box-shadow, .3s color;
    -ms-transition: .3s background-color, .3s box-shadow, .3s color;
    -o-transition: .3s background-color, .3s box-shadow, .3s color;
    transition: .3s background-color, .3s box-shadow, .3s color;
}

input[type="text"]:hover {
    color: #bfbfbf;
}

input[type="text"]:focus {
    color: #212121;
}

/* input.with-icon */
.with-icon {
    position: relative;
    background-color: #ffffff;
}

.with-icon > input {
    padding: 12px 10px 12px 43px;
    background-color: transparent !important;
    position: relative;
    z-index: 1;
}

.with-icon.user:after {
    position: absolute;
    left: 18px;
    top: 14px;
    content: '';
    width: 18px;
    height: 22px;
    background: url("../img/icons/user.svg") no-repeat center;
    background-size: 100% 100%;
    z-index: 0;
}

.with-icon.mobile:after {
    position: absolute;
    left: 21px;
    top: 14px;
    content: '';
    width: 12px;
    height: 20px;
    background: url("../img/icons/mobile.svg") no-repeat center;
    background-size: 100% 100%;
    z-index: 0;
}

/* .checkbox */
.checkbox {
    position: relative;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 25px;
    padding-left: 38px;
}

.checkbox > .fake {
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    content: '';
    border: 1px solid #318bd3;
    /*background-color: #ffffff;*/
    -webkit-transition: .3s background-color, .3s border-color;
    -moz-transition: .3s background-color, .3s border-color;
    -ms-transition: .3s background-color, .3s border-color;
    -o-transition: .3s background-color, .3s border-color;
    transition: .3s background-color, .3s border-color;
}

.checkbox > .fake:before {
    position: absolute;
    width: 11px;
    height: 11px;
    content: '';
    left: 5px;
    top: 5px;
    background: url("../img/icons/check.png") no-repeat center;
    background-size: 100% 100%;
    opacity: 0;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

.checkbox > input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 1;
}

.checkbox > input[type="checkbox"]:not(checked):hover ~ .fake {
    border-color: #72b4e3;
}

.checkbox > input[type="checkbox"]:not(checked):active ~ .fake {
    border-color: #318bd3;
}

.checkbox > input[type="checkbox"]:checked ~ .fake {
    background-color: #318bd3;
    border-color: #318bd3;
}

.checkbox > input[type="checkbox"]:checked ~ .fake:before {
    opacity: 1;
}

.checkbox > input[type="checkbox"]:checked:hover ~ .fake {
    background-color: #509edd;
    border-color: #509edd;
}

.checkbox > input[type="checkbox"]:checked:active ~ .fake {
    background-color: #318bd3;
    border-color: #318bd3;
}

/* .card */
.card {
    box-shadow: 0 17px 30px rgba(0, 0, 0, 0.16);
    border: 1px solid #f1f1f1;
    background-color: #ffffff;
    padding: 2.5rem;
}

.card.bg-quote {
    position: relative;
}

.card.bg-quote:before {
    position: absolute;
    content: '';
    top: 1.5rem;
    left: 1.5rem;
    width: 124px;
    height: 106px;
    background: url("../img/icons/quote.svg") no-repeat center;
    background-size: 100% 100%;
}

/* .b-lines-bg */
.b-lines-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    max-height: 100vh;
}

.b-lines-bg:before {
    position: absolute;
    display: inline-block;
    background-color: #2589d9;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
    height: 500%;
    width: 380px;
    right: calc(30% + 150px);
    top: -70%;
    content: '';
}

.b-lines-bg:after {
    position: absolute;
    display: inline-block;
    background-color: #0064b4;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
    height: 500%;
    width: 100%;
    right: 0;
    top: -60%;
    content: '';
}

/* .director-quote */
.director-quote {
    height: auto;
    min-height: 600px;
}

.director-quote .card {
    width: 100%;
    font-size: 19px;
    font-weight: 400;
    line-height: 28px;
}

.director-quote .card p:not(:last-of-type) {
    margin-bottom: 1.5rem;
}

.director-quote .quote-cred {
    margin-top: 2.5rem;
    float: right;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
    color: #ffffff;
    font-size: 19px;
    font-weight: 400;
}

.director-quote .director-pic {
    display: none;
    position: absolute;
    right: calc((100% - 1200px) / 2);
    bottom: 0;
    background: url("../img/directors.png") no-repeat center;
    background-size: cover;

    width: 416px;
    height: 684px;
}

@media (min-width: 1200px) {
    .director-quote {
        height: 60vh;
    }

    .director-quote .container {
        padding-right: 430px;
    }

    .director-quote .card {
        width: 770px;
    }

    .b-lines-bg::before {
        width: 220px;
        right: calc(100% + 150px);
    }

    .director-quote .director-pic {
        display: block;
    }
}

/* .services-1 */
.services-1 {
            background: url("../img/services-1.jpg") no-repeat center;
    position: relative;
    overflow: hidden;
    min-height: 980px;
}

.services-1 > .fb-title {
    color: #ffffff;
}

/* .services-map */
.services-map > .inner {
    position: absolute;
    width: 1920px;
    height: 1080px;
    top: 45%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
@media (max-width: 430px){
    .services-map > .inner {
        top:60%;
        min-width: 100% !important;
    }
    .fb-title{
        font-size: 35px !important;
    }
}

.services-map .fb-title {
    z-index: 1;
}

.services-1.services-map > .inner {
    background-size: 100% 100%;
    z-index: 1;
}

.services-2.services-map > .inner {
    background: url("../img/services-2.jpg") no-repeat center;
    box-shadow: inset 0 400px 200px 50px #FFFFFF;
    background-size: 100% 100%;
}

.services-map > .inner > .point {
    max-width: 220px;
}

.services-map > .inner > .point > p {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline rgba(255, 255, 255, 0.6) !important;
    text-decoration-style: solid !important;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: .3s color, .3s text-decoration, .3s box-shadow, .3s font-weight, .3s background-color;
    -moz-transition: .3s color, .3s text-decoration, .3s box-shadow, .3s font-weight, .3s background-color;
    -ms-transition: .3s color, .3s text-decoration, .3s box-shadow, .3s font-weight, .3s background-color;
    -o-transition: .3s color, .3s text-decoration, .3s box-shadow, .3s font-weight, .3s background-color;
    transition: .3s color, .3s text-decoration, .3s box-shadow, .3s font-weight, .3s background-color;
    border-radius: 20%;
    max-width: 240px;
}

.services-map > .inner > .point > p:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration-color: rgba(255, 255, 255, 1) !important;
    -webkit-transition: .3s color, .3s text-decoration, .3s box-shadow, .3s font-weight, .3s background-color;
    -moz-transition: .3s color, .3s text-decoration, .3s box-shadow, .3s font-weight, .3s background-color;
    -ms-transition: .3s color, .3s text-decoration, .3s box-shadow, .3s font-weight, .3s background-color;
    -o-transition: .3s color, .3s text-decoration, .3s box-shadow, .3s font-weight, .3s background-color;
    transition: .3s color, .3s text-decoration, .3s box-shadow, .3s font-weight, .3s background-color;
    font-weight: 600;
}

.services-map > .inner > .point > p.active {
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-decoration: none !important;
    text-shadow: 0 0 20px #2589d9, 0 0 1em #2589d9;
}

.services-map > .inner > .point > p:after {
    position: absolute;
    content: '';
    border-radius: 50%;
    padding: 10px;
    background: #2589d9;
    background-clip: padding-box !important;
    border: 10px solid transparent;
    -webkit-transition: .3s background-color, .3s border-color;
    -moz-transition: .3s background-color, .3s border-color;
    -ms-transition: .3s background-color, .3s border-color;
    -o-transition: .3s background-color, .3s border-color;
    transition: .3s background-color, .3s border-color;
}

.services-map > .inner > .point > p:before {
    position: absolute;
    content: '';
    width: 150px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: .3s background-color;
    -moz-transition: .3s background-color;
    -ms-transition: .3s background-color;
    -o-transition: .3s background-color;
    transition: .3s background-color;
}

.services-map > .inner > .point > p:hover:after {
    background-color: #11b4df;
    -webkit-transition: .3s background-color, .3s border-color;
    -moz-transition: .3s background-color, .3s border-color;
    -ms-transition: .3s background-color, .3s border-color;
    -o-transition: .3s background-color, .3s border-color;
    transition: .3s background-color, .3s border-color;
}

.services-map > .inner > .point > p.active:before {
    background-color: rgba(255, 255, 255, 0.9);
}

.services-map > .inner > .point > p.active:after {
    border-color: rgba(106, 178, 230, 0.4);
    background-color: #11b4df;
}

.services-2.services-map > .inner > .point > p,
.services-2.services-map > .inner > .point > p:hover {
    color: rgb(33, 33, 33);
    text-decoration: underline rgb(33, 33, 33) !important;
    text-decoration-style: solid !important;
}

.services-2.services-map > .inner > .point > p.active {
    color: rgb(255, 255, 255);
    text-decoration: none !important;
}

.services-2.services-map > .inner > .point > p:before {
    background-color: rgba(37, 137, 217, 0.6);
}

.services-2.services-map > .inner > .point > p.active:before {
    background-color: rgba(37, 137, 217, 1);
}

.services-2.services-map > .inner > .point > p:after {
    background-color: rgba(37, 137, 217, 0.6);
}

.services-2.services-map > .inner > .point > p:hover:after,
.services-2.services-map > .inner > .point > p.active:after {
    background-color: rgba(37, 137, 217, 1);
}

.services-map > .inner > .point > .desc {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
    background-color: #ffffff;
    padding: 40px 50px;
    max-width: 600px;
    color: #212121;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    z-index: 3;
}

.services-map > .inner > .point > .desc > .close {
    font-size: 35px;
    text-align: right;
    cursor: pointer;
    font-weight: 200;
    color: #a4c9e7;
    
}

.services-map > .inner > .point > .desc .link {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    display: inline-block;
    position: relative;
}

.services-map > .inner > .point > .desc .link:after {
    width: 6px;
    height: 11px;
    content: '';
    display: inline-block;
    margin-left: 8px;
    background: url("../img/link.png") no-repeat center;
    background-size: 100% 100%;
    opacity: 0.7;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

.services-map > .inner > .point > .desc .link:hover:after {
    opacity: 1;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

@media (max-width: 1700px) and (min-width: 1480px) {
    .services-map > .inner {
        /* left: 45%; */
    }
}

@media (max-width: 1264px) {
    .services-1 {
        background-size: cover;
    }


    .services-map > .inner {
        left: 50%;
        background: rgba(234,234,234, 0.8) !important;
        width: auto;
        height: auto;
        padding: 18px 15px;
        min-width: 465px;
    }

    .services-map > .inner > .point {
        max-width: none;
    }

    .services-map > .inner > .point > p {
        padding: 9px 10px 5px 45px;
        position: relative !important;
        top: unset !important;
        left: unset !important;
        max-width: none;
        color: rgba(0, 0, 0, 0.8) !important;
        text-decoration-color: rgba(0, 0, 0, 0.8) !important;
    }

    .services-map > .inner > .point > p:after {
        left: 0 !important;
        top: 0 !important;
        display: inline-block;
    }

    .services-map > .inner > .point > p:before {
        display: none;
    }

    .services-map > .inner > .point > p.active {
        box-shadow: none !important;
        background-color: transparent !important;
    }

    .services-map > .inner > .point > .desc {
        width: 150%;
        max-width: 100vw;
    }

    .services-map > .inner > .point > .desc > .close {
        position: absolute;
        font-size: 50px;
        content: '×';
        top: 20px;
        right: 15px;
        color: rgb(45, 45, 45);
        opacity: 0.3;
        -webkit-transition: .3s opacity;
        -moz-transition: .3s opacity;
        -ms-transition: .3s opacity;
        -o-transition: .3s opacity;
        transition: .3s opacity;
        z-index: 2;
        display: inline-block;
    }

    .services-map > .inner > .point > .desc > .close:hover {
        -webkit-transition: .3s opacity;
        -moz-transition: .3s opacity;
        -ms-transition: .3s opacity;
        -o-transition: .3s opacity;
        transition: .3s opacity;
        opacity: 1;
    }
}

/* --- 1 --- */
.services-1 > .inner > .point:nth-child(1) > p {
    position: absolute;
    left: 350px;
    top: 380px;
}

.services-1 > .inner > .point:nth-child(1) > p:before {
    top: 117px;
    left: 39px;
    -webkit-transform: rotate(58deg);
    -moz-transform: rotate(58deg);
    -ms-transform: rotate(58deg);
    -o-transform: rotate(58deg);
    transform: rotate(58deg);
    width: 188px;
}

.services-1 > .inner > .point:nth-child(1) > p:after {
    top: 198px;
    left: 174px;
}

/* --- 2 --- */
.services-1 > .inner > .point:nth-child(2) > p {
    position: absolute;
    left: 810px;
    top: 305px;
}

.services-1 > .inner > .point:nth-child(2) > p:before {
    top: 92px;
    left: 50px;
    -webkit-transform: rotate(63deg);
    -moz-transform: rotate(63deg);
    -ms-transform: rotate(63deg);
    -o-transform: rotate(63deg);
    transform: rotate(63deg);
    width: 67px;
}

.services-1 > .inner > .point:nth-child(2) > p:after {
    top: 124px;
    left: 90px;
}

/* --- 3--- */
.services-1 > .inner > .point:nth-child(3) > p {
    position: absolute;
    left: 1100px;
    top: 275px;
}

.services-1 > .inner > .point:nth-child(3) > p:before {
    top: 76px;
    left: 57px;
    -webkit-transform: rotate(66deg);
    -moz-transform: rotate(66deg);
    -ms-transform: rotate(66deg);
    -o-transform: rotate(66deg);
    transform: rotate(66deg);
    width: 90px;
}

.services-1 > .inner > .point:nth-child(3) > p:after {
    top: 119px;
    left: 110px;
}

/* --- 4 --- */
.services-1 > .inner > .point:nth-child(4) > p {
    position: absolute;
    left: 1522px;
    top: 320px;
}

.services-1 > .inner > .point:nth-child(4) > p:before {
    top: 151px;
    left: 33px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 181px;
}

.services-1 > .inner > .point:nth-child(4) > p:after {
    top: 212px;
    left: 185px;
}

/* --- 5 --- */
.services-1 > .inner > .point:nth-child(5) > p {
    position: absolute;
    left: 330px;
    top: 930px;
}

.services-1 > .inner > .point:nth-child(5) > p:before {
    top: -110px;
    left: 2px;
    -webkit-transform: rotate(87deg);
    -moz-transform: rotate(87deg);
    -ms-transform: rotate(87deg);
    -o-transform: rotate(87deg);
    transform: rotate(87deg);
    width: 200px;
}

.services-1 > .inner > .point:nth-child(5) > p:after {
    top: -260px;
    left: 76px;
}

/* --- 6--- */
.services-1 > .inner > .point:nth-child(6) > p {
    position: absolute;
    left: 760px;
    top: 975px;
}

.services-1 > .inner > .point:nth-child(6) > p:before {
    top: -160px;
    left: -77px;
    -webkit-transform: rotate(94deg);
    -moz-transform: rotate(94deg);
    -ms-transform: rotate(94deg);
    -o-transform: rotate(94deg);
    transform: rotate(94deg);
    width: 300px;
}

.services-1 > .inner > .point:nth-child(6) > p:after {
    top: -360px;
    left: 66px;
}

/* --- 7 --- */
.services-1 > .inner > .point:nth-child(7) > p {
    position: absolute;
    left: 1025px;
    top: 950px;
}

.services-1 > .inner > .point:nth-child(7) > p:before {
    top: -144px;
    left: -60px;
    -webkit-transform: rotate(83deg);
    -moz-transform: rotate(83deg);
    -ms-transform: rotate(83deg);
    -o-transform: rotate(83deg);
    transform: rotate(83deg);
    width: 272px;
}

.services-1 > .inner > .point:nth-child(7) > p:after {
    top: -320px;
    left: 37px;
}

/* --- 8 --- */
.services-1 > .inner > .point:nth-child(8) > p {
    position: absolute;
    left: 1490px;
    top: 915px;
}

.services-1 > .inner > .point:nth-child(8) > p:before {
    top: -89px;
    left: 30px;
    -webkit-transform: rotate(110deg);
    -moz-transform: rotate(110deg);
    -ms-transform: rotate(110deg);
    -o-transform: rotate(110deg);
    transform: rotate(110deg);
    width: 170px;
}

.services-1 > .inner > .point:nth-child(8) > p:after {
    top: -215px;
    left: 134px;
}

/* --- 9 --- */
.services-1 > .inner > .point:nth-child(9) > p {
    position: absolute;
    left: 1258px;
    top: 852px;
}

.services-1 > .inner > .point:nth-child(9) > p:before {
    top: -114px;
    left: 16px;
    -webkit-transform: rotate(111deg);
    -moz-transform: rotate(111deg);
    -ms-transform: rotate(111deg);
    -o-transform: rotate(111deg);
    transform: rotate(111deg);
    width: 239px;
}

.services-1 > .inner > .point:nth-child(9) > p:after {
    top: -262px;
    left: 165px;
}

/* .services-2 */
.services-2 {
    box-shadow: inset 0 200px 200px 50px #FFFFFF;
    background: url("../img/services-2.jpg") no-repeat center bottom;
    background-size: cover;
    min-height: 900px;
}

/* --- 1 --- */
.services-2 > .inner > .point:nth-child(1) > p {
    position: absolute;
    left: 380px;
    top: 370px;
}

.services-2 > .inner > .point:nth-child(1) > p:before {
    top: 85px;
    left: 63px;
    -webkit-transform: rotate(13deg);
    -moz-transform: rotate(13deg);
    -ms-transform: rotate(13deg);
    -o-transform: rotate(13deg);
    transform: rotate(13deg);
    width: 455px;
}

.services-2 > .inner > .point:nth-child(1) > p:after {
    top: 123px;
    left: 515px;
}

/* --- 2 --- */
.services-2 > .inner > .point:nth-child(2) > p {
    position: absolute;
    left: 1320px;
    top: 359px;
}

.services-2 > .inner > .point:nth-child(2) > p:before {
    top: 60px;
    left: 30px;
    -webkit-transform: rotate(116deg);
    -moz-transform: rotate(116deg);
    -ms-transform: rotate(116deg);
    -o-transform: rotate(116deg);
    transform: rotate(116deg);
    width: 75px;
}

.services-2 > .inner > .point:nth-child(2) > p:after {
    top: 95px;
    left: 22px;
}

/* --- 3--- */
.services-2 > .inner > .point:nth-child(3) > p {
    position: absolute;
    left: 425px;
    top: 970px;
}

.services-2 > .inner > .point:nth-child(3) > p:before {
    top: -41px;
    left: 92px;
    -webkit-transform: rotate(151deg);
    -moz-transform: rotate(151deg);
    -ms-transform: rotate(151deg);
    -o-transform: rotate(151deg);
    transform: rotate(151deg);
    width: 150px;
}

.services-2 > .inner > .point:nth-child(3) > p:after {
    top: -110px;
    left: 240px;
}

/* --- 4 --- */
.services-2 > .inner > .point:nth-child(4) > p {
    position: absolute;
    left: 1275px;
    top: 910px;
}

.services-2 > .inner > .point:nth-child(4) > p:before {
    top: -26px;
    left: -121px;
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
    width: 122px;
}

.services-2 > .inner > .point:nth-child(4) > p:after {
    top: -76px;
    left: -150px;
}

/* --- 5 --- */
.services-2 > .inner > .point:nth-child(5) > p {
    position: absolute;
    left: 1639px;
    top: 675px;
}

.services-2 > .inner > .point:nth-child(5) > p:before {
    top: 80px;
    left: -310px;
    -webkit-transform: rotate(166deg);
    -moz-transform: rotate(166deg);
    -ms-transform: rotate(166deg);
    -o-transform: rotate(166deg);
    transform: rotate(166deg);
    width: 399px;
}

.services-2 > .inner > .point:nth-child(5) > p:after {
    top: 115px;
    left: -343px;
}

/* --- 6 --- */
.services-2 > .inner > .point:nth-child(6) > p {
    position: absolute;
    left: 100px;
    top: 675px;
}

.services-2 > .inner > .point:nth-child(6) > p:before {
    top: -7px;
    left: 237px;
    -webkit-transform: rotate(164deg);
    -moz-transform: rotate(164deg);
    -ms-transform: rotate(164deg);
    -o-transform: rotate(164deg);
    transform: rotate(164deg);
    width: 128px;
}

.services-2 > .inner > .point:nth-child(6) > p:after {
    top: -50px;
    left: 360px;
}

@media (max-width: 1699px) {
    
    .services-1 > .inner > .point:nth-child(4) > p {
        left: 1470px;
    }
}

@media (max-width: 1699px) {
    
    .services-2 > .inner > .point:nth-child(6) > p {
        left: 320px;
    }
    
    .services-2 > .inner > .point:nth-child(5) > p {
        left: 1543px;
    }
}

@media (max-width: 1480px) {
    
    .services-2 > .inner > .point:nth-child(5) > p {
        left: 1468px;
    }
    
    .services-2 > .inner > .point:nth-child(5) > p:after {
        left: -264px;
    }
    
    .services-2 > .inner > .point:nth-child(5) > p:before {
        top: 77px;
        left: -218px;
        -webkit-transform: rotate(163deg);
        -moz-transform: rotate(163deg);
        -ms-transform: rotate(163deg);
        -o-transform: rotate(163deg);
        transform: rotate(163deg);
        width: 311px;
    }
    
    .services-2 > .inner > .point:nth-child(5) > p:after {
        left: -248px;
        top: 109;
    }
} 

@media (max-width: 1479px) {
    .services-1 {
        background-size: cover;
    }
    
    .services-1 > .inner > .point:nth-child(1) > p {
        position: absolute;
        left: 413px;
        top: 382px;
    }
    
    .services-1 > .inner > .point:nth-child(2) > p {
        position: absolute;
        left: 810px;
        top: 353px;
    }
    .services-1 > .inner > .point:nth-child(3) > p {
        position: absolute;
        left: 1036px;
        top: 310px;
    }
    .services-1 > .inner > .point:nth-child(4) > p {
        position: absolute;
        left: 1361px;
        top: 364px;
    }
    .services-1 > .inner > .point:nth-child(5) > p {
        position: absolute;
        left: 410px;
        top: 930px;
    }
    .services-1 > .inner > .point:nth-child(6) > p {
        position: absolute;
        left: 795px;
        top: 989px;
    }
    .services-1 > .inner > .point:nth-child(7) > p {
        position: absolute;
        left: 1128px;
        top: 957px;
    }
    
    .services-1 > .inner > .point:nth-child(9) > p:after {
        top: -265px;
        left: 77px;
    }
    
    .services-1 > .inner > .point:nth-child(9) > p:before {
        top: -113px;
        left: -32px;
        -webkit-transform: rotate(96deg);
        -moz-transform: rotate(96deg);
        -ms-transform: rotate(96deg);
        -o-transform: rotate(96deg);
        transform: rotate(96deg);
        width: 228px;
    }
    
    .services-1 > .inner > .point:nth-child(7) > p {
        left: 990px;
    }
    .services-1 > .inner > .point:nth-child(8) > p {
        left: 1399px;
        top: 924px;
    }

}

/* .pros */
.pros {
    min-height: 500px;
    position: relative;
}

.pros:before {
    position: absolute;
    content: '';
    top: -100%;
    left: -22%;
    height: 300%;
    width: 500px;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
    filter: blur(0.5px);
    background-color: #0064b4;
    background-clip: content-box;
    padding-right: 50px;
    border-right: 250px solid rgba(0, 100, 180, 0.05);
}

.pros:after {
    position: absolute;
    content: '';
    top: -100%;
    left: 90%;
    height: 300%;
    width: 500px;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
    filter: blur(0.5px);
    background-color: #0064b4;
}

.pros > .content {
    top: 60%;
}

/* .pros-list */
.pros-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 1400px;
    max-width: 100%;
}

.pros-list > .item {
    display: block;
    text-align: center;
    width: 210px;
    margin: 15px 70px;
    line-height: 25px;
    cursor: pointer;
}

.pros-list > .item b {
    color: #2589d9;
    font-weight: 800;
}

.pros-list > .item > div[class^="pros-icon-"] {
    box-shadow: 0 13px 23px 1px rgba(0, 100, 180, 0.1);
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: #d5e5f2;
    margin: 30px auto 30px;
    width: 107px;
    height: 122px;
    -webkit-transition: .3s box-shadow;
    -moz-transition: .3s box-shadow;
    -ms-transition: .3s box-shadow;
    -o-transition: .3s box-shadow;
    transition: .3s box-shadow;
}

.pros-list > .item > div[class^="pros-icon-"]:after {
    position: absolute;
    top: 1px;
    left: 1px;
    content: '';
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: #f6f9fb;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    -webkit-transition: .3s background-color;
    -moz-transition: .3s background-color;
    -ms-transition: .3s background-color;
    -o-transition: .3s background-color;
    transition: .3s background-color;
}

.pros-list > .item > div[class^="pros-icon-"] > div {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.pros-list > .item > div[class^="pros-icon-"] > div:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.pros-list > .item > div[class^="pros-icon-"] > div:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.pros-list > .item > div[class^="pros-icon-"]:hover {
    box-shadow: 0 13px 28px 2px rgba(0, 100, 180, 0.15);
}

.pros-list > .item > div[class^="pros-icon-"]:hover:after {
    background-color: #ffffff;
}

.pros-list > .item > div[class^="pros-icon-"]:hover > div:after {
    opacity: 1;
}

.pros-list > .item > .pros-icon-1 > div:before {
    background: url("../img/icons/pros/1.svg") no-repeat center;
    background-size: 65px 57px;
}

.pros-list > .item > .pros-icon-1 > div:after {
    background: url("../img/icons/pros/1_hover.svg") no-repeat center;
    background-size: 65px 57px !important;
}

.pros-list > .item > .pros-icon-2 > div:before {
    background: url("../img/icons/pros/2.svg") no-repeat center;
    background-size: 65px 58px !important;
}

.pros-list > .item > .pros-icon-2 > div:after {
    background: url("../img/icons/pros/2_hover.svg") no-repeat center;
    background-size: 65px 58px !important;
}

.pros-list > .item > .pros-icon-3 > div:before {
    background: url("../img/icons/pros/3.svg") no-repeat center;
    background-size: 71px 57px !important;
}

.pros-list > .item > .pros-icon-3 > div:after {
    background: url("../img/icons/pros/3_hover.svg") no-repeat center;
    background-size: 71px 57px !important;
}

.pros-list > .item > .pros-icon-4 > div:before {
    background: url("../img/icons/pros/4.svg") no-repeat center;
    background-size: 52px 68px !important;
}

.pros-list > .item > .pros-icon-4 > div:after {
    background: url("../img/icons/pros/4_hover.svg") no-repeat center;
    background-size: 52px 68px !important;
}

@media (min-width: 1351px) and (max-width: 1850px) {
    .pros:before {
        left: -30%;
    }

    .pros:after {
        left: 105%;
    }
}

@media (min-width: 1100px) and (max-width: 1350px) {
    .pros {
        min-height: 750px;
    }

    .pros-list {
        min-width: 1000px;
    }

    .pros:before {
        left: -35%;
    }

    .pros:after {
        left: 105%;
    }
}

@media (min-width: 720px) and (max-width: 1099px) {
    .pros-list {
        min-width: auto;
    }

    .pros:before {
        left: -100%;
    }

    .pros:after {
        left: 120%;
    }
}

@media (max-width: 719px) {
    .pros-list {
        min-width: auto;
    }

    .pros:before {
        left: -230%;
    }

    .pros:after {
        left: 160%;
    }
}

/* .instagram-block */
.instagram-block {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    min-height: auto;
    max-height: calc(280px * 2) !important;
}

.instagram-block > img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    flex: 1 auto;
    object-fit: cover;
    height: 280px;
    width: 380px;
    margin: 0;
    padding: 0;
}

.instagram-block > .instagram-link {
    position: absolute;
    display: block;
    bottom: 0;
    height: 281px;
    width: 382px;
    left: 50%;
    text-align: center;
    padding: 80px 85px 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

@media (max-width: 1139px) {
    .instagram-block > .instagram-link {
        width: calc(100% / 1);
    }
}

@media (min-width: 1140px) and (max-width: 1519px) {
    .instagram-block > .instagram-link {
        width: calc(100% / 3);
    }
}

@media (min-width: 1520px) and (max-width: 1899px) {
    .instagram-block > .instagram-link {
        width: calc(100% / 2);
    }
}

@media (min-width: 1900px) and (max-width: 2279px) {
    .instagram-block > .instagram-link {
        width: calc(100% / 5);
    }
}

@media (min-width: 2280px) {
    .instagram-block > .instagram-link {
        width: calc(100% / 2);
    }
}

.instagram-block > .instagram-link > .username {
    position: relative;
    padding-left: 50px;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 14px;
    border-bottom: none;
}

.instagram-block > .instagram-link > .username:before {
    position: absolute;
    left: 0;
    top: -13px;
    content: '';
    height: 40px;
    width: 40px;
    background: url("../img/icons/instagram_logo.svg") no-repeat center;
    background-size: 100% 100%;
}

.instagram-block > .instagram-link > .btn-outline {
    display: block;
    margin-top: 47px;
}

/* .icon */
.icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    position: relative;
    margin: 0 8px;
}

/* icon-tel */
.icon.tel {
    width: 24px;
    background: url("../img/icons/tel.svg") no-repeat center;
    background-size: 100% 100%;
    top: 6px;
}
@media (max-width: 365px){
    .icon.tel {
        top: -8px;
    }  
    
    .header-1 h1 {
        font-size: 30px !important;
    }
}

.icon.tel-2 {
    width: 24px;
    background: url("../img/icons/tel-2.svg") no-repeat center;
    background-size: 100% 100%;
    top: 6px;
}

/* icon-clock */
.icon.clock {
    width: 30px;
    height: 30px;
    background: url("../img/icons/clock.svg") no-repeat center;
    background-size: 100% 100%;
    top: 7px;
}

/* icon-map-point */
.icon.map-point {
    width: 23px;
    height: 31px;
    background: url("../img/icons/mp.svg") no-repeat center;
    background-size: 100% 100%;
    top: 7px;
}

/* icon-mail */
.icon.mail {
    width: 27px;
    height: 20px;
    background: url("../img/icons/mail.svg") no-repeat center;
    background-size: 100% 100%;
    top: 14px;
}

/* icon-instagram */
.icon.instagram:before {
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    background: url("../img/icons/instagram.svg") no-repeat center;
    background-size: 100% 100%;
    opacity: 1;
}

.icon.instagram:after {
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    background: url("../img/icons/instagram_hover.svg") no-repeat center;
    background-size: 100% 100%;
    opacity: 0;
}

.icon.instagram:hover:before {
    opacity: 0;
}

.icon.instagram:hover:after {
    opacity: 1;
}

/* icon-whatsapp */
.icon.whatsapp:before {
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    background: url("../img/icons/whatsapp.svg") no-repeat center;
    background-size: 100% 100%;
    opacity: 1;
    z-index: 1;
}

.icon.whatsapp:after {
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    background: url("../img/icons/whatsapp_hover.svg") no-repeat center;
    background-size: 100% 100%;
    opacity: 0;
    z-index: 2;
}

.icon.whatsapp:hover:before {
    opacity: 0;
}

.icon.whatsapp:hover:after {
    opacity: 1;
}

/* .contacts-page */
.contacts-page {
    position: relative;
}

.contacts-page #yaMap {
    height: 570px;
}

/* .contacts-page #contacts-info */
#contacts-info {
    overflow: hidden;
    height: 570px;
    position: absolute;
    width: 100%;
}

#contacts-info > .inner {
    position: absolute;
    width: 35%;
    min-height: 570px;
    background-color: #0064b4;
    bottom: 0;
    z-index: 4;
    left: 0;
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    -o-transform: translateX(-200%);
    transform: translateX(-200%);
    -webkit-transition: .5s transform;
    -moz-transition: .5s transform;
    -ms-transition: .5s transform;
    -o-transition: .5s transform;
    transition: .5s transform;
    color: #ffffff;
}

#contacts-info > .inner.open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

#contacts-info > .inner:after {
    position: absolute;
    content: '';
    top: -100%;
    left: 25%;
    width: 100%;
    height: 300%;
    background-color: #0064b4;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
    z-index: -1;
}

#contacts-info > .inner > .close {
    border: none;
    content: '';
    width: 55px;
    height: 55px;
    position: absolute;
    top: 5%;
    right: -25%;
    z-index: 2;
    cursor: pointer;
    background-color: transparent;
}

#contacts-info > .inner > .close:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background: url("../img/icons/close.svg") no-repeat center;
    background-size: 100% 100%;
    opacity: 1;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

#contacts-info > .inner > .close:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background: url("../img/icons/close_hover.svg") no-repeat center;
    background-size: 100% 100%;
    opacity: 0;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

#contacts-info > .inner > .close:hover:before {
    opacity: 0;
}

#contacts-info > .inner > .close:hover:after {
    opacity: 1;
}

#contacts-info > .inner > .content {
    position: absolute;
    top: 50%;
    left: 80%;
    width: 360px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#contacts-info > .inner > .content p {
    padding: 30px 0 30px 45px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
    color: #ffffff;
    font-size: 19px;
    font-weight: 300;
    line-height: 28px;
    position: relative;
}

#contacts-info > .inner > .content p > b {
    font-size: 22px;
    font-weight: 400;
}

#contacts-info > .inner > .content p > span {
    display: block;
}

#contacts-info > .inner > .content p i.icon {
    margin-top: 19px;
    left: 0;
    position: absolute;
}

#contacts-info > .inner > .content p i.icon.clock {
    left: -3px;
}

#contacts-info a {
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
    color: #ffffff;
    font-size: 19px;
    font-weight: 300;
    padding-bottom: 3px;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

#contacts-info a:hover {
    border-bottom-color: transparent;
}

#contacts-info .btn-blue {
    position: relative;
    z-index: 2;
    top: 20px;
    min-width: 240px;
    text-align: center;
}

@media (min-width: 1001px) and (max-width: 1430px) {
    #contacts-info > .inner:after {
        left: 40%;
    }
}

@media (max-width: 1000px) {
    #contacts-info > .inner {
        width: 100%;
    }

    #contacts-info > .inner:after {
        display: none;
    }

    #contacts-info > .inner > .close {
        right: 5%;
    }

    #contacts-info > .inner > .content {
        left: 50%;
    }
}

/* .breadcrumb */
ul.breadcrumb {
    display: block;
    list-style: none;
    margin: 35px 0;
}

ul.breadcrumb > li {
    display: inline-block;
}

ul.breadcrumb > li > a {
    font-size: 14px;
    font-weight: 400;
    color: #5a5a5a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

ul.breadcrumb > li:not(:last-of-type) {
    position: relative;
    padding-right: 15px;
}

ul.breadcrumb > li:not(:last-of-type):after {
    position: absolute;
    right: 3px;
    top: 5px;
    width: 4px;
    height: 7px;
    content: '';
    background: url("../img/breadcrumb.png") no-repeat center;
    background-size: 100% 100%;
}

ul.breadcrumb > li:last-of-type > a {
    color: #000000;
    border-bottom: none;
}

/* #company-info */
#company-info .company-team {
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    max-height: 620px;
    object-fit: cover;
    margin-top: 1rem;
    border-radius: 3px;
}

/* .sep-block */
.sep-block {
    position: relative;
    margin: 75px 0;
}

.sep-block > .card {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 57%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sep-block.image-left > .card {
    right: 0;
}

.sep-block.image-right > .card {
    left: 0;
}

#company-info .sep-block > .card {
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
}

#company-info .sep-block > .card b {
    color: #000000;
    font-weight: 700;
}

.sep-block > img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    width: 585px;
    height: 380px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 3px;
}

.sep-block.image-left > img {
    left: 0;
}

.sep-block.image-right > img {
    left: calc(100% - 585px);
}

@media (max-width: 1100px) {
    .sep-block {
        margin: 50px 0;
    }

    .sep-block > img {
        top: 0;
        width: 100%;
        left: 0 !important;
        right: 0 !important;
        margin-bottom: -10px;
    }

    .sep-block > .card {
        position: relative;
        left: 0;
        right: 0;
        width: 100%;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}

/* .page-bg-lines */
.page-bg-lines {
    position: absolute;
    width: 100%;
    top: 120px;
    height: calc(100% - 528px);
    overflow: hidden;
    z-index: 0;
}

.page-bg-lines > div {
    position: absolute;
    left: 38%;
    -webkit-transform: translateX(-50%) rotate(30deg);
    -moz-transform: translateX(-50%) rotate(30deg);
    -ms-transform: translateX(-50%) rotate(30deg);
    -o-transform: translateX(-50%) rotate(30deg);
    transform: translateX(-50%) rotate(30deg);
    height: 300%;
    top: -100%;
    width: 400px;
    max-width: 60%;
    background-color: rgba(0, 100, 180, 0.1);
}

.page-bg-lines > div:before {
    filter: blur(0.5px);
    position: absolute;
    top: -100%;
    left: -380%;
    content: '';
    height: 300%;
    width: 600px;
    background-color: #0064b4;
    background-clip: content-box;
    padding-right: 70px;
    border-right: 250px solid rgba(0, 100, 180, 0.05);
}

.page-bg-lines > div:after {
    filter: blur(0.5px);
    position: absolute;
    top: -100%;
    right: -380%;
    content: '';
    height: 300%;
    width: 600px;
    background-color: #0064b4;
    background-clip: content-box;
    padding-left: 70px;
    border-left: 250px solid rgba(0, 100, 180, 0.05);
}

@media (max-width: 549px) {
    .page-bg-lines > div:before {
        left: -620%;
    }

    .page-bg-lines > div:after {
        right: -620%;
    }
    
    .header-1 h1 {
        font-size: 35px;
    }
}

@media (min-width: 550px) and (max-width: 900px) {
    .page-bg-lines > div:before {
        left: -455%;
    }

    .page-bg-lines > div:after {
        right: -430%;
    }
}

/* .page-bg-lines */
.page-bg-lines-2 {
    position: absolute;
    width: 100%;
    top: 120px;
    height: calc(100% - 528px);
    overflow: hidden;
    z-index: 0;
}

.page-bg-lines-2:before {
    position: fixed;
    content: '';
    -webkit-transform: translateX(-50%) rotate(30deg);
    -moz-transform: translateX(-50%) rotate(30deg);
    -ms-transform: translateX(-50%) rotate(30deg);
    -o-transform: translateX(-50%) rotate(30deg);
    transform: translateX(-50%) rotate(30deg);
    height: 300%;
    top: -100%;
    width: 250px;
    left: 100px;
    max-width: 20%;
    background-color: rgba(0, 100, 180, 0.05);
}

.page-bg-lines-2:after {
    position: fixed;
    content: '';
    height: 300%;
    width: 400px;
    top: -75%;
    right: -680px;
    background-color: rgb(0, 100, 180);
    -webkit-transform: translateX(-50%) rotate(30deg);
    -moz-transform: translateX(-50%) rotate(30deg);
    -ms-transform: translateX(-50%) rotate(30deg);
    -o-transform: translateX(-50%) rotate(30deg);
    transform: translateX(-50%) rotate(30deg);
    background-clip: content-box;
    border-left: 200px solid rgba(0, 100, 180, 0.05);
    padding-left: 90px;
}

/* .row */
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.row > .col {
    flex: 1 auto;
}

.row > .col.c-2 {
    flex: 2 auto;
}

/* footer */
footer {
    display: block;
    width: 100%;
    position: relative;
    background-color: #151716;
    overflow: hidden;
    padding: 70px 0;
    color: #808181;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
}

footer a {
    color: #8a8b8b;
    border-bottom: 1px solid #808181;
    -webkit-transition: .3s color, .3s border-bottom-color;
    -moz-transition: .3s color, .3s border-bottom-color;
    -ms-transition: .3s color, .3s border-bottom-color;
    -o-transition: .3s color, .3s border-bottom-color;
    transition: .3s color, .3s border-bottom-color;
}

footer a:hover {
    color: #ffffff;
    border-bottom-color: transparent;
    -webkit-transition: .3s color, .3s border-bottom-color;
    -moz-transition: .3s color, .3s border-bottom-color;
    -ms-transition: .3s color, .3s border-bottom-color;
    -o-transition: .3s color, .3s border-bottom-color;
    transition: .3s color, .3s border-bottom-color;
}

footer:before {
    position: absolute;
    content: '';
    height: 300%;
    width: 260px;
    left: 14%;
    top: -100%;
    background-color: rgba(0, 100, 180, 0.3);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
}

footer .footer-links {
    flex: 1.8 auto !important;
}

footer .footer-links a {
    display: inline-block;
    margin-bottom: 40px;
    border: none;
    cursor: pointer;
}

footer .ws-copy {
    margin-top: 50px;
}

footer .footer-logo {
    display: block;
    width: 227px;
    height: 80px;
    background: url("../img/logo_footer.png") no-repeat center;
    background-size: 100% 100%;
    margin-bottom: 30px;
}

footer .feedback > .fb-form {
    float: right;
    width: 270px;
    max-width: 100%;
    max-width: available;
}

@media (max-width: 1089px) {
    footer .feedback > .fb-form {
        width: 100%;
        max-width: 500px;
        margin: 25px auto 0;
        float: none;
    }
}

/* .works-list */
.works-list {
    display: block;
    width: 100%;
}

.works-list > .item {
    display: flex;
    width: 100%;
    padding: 75px 0;
    border-bottom: 1px solid rgba(0, 100, 180, 0.12);
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.works-list > .item:first-of-type {
    padding-top: 30px;
}
.works-list > .item .block-img{
    flex-basis: 50%;
    display: flex;
    flex-flow: row wrap;
}
.list-img{
    display: flex;
    flex-flow: row nowrap;
}
.works-list > .item  .img-before,
.works-list > .item  .img-after {
    position: relative;
    overflow: hidden;
    margin: 10px 0;
}

.works-list > .item  .img-before > .dimmer,
.works-list > .item  .img-after > .dimmer {
    position: absolute;
    width: calc(100% - 10px);
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    opacity: 0;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

.works-list > .item  .img-before > .dimmer:hover,
.works-list > .item  .img-after > .dimmer:hover {
    opacity: 1;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

.works-list > .item  .img-before > .dimmer:after,
.works-list > .item  .img-after > .dimmer:after {
    position: absolute;
    width: 58px;
    height: 58px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    content: '';
    z-index: 1;
    background: url("../img/icons/plus.png") no-repeat center;
    background-size: 100% 100%;
    opacity: 1;
}

.works-list > .item  .img-before > img,
.works-list > .item  .img-after > img {
    flex: 1 auto;
    max-width: 370px;
    padding-right: 10px;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.works-list > .item  .img-before:before,
.works-list > .item  .img-after:before {
    padding: 15px 8px 15px 18px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0064b4;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    z-index: 2;
}

.works-list > .item  .img-before:after,
.works-list > .item  .img-after:after {
    background-color: #0064b4;
    content: '';
    position: absolute;
    top: -33px;
    width: 100px;
    left: 8px;
    height: 58px;
    z-index: 0;
    -webkit-transform: rotate(-60deg);
    -moz-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    -o-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

.works-list > .item  .img-after:after {
    left: 47px;
}

.works-list > .item  .img-before:before {
    content: 'До';
}

.works-list > .item  .img-after:before {
    content: 'После';
}

.works-list > .item  .desc {
    flex: 1 auto;
    color: #212121;
    font-size: 19px;
    font-weight: 400;
    padding: 5px 0 0 15px;
}

.works-list > .item  .desc > .brand {
    margin-bottom: 15px;
    display: block;
}

.works-list > .item  .desc > .brand > img {
    object-fit: contain;
    width: 46px;
    height: 46px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.works-list > .item  .desc > .brand p {
    color: #212121;
    font-size: 22px;
    font-weight: 400;
    line-height: 50px;
    text-transform: uppercase;
}

.works-list > .item  .desc > .sAppliedTitle {
    color: #757575;
    font-size: 19px;
    font-weight: 400;
}
@media (max-width: 1280px){
    .works-list > .item {
        flex-wrap: wrap;
    }
    .works-list > .item .block-img{
        flex-basis: 100%;
        justify-content: center;
    }
    .works-list > .item  img {
        padding-right: 0 !important;
    }
    
}
@media (max-width: 780px){
        .works-list > .item .block-img > .list-img{
        flex-direction: column;
        justify-content: center;
    }
}
@media (max-width: 390px){
    .works-list > .item img{
        max-width: 300px !important;
    }
}
/* .custom-list */
[class*="custom-list-"] {
    list-style: none;
    padding-left: 30px;
}

[class*="custom-list-"] > li {
    position: relative;
    margin: 15px auto;
}

[class*="custom-list-"] > li:before {
    position: absolute;
    left: -15px;
    width: 6px;
    height: 6px;
    background-color: #0064b4;
    top: 50%;
    content: '';
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/* .modal */
.modal {
    z-index: 10;
    position: fixed;
    width: 80%;
    max-width: 1200px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-color: #151716;
    display: none;
    padding: 75px 90px;
}

.modal > .close {
    border: none;
    content: '';
    width: 55px;
    height: 55px;
    position: absolute;
    top: -70px;
    right: 0;
    cursor: pointer;
    background-color: transparent;
}

.modal > .close:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background: url("../img/icons/close.svg") no-repeat center;
    background-size: 100% 100%;
    opacity: 1;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

.modal > .close:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background: url("../img/icons/close_hover.svg") no-repeat center;
    background-size: 100% 100%;
    opacity: 0;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

.modal > .close:hover:after {
    opacity: 1;
}

@media (max-width: 1000px) {
    .modal {
        width: 100%;
        max-width: none;
        overflow: visible;
        margin-top: 48px;
    }
}

/* #how-to-order */
#how-to-order {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}
@media (max-width: 1200px){
    #how-to-order{
        flex-wrap: wrap;
    }
}

#how-to-order > .item {
    position: relative;
    flex: 1 auto;
    max-width: 240px;
    margin: 80px;
    cursor: pointer;
}

#how-to-order > .item:not(:last-of-type):after {
    position: absolute;
    right: -60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    width: 19px;
    height: 36px;
    background: url("../img/s_arrow.png") no-repeat center;
    background-size: 100% 100%;
}

#how-to-order > .item > p {
    color: #212121;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;

}

#how-to-order > .item > p a {
    color: #4a94cf;
    font-weight: 500;
    font-size: 20px;
    border-bottom: 1px solid rgba(74, 148, 207, 0.5);
}

#how-to-order > .item > p a:hover {
    color: #0064b4;
    font-weight: 500;
    border-bottom-color: transparent;
}

#how-to-order > .item > .icon {
    position: relative;
    margin: 30px auto 30px;
    width: 107px;
    height: 122px;
    display: block;
}

#how-to-order > .item > .icon:before {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    color: rgb(21, 23, 22);
    font-size: 178px;
    font-weight: 800;
    line-height: 60px;
    top: 40px;
}

#how-to-order > .item > .icon:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: #d5e5f2;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    -webkit-transition: .3s background-color;
    -moz-transition: .3s background-color;
    -ms-transition: .3s background-color;
    -o-transition: .3s background-color;
    transition: .3s background-color;
}

#how-to-order > .item > .icon > div {
    position: relative;
    width: 100%;
    height: 100%;
    top: 1px;
    left: 1px;
    z-index: 2;
    box-shadow: 0 13px 23px 1px rgba(0, 100, 180, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: #f6f9fb;
    -webkit-transition: .3s box-shadow;
    -moz-transition: .3s box-shadow;
    -ms-transition: .3s box-shadow;
    -o-transition: .3s box-shadow;
    transition: .3s box-shadow;
}

#how-to-order > .item > .icon > div:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background-color: rgb(246, 249, 251) !important;
}

#how-to-order > .item > .icon > div:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background-color: rgb(255, 255, 255) !important;
}

#how-to-order > .item > .icon:hover > div:after {
    opacity: 1;
}

#how-to-order > .item:nth-child(1) > .icon:before {
    content: '1';
    left: -55px;
}

#how-to-order > .item:nth-child(2) > .icon:before {
    content: '2';
    left: -72px;
}

#how-to-order > .item:nth-child(3) > .icon:before {
    content: '3';
    left: -72px;
}

#how-to-order > .item:nth-child(1) > .icon > div:before {
    background: url('../img/icons/howtoorder/1.svg') no-repeat center;
    background-size: 44px 56px !important;
}

#how-to-order > .item:nth-child(1) > .icon > div:after {
    background: url('../img/icons/howtoorder/1_active.svg') no-repeat center;
    background-size: 44px 56px !important;
}

#how-to-order > .item:nth-child(2) > .icon > div:before {
    background: url('../img/icons/howtoorder/2.svg') no-repeat center;
    background-size: 59px 54px !important;
}

#how-to-order > .item:nth-child(2) > .icon > div:after {
    background: url('../img/icons/howtoorder/2_active.svg') no-repeat center;
    background-size: 59px 54px !important;
}

#how-to-order > .item:nth-child(3) > .icon > div:before {
    background: url('../img/icons/howtoorder/3.svg') no-repeat center;
    background-size: 43px 62px !important;
}

#how-to-order > .item:nth-child(3) > .icon > div:after {
    background: url('../img/icons/howtoorder/3_active.svg') no-repeat center;
    background-size: 43px 62px !important;
}

@media (max-width: 999px) {
    #how-to-order > .item:not(:last-of-type):after {
        right: 50%;
        top: auto;
        bottom: -105px;
        -webkit-transform: translateX(-50%) rotate(90deg);
        -moz-transform: translateX(-50%) rotate(90deg);
        -ms-transform: translateX(-50%) rotate(90deg);
        -o-transform: translateX(-50%) rotate(90deg);
        transform: translateX(-50%) rotate(90deg);
    }
}

@media (min-width: 1000px) and (max-width: 1499px) {
    #how-to-order > .item:nth-child(2):after {
        right: 80%;
        top: auto;
        bottom: -105px;
        -webkit-transform: translateX(-50%) rotate(120deg);
        -moz-transform: translateX(-50%) rotate(90deg);
        -ms-transform: translateX(-50%) rotate(90deg);
        -o-transform: translateX(-50%) rotate(90deg);
        transform: translateX(-50%) rotate(120deg);
    }
}

/* .dark-block */
.dark-block {
    background-color: rgb(21, 23, 22);
    padding: 80px 0 40px;
    color: rgb(255, 255, 255);
    position: relative;
    z-index: 1;
    min-height: 1060px; /* 910 */
}

.dark-block .fb-title {
    color: #ffffff;
}

/* .db-button */
.db-button {
    border: 3px solid #353535;
    background-color: #4f4f4f;
    color: #6b9bc2;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
    padding: 10px 25px;
    min-width: 150px;
    font-size: 21px;
    font-weight: 400;
    text-decoration: none;
    margin: 0 20px 20px 0;
    cursor: pointer;
    -webkit-transition: .3s border-color, .3s color, .3s background-color;
    -moz-transition: .3s border-color, .3s color, .3s background-color;
    -ms-transition: .3s border-color, .3s color, .3s background-color;
    -o-transition: .3s border-color, .3s color, .3s background-color;
    transition: .3s border-color, .3s color, .3s background-color;
}

.db-button:hover,
.db-button.active {
    border: 3px solid #004882;
    background-color: #0064b4;
    color: #ffffff;
    -webkit-transition: .3s border-color, .3s color, .3s background-color;
    -moz-transition: .3s border-color, .3s color, .3s background-color;
    -ms-transition: .3s border-color, .3s color, .3s background-color;
    -o-transition: .3s border-color, .3s color, .3s background-color;
    transition: .3s border-color, .3s color, .3s background-color;
}

.s-container {
    padding-right: 390px;
}

/* .services-list */
.sl-inner {
    display: none;
}

.services-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    position: relative;
}

.services-list > li {
    flex: 1 auto;
    margin: 20px 0;
    min-width: 250px;
    max-width: 250px;
    position: relative;
    /* */
    height: min-content;
    height: max-content;
    height: fit-content;
}

.services-list > li > p {
    color: #757575;
    display: inline;
    font-size: 19px;
    font-weight: 400;
    line-height: 25px;
    max-width: 200px;
    text-decoration: underline !important;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    -webkit-transition: .3s color, .3s text-decoration-color;
    -moz-transition: .3s color, .3s text-decoration-color;
    -ms-transition: .3s color, .3s text-decoration-color;
    -o-transition: .3s color, .3s text-decoration-color;
    transition: .3s color, .3s text-decoration-color;
    position: relative;
}

.services-list > li.active > p {
    color: #5f9ed0;
    text-decoration-color: transparent !important;
    font-weight: 500;
}

.services-list > li .desc-button {
    border-radius: 50%;
    position: absolute;
    bottom: -10px;
    margin-left: 10px;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgb(60, 60, 60);
    -webkit-transition: .3s background-color;
    -moz-transition: .3s background-color;
    -ms-transition: .3s background-color;
    -o-transition: .3s background-color;
    transition: .3s background-color;
    cursor: pointer;
}

.services-list > li .desc-button:before {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    content: '';
    background: url("../img/icons/eye.svg") no-repeat center;
    background-size: 26px 16px;
    z-index: 1;
}

.services-list > li .desc-button:after {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    content: '';
    background: url("../img/icons/eye.svg") no-repeat center;
    background-size: 26px 16px;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    z-index: 2;
}

.services-list > li .desc-button.active {
    background-color: #0064b4;
}

.services-list > li .desc-button.active:before {
    background: url("../img/icons/eye-active.svg") no-repeat center;
    background-size: 26px 16px;
}

.services-list > li .desc-button.active:after {
    background: url("../img/icons/eye-active_hover.svg") no-repeat center;
    background-size: 26px 16px;
}

.services-list > li .desc-button:hover {
    background-color: rgb(85, 85, 85);
    -webkit-transition: .3s background-color;
    -moz-transition: .3s background-color;
    -ms-transition: .3s background-color;
    -o-transition: .3s background-color;
    transition: .3s background-color;
}

.services-list > li .desc-button.active:after,
.services-list > li .desc-button:hover:after {
    opacity: 1;
}

.services-list > li > p:hover {
    color: rgb(95, 158, 208);
    text-decoration-color: rgba(95, 158, 208, 0.8);
}

/* .services-full */

.popular_icon {
    width: 30px;
    height: 23px;
    position: absolute;
    top: -5px;
    right: -35px;
    background: url("../img/icons/popular_icon.svg") no-repeat center;
}

.services-full {
    margin-top: 30px;
}

.services-full > .title {
    color: rgb(95, 158, 208);
    font-size: 19px;
    font-weight: 600;
    line-height: 28px;
    position: relative;
    margin-bottom: 12px;
}

.services-full > .list {
    margin-bottom: 30px;
}

.services-full > .list > div {
    display: none;
}

.services-full > .list .checkbox {
    display: inline-block;
}

.services-full > .list .checkbox > span {
    margin-top: 2px;
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: 400;
    position: relative;
    top: 2px;
}

.services-full > .title:after {
    content: ' (перечень услуг)';
    color: rgb(160, 160, 160);
    font-weight: 400;
}

/* .selectedServices */
.selectedServices {
    list-style: none;
    padding: 0;
    position: relative;
    min-height: 130px;
}

.selectedServices:before {
    content: 'Выбранные услуги:';
    padding-right: 8px;
    color: rgb(95, 158, 208);
    font-size: 19px;
    font-weight: 600;
    line-height: 28px;
    display: inline-block;
    min-height: 30px;
}

.selectedServices > li {
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 19px;
    font-weight: 400;
    padding-right: 10px;
}

.selectedServices > li:not(:last-of-type):after {
    padding-left: 10px;
    content: ';';
    color: rgb(255, 255, 255);
    font-size: 19px;
    font-weight: 400;
    line-height: 28px;
}

.selectedServices .trash {
    display: inline-block;
    position: relative;
    top: 4px;
    margin-left: 3px;
    opacity: 0.8;
    width: 18px;
    height: 21px;
    cursor: pointer;
    opacity: 0.8;
}

.selectedServices .trash:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    background: url("../img/icons/trash.svg") no-repeat center;
    background-size: 100% 100%;
}

.selectedServices .trash:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    background: url("../img/icons/trash_active.svg") no-repeat center;
    background-size: 100% 100%;
    opacity: 0;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

.selectedServices .trash:hover:after {
    opacity: 1;
}

/* .priceInfo */
.priceInfo {
    position: absolute;
    min-width: 360px;
    max-width: 380px;
    box-shadow: 0 17px 40px rgba(0, 100, 180, 0.6);
    background-color: rgb(0, 100, 180);
    right: 0;
    top: 90px;
}
@media (max-width: 415px){
    .priceInfo{
        right: 0;
        min-width: 100%;
    }
    .priceInfo > .item {
    padding: 70px 40px 35px 36px !important;
}

}

.priceInfo > .item {
    padding: 35px 40px 35px 100px;
    position: relative;
}

.priceInfo > .item:not(:last-of-type) {
    border-bottom: 1px solid rgba(123, 171, 210, 0.3);
}

.priceInfo > .item > .title {
    color: rgb(255, 255, 255);
    font-size: 28px;
    font-weight: 500;
}

.priceInfo > .item > .desc {
    margin: 20px 0;
    color: rgb(136, 185, 223);
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
}

.priceInfo > .item > .price {
    color: rgb(255, 255, 255);
    font-size: 32px;
    font-weight: 600;
}

.priceInfo > .item > .price:after {
    content: ' ₽';
    font-size: 28px;
    font-weight: 600;
}

.priceInfo > .item:before {
    position: absolute;
    left: 40px;
    top: 38px;
    content: '';
}

.priceInfo > .item:nth-child(1):before {
    background: url("../img/icons/malolitrazka.svg") no-repeat center;
    background-size: 100% 100%;
    width: 41px;
    height: 24px;
}

.priceInfo > .item:nth-child(2):before {
    background: url("../img/icons/crossover.svg") no-repeat center;
    background-size: 100% 100%;
    width: 51px;
    height: 21px;
    left: 38px;
}

.priceInfo > .item:nth-child(3):before {
    background: url("../img/icons/jeep.svg") no-repeat center;
    background-size: 100% 100%;
    width: 51px;
    height: 28px;
    left: 38px;
}

/* .servicesDesc */
.servicesDesc {
    padding: 40px 0;
}

.servicesDesc > div {
    display: none;
    margin-bottom: 20px;
}

.servicesDesc > div .title {
    color: rgb(33, 33, 33);
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
}

.servicesDesc > div .title:after {
    position: relative;
    display: inline-block;
    height: 15px;
    width: 25px;
    content: '';
    top: -3px;
    margin-left: 10px;
    background: url("../img/icons/eye_blue.svg") no-repeat center;
    background-size: 100% 100%;
}

.servicesDesc > div .text {
    color: rgb(97, 97, 97);
    font-size: 19px;
    line-height: 25px;
    font-weight: 400;
}

.servicesDesc > div .subTitle {
    color: rgb(33, 33, 33);
    font-size: 28px;
    font-weight: 400;
    margin-top: 35px;
    margin-bottom: 15px;
}

.servicesDesc > div .text p:not(:last-of-type) {
    margin-bottom: 25px;
}

.servicesDesc .image {
    width: 50%;
    border-radius: 3px;
    margin-bottom: 20px;
}

.servicesDesc .image.image-left {
    float: left;
}

.servicesDesc .image.image-right {
    float: right;
}

.servicesDesc .full-desc {
    display: none;
}

.servicesDesc .full-desc_toggler {
    padding: 15px 50px;
    margin-top: 20px;
}

/* .order-form */
.order-form {
    padding: 40px 60px;
    box-shadow: 0 17px 40px rgba(0, 100, 180, 0.6);
    border: 12px solid rgb(0, 100, 180);
    background-color: rgb(255, 255, 255);
    margin-bottom: 100px;
}

.order-form .title {
    color: rgb(33, 33, 33);
    font-size: 34px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.order-form .checkbox span {
    position: relative;
    top: 3px;
}

.order-form .fields {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.order-form .fields > .item {
    flex: 1 auto;
    min-width: 33.3%;
}

.order-form .fields > .item > .with-icon > input {
    border: 1px solid rgb(216, 216, 216);
}

.order-form .fields > .item:nth-child(1) {
    padding-right: 20px;
}

.order-form .fields > .item:nth-child(3) {
    padding: 0 40px;
}

.order-form .selectedServices:before {
    color: rgb(0, 100, 180);
}

.order-form .selectedServices > li {
    color: rgb(33, 33, 33);
}

.order-form .btn {
    padding: 10px;
    margin-bottom: 20px;
}

@media (max-width: 899px) {
    .priceInfo {
        position: relative;
        margin: 0 auto 120px;
        max-width: none;
    }

    .s-container {
        padding-right: 0;
    }

    .page-bg-lines-2:after {
        top: -50%;
    }

    .order-form .fields > .item:nth-child(3) {
        padding-right: 20px;
    }
}

@media (max-width: 750px) {
    .order-form .fields > .item {
        display: block;
        width: 100%;
        padding: 0 !important;
    }

}
@media (max-width: 650px){
    .order_cont{
        width: 100%;
    }
}
@media (max-width: 370px){
    .order-form{
        padding: 40px 25px;
    }
}

/* slider */
.ism-slider > ol, .ism-slider > ol > li, .ism-slider > ol > li > img {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ism-slides{
    width: 200%;
    perspective: 1000px;
    backface-visibility: hidden;
    transition: .7s cubic-bezier(.46,.03,.52,.96);
}
.ism-slider {
    overflow: visible;
    position: relative;
    padding: 0 !important;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-animation: ism-fadein 3s;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

@-webkit-keyframes ism-fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes ism-loading {
    50% {
        left: 120px;
    }
}

.ism-slider .ism-slides {
    list-style: none;
    position: absolute;
    height: 100%;
    top: 0;
    padding: 0 !important;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 1;
}

.ism-slider li.ism-slide {
    height: 100%;
    overflow: hidden;
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #d5d5d5;
    text-align: center;
}

.ism-slider .ism-img-frame {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

.ism-slider .ism-img {
    display: block;
    border: none;
    position: absolute;
    pointer-events: none;
}

.ism-radios {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #fff;
    font-size: 1px;
}

.ism-slider .ism-radios {
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 6;
    bottom: 5px;
    left: 0;
    right: 0;
    width: auto;
    background-color: rgba(255, 255, 255, 0.0);
    padding: 0 7px;
    height: 0;
    overflow: visible;
}

.ism-slider .ism-radios.ism-radios-as-thumbnails {
    bottom: 5px;
}

.ism-radios li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
}

.ism-radios input.ism-radio {
    display: none;
}

.ism-radios label {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
}

.ism-radios-as-thumbnails label {
    -webkit-background-size: 120% auto;
    -moz-background-size: 120% auto;
    -o-background-size: 120% auto;
    background-size: 120% auto;
    background-position: center center;
    background-repeat: no-repeat;
    border: 2px solid rgba(255, 255, 255, 0.6);
    opacity: 0.8;
}

.ism-radios-as-thumbnails label:hover {
    border: 2px solid #fff;
    opacity: 1;
}

.ism-radios-as-thumbnails li.active label {
    border: 2px solid rgba(255, 255, 255, 1.0);
    opacity: 1;
}

p.ism-badge {
    margin: 0 auto;
    text-align: right;
    font-size: 10px;
    padding-top: 1px;
    color: #ccc;
    font-family: sans-serif;
    font-weight: normal;
}

p.ism-badge a.ism-link {
    color: inherit;
    text-decoration: none;
    margin-right: 0.25em;
}

p.ism-badge a.ism-link:hover {
    color: #aaa;
    text-decoration: underline;
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes slidein {
    0% {
        -webkit-transform: translate(-1200px, 0);
        transform: translate(-1200px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes slidein {
    0% {
        -webkit-transform: translate(-1200px, 0);
        transform: translate(-1200px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@-webkit-keyframes popin {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes popin {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

/* SLIDER */

.ism-slider {
    width: 100%;
    border-radius: 0;
}

.ism-slider-ism-badge {
    width: 100%;
}

.ism-slider:before {
    content: '';
    display: block;
    padding-top: 52%;
}

.ism-slider .ism-frame {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.ism-slider .ism-button {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-image: url('../img/slider_arrow.png');
    background-size: 100% 100%;
    width: 39px;
    height: 99px;
    opacity: 0.3;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    cursor: pointer;
}

.ism-slider .ism-button.ism-button-prev {
    left: 25px;
    margin-top: -50px;
    -webkit-transform: scaleX(-1) scaleY(-1);
    -moz-transform: scaleX(-1) scaleY(-1);
    -ms-transform: scaleX(-1) scaleY(-1);
    -o-transform: scaleX(-1) scaleY(-1);
    transform: scaleX(-1) scaleY(-1);
}

.ism-slider .ism-button.ism-button-next {
    right: 25px;
}

.ism-slider .ism-caption {
    color: #FFFFFF;
    visibility: visible !important;
    opacity: 0.9;
    font-size: 30px;
    font-weight: 400;
    z-index: 1;
    position: absolute;
}

.ism-slider .ism-button:hover {
    opacity: 1;
    -webkit-transition: .3s opacity;
    -moz-transition: .3s opacity;
    -ms-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
}

.ism-slider .ism-radios {
    display: block;
    height: 20px;
    text-align: center;
    bottom: -50px;
}

.ism-slider .ism-radios label {
    width: 12px;
    height: 12px;
    border-radius: 0;
    color: transparent;
    background-color: rgba(49, 139, 211, 0.5);
}

.ism-slider .ism-radios li.active label {
    background-color: #318bd3;
}

.ism-slider .ism-radios label {
    -webkit-transition: .3s background-color;
    -moz-transition: .3s background-color;
    -ms-transition: .3s background-color;
    -o-transition: .3s background-color;
    transition: .3s background-color;
}

.ism-slider .ism-radios label:hover {
    background-color: #318bd3;
    -webkit-transition: .3s background-color;
    -moz-transition: .3s background-color;
    -ms-transition: .3s background-color;
    -o-transition: .3s background-color;
    transition: .3s background-color;
}

/* SLIDES */

.ism-slider .ism-slide-0 .ism-img-frame {
    width: 100%;
}

.ism-slider .ism-slide-0 .ism-img {
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ism-slider .ism-slide-1 .ism-img-frame {
    width: 100%;
}

.ism-slider .ism-slide-1 .ism-img {
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ism-slider .ism-frame {
    top: -44px;
}

.ism-slider .ism-slide {
    background-color: transparent !important;
}

.ism-slider .ism-img-frame {
    padding-top: 44px;
}

.ism-slider .ism-img-frame > img {
    object-fit: cover;
    height: calc(100% - 50px) !important;
    width: 100% !important;
    top: 50px !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
}

/*      HEADER VIDEO      */
.header-video{
    /*position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;*/
    position: absolute; z-index: -1; top: 0px; left: 0px; bottom: 0px; right: 0px; overflow: hidden; background-size: cover; background-color: transparent; background-repeat: no-repeat; background-position: 50% 50%; background-image: none;
}
.header-video video{
    margin: auto; position: absolute; z-index: -1; top: 50%; left: 50%; transform: translate(-50%, -50%); visibility: visible; opacity: 1; width: 1905px; height: auto;
}
.header-video:before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 41, 46, 0.2) url(/assets/img/dot-pattern.svg) left top repeat;
}

@media (min-height: 1010px) {
    
    .header-1 {
        min-height: 100vh;
    }
        
    .header-video video {
        width: auto;
    }
}
