/* Common styles */

html {
    font-size: 17px;
}

body {
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: 1.41;
    color: #272D35;
    min-width: 320px;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #f5f5f5;
}

h1, .h1-like {
    font-size: 2.12rem;
    line-height: 1.22;
    font-weight: bold;
    margin: 0.67em 0;
}

h1 {
    margin-top: 0;
}

h2, .h2-like {
    font-size: 1.65rem;
    line-height: 1.14;
    font-weight: bold;
    margin: 0.83em 0;
}

h3, .h3-like {
    font-size: 1.18rem;
    line-height: 1.3;
    font-weight: bold;
    margin: 1em 0;
}

a, a:hover {
    color: #1c47c5;
}

a[href^="tel:"] {
    white-space: nowrap;
}

p {
    margin-bottom: 1.41em;
}

p.indent {
    text-indent: 40px;
}

small {
    font-size: 0.82rem;
}

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

img.slick-loading {
    width: 16px !important;
    height: 11px !important;
    background: url(../images/slick_loading.gif) no-repeat;
}

iframe {
    max-width: 100%;
}
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1600px;
    padding: 0 40px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

ul.pretty-list {
    padding-left: 20px;
}

ul.pretty-list > li {
    position: relative;
    list-style: none;
    margin: 1em 0;
}

ul.pretty-list > li:before {
    content: "•";
    color: #186694;
    position: absolute;
    top: 0;
    left: -20px;
}

ol.pretty-list {
    counter-reset: pretty-list;
    padding-left: 22px;
}

ol.pretty-list > li {
    position: relative;
    list-style: none;
    margin: 1em 0;
}

ol.pretty-list > li:before {
    counter-increment: pretty-list;
    content: counter(pretty-list);
    color: #1c47c5;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: -22px;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

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

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

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

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

.nowrap {
    white-space: nowrap;
}

.btn {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    padding: 9px 30px;
    border: 1px solid;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

.btn--default {
    background: #fff;
    color: #272d35;
    border-color: #e3e3e3;
    font-weight: 500;
}

.btn--default:hover {
    color: #272d35;
    border-color: #1c47c5;
    -webkit-box-shadow: 2px 2px 10px rgba(18, 69, 216, 0.05);
    -moz-box-shadow: 2px 2px 10px rgba(18, 69, 216, 0.05);
    box-shadow: 2px 2px 10px rgba(18, 69, 216, 0.05);
}

.btn--yellow {
    background: #ffaf0f;
    color: #272d35;
    border-color: #ffaf0f;
}

.btn--yellow:hover {
    background: #ffc145;
    color: #272d35;
    border-color: #ffc145;
    -webkit-box-shadow: 2px 6px 20px rgba(255, 175, 15, 0.2);
    -moz-box-shadow: 2px 6px 20px rgba(255, 175, 15, 0.2);
    box-shadow: 2px 6px 20px rgba(255, 175, 15, 0.2);
}

.btn--lite {
	position: relative;
    background: unset;
    color: #282828;
    border-color: #b9b9b9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.btn--lite:hover {
    background: #186694;
    color: #fff;
    border-color: #186694;
}
.btn--blue {
    background: #186694;
    color: #fff;
    border-color: #186694;
    outline: none;
}

.btn--blue:hover, .btn--blue:focus {
    background: #186694;
    color: #fff;
    border-color: #186694;
    outline: none;
}

.btn i {
    font-size: 18px;
    vertical-align: -2px;
}

.btn[disabled],
.btn.disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

hr {
    display: block;
    border: 0;
    border-top: 1px solid #dddddd;
}

blockquote,
.blockquote-like {
    border-left: 5px solid #1c47c5;
    background: #f1f1f1;
    padding: 20px;
    font-style: italic;
    margin: 1em 40px;
}

blockquote > *:first-child,
.blockquote-like > *:first-child {
    margin-top: 0;
}

blockquote > *:last-child,
.blockquote-like > *:last-child {
    margin-bottom: 0;
}

table.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

table.table th,
table.table td {
    padding: 16px 20px;
    text-align: left;
}

table.table th {
    background: #186694;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table.table > tbody > tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

table.table > tbody > tr:hover {
    background-color: #f9fafb;
}

table.table > tbody > tr:last-child {
    border-bottom: none;
}

table.table > tbody > tr:nth-child(odd) {
    background: #fbfbfb;
}

table.table > tbody > tr:nth-child(odd):hover {
    background-color: #f9fafb;
}

table.table td {
    font-size: 15px;
    line-height: 1.6;
    color: #272D35;
}

table.table td:first-child {
    font-weight: 500;
    color: #186694;
    width: 45%;
}

table.table td:last-child {
    color: #4b5563;
}

/* Mobile cards view - применяется через JS */
table.table.mobile-view {
    display: block;
    border: none;
    box-shadow: none;
    background: transparent;
}

table.table.mobile-view thead {
    display: none;
}

table.table.mobile-view tbody {
    display: block;
}

table.table.mobile-view tbody tr {
    display: block;
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
}

table.table.mobile-view tbody tr:last-child {
    margin-bottom: 0;
    border-bottom: 1px solid #e5e7eb;
}

table.table.mobile-view tbody tr:nth-child(odd) {
    background: #fff;
}

table.table.mobile-view td {
    display: block;
    padding: 16px 20px;
    border: none;
    text-align: left;
    width: 100% !important;
}

table.table.mobile-view td:first-child {
    font-weight: 600;
    color: #186694;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
}

table.table.mobile-view td:last-child {
    padding-top: 12px;
    color: #4b5563;
    font-size: 15px;
}

table.table.mobile-view td:last-child:before {
    content: "Тип: ";
    font-weight: 600;
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 6px;
}

@media (max-width: 575px) {
    table.table.mobile-view td {
        padding: 14px 16px;
    }

    table.table.mobile-view td:first-child {
        font-size: 15px;
    }

    table.table.mobile-view td:last-child {
        font-size: 14px;
    }
}
}

img.align-right {
    float: right;
    margin-left: 10px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    img.align-right {
        float: none;
        margin-left: 0;
        margin-bottom: 0;
    }
}

.image-rect {
    position: relative;
}

.image-rect img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.image-rect-spacer-16-9:after {
    content: "";
    display: block;
    padding-bottom: 56.25%;
}

.image-rect-spacer-4-3:after {
    content: "";
    display: block;
    padding-bottom: 75%;
}

.image-rect-spacer-1-1:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}


/* DEV corner styles */

#dev-corner {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
}

#dev-corner:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 0;
    border-color: rgba(195, 0, 0, 0.7) transparent transparent transparent;
}

#dev-corner:after {
    content: "DEV";
    position: absolute;
    top: 9px;
    left: 3px;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* Header */

.header {
    padding: 15px 0;
    background: #186694;
}

.header__logo {
    margin-right: 40px !important;
    position: relative;
    top: 5px;
    width: 120px;
}
.header--video .header__logo {
    top: 10px;
}
.header--image .header__logo {
    top: 10px;
}
.header__contacts {
    max-width: 250px;
    font-size: 16px;
    text-align: center;
}

.header--video .header__contacts {
    z-index: 3;
}

.header--image .header__contacts {
    z-index: 3;
}

.header__contacts--production {
    padding-top: 15px;
    min-width: 225px;
}
.header__contacts a {
    color: #fff;
}
.header__contacts a.header__phone {
    font-size: 21px;
    padding-top: 5px;
}
.header__contacts i {
    color: #1c47c5;
    vertical-align: -2px;
}
.header-contacts-block {
    display: flex;
    flex-direction: column;
    text-align: right;
}
.header-contact-title {
    font-size: 12px;
    color: #ddd;
}
.header__contacts-title {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.header__phone {
    white-space: nowrap;
    margin-bottom: 5px;
}

.header__phone b {
    color: #888888;
    font-weight: inherit;
}
.header__email {
    white-space: nowrap;
}
.header__mobile-menu-toggle {
    display: none;
    float: right;
    cursor: pointer;
    position: relative;
    width: 28px;
    height: 21px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1002;
}
.header--video .header__mobile-menu-toggle {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 3;
}
.header--image .header__mobile-menu-toggle {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 3;
}
.header__mobile-menu-toggle .hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.header__mobile-menu-toggle .hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ddd;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

body.menu-open .header__mobile-menu-toggle .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
    background-color: #fff;
}

body.menu-open .header__mobile-menu-toggle .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

body.menu-open .header__mobile-menu-toggle .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background-color: #fff;
}
.header--video, .header--image {
    position: absolute;
    padding: 0;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1001;
    background: transparent;
}

.header__video-wrapper {
    width: 100%;
    height: 100%;
    z-index: 0;
    position: relative;
    display: flex;
    transition: filter .3s ease-in-out;
}

.header__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.header__video-poster {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.header__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.58);*/
    z-index: 1;
}
@media(max-width: 767px) {
    .header__video-overlay {
       background-color: rgba(0, 0, 0, 0.58);
    }
}
.header--video .header__container {
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 0 40px;
    max-width: 1600px;
    padding-top: 15px;
}

.header--image .header__container {
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 0 40px;
    max-width: 1600px;
    padding-top: 15px;
}

.header__container > .d-flex {
    position: relative;
    justify-content: space-between;
    padding-bottom: 10px;
}

.header--video .header__contacts a {
    color: #ffffff;
}

.header--image .header__contacts a {
    color: #ffffff;
}

.header--video .header__contacts-title {
    color: #ffffff;
}

.header--image .header__contacts-title {
    color: #ffffff;
}

.header--video .header__phone b {
    color: rgba(255, 255, 255, 0.7);
}

.header--image .header__phone b {
    color: rgba(255, 255, 255, 0.7);
}

.header--video .header__mobile-menu-toggle {
    color: #ffffff;
}

.header--image .header__mobile-menu-toggle {
    color: #ffffff;
}
#video-banner-description {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
#video-banner-description-inner {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: auto;
    position: sticky;
    top: calc(60% - 295px);
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 70px;
    z-index: 1;
}
#video-banner-description-h1 {
    color: #fff;
    max-width: 600px;
}
#video-banner-description-inner p {
    color: #dbdbdb;
}
#video-banner-description-inner p {
    max-width: 600px;
}
#video-banner-description a.btn--blue {
    padding: 22px 60px;
    font-size: 18px;
    background: linear-gradient(36deg, #22617e 15%, #114c6e 100%);
    color: #fff;
    border: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: 0;
    transition: background .3s ease-in-out;
}
#video-banner-description a.btn--blue:hover {
    background: linear-gradient(36deg, #186694 15%, #186694 100%);
}
.nav__mobile-contacts {
    display: none;
}
.header__video-wrapper.menu-opened {
    filter: brightness(.3);
}
.header--video .header__menu {
    z-index: 4;
    margin-top: 0;
    padding-top: 0;
}

.header--image .header__menu {
    z-index: 4;
    margin-top: 0;
    padding-top: 0;
}

.header__menu.mainmenu {
    background-color: transparent;
}

.header--video .header__menu .mainmenu__container {
    padding: 0;
}

.header--image .header__menu .mainmenu__container {
    padding: 0;
}

.header--video .header__menu .nav__menu {
    background: transparent;
}

.header--image .header__menu .nav__menu {
    background: transparent;
}

.header--video .header__menu .nav__link {
    color: #ffffff;
}

.header--image .header__menu .nav__link {
    color: #ffffff;
}
@media (min-width: 768px) {
    .header--video .header__menu .nav__link.level-1,
    .header--image .header__menu .nav__link.level-1 {
        position: relative;
        border-bottom: none;
    }

    .header--video .header__menu .nav__link.level-1::after,
    .header--image .header__menu .nav__link.level-1::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: rgb(199 199 199);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    .header--video .header__menu .nav__item.level-1.hover > .nav__link::after,
    .header--video .header__menu .nav__item.level-1.open > .nav__link::after,
    .header--image .header__menu .nav__item.level-1.hover > .nav__link::after,
    .header--image .header__menu .nav__item.level-1.open > .nav__link::after {
        transform: scaleX(1);
    }
}
.header--video .header__menu .nav__item.default .nav__link:before {
    background-color: rgba(255, 255, 255, 0.3);
}

.header--image .header__menu .nav__item.default .nav__link:before {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
    .header--video .header__menu .nav__menu.level-2,
    .header--video .header__menu .nav__menu.level-3 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.11);
        z-index: 100;
        -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.3);
        -moz-box-shadow: 0 0 20px rgba(0,0,0,0.3);
        box-shadow: 0 0 20px rgba(0,0,0,0.3);
    }

    .header--image .header__menu .nav__menu.level-2,
    .header--image .header__menu .nav__menu.level-3 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.11);
        z-index: 100;
        -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.3);
        -moz-box-shadow: 0 0 20px rgba(0,0,0,0.3);
        box-shadow: 0 0 20px rgba(0,0,0,0.3);
    }

    .header--video .header__menu .nav__menu.level-2.right,
    .header--video .header__menu .nav__menu.level-3.right {
        left: auto;
        right: 0;
    }

    .header--image .header__menu .nav__menu.level-2.right,
    .header--image .header__menu .nav__menu.level-3.right {
        left: auto;
        right: 0;
    }

    .header--video .header__menu .nav__menu.level-3 {
        top: 0;
        left: 100%;
    }

    .header--image .header__menu .nav__menu.level-3 {
        top: 0;
        left: 100%;
    }

    .header--video .header__menu .nav__menu.level-3.right {
        left: auto;
        right: 100%;
    }

    .header--image .header__menu .nav__menu.level-3.right {
        left: auto;
        right: 100%;
    }

    .header__menu .nav__item.hover > .nav__menu.level-2,
    .header__menu .nav__item.hover > .nav__menu.level-3,
    .header__menu .nav__item.open > .nav__menu.level-2,
    .header__menu .nav__item.open > .nav__menu.level-3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.header--video .header__menu .nav__link.level-2,
.header--video .header__menu .nav__link.level-3 {
    color: #c1c1c1;
    font-size: 14px;
}

.header--image .header__menu .nav__link.level-2,
.header--image .header__menu .nav__link.level-3 {
    color: #c1c1c1;
    font-size: 14px;
}

.header--video .header__menu .nav__item.level-2:hover > .nav__link,
.header--video .header__menu .nav__item.level-3:hover > .nav__link {
    color: #ffffff;
}

.header--image .header__menu .nav__item.level-2:hover > .nav__link,
.header--image .header__menu .nav__item.level-3:hover > .nav__link {
    color: #ffffff;
}

.header--video .header__menu .nav__mobile-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header--image .header__menu .nav__mobile-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header--video .header__menu .nav__mobile-toggle {
    color: #ffffff;
}

.header--image .header__menu .nav__mobile-toggle {
    color: #ffffff;
}


@media (max-width: 767px) {
    .header {
        padding: 15px 0;
    }

    .header__logo {
        width: 80px;
    }
    .header--video .header__container {
        padding: 0 40px;
    }

    .header--image .header__container {
        padding: 0 40px;
    }

    .header__contacts--production,
    .header__contacts--purchase {
        display: none;
    }

    .header__menu .nav__menu.level-2,
    .header__menu .nav__menu.level-3 {
        position: static;
        width: auto;
        display: none;
        background-color: transparent;
        border: none;
        padding: 8px 0;
        box-shadow: none;
    }

    .header__menu .nav__item.open > .nav__menu.level-2,
    .header__menu .nav__item.open > .nav__menu.level-3 {
        display: block;
    }

    .header__menu .nav__link.level-1 {
        border-bottom: none;
    }

    .header__video {
        display: none;
    }

    .header__video-poster {
        display: block;
    }
    .header__contacts {
        display: none;
    }

    .header__mobile-menu-toggle {
        display: flex;
    }
    .mainmenu .nav__mobile-contacts {
        display: none;
        padding: 20px 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .mainmenu.open .nav__mobile-contacts {
        display: block;
    }

    .mainmenu .nav__mobile-contacts-block {
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .mainmenu .nav__mobile-contacts-block:last-child {
        margin-bottom: 0;
    }

    .mainmenu .nav__mobile-contacts-title {
        font-size: 10px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .mainmenu .nav__mobile-phone,
    .mainmenu .nav__mobile-email {
        font-size: 16px;
        color: #fff;
        margin-bottom: 3px;
        display: flex;
        align-items: center;
    }
    .mainmenu .nav__mobile-email {
        font-size: 14px;
    }

    .mainmenu .nav__mobile-phone:last-child,
    .mainmenu .nav__mobile-email:last-child {
        margin-bottom: 0;
    }

    .mainmenu .nav__mobile-phone i,
    .mainmenu .nav__mobile-email i {
        margin-right: 10px;
        font-size: 18px;
    }

    .mainmenu .nav__mobile-phone a,
    .mainmenu .nav__mobile-email a {
        color: #fff;
        text-decoration: none;
    }

    .mainmenu .nav__mobile-phone a:hover,
    .mainmenu .nav__mobile-email a:hover {
        text-decoration: underline;
    }
}

/* Common nav styles */

.nav__menu {
    display: block;
    padding: 0;
    margin: 0;
}

.nav__item {
    display: block;
}

.nav__toggle i {
    vertical-align: -2px;
}

.nav__toggle i:first-child {
    display: none;
}

.nav__item.open > .nav__link .nav__toggle i:first-child {
    display: inline;
}

.nav__item.open > .nav__link .nav__toggle i:last-child {
    display: none;
}


/* Main menu */

.mainmenu.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 20px rgba(0,0,0,0.3);
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.mainmenu-placeholder {
    height: 0;
}
.mainmenu .nav__mobile-toggle {
    float: right;
    cursor: pointer;
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.mainmenu .nav__mobile-toggle .hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mainmenu.open .nav__mobile-toggle .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mainmenu.open .nav__mobile-toggle .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mainmenu.open .nav__mobile-toggle .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.mainmenu .nav__link {
    display: block;
    color: inherit;
    text-decoration: none;
    text-align: left;
}
a.nav__link.level-1 {
    color: #fff;
}
@media (min-width: 768px) {
    .mainmenu-placeholder.visible {
        height: 72px;
    }

    .mainmenu .nav__link {
        font-size: 14px;
    }

    .mainmenu .nav__menu.level-1  {
        text-align: center;
    }

    .mainmenu .nav__item.level-1 {
        display: inline-block;
        position: relative;
    }

    .mainmenu .nav__item.default {
        display: none;
    }

    .mainmenu.fixed .mainmenu__container {
        padding: 0;
    }

    .mainmenu.fixed .nav__item.default {
        display: inline-block;
    }

    .mainmenu .nav__link.level-1 {
        line-height: 1;
        padding: 28px 9px 15px;
        border-bottom: 2px solid transparent;
    }

    .mainmenu .nav__item.level-1.hover > .nav__link,
    .mainmenu .nav__item.level-1.open > .nav__link {
        border-color: #fff;
    }

    .mainmenu .nav__toggle.level-1 {
        display: none;
        padding: 19px 0 19px 10px;
    }

    .mainmenu .nav__item.default .nav__link {
        position: relative;
        text-indent: -9999px;
        width: 23px;
        box-sizing: content-box;
    }

    .mainmenu .nav__item.default .nav__link:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/logo_small.png) center no-repeat;
        background-size: 23px 32px;
    }

    .mainmenu .nav__menu.level-2,
    .mainmenu .nav__menu.level-3 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: max-content;
        background: #f5f5f5;
        padding: 35px 0;
        z-index: 100;
        -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.3);
        -moz-box-shadow: 0 0 20px rgba(0,0,0,0.3);
        box-shadow: 0 0 20px rgba(0,0,0,0.3);
        backdrop-filter: blur(10px);
    }

    .mainmenu .nav__menu.level-2.right {
        left: auto;
        right: 0;
    }

    .mainmenu .nav__menu.level-3 {
        top: 0;
        margin-top: -10px;
        left: 100%;
        border-left: 1px solid transparent;
        background-clip: padding-box;
    }

    .mainmenu .nav__menu.level-3.right {
        left: -100%;
        border-right: 1px solid transparent;
    }

    .mainmenu .nav__item.level-2 {
        position: relative;
    }

    .mainmenu .nav__item.level-2 > .nav__link {
        position: relative;
    }

    .mainmenu .nav__item.level-2 > .nav__link .nav__toggle {
        display: block;
        padding: 10px;
        position: absolute;
        top: 0;
        right: 0;
    }

    .mainmenu .nav__item.level-2 > .nav__link .nav__toggle i {
        display: none;
    }

    .mainmenu .nav__item.level-2 > .nav__link .nav__toggle i:first-child {
        display: inline-block;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .mainmenu .nav__link.level-2,
    .mainmenu .nav__link.level-3 {
        padding: 10px 35px 10px 25px;
    }

    .mainmenu .nav__item.level-2:hover > .nav__link,
    .mainmenu .nav__item.level-3:hover > .nav__link {
        color: #1c47c5;
    }
}
@media(max-width: 1320px) {
.mainmenu .nav__menu.level-1 {
    display: flex;
    flex-wrap: wrap;
}
.header__menu .nav__link.level-1 {
    padding: 10px 9px 15px;
    font-size: 14px;
}
.header--video .header__logo {
    top: 0;
}
.header--image .header__logo {
    top: 0;
}
#video-banner-description-inner {
    top: calc(60% - 100px);
}
#video-banner-description-h1 {
    font-size: 30px;
}
}

@media(max-width: 1024px) {
    .header--video .header__logo {
        margin-right: 20px !important;
    }
    .header--image .header__logo {
        margin-right: 20px !important;
    }
    #video-banner-description-h1 {
        font-size: 24px;
    }
    #video-banner-description-inner p {
        font-size: 14px;
    }
    #video-banner-description a.btn--blue {
        padding: 15px 25px;
        font-size: 14px;
    }
     .mainmenu .nav__item.level-2 {
        max-width: 300px;
    }
}
@media(max-width: 860px) {
    .header-contact-title {
        font-size: 10px;
    }
    .header__contacts a.header__phone {
        font-size: 18px;
    }
    .header__contacts a.header__email {
        font-size: 14px;
    }
    .header__contacts--production {
        padding-top: 5px;
        min-width: 200px;
    }
}
@media (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2),
       (min-width: 768px) and (min-resolution:192dpi) {
    .mainmenu .nav__item.default .nav__link:before {
        background-image: url(../images/logo_small@2x.png);
    }
}

@media (min-width: 992px) {
    .mainmenu .nav__link {
        font-size: inherit;
    }

    .mainmenu .nav__link.level-1 {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 767px) {
    .mainmenu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mainmenu-overlay.active {
        display: block;
        opacity: 1;
    }

    .mainmenu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 260px;
        height: 100%;
        background: #1c1c1c;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1001;
        transition: left 0.3s ease;
        -webkit-overflow-scrolling: touch;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }
    .header__menu.mainmenu {
        background-color: #1c1c1c;
    }

    .mainmenu.open {
        left: 0;
    }

    .mainmenu.open .nav__mobile-header,
    .mainmenu.fixed .nav__mobile-header {
        display: block;
    }

    .mainmenu.open .nav__mobile-header {
        padding: 24px 15px;
    }

    .mainmenu .nav__menu {
        display: none;
    }

    .mainmenu .nav__menu.level-1 {
        clear: both;
        padding: 10px 10px;
        list-style: none;
        margin: 0;
    }

    .mainmenu.open .nav__menu.level-1 {
        display: block;
        padding-top: 25px;
    }

    .mainmenu .nav__item.default {
        display: none;
    }

    .mainmenu .nav__item {
        list-style: none;
        margin: 0;
    }

    .mainmenu .nav__link {
        padding: 8px 10px;
        color: #fff;
        display: block;
    }

    .mainmenu .nav__link.level-1 {
        font-size: 16px;
        line-height: 1.4;
        font-weight: 400;
    }

    .mainmenu .nav__menu.level-2,
    .mainmenu .nav__menu.level-3 {
        padding: 8px 0 8px 0px;
        list-style: none;
        margin: 0;
        font-size: 14px;
    }

    .mainmenu .nav__link.level-3 {
        font-size: 0.9rem;
    }

    .mainmenu .nav__toggle {
        padding: 8px;
        margin-left: 5px;
    }
}
@media(max-width: 480px) {
    .header--video .header__container {
        padding: 0 15px;
    }
    .header--image .header__container {
        padding: 0 15px;
    }
    .header--video .header__mobile-menu-toggle {
        top: 5px;
        right: 10px;
    }
    .header--image .header__mobile-menu-toggle {
        top: 5px;
        right: 10px;
    }
    #video-banner-description-inner {
        padding-right: 15px;
        padding-left: 15px;
        padding-bottom: 30px;
    }
    #video-banner-description-h1 {
        font-size: 20px;
    }
    #video-banner-description-inner p {
        font-size: 12px;
    }
}

/* Slick.js styles */

.slick-slider {
    display: none;
    padding: 0 30px;
    max-width: 100%;
}

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

.slick-slide {
    margin: 5px;
    outline: none;
}

.slick-slider .slick-arrow {
    color: #000;
    font-size: 30px;
    padding: 0;
    background: transparent;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    border: 0;
    outline: none;
}

.slick-slider .slick-prev {
    left: 0;
}

.slick-slider .slick-next {
    right: 0;
}

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

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0 10px;
}

.slick-dots li button {
    display: block;
    text-indent: -9999px;
    padding: 0;
    width: 12px;
    height: 12px;
    cursor: pointer;
    border: 0;
    outline: none;
    background: black;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    opacity: .25;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    opacity: 1;
}

.slick-dots li.slick-active button {
    opacity: .75;
}


/* Photo carousel styles */

.photo-carousel {
    display: block;
    padding: 0 30px;
}

.photo-carousel__thumb {
    display: none;
    height: 100px;
}

.photo-carousel__thumb:first-child {
    display: block;
}

.photo-carousel__thumb a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    outline: none;
}

.photo-carousel__thumb img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}


/* Text page */

.text-page__container {
    margin-top: 56px;
    margin-bottom: 56px;
}

.text-page__content {
    overflow-x: auto;
}

.item-image.pull-none {
    margin-bottom: 1.41em;
}

.item-image.pull-left {
    margin-right: 20px;
    margin-bottom: 10px;
}

.item-image.pull-right {
    margin-left: 10px;
    margin-bottom: 10px;
}

.blog .page-header a {
    color: inherit;
}

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

@media (max-width: 767px) {
    .text-page__container {
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .item-image.pull-left,
    .item-image.pull-right {
        float: none;
        margin: 0 0 1.41em;
    }
}


/* Video frame styles */

.video-frame {
    max-width: 560px;
    position: relative;
    margin: 0 auto 24px;
}

.video-frame:before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.video-frame .video-player-stub {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -0.5em;
    left: 0;
    width: 100%;
    text-align: center;
}

.video-frame iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Breadcrumbs */

.breadcrumb {
    margin: 0 0 24px;
    padding: 0;
    font-size: 14px;
    line-height: 18px;
}

.breadcrumb > li {
    display: inline;
    list-style: none;
}

.breadcrumb a {
    color: inherit;
}

.breadcrumb .divider {
    display: inline-block;
    margin: 0 2px 0 0;
    font-size: 11px;
}


/* Form styles */

.form {
    position: relative;
    max-width: 500px;
    padding: 48px 40px;
    background: #fff;
    text-align: center;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form--popup {
    margin: 20px auto;
}

.form__header {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
    color: #272D35;
    letter-spacing: -0.02em;
}

.form__subheader {
    margin-top: 12px;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
}
.form__buttons button {
    width: 100%;
    padding: 15px;
    border-radius: 3px;
}
.form__body {
    margin-top: 32px;
}

.form__footer {
    margin-top: 24px;
}

.form__row {
    margin-bottom: 20px;
    text-align: left;
}

.form__row:last-of-type {
    margin-bottom: 0;
}

.form__input--text,
.form__input--number,
.form__input--select {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e3e3e3;
    font-size: 16px;
    font-weight: normal;
    color: #272D35;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

.form__input--text:focus,
.form__input--number:focus,
.form__input--select:focus {
    outline: none;
    border-color: #186694;
    box-shadow: 0 0 0 3px rgba(24, 102, 148, 0.1);
    background-color: #fafafa;
}

.form__input--text:hover,
.form__input--number:hover,
.form__input--select:hover {
    border-color: #c0c0c0;
}

textarea.form__input--text {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form__input--number {
    padding-right: 5px;
}

.form__input--select {
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23272D35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form__input--select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23186694' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.form__input--select option {
    padding: 10px;
    background-color: #fff;
    color: #272D35;
}

.form__input--text:disabled,
.form__input--number:disabled,
.form__input--select:disabled {
    background: #eee;
    color: #999;
    cursor: not-allowed;
}

.form ::-webkit-input-placeholder {
    color: #9ca3af;
    font-style: normal;
    opacity: 1;
}

.form ::-moz-placeholder {
    color: #9ca3af;
    font-style: normal;
    opacity: 1;
}

.form :-ms-input-placeholder {
    color: #9ca3af;
    font-style: normal;
    opacity: 1;
}

.form ::placeholder {
    color: #9ca3af;
    font-style: normal;
    opacity: 1;
}

.form__input.placeholder {
    color: #bababa;
    font-style: italic;
}

.form__accept-terms {
    text-align: left;
    margin-bottom: 20px;
    margin-top: 8px;
}

.form__accept-terms label {
    position: relative;
    padding-left: 28px;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    cursor: pointer;
}

.form__accept-terms input[type="checkbox"] {
    position: absolute;
    top: 2px;
    left: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease;
}

.form__accept-terms input[type="checkbox"]:checked {
    background-color: #425475;
    border-color: #425475;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M10 3L4.5 8.5 2 6' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.form__accept-terms input[type="checkbox"]:hover {
    border-color: #425475;
}

.form__accept-terms a {
    color: #186694;
    text-decoration: underline;
    transition: color 0.2s ease;
    padding-left: 3px;
}

.form__accept-terms a:hover {
    color: #1c47c5;
}
.form__message {
    padding: 10px;
    margin: 15px 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.form__message:first-child {
    margin-top: 0;
}

.form__message p {
    margin: 0;
    font-weight: normal;
    text-align: left;
}

.form__message p + p {
    margin-top: 10px;
}

.form__message--error {
    color: #f92626;
    font-size: 14px;
}

.form__message--success {

    color: #20c320;
}

@media (max-width: 575px) {
    .form--popup {
        padding-left: 20px;
        padding-right: 20px;
    }
    .form {
        padding: 32px 24px;
        max-width: 100%;
    }

    .form__header {
        font-size: 24px;
    }

    .form__subheader {
        font-size: 14px;
    }

    .form__input--text,
    .form__input--number,
    .form__input--select {
        padding: 12px 14px;
        font-size: 16px;
    }

    .homepage__callback {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* Common */
.item-page {
    background: #fff;
    padding: 40px;
    border-radius: 6px;
    font-size: 14px;
}
#microscheme {
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(/templates/custom/images/microscheme.png);
    width: 1000px;
    height: 1000px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .3;
    z-index: -1;
}
#microscheme-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(/templates/custom/images/microscheme.png);
    width: 1000px;
    height: 1000px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .2;
    z-index: -1;
}
/* Homepage services */

#homepage-promo {
    padding-top: 60px;
    position: relative;
    padding-left: 100px;
    margin-top: 50px;
    margin-bottom: 70px;
}
#homepage-promo-description {
    max-width: 600px;
}
#homepage-promo-title {
    font-size: 1.85rem;
}
#homepage-promo:after {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 40px;
    left: 37px;
    background: url(../images/dots.png) no-repeat;
    z-index: -1;
}

.homepage__services {
    margin-top: 50px;
    padding-bottom: 90px;
    position: relative;
}

/* Homepage services carousel */
.homepage__services-carousel {
    position: relative;
    width: 1140px;
    padding-left: 0;
}
.homepage__services-carousel .homepage__service-slide {
    padding: 0 15px;
    box-sizing: border-box;
}

.homepage__services-carousel .slick-list {
    margin: 0 -15px;
}

.homepage__services-carousel .slick-slide {
    margin: 0;
    outline: none;
}

.homepage__services-carousel .slick-slide > div {
    height: 100%;
}

/* Большая стрелка для карусели услуг */
.homepage__services-carousel .homepage__services-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}

.homepage__services-carousel .homepage__services-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.homepage__services-carousel .homepage__services-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.homepage__services-carousel .homepage__services-arrow--prev {
    display: none !important;
}

.homepage__services-carousel .homepage__services-arrow--next {
    right: -100px;
}

.homepage__services-carousel .homepage__services-arrow i {
    font-size: 42px;
    line-height: 1;
    color: #484848;
}

.homepage__services-carousel .homepage__services-arrow.slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.homepage__services-carousel .homepage__services-arrow.slick-disabled:hover {
    transform: translateY(-50%);
    background: #186694;
}

@media (max-width: 991px) {
    .homepage__services-carousel {
        padding-right: 0;
    }
    
    .homepage__services-carousel .homepage__services-arrow {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .homepage__services-carousel .homepage__services-arrow--prev {
        left: -30px;
    }
    
}



.homepage__service {
    position: relative;
    height: 100%;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.homepage__services-carousel .homepage__service-slide {
    padding-bottom: 32px;
}

.homepage__service-headline {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.25;
}

.homepage__service-text {
    margin-bottom: 24px;
}

.homepage__service--primary {
    overflow: hidden;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 425px;
    color: #fff;
    padding: 80px 20px;
}

.homepage__service--primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.homepage__service--primary .homepage__service-headline {
    position: relative;
    font-size: 34px;
    line-height: 1.21;
    margin-bottom: 24px;
}

.homepage__service--primary .homepage__service-text {
    position: relative;
}

.homepage__service--primary .homepage__service-more {
    position: relative;
}

.homepage__service--secondary {
    border: 1px solid #e3e3e3;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
}

.homepage__service--secondary .homepage__service-image {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;

}

@media (min-width: 768px) {
    .homepage__service--primary {
        padding: 80px 80px 30px 547px;
    }

    .homepage__service--primary:before {
        background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 58%);
        background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 58%);
        background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 58%);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .homepage__service--primary {
        padding-left: 307px;
    }

    .homepage__service-headline {
        font-size: 17px;
    }

    .homepage__service--primary .homepage__service-headline {
        font-size: 20px;
    }

    .homepage__service-text {
        font-size: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .homepage__service--primary {
        padding-left: 357px;
    }
}


/* Advantages */

.homepage__advantages {
    width: 100%;
    background: #1e1e1e;
    position: relative;
}
#homepage-advantages-inner {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.homepage__advantages-headline {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.21;
    margin: 0 0 60px;
}
.homepage__advantages-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 40px 25px;
    background: #42424224;
    color: #fff;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}
.homepage__advantages-items.container {
    display: flex;
    gap: 32px;
}
#homepage-advantages-image {
    opacity: .3;
}
/* Homepage projects */

.homepage__projects {
    position: relative;
    padding-bottom: 120px;
    padding-top: 120px;
}
.homepage__projects-body.homepage__projects-body-reverse {
    flex-direction: row-reverse;
    margin-top: 75px;
}
.homepage__projects-container {
    position: relative;
    max-width: unset;
    padding: 0;
}

.homepage__projects-contents:after {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 40px;
    right: 0;
    background: url(../images/dots.png) no-repeat;
}

.homepage__projects-body {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 1100px;
    width: 100%;
    margin: auto;
    gap: 80px;
}
.homepage__projects-body-reverse .homepage__projects-contents {
    text-align: left;
    padding-right: 0;
    padding-left: 30px;
}
.homepage__projects-body-reverse .homepage__projects-contents:after {
    right: unset;
    left: 0;
}
#projects-list {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    gap: 5px;
}
#out-projects-image {
    width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    aspect-ratio: 4 / 3;
    height: auto;
    position: relative;
}
.projects-list-item {
    position: relative;
    padding-right: 8px;
    font-size: 16px;
    color: #727272;
}
.projects-list-item:after {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    position: relative;
    background: #186694;
    float: right;
    border-radius: 100%;
    top: 9px;
    right: -8px;
}
.homepage__projects-contents {
    position: relative;
    max-width: 430px;
    float: right;
    text-align: right;
    padding-right: 30px;
    padding-top: 50px;
}
.homepage__projects-contents h2, .homepage__projects-contents p {
    position: relative;
    z-index: 1;
}
.homepage__projects-contents .h1-like {
    margin: 0 0 16px;
}

.homepage__projects-contents a {
    font-weight: bold;
    color: #4e4e4e;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid #186694;
}

/* Homepage about */

.homepage__about {
    overflow: hidden;
    position: relative;
    height: 900px;
}
.homepage__about-headline {
    font-size: 24px;
    line-height: 1.21;
    font-weight: bold;
    margin: 0 0 1.33em;
}
.homepage__about-image {
    float: left;
    position: relative;
    max-width: 340px;
    margin: 0 114px 25px 25px;
}
.homepage__about-image img {
    position: relative;
}
.homepage__about-image:before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: -30px;
    right: -30px;
    background: url(../images/dots.png) no-repeat;
}
.homepage__about-content {
    float: left;
    max-width: 500px;
    padding-top: 80px;
    padding-right: 20px;
}
.homepage__about-container.container {
    display: flex;
    justify-content: space-around;
}
#bottom-about-image {
    width: 35%;
    max-width: 500px;
    margin-top: 40px;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    height: auto;
    object-fit: cover;
}
@media(max-width: 768px) {
    #bottom-about-image {
        display: none;
    }
    .homepage__about-content {
        padding-right: 0;
    }
}

/* Homepage callback */
#homepage-callback-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.homepage__callback {
    position: relative;
    height: 550px;
}
#homepage-callback-inner {
    display: flex;
    max-width: 1600px;
    margin: auto;
    padding: 0 40px;
    align-items: center;
}
#homepage-callback-overlay, #bottom-callback-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #32323294;
}
#homepage-callback-text {
    width: 60%;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
#homepage-callback-title {
    color: #fff;
    font-size: 42px;
}
#homepage-callback-description {
    color: #c9c9c9;
    position: relative;
    top: -25px;
}
.homepage__callback .form {
    -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 40px 40px;
    background: linear-gradient(360deg, #222222, #2e2e2ea3);
    text-align: center;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    top: -32px;
    z-index: 1;
}
.homepage__callback .form .form__body {
    margin-top: 0;
}
.homepage__callback .form:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}
.homepage__callback .form__input--text, .homepage__callback .form__input--number, .homepage__callback .form__input--select {
    background: #dddddd14;
    border: 1px solid #a1a1a130;
    border-radius: 8px;
    color: #fff;
}
.homepage__callback .form__accept-terms label {
    color: #838383;
}
.homepage__callback .form__accept-terms a {
    padding-left: 6px;
    color: #ddd;
}
.homepage__callback .form__button {
    background: #425475;
    border: none;
    color: #fff;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 15px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.homepage__callback .form__button:hover {
    background: #186694;
}
#homepage-callback-text {
    width: 60%;
}
@media (max-width: 575px) {
    .homepage__callback {
        padding-bottom: 0;
    }
}


/* Contacts page */

.contacts {
    padding: 0;
}
.contacts__contacts-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.contacts__contacts {
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.contacts__contacts:hover {
    border-color: #186694;
    box-shadow: 0 4px 12px rgba(24, 102, 148, 0.08);
}

.contacts__contacts-title {
    font-size: 16px;
    font-weight: 400;
    color: #626262;
    margin-bottom: 20px;
    font-style: normal;
}

.contacts__contacts a {
    color: #272D35;
    font-size: 20px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.contacts__contacts a:hover {
    color: #186694;
}

.contacts__phone {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contacts__phone:last-child {
    margin-bottom: 0;
}

.contacts__phone b {
    color: #186694;
    font-weight: 500;
}

.contacts__email {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contacts__email a {
    font-size: 18px;
}

.contacts__form-intro {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin: 48px 0 32px;
    font-weight: 500;
}

.contacts__callback {
    display: flex;
    margin: 0 auto 64px;
    gap: 35px;
}
.contacts__callback-left img {
    width: 100%;
    border-radius: 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.contacts__callback-left {
    flex: 1;
}
.contacts__callback .form {
    max-width: none;
    padding: 40px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.contacts__callback .form__body {
    margin-top: 0;
}
.form__body-title {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    font-size: 21px;
}
.contacts__callback .form__footer {
    margin-top: 24px;
}

.contacts__address {
    background: #f9fafb;
    border-left: 4px solid #186694;
    padding: 24px 32px;
    margin-bottom: 0;
    border-radius: 0 8px 8px 0;
}

.contacts__address b {
    font-size: 18px;
    font-weight: 600;
    color: #272D35;
    margin-right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contacts__address i {
    color: #186694;
    font-size: 20px;
}

.contacts__address {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.contacts__map {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 48px;
    border: 1px solid #e5e7eb;
}

.contacts .seo-text {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #e5e7eb;
    color: #4b5563;
    line-height: 1.7;
}

.contacts .seo-text p {
    margin-bottom: 1.2em;
}
@media(max-width: 1024px) {
	.contacts__callback {
    	flex-direction: column-reverse;
	}
}
@media (max-width: 991px) {
    .contacts {
        padding: 40px 0;
    }

    .contacts__contacts-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contacts__callback .form {
        padding: 32px 24px;
    }
}

@media (max-width: 767px) {
    .contacts .page-header h1 {
        font-size: 2rem;
    }

    .contacts__contacts {
        padding: 24px;
    }

    .contacts__form-intro {
        font-size: 16px;
        margin: 32px 0 24px;
    }

    .contacts__callback {
        margin-bottom: 48px;
    }

    .contacts__address {
        padding: 20px 24px;
        margin-bottom: 32px;
    }

    .contacts__address b {
        display: block;
        margin: 0 0 12px 0;
        font-size: 16px;
    }

    .contacts__map {
        height: 350px;
        margin-bottom: 32px;
        border-radius: 8px;
    }

    .contacts .seo-text {
        margin-top: 32px;
        padding-top: 32px;
    }
}

@media (max-width: 575px) {
    .contacts {
        padding: 32px 0;
    }

    .contacts .page-header {
        margin-bottom: 32px;
    }

    .contacts .page-header h1 {
        font-size: 1.75rem;
    }

    .contacts__contacts-wrapper {
        margin-bottom: 32px;
        display: flex;
        flex-direction: column;
    }
    .contacts__contacts-title {
    	font-size: 14px;
	}
    .contacts__callback .form {
        padding: 24px 20px;
    }

    .contacts__address {
        padding: 16px 20px;
    }
}


/* Feedback */

.feedback {
    background: #fbfbfb;
    padding: 24px;
    text-align: center;
    max-width: 350px;
    margin: 0 auto 24px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.feedback__headline {
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.feedback__headline i {
    color: #1c47c5;
    font-size: 22px;
    vertical-align: -4px;
}

.feedback p {
    font-size: 14px;
    line-height: 18px;
}

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

/* Feedback fullwidth with background image */
.feedback--fullwidth {
    position: relative;
    width: 100%;
    height: 550px;
    max-width: none;
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    overflow: hidden;
}

.feedback__background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#bottom-callback-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #32323294;
    z-index: 1;
}

.feedback__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
}

.feedback__content {
    text-align: center;
    color: #fff;
}

.feedback--fullwidth .feedback__headline {
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.feedback--fullwidth .feedback__headline i {
    color: #fff;
    font-size: 42px;
    vertical-align: middle;
    margin-right: 12px;
}

.feedback--fullwidth p {
    color: #ebebeb;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .feedback--fullwidth {
        height: 450px;
    }
    
    .feedback__inner {
        padding: 0 20px;
    }
    
    .feedback--fullwidth .feedback__headline {
        font-size: 28px;
    }
    
    .feedback--fullwidth .feedback__headline i {
        font-size: 28px;
    }
    
    .feedback--fullwidth p {
        font-size: 16px;
    }
}

/* Side menu */

.sidebar .nav__wrapper {
    margin-bottom: 50px;
}

.sidebar .nav__link {
    display: block;
    font-size: 17px;
    line-height: 21px;
    color: inherit;
    padding: 8px;
    text-decoration: none;

}

.sidebar .nav__link--disabled {
    cursor: default;
}

.sidebar .nav__item:not(.parent) {
    margin-bottom: 8px;
}


#sidebar-services li.nav__item.level-2.current.active {
    margin: 0 -25px;
    padding: 6px 25px;
    margin-bottom: 8px;
    background: #ffffff;
}
.sidebar .nav__item.level-1.parent > .nav__link {
    font-size: 22px;
    line-height: 27px;
    padding: 0;
    color: #272d35;
}
#sidebar-services {
    padding: 25px;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}
#sidebar-services .nav__link.level-1.nav__link--disabled {
    display: none;
}
.sidebar .nav__link.service-icon {
    position: relative;
    padding-left: 60px;
}
#sidebar-services .nav__item:not(.parent) > .nav__link {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#sidebar-services .nav__item:not(.parent) > .nav__link:hover {
    transform: translateX(10px);
}
.sidebar .nav__link.service-icon:before {
    content: '';
    display: block;
    width: 29px;
    height: 24px;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    left: 15px;
    filter: grayscale(1);
    background-image: url(../images/service_icons_20200709.png);
    background-repeat: no-repeat;
}

.sidebar .nav__link.service-icon2:before {
    background-position: -29px 0;
}

.sidebar .nav__link.service-icon3:before {
    background-position: -58px 0;
}

.sidebar .nav__link.service-icon4:before {
    background-position: -87px 0;
}

.sidebar .nav__link.service-icon5:before {
    background-position: -116px 0;
}

.sidebar .nav__link.service-icon6:before {
    background-position: -145px 0;
}


/* Footer */
#footer-map {
    border-top: 1px solid #b5b5b5;
    margin-bottom: 0;
}
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 56px 0 25px;
    position: relative;
}
#footer-image {
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 1;
    opacity: .1;
}
.footer a {
    color: #b7b7b7;
}
.footer a:hover {
    color: #fff;
    text-decoration: unset;
}
.footer-contacts {
    width: 300px;
    margin-bottom: 25px;
}
.footer__nav .nav__menu.level-1 {
    margin-right: 50px;
}

.footer__nav .nav__item {
    margin-bottom: 8px;
}

.footer__nav .nav__menu.level-2 {
    margin-top: 8px;
}

.footer__nav .nav__item.level-2 {
    font-size: 14px;
    line-height: 18px;
    color: #e3e3e3;
}

.footer__nav .nav__link--disabled {
    text-decoration: none;
    cursor: default;
}

.footer__contacts {
    text-align: left;
    font-size: 16px;
}

.footer__contacts--production {
    margin-bottom: 20px;
    margin-top: 25px;
}
.footer__logo-img {
    opacity: .9;
}
.footer__contacts i {
    vertical-align: -2px;
    display: none;
}
.footer .nav__menu.level-1.menu.mod-list:first-child .nav__item {
    margin-bottom: 18px;
}
.footer__contacts-title {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 5px;
    color: #979797;
}
.footer__phone a {
    color: #fff;
    font-size: 20px;
}
.footer__email a {
    color: #fff;
    font-size: 14px;
}
.footer__phone {
    white-space: nowrap;
    margin-bottom: 5px;
}

.footer__phone b {
    color: #4e97bb;
}

.footer__email {
    white-space: nowrap;
}

.footer__callback {
    text-align: left;
    margin-top: 24px;
}
#footer-social {
    display: flex;
    margin-top: 10px;
}
#footer-social a {
    background: unset;
    padding: 0;
    border: unset;
    box-shadow: unset;
}
#footer-social a:hover {
    transform: scale(1.1);
    filter: brightness(3.5);
}
#footer-social a svg {
    filter: grayscale(1) brightness(1.5);
}
.homepage__projects-contents a span {
    display: inline-block;
    transform: translateX(0px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.homepage__projects-contents a:hover span {
    transform: translateX(5px);
}
@media(max-width: 1180px) {
    .footer__container.container.d-md-flex {
        flex-wrap: wrap;
        display: flex;
    }
}
@media (max-width: 991px) {
    .footer__nav .nav__menu.level-1 {
        margin-right: 30px;
    }
}

@media (max-width: 767px) {
    .footer__nav .nav__menu.level-1 {
        margin: 0 0 40px 0;
        padding-left: 8px;
    }

    .footer__contacts,
    .footer__callback {
        text-align: left;
    }
}
.footer__callback-btn.btn {
    background: #545454;
    border: unset;
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 1px;
    position: relative;
    z-index: 2;
}
.footer__callback-btn.btn:hover, .footer__callback-btn.btn:focus {
    outline: none;
    background: #186694;
}
#footer-copyright {
    background: #2c2c2c;
    width: 100%;
    text-align: center;
    border-top: 1px solid #505050;
    padding: 25px 25px;
    font-size: 14px;
    color: #9b9b9b;
}
.footer-policy {
    font-size: 14px;
}
/* Pagination */

.pagination {
    margin: 2.5em 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination ul > li {
    display: inline-block;
    margin: 0;
}

.pagination ul > li > a,
.pagination ul > li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    padding: 10px 14px;
    min-width: 40px;
    min-height: 40px;
    text-decoration: none;
    text-align: center;
    color: #272D35;
    background-color: #fff;
    border: 1px solid #e3e3e3;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.pagination ul > li > a:hover,
.pagination ul > li > a:focus {
    background-color: #f8f9fa;
    text-decoration: none;
    transform: translateY(-1px);
}

.pagination ul > .active > span {
    background: #425475;
    color: #fff;
    border-color: #425475;
    cursor: default;
    box-shadow: 0 4px 12px rgba(28, 71, 197, 0.25);
    font-weight: 600;
}

.pagination ul > .active > span:hover {
    transform: none;
}

.pagination ul > .disabled > span {
    color: #999;
    background-color: #f5f5f5;
    border-color: #e3e3e3;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination ul > .disabled > span:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.pagination .icon-chevron-left,
.pagination .icon-chevron-right {
    font-size: 16px;
    vertical-align: middle;
    line-height: 1;
}

.pagination .counter {
    display: none;
}

.pagination-label {
    display: inline-block;
    margin-right: 12px;
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .pagination {
        margin: 2em 0;
        gap: 6px;
    }
    
    .pagination ul {
        gap: 6px;
    }
    
    .pagination ul > li > a,
    .pagination ul > li > span {
        padding: 8px 12px;
        min-width: 36px;
        min-height: 36px;
        font-size: 14px;
    }
    
    .pagination-label {
        width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
        text-align: center;
    }
}

@media (max-width: 479px) {
    .pagination ul > li > a,
    .pagination ul > li > span {
        padding: 8px 10px;
        min-width: 32px;
        min-height: 32px;
        font-size: 13px;
    }
}


/* Page navigation (prev/next links) */

.pagenav {
    overflow: hidden;
    margin: 1.41em 0;
}

.pagenav__prev {
    float: left;
}

.pagenav__next {
    float: right;
}


/* Tooltips */

.tooltip {
    position: absolute;
    z-index: 1030;
    display: block;
    visibility: visible;
    font-size: 11px;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0);
}

.tooltip.in {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0;
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px;
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0;
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px;
}

.tooltip-inner {
    max-width: 200px;
    padding: 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}


/* Projects list */

.projects__list {
    overflow: hidden;
}

.projects__items > * {
    padding-bottom: 18px;
    padding-top: 18px;
    text-align: center;
}
.projects__items {
    align-items: stretch;
}
.projects__item {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out backwards;
    height: 100%;
    background: #fff;
}
.projects__item:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: transparent;
}
.projects__item-image {
    background: #fff;
}

.projects__item-image a {
    display: block;
}

.projects__no-photo {
    background: url(../images/no_photo.png) center no-repeat;
    background-size: 50%;
}

.projects__item-info {
    padding: 25px;
    font-size: 14px;
}

.projects__item-info a {
    color: inherit;
}


/* Project page */

.item-page-project .pagenav {
    margin-top: 0;
    margin-bottom: 40px;
}
.item-page-project .pagenav > a {
    border: none;
    box-shadow: none;
    padding: 0;
    color: #747474;
    font-weight: 200;
}
.item-page-project .pagenav > a:hover {
	color: #000;
}
.item-page-project .pagenav > a > i {
    font-size: 12px;
    position: relative;
    top: -1px;
}
.project-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.project-gallery {
    flex: 0 0 auto;
    width: 60%;
    display: flex;
    gap: 20px;
}

.project-gallery__main {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.project-gallery__main-item {
    display: none;
    width: 100%;
}

.project-gallery__main-item--active {
    display: block;
}

.project-gallery__main-link {
    display: block;
    cursor: pointer;
}

.project-gallery__main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.project-gallery__thumbs {
    width: 100px;
    overflow-y: hidden;
    overflow-x: hidden;
    padding-right: 5px;
}

.project-gallery__thumbs::-webkit-scrollbar {
    width: 6px;
}

.project-gallery__thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.project-gallery__thumbs::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 3px;
}

.project-gallery__thumbs::-webkit-scrollbar-thumb:hover {
    background-color: #a1a1a1;
}

.project-gallery__thumb {
    background: none;
    border: 1px solid transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.6;
}

.project-gallery__thumb:hover {
    opacity: 0.8;
    outline: none !important;
    border: 1px solid #dfdfdf;
}

.project-gallery__thumb--active {
    opacity: 1;
    outline: none !important;
    border: 1px solid #dfdfdf;
}

.project-gallery__thumb-img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    display: block;
}

.project-info {
    flex: 1;
}

.project-info__title {
    margin-top: 0;
    margin-bottom: 20px;
}

.project-info__description {
    margin-bottom: 30px;
}
.project-info__order-button {
    padding: 15px 50px;
    margin-top: 20px;
}
.project-info__order-button:hover, .project-info__order-button:focus {
	outline: none;
}
@media (max-width: 991px) {
    .project-content {
        flex-direction: column;
    }

    .project-gallery {
        width: 100%;
        flex-direction: column-reverse;
    }

    .project-gallery__main {
        flex-direction: column;
    }

    .project-gallery__thumbs {
    	display: flex;
        flex-direction: row;
        justify-content: center;
        overflow-x: hidden;
        overflow-y: hidden;
        max-height: none !important;
        padding-right: 0;
        padding-bottom: 10px;
        order: -1;
        margin-bottom: 20px;
        width: 100%;
        gap: 15px;
    }

    .project-gallery__thumb-img {
        width: 100px;
        height: 75px;
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .project-navigation {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .project-navigation__link {
        justify-content: center;
    }

    .project-gallery__thumb-img {
        width: 80px;
        height: 60px;
    }
}

@media (max-width: 479px) {
    .project-info__order-button {
        width: 100%;
    }
}

/* Back to top */

#back-to-top {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 13px;
    width: 45px;
    height: 45px;
    background: url(../images/up.png) top left no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    z-index: 1000;
    cursor: pointer;
    filter: invert(1) grayscale(.8);
}


/* Magnific Popup styles */

button.mfp-close,
button.mfp-arrow {
    outline: none;
}


/* Simple fade transition for Magnific Popup */

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}


/* Alerts */

.alert {
    padding: 8px 35px 8px 14px;
    margin: 10px 0;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
    position: relative;
    line-height: 1.25em;
}

.alert,
.alert h4 {
    color: #c09853;
}

.alert h4 {
    font-weight: bold;
    margin: 0 0 5px;
}

.alert .close {
    position: absolute;
    top: 3px;
    right: 6px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #468847;
}

.alert-success h4 {
    color: #468847;
}

.alert-danger,
.alert-error {
    background-color: #f2dede;
    border-color: #eed3d7;
    color: #b94a48;
}

.alert-danger h4,
.alert-error h4 {
    color: #b94a48;
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #3a87ad;
}

.alert-info h4 {
    color: #3a87ad;
}

.alert-block {
    padding-top: 14px;
    padding-bottom: 14px;
}

.alert-block > p,
.alert-block > ul {
    margin-bottom: 0;
}

.alert-block p + p {
    margin-top: 5px;
}



/* Cookie Banner */

.cookie-banner {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 300px;
    max-height: calc(100vh - 2 * 10px);
    padding: 10px;
    background: #eeeeee;
    font-size: 13px;
    color: #000;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .35);
    z-index: 11000;
}

.cookie-banner a {
    text-decoration: underline;
}

.cookie-banner__buttons button {
    width: 100%;
    padding: 3px 8px;
    font-size: 13px;
}

.cookie-banner__buttons button + button {
    margin-top: 10px;
}

.cookie-banner__text {
    text-align: justify;
    margin-bottom: 7px;
}

.cookie-banner__adv-settings {
    display: none;
    flex-direction: column;
    max-height: inherit;
}

.cookie-banner[data-page=settings] {
    padding: 0;
}

.cookie-banner[data-page=settings] .cookie-banner__adv-main {
    display: none;
}

.cookie-banner[data-page=settings] .cookie-banner__adv-settings {
    display: flex;
}

.cookie-banner__header {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .1);
}

.cookie-banner__adv-settings .cookie-banner__buttons {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    box-shadow: 0 -4px 5px rgba(0, 0, 0, .1);
}

.cookie-banner__adv-settings .cookie-banner__buttons button {
    width: auto;
}

.cookie-banner__adv-settings .cookie-banner__buttons button + button {
    margin: 0 0 0 10px;
}

.cookie-banner__categories {
    flex-shrink: 1;
    height: 100%;
    overflow: auto;
    padding: 0 10px;
}

.cookie-banner__category:first-child {
    border-top: 1px solid #dadada;
}

.cookie-banner__category {
    padding: 10px 0 13px;
    border-bottom: 1px solid #dadada;
}

.cookie-banner__category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.cookie-banner__plus-minus {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    background: #007bff;
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.cookie-banner__plus-minus span {
    position: absolute;
    background: #fff;
    border-radius: 1px;
}

.cookie-banner__plus-minus span:first-of-type {
    top: 25%;
    bottom: 25%;
    width: 10%;
    left: 45%;
}

.cookie-banner__plus-minus span:last-of-type {
    left: 25%;
    right: 25%;
    height: 10%;
    top: 45%;
}

.cookie-banner__category-header.expanded .cookie-banner__plus-minus span:first-of-type {
    display: none;
}

.cookie-banner__category-name {
    flex: 1 0;
    font-size: 16px;
    line-height: 24px;
}

.cookie-banner__category-toggle {
    color: #007bff;
    text-align: right;
}

.cookie-banner__category-desc {
    display: none;
    font-style: italic;
    color: #555;
    margin-top: 10px;
}

.cookie-banner__category-header.expanded ~ .cookie-banner__category-desc {
    display: block;
}

.cookie-banner__toggle-switch {
    font-size: 11px;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 2em;
}

.cookie-banner__toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-banner__toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 1px solid #adb5bd;
    transition: .4s;
    border-radius: 30px;
}

.cookie-banner__toggle-slider:before {
    position: absolute;
    content: "";
    height: 1.4em;
    width: 1.4em;
    border-radius: 20px;
    left: 0.27em;
    bottom: 0.25em;
    background-color: #adb5bd;
    transition: .4s;
}

input:checked + .cookie-banner__toggle-slider {
    background-color: #007bff;
    border: 1px solid #007bff;
}

input:focus + .cookie-banner__toggle-slider {
    box-shadow: 0 0 1px #007bff;
}

input:checked + .cookie-banner__toggle-slider:before {
    transform: translateX(1.4em);
    background-color: #fff;
}

/* Messenger Widget */

.messenger-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.messenger-widget__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.messenger-widget__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.messenger-widget__button svg {
    width: 32px;
    height: 32px;
}

.messenger-widget__button--max svg {
    width: 26px;
    height: 26px;
}

@media (max-width: 767px) {
    .messenger-widget {
        right: 15px;
        bottom: 15px;
    }
}


/* Base font */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Regular.woff2') format('woff2'),
        url('../fonts/subset-Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Italic.woff2') format('woff2'),
        url('../fonts/subset-Inter-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Medium.woff2') format('woff2'),
        url('../fonts/subset-Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-MediumItalic.woff2') format('woff2'),
        url('../fonts/subset-Inter-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/subset-Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/subset-Inter-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Bold.woff2') format('woff2'),
        url('../fonts/subset-Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-BoldItalic.woff2') format('woff2'),
        url('../fonts/subset-Inter-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Regular.woff2') format('woff2'),
        url('../fonts/subset-Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Italic.woff2') format('woff2'),
        url('../fonts/subset-Inter-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Medium.woff2') format('woff2'),
        url('../fonts/subset-Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-MediumItalic.woff2') format('woff2'),
        url('../fonts/subset-Inter-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/subset-Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/subset-Inter-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Bold.woff2') format('woff2'),
        url('../fonts/subset-Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-BoldItalic.woff2') format('woff2'),
        url('../fonts/subset-Inter-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}


/* Icon font */

@font-face {
  font-family: 'custom_icomoon';
  src:
    url('../fonts/custom_icomoon.ttf?obcxwq') format('truetype'),
    url('../fonts/custom_icomoon.woff?obcxwq') format('woff'),
    url('../fonts/custom_icomoon.svg?obcxwq#custom_icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'custom_icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-alert:before {
  content: "\e900";
}
.icon-arrow-left:before {
  content: "\e901";
}
.icon-arrow-right:before {
  content: "\e902";
}
.icon-call:before {
  content: "\e903";
}
.icon-checkmark:before {
  content: "\e904";
}
.icon-chevron-down:before {
  content: "\e905";
}
.icon-chevron-left:before {
  content: "\e906";
}
.icon-chevron-right:before {
  content: "\e907";
}
.icon-chevron-up:before {
  content: "\e908";
}
.icon-clock:before {
  content: "\e909";
}
.icon-credit-card:before {
  content: "\e90a";
}
.icon-cross:before {
  content: "\e90b";
}
.icon-delete:before {
  content: "\e90c";
}
.icon-download:before {
  content: "\e90d";
}
.icon-eye:before {
  content: "\e90e";
}
.icon-eye-slash:before {
  content: "\e90f";
}
.icon-facebook:before {
  content: "\e910";
}
.icon-google:before {
  content: "\e911";
}
.icon-heart-off:before {
  content: "\e912";
}
.icon-heart-on:before {
  content: "\e913";
}
.icon-instagram:before {
  content: "\e914";
}
.icon-list:before {
  content: "\e915";
}
.icon-mail:before {
  content: "\e916";
}
.icon-envelope:before {
  content: "\e916";
}
.icon-menu-hamburger:before {
  content: "\e917";
}
.icon-pencil:before {
  content: "\e918";
}
.icon-people:before {
  content: "\e919";
}
.icon-place-pin:before {
  content: "\e91a";
}
.icon-plus:before {
  content: "\e91b";
}
.icon-search:before {
  content: "\e91c";
}
.icon-send:before {
  content: "\e91d";
}
.icon-settings:before {
  content: "\e91e";
}
.icon-share:before {
  content: "\e91f";
}
.icon-star-half:before {
  content: "\e920";
}
.icon-star-off:before {
  content: "\e921";
}
.icon-star-on:before {
  content: "\e922";
}
.icon-thumbs-up:before {
  content: "\e923";
}
.icon-twitter:before {
  content: "\e924";
}
.icon-upload:before {
  content: "\e925";
}
.icon-user:before {
  content: "\e926";
}
.icon-vk:before {
  content: "\e927";
}
.icon-youtube:before {
  content: "\e928";
}

/* HOME */
.hero-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
}
.hero-arrow svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateY(-12px);
        opacity: 0.8;
    }
    60% {
        transform: translateY(-6px);
        opacity: 0.9;
    }
}
/* Articles page Image header */
.article-header-image {
    filter: brightness(0.5);
}
.header-image-content {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.header-image-content .page-header {
    position: absolute;
    width: 100%;
    max-width: 1600px;
    padding: 0 40px;
    margin: auto;
}
.header-image-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.header-image-content picture {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.header-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #2f3138b8;
}
.header-image-content .page-header .breadcrumb {
    color: #d5d5d5;
    position: relative;
    z-index: 1;
}
.header-image-content .page-header h1 {
    color: #fff;
    position: relative;
    z-index: 1;
    max-width: 800px;
}
@media(max-width: 480px) {
    .header-image-content .page-header h1 {
        font-size: 24px;
    }
}



#homepage-top {
    position: relative;
}
/* Services - Premium Modern Design */
.homepage__service--secondary {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.homepage__service--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #186694 0%, #1c47c5 50%, #186694 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.homepage__service--secondary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 102, 148, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.homepage__service--secondary:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: transparent;
}


@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.homepage__service-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: -30px;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 15px;
    height: 240px;
    
}

.homepage__service--secondary .homepage__service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.6s ease;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.homepage__service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    opacity: 0.4;
    transition: opacity 0.6s ease, background 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.homepage__service--secondary:hover .homepage__service-image-overlay {
    opacity: 0.2;
    background: linear-gradient(
        180deg,
        rgba(24, 102, 148, 0.1) 0%,
        rgba(24, 102, 148, 0.3) 50%,
        rgba(24, 102, 148, 0.5) 100%
    );
}

.homepage__service-content {
    position: relative;
    z-index: 1;
    padding: 0 5px;
}

.homepage__service-headline {
    margin-bottom: 0;
    position: relative;
    padding-bottom: 20px;
}

.homepage__service-headline::after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #186694 0%, #1c47c5 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), width 0.5s ease;
}

.homepage__service--secondary:hover .homepage__service-headline::after {
    transform: scaleX(1);
    width: 80px;
}
#page-layout-blog .blog__grid.container {
    padding: 0;
    margin-top: 0;
}
.homepage__service-link {
    color: #272d35;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: -webkit-box;
    position: relative;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 4rem;
}

.homepage__service-text {
    color: #484848;
    line-height: 1.5;
    transition: color 0.4s ease;
    margin-bottom: 24px;
    font-size: 13px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: 5.6rem;
}

.homepage__service-link:hover {
    color: #4a5568;
    text-decoration: none;
}


.homepage__service-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding: 14px 28px;
    border-radius: 0;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.btn--lite::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn--lite:hover::before {
    left: 100%;
}

.homepage__service-btn-icon {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3em;
    line-height: 1;
    font-weight: bold;
}

.homepage__service-btn:hover {
    box-shadow: 0 6px 20px rgba(24, 102, 148, 0.35);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.homepage__service--secondary {
    animation: fadeInUp 0.6s ease-out backwards;
}

.homepage__service--secondary:nth-child(1) {
    animation-delay: 0.1s;
}

.homepage__service--secondary:nth-child(2) {
    animation-delay: 0.2s;
}

.homepage__service--secondary:nth-child(3) {
    animation-delay: 0.3s;
}

.homepage__service-content::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(24, 102, 148, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(0);
    pointer-events: none;
}

.homepage__service--secondary:hover .homepage__service-content::before {
    opacity: 1;
    transform: scale(1.5);
}


@media(max-width: 1400px) {
    .homepage-advantages-item-text {
        font-size: 14px;
    }
    .homepage-advantages-item-image {
        width: 48px;
    }
}
@media(max-width: 1280px) {
    .homepage__services-carousel {
        width: calc(100% - 100px);
    }
    #microscheme {
        opacity: .1;
    }
    .homepage__advantages-item {
        padding: 25px 20px;
    }
    .homepage__advantages-items.container {
        gap: 16px;
    }
    .homepage__projects-container {
        padding: 0 40px;
    }
}

@media(max-width: 1024px) {
    .homepage__services-carousel {
        padding-right: 0;
        padding-left: 0;
    }

    .homepage__services-carousel {
        width: 100% !important;
    }
    .homepage__services-carousel .homepage__services-arrow {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .homepage__services-carousel .homepage__services-arrow--prev {
        left: 10px;
    }
    
    .homepage__services-carousel .homepage__services-arrow--next {
        right: 20px;
    }
    .homepage__advantages-items.container {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    .homepage__advantages-item {
        width: 320px;
        position: relative;
        flex-basis: unset;
        flex-grow: unset;
    }
    .homepage__projects-contents {
        width: 50%;
        max-width: unset;
        min-width: 320px;
    }
    #out-projects-image {
        width: 100%;
        height: auto;
    }
    .homepage__projects-body {
        align-items: center;
        gap: 32px;
    }
    .homepage__callback .form {
        padding: 35px 25px;
        top: 0;
        margin-right: -40px;
    }
    .homepage__callback .form__input--text, .homepage__callback .form__input--number, .homepage__callback .form__input--select {
        padding: 10px 15px;
    }
    .homepage__callback {
        height: auto;
    }
    #homepage-callback-image {
        object-position: 60% 100%;
    }

}

@media(max-width: 991px) {
    .footer-contacts {
        margin-bottom: 0;
        order: 3;
        width: 50%;
    }
    .footer__nav {
        width: 100%;
        margin-bottom: 25px;
    }
    .footer__nav.footer-social-policy {
        width: 50%;
        order: 4;
    }
    .footer__nav .nav__menu.level-1 {
        margin-right: 0;
        width: 50%;
    }
    .footer-social-policy {
        order: 4;
        width: 50%;
    }
}

@media (max-width: 767px) {
    .homepage__service--secondary:hover {
        transform: translateY(-6px) scale(1.01);
    }
    
    .homepage__service-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    #homepage-callback-inner {
        flex-direction: column;
    }
    #homepage-callback-text {
        width: 100%;
        max-width: 460px;
    }
    .homepage__callback .form {
        margin-right: 0;
        margin-bottom: 40px;
        border-radius: 8px;
    }
    .homepage__projects-body {
        flex-direction: column;
    }
    .homepage__projects-body.homepage__projects-body-reverse {
        flex-direction: column;
    }
    .homepage__projects-contents {
        width: 380px;
    }
    #out-projects-image {
        width: 100%;
        max-width: 500px;
    }
    .homepage__advantages-item {
        width: 250px;
    }
    #homepage-advantages-inner {
        position: relative;
        padding: 30px 0;
    }
    #homepage-advantages-image {
        opacity: .3;
        position: absolute;
        bottom: 0;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .homepage__advantages-item {
        width: 100%;
        margin-bottom: 10px;
    }
    .footer__nav .nav__menu.level-1 {
        width: 100%;
    }
}
@media(max-width: 680px) {
    .homepage__services-carousel .homepage__services-arrow--next {
        display: none !important;
    }
    
    .homepage__services {
        padding-left: 0;
        padding-right: 0;
    }
}
@media(max-width: 480px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        padding: 0 25px;
    }
    .header-image-content .page-header {
    	padding: 0 25px;
    }
    .item-page {
        padding: 25px;
    }
    .homepage__projects-contents .h1-like {
	    margin: 0 0 16px;
    	font-size: 26px;
	}
    .homepage__projects-contents {
        width: 100%;
        padding-left: 15px;
        padding-right: 25px;
    }
    .homepage__projects-body-reverse .homepage__projects-contents {
    	width: 100%;
        padding-left: 25px;
        padding-right: 15px;
    }
    .footer-contacts {
        width: 100%;
        text-align: center;
    }
    .footer-social-policy {
        width: 100%;
        text-align: center;
        margin-top: 35px;
    }
    .footer__contacts, .footer__callback {
        text-align: center;
    }
    #footer-social {
        justify-content: center;
    }
    #homepage-callback-inner {
        padding-right: 0;
        padding-left: 0;
    }
    #homepage-callback-text {
        padding: 0 25px;
    }
    .homepage__callback .form {
        background: unset;
        margin-bottom: 0;
    }
    .homepage__callback .form__accept-terms label {
        flex-wrap: wrap;
    }
    #homepage-promo {
        padding-top: 30px;
        padding-left: 55px;
    }
    .homepage__services {
        padding: 0px;
    }
    .homepage__projects-container {
        padding: 0 25px;
    }
    .homepage__services-carousel .slick-list {
        margin: 0;
    }
    article.homepage__service.homepage__service--secondary {
        padding: 15px 15px;
    }
    .homepage__service-content {
        padding: 0;
    }
    .homepage__services-carousel .homepage__service-slide {
        padding: 0 10px;
    }
    .homepage__services-carousel .slick-list {
        padding: 0px 50px 25px 50px !important;
    }
    .homepage__projects {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .homepage__projects-body.homepage__projects-body-reverse {
        margin-top: 25px;
    }
    .project-gallery__thumbs {
		flex-wrap: wrap;
		justify-content: center;
	}
}
@media(max-width: 380px) {

    .homepage__callback .form__accept-terms a {
        padding-left: 0;
    }
    .homepage__services-carousel .slick-list {
        padding: 0 35px 25px 0 !important;
    }
}

/* Feedback Bottom */
.feedback--fullwidth {
    position: relative;
    width: 100%;
    height: 550px;
    max-width: none;
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    overflow: hidden;
}

.feedback__background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#bottom-callback-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #32323294;
    z-index: 1;
}

.feedback__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
}

.feedback__content {
    text-align: center;
    color: #fff;
}

.feedback--fullwidth .feedback__headline {
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.feedback--fullwidth .feedback__headline i {
    color: #fff;
    font-size: 42px;
    vertical-align: middle;
    margin-right: 12px;
}

.feedback--fullwidth p {
    color: #c9c9c9;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 24px;
}
.btn.btn-bottom-feedback {
    padding: 18px 80px;
    font-size: 16px;
    background: #425475;
    border: unset;
    border-radius: 0px;
    color: #fff;
    text-transform: uppercase;
    overflow: hidden;
    letter-spacing: 1px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn.btn-bottom-feedback:hover,.btn.btn-bottom-feedback:focus {
    outline: none;
    background: #186694;
}
.btn.btn-bottom-feedback:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}
.btn.btn-bottom-feedback:hover:before {
    left: 100%;
}
.form__buttons .btn--blue {
    width: 100%;
    padding: 15px 25px;
    overflow: hidden;
    position: relative;
}
.form__buttons .btn--blue:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}
.form__buttons .btn--blue:hover:before {
    left: 100%;
}
@media (max-width: 768px) {
    .feedback--fullwidth {
        height: 450px;
    }
    
    .feedback__inner {
        padding: 0 20px;
    }
    
    .feedback--fullwidth .feedback__headline {
        font-size: 28px;
    }
    
    .feedback--fullwidth .feedback__headline i {
        font-size: 28px;
    }
    
    .feedback--fullwidth p {
        font-size: 16px;
    }
}

/* Blog grid */
.blog__grid {
    margin-top: 50px;
    margin-bottom: 50px;
}

.blog__item-wrapper {
    margin-bottom: 30px;
}

.blog__item-wrapper .homepage__service {
    height: 100%;
    margin-bottom: 0;
}
#page-layout-blog .text-page__content {
    display: flex;
    overflow: visible;
}
.blog-related-modules {
    flex: 0 0 30%;
    padding-left: 35px;
}
.newsflash {
    float: left;
    width: 100%;
}
.newsflash-item {
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0 25px 25px 25px;
    background: #fff;
    float: left;
    margin-bottom: 25px;
}
.newsflash-item > p {
    font-size: 14px;
}
.newsflash .readmore {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding: 10px 25px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
    letter-spacing: 0.02em;
    background: unset;
    color: #282828;
    text-decoration: unset;
    font-size: 14px;
    line-height: 20px;
    border: 1px solid #b9b9b9;
    -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
}
.newsflash .readmore:hover {
    background: #186694;
    color: #fff;
    border-color: #186694;
}
@media(max-width: 1024px) {
	#page-layout-blog .text-page__content {
    	flex-direction: column;
	}
	.newsflash {
    	flex: 1;
    	display: flex;
        align-items: flex-start;
    	gap: 25px;
    	background: unset;
    	padding:0;
	}
	.newsflash-item {
		width: 33.3333%;
		background: #fff;
        padding: 25px;
        margin-bottom: 0;
	}
	.blog-related-modules {
	    padding-left: 0;
    	margin-top: 25px;
	}
	.newsflash-title {
	    font-size: 16px;
    	margin-top: 0;
	}
	.newsflash-image img {
	    width: 100%;
	    aspect-ratio: 16 / 9;
    	object-fit: cover;
	}
}
@media (max-width: 991px) {
    .blog__item-wrapper {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {

	.newsflash {
		flex-wrap: wrap;
	}
	.newsflash-item {
		width: calc(50% - 12.5px);
	}
	.newsflash-item > p {
	    font-size: 12px;
	    text-overflow: ellipsis;
	    display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 3;
	    overflow: hidden;
	    height: 6rem;
	}
	h3.newsflash-title {
    	text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        height: 3.1rem;
        font-size: 14px;
	}
    .blog__grid {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .blog__item-wrapper {
        margin-bottom: 20px;
    }
}
@media(max-width: 480px) {
	.newsflash-item {
    	width: 100%;
	}
	.newsflash-item > p {
		height: 4rem;
	}
}


/* Статьи */

.styled-content {
	background-color: #ffffff;
	border-radius: 8px;
	line-height: 1.7;
	color: #272D35;
}

.styled-content h2 {
	font-size: 1.65rem;
	line-height: 1.3;
	font-weight: bold;
	margin: 2em 0 1em 0;
	color: #1a1a1a;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #e5e7eb;
}

.styled-content h2:first-child {
	margin-top: 0;
}

.styled-content p {
	margin-bottom: 1.5em;
	font-size: 1rem;
	line-height: 1.7;
	color: #4b5563;
	text-align: justify;
}

.styled-content a {
	color: #186694;
	text-decoration: none;
	transition: color 0.2s ease;
	border-bottom: 1px solid transparent;
}

.styled-content a:hover {
	color: #0d3ba3;
	border-bottom-color: #0d3ba3;
}

.styled-content a[href^="tel:"] {
	color: #186694;
	font-weight: 500;
	white-space: nowrap;
}

.styled-content a[href^="mailto:"] {
	color: #186694;
}

@media (max-width: 767px) {
	.styled-content h2 {
		font-size: 1.4rem;
		margin: 1.5em 0 0.8em 0;
	}

	.styled-content p {
		font-size: 0.95rem;
		text-align: left;
	}
}

/* Cookie Banner */
.cookie-banner--simple {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    background: #ffffffa8;
    backdrop-filter: blur(6px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 11000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner--simple .cookie-banner__text {
    font-size: 15px;
    line-height: 1.6;
    color: #272D35;
    margin-bottom: 16px;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner--simple .cookie-banner__text a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-banner--simple .cookie-banner__text a:hover {
    color: #1c47c5;
    text-decoration: none;
}

.cookie-banner--simple .cookie-banner__buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner--simple .cookie-banner__consent-btn {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(24, 102, 148, 0.2);
    background: #2c2c2c;
    border-color: #2c2c2c;
}

.cookie-banner--simple .cookie-banner__consent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 102, 148, 0.3);
}

.cookie-banner--simple .cookie-banner__consent-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(24, 102, 148, 0.25);
}

@media (max-width: 767px) {
    .cookie-banner--simple {
        padding: 16px;
        border-top-width: 2px;
    }

    .cookie-banner--simple .cookie-banner__text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .cookie-banner--simple .cookie-banner__buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .cookie-banner--simple .cookie-banner__consent-btn {
        width: 100%;
        padding: 11px 24px;
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .cookie-banner--simple {
        padding: 18px;
    }

    .cookie-banner--simple .cookie-banner__text {
        font-size: 14px;
    }
}