@import url(../lib/swiper/swiper-bundle.min.css);

:root{
    --dark-blue: #003264;
    --blue: #004789;
    --light-blue: #009EE3;
    --gray: #7D7D7D;
    --light-gray: #D9D9D9;
    --brightest-gray: #F5F5F5;
    --container-width: 1680px;
    --mobile-gap: 16px;
}
html {
    overflow-x: hidden;
    font-size: 16px;
}
body {
    overflow-x: hidden;
}
*{
    box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
    body {
        padding-top: 60px;
    }
}
input, textarea, select{
    font-size: 1rem;
    line-height: 1em;
    min-height: 0;
    max-width: 100%;
}

details summary{
    cursor: pointer;
}
.swiper{
    overflow: hidden;
    width: 100%;
}

header {
    height: 100px;
    background: #fff;
    overflow: hidden;
}

@media screen and (max-width: 1000px) {
    header {
        display: none;
    }
}

header .wrapper {
    position: relative;
    display: flow-root;
}

header .logotype {
    float: left;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

header .logotype a {
    margin: auto;
}

header .right {
    float: right;
}

header .adress {
    vertical-align: top;
    background: #E9E9E9;
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    float: left;
    line-height: 20px;
    color: #004789;
    padding: 13px 30px;
    position: relative;
}

@media screen and (max-width: 1270px) {
    header .adress {
        font-size: 14px;
        padding: 13px 20px;
    }
}

header .adress:before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    left: -20px;
    height: 0;
    border-top: 46px solid #E9E9E9;
    border-left: 20px solid transparent;
}

header .mail {
    float: left;
    background: #F1F1F1;
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #004789;
    padding: 13px 30px;
    padding-bottom: 17px;
    position: relative;
}

header .mail a {
    color: #004789;
}

@media screen and (max-width: 1270px) {
    header .mail {
        font-size: 14px;
        padding: 13px 20px;
        padding-bottom: 17px;
    }
}

header .mail:before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    left: -20px;
    height: 0;
    border-top: 50px solid #F1F1F1;
    border-left: 20px solid transparent;
}

header .phone {
    float: left;
    background: #E9E9E9;
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #004789;
    padding: 13px 30px;
    padding-bottom: 20px;
    position: relative;
}

header .phone a {
    color: #004789;
}

@media screen and (max-width: 1270px) {
    header .phone {
        font-size: 14px;
        padding: 13px 20px;
        padding-bottom: 20px;
    }
}

header .phone:before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    left: -20px;
    height: 0;
    border-top: 53px solid #E9E9E9;
    border-left: 20px solid transparent;
}

header .phone:after {
    height: 58px;
    width: 400px;
    background: #F1F1F1;
    position: absolute;
    content: "";
    top: 0;
    right: -390px;
    -webkit-transform: skew(20deg);
    transform: skew(20deg);
}

.main-menu {
    background: #004789;
    height: 50px;
    position: relative;
    z-index: 4;
}

@media screen and (max-width: 1000px) {
    .main-menu {
        position: fixed;
        top: 60px;
        height: calc(100vh - 60px);
        z-index: 6;
        -webkit-transition: 0.2s;
        transition: 0.2s;
        width: 100%;
        background: #fff;
        overflow: auto;
        left: -100%;
    }

    .main-menu.open {
        left: 0;
    }
}

.main-menu .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 1000px) {
    .main-menu .wrapper {
        display: block;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding-bottom: 50px;
    }
}

.main-menu li {
    display: block;
    width: 100%;
    height: 50px;
    position: relative;
}

@media screen and (max-width: 1000px) {
    .main-menu li {
        border-bottom: 1px solid #004789;
    }

    .main-menu li:last-child {
        border-bottom: none;
        margin-top: 50px;
    }
}

.main-menu li a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    padding: 15px;
}

@media screen and (max-width: 1270px) {
    .main-menu li a {
        font-size: 14px;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        text-align: center;
        display: block;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1000px) {
    .main-menu li a {
        color: #004789;
    }
}

.main-menu li .sub_top_menu {
    display: none;
}

@media screen and (min-width: 1000px) {
    .main-menu li .sub_top_menu {
        position: absolute;
        left: 50%;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background: #E9E9E9;
        color: #004789;
    }
}

.main-menu li .sub_top_menu a {
    color: #004789;
}

.main-menu li .sub_top_menu a:hover {
    color: #E9E9E9;
    background: #004789;
}

@media screen and (min-width: 1000px) {
    .main-menu li:hover .sub_top_menu {
        display: block;
    }
}

.main-menu .btn-menu {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    background: #fff;
    font-size: 16px;
    line-height: 27px;
    color: #004789;
    position: relative;
    height: 56px;
    top: -3px;
    cursor: pointer;
    height: 56px;
}

@media screen and (max-width: 1270px) {
    .main-menu .btn-menu {
        font-size: 14px;
    }
}

@media screen and (max-width: 1000px) {
    .main-menu .btn-menu {
        background: #004789;
        color: #fff;
    }
}

.main-menu .btn-menu:before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    left: -20px;
    height: 0;
    border-bottom: 56px solid #fff;
    border-left: 20px solid transparent;
}

@media screen and (max-width: 1000px) {
    .main-menu .btn-menu:before {
        border-bottom: 56px solid #004789;
    }
}

.main-menu .btn-menu:after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    right: -20px;
    height: 0;
    border-top: 56px solid #fff;
    border-right: 20px solid transparent;
}

@media screen and (max-width: 1000px) {
    .main-menu .btn-menu:after {
        border-top: 56px solid #004789;
    }
}

.main-banner {
    height: 700px;
    position: relative;
    z-index: 1;
}
.main-banner .swiper-wrapper{
    height: 100%;
}
@media screen and (max-width: 1000px) {
    .main-banner {
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

.main-banner img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
}

.main-banner .wrapper {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-banner .desc {
    margin: auto;
    max-width: 750px;
    text-align: left;
    margin-left: 0;
    padding: 30px 50px 20px 50px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    -webkit-transform: skew(-20deg);
    transform: skew(-20deg);
}

@media screen and (max-width: 1000px) {
    .main-banner .desc {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        width: 100%;
        background: rgba(255, 255, 255, 0);
        padding: 30px;
    }
}

.main-banner .content {
    -webkit-transform: skew(20deg);
    transform: skew(20deg);
}

@media screen and (max-width: 1000px) {
    .main-banner .content {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.main-banner .title {
    font-family: Source Serif Pro;
    font-style: normal;
    white-space: pre-line;
    font-weight: 600;
    font-size: 34px;
    line-height: 43px;
    color: #004789;
}

@media screen and (max-width: 700px) {
    .main-banner .title {
        font-size: 20px;
        color: #fff;
        line-height: 27px;
    }
}

.main-banner .grid-table {
    text-align: center;
    word-spacing: 3px;
    font-size: 0;
    padding-top: 19px;
}

.main-banner .grid-table .elem {
    margin: 5px 0;
    padding: 0 10px;
    display: inline-block;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 1.5;
    color: #004789;
}

.main-banner .grid-table .elem a {
    font-size: 16px;
}

.main-banner .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 700px) {
    .main-banner .desc .grid-table .elem {
        color: #7eb4d6;
    }

    .main-banner img {
        opacity: 0.6;
    }
}


@media screen and (min-width: 700px) {
    .main-banner .grid-table {
        text-align: left;
    }

    .main-banner .grid-tabe .elem {
        display: block;
        font-family: Montserrat;
        font-style: normal;
        font-weight: 600;
        width: fit-content;
        font-size: 16px;
        line-height: 1.5;
        margin: 20px 0 !important;
        color: #004789;
    }
}

@media screen and (max-width: 600px) {
    .main-banner {
        height: 400px;
        background-color: #000;
        padding-top: 0;
        padding-bottom: 0;
    }

    .main-banner .desc {
        width: 100%;
        height: 100%;
        padding: 10px 15px;
    }

    .main-banner .desc .title {
        font-family: Montserrat;
        color: #fff;
        font-size: 21px;
        text-align: center;
        line-height: 1.3;
        font-weight: 900;
        text-shadow: none;
    }

    .main-banner .grid-tabe .elem {
        font-weight: 600;
        font-size: 16px;
        color: #fff;
    }
}

.main-banner .grid-tabe .elem {
    display: block;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    width: fit-content;
    text-align: center;
    font-size: 19px;
    line-height: 1.5;
    margin: 20px auto;
    color: #000;
}

@media screen and (min-width: 480px) {
    .main-banner .grid-tabe .elem {
        color: #fff;
    }
}

.main-banner .grid-tabe .elem a {
    color: #fff;
    padding: 10px 30px;
    background: #004789;
    -webkit-transform: skew(-20deg);
    transform: skew(-20deg);
    display: block;
}

.main-banner .grid-tabe .elem a span {
    -webkit-transform: skew(20deg);
    transform: skew(20deg);
    display: block;
}

.main-banner .grid-tabe:after {
    content: "";
    width: 100%;
    display: inline-block;
}


@media screen and (max-width: 700px) {
    .main-banner .grid-table .elem {
        width: 48%;
        padding-bottom: 10px;
    }

    .main-banner .grid-table .elem:last-child {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 550px) {
    .main-banner .grid-table .elem {
        width: 100%;
    }
}

.main-banner .grid-table .elem a {
    color: #fff;
    padding: 10px 30px;
    background: #004789;
    -webkit-transform: skew(-20deg);
    transform: skew(-20deg);
    display: block;
    display: inline-block;
}

.main-banner .grid-table .elem a span {
    -webkit-transform: skew(20deg);
    transform: skew(20deg);
    display: block;
}

.main-banner .grid-table:after {
    content: "";
    width: 100%;
    display: inline-block;
}

.section-advant {
    padding-top: 70px;
    overflow: hidden;
    padding-bottom: 70px;
}

@media screen and (max-width: 1000px) {
    .section-advant {
        padding-top: 30px;
        padding-bottom: 0px;
    }
}

.section-advant .title {
    background: #004789;
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1000px) {
    .section-advant .title {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-advant .title:after {
    height: 100%;
    width: 600px;
    right: -500px;
    content: "";
    top: 0;
    background: #004789;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-advant .title:after {
        display: none;
    }
}

.section-advant h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    display: block;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
}

@media screen and (max-width: 1000px) {
    .section-advant h2 {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-advant .left-content {
    background: #fff;
    width: 55%;
    margin-top: -25px;
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
    padding-top: 65px;
    padding-bottom: 25px;
    padding-right: 200px;
}

@media screen and (max-width: 1000px) {
    .section-advant .left-content {
        width: 100%;
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        margin-top: 0;
        background: none;
        padding-bottom: 0;
        padding-right: 0px;
    }
}

.section-advant .left-content:after {
    height: 100%;
    width: 600px;
    left: -500px;
    content: "";
    top: 0;
    background: #fff;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-advant .left-content:after {
        display: none;
    }
}

.section-advant .left-content .content {
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1000px) {
    .section-advant .left-content .content {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-advant .left-content .title-s {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 15px;
}

.section-advant .left-content ul {
    margin-bottom: 25px;
}

.section-advant .left-content ul li {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.section-advant .left-content ul li:before {
    content: "";
    position: absolute;
    bottom: 7px;
    width: 0;
    left: 0px;
    height: 0;
    border-bottom: 8px solid #333;
    border-right: 7px solid transparent;
}

.section-advant .left-content p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
}

.section-advant .left-content .advantage {
    height: 70px;
    margin-top: 20px;
    width: 400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
}

@media screen and (max-width: 500px) {
    .section-advant .left-content .advantage {
        width: 100%;
    }
}

.section-advant .left-content .advantage .elem {
    text-align: center;
}

.section-advant .left-content .advantage .elem .name {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
}

@media screen and (max-width: 500px) {
    .section-advant .left-content .advantage .elem .name {
        font-size: 12px;
    }
}

.section-advant .wrapper {
    position: relative;
}

.section-advant .right {
    position: absolute;
    padding-top: 60px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 55%;
    top: 0;
    right: 0;
}

@media screen and (max-width: 1000px) {
    .section-advant .right {
        position: relative;
        width: 100%;
    }
}

.section-advant .right .swiper-wrapper {
    height: 100%;
    width: 100%;
}

.section-advant .right .swiper-slide {
    height: 500px;
    overflow: hidden;
}

.section-advant .right .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 480px) {
    .section-advant .right .swiper-slide {
        height: 300px;
    }
}

.section-advant .right a {
    margin: auto;
    margin-left: 0;
    display: block;
    position: relative;
    padding-top: 56.25%;
    width: 100%;
}

.right-item {
    width: 100%;
    height: 100%;
}

.right-item .image {
    height: auto;
    overflow: hidden;
}

.right-item .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-advant .right a .preview {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    top: 0;
    left: 0;
}

.section-advant .right a .play {
    height: 80px;
    width: 80px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    left: 50%;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 5px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.section-advant .right a .play .triangle-right {
    width: 0;
    margin: auto;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 30px solid #209BD8;
    border-bottom: 15px solid transparent;
}


.left a .preview {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    top: 0;
    left: 0;
}

.left a .play {
    height: 80px;
    width: 80px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    left: 50%;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 5px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.left a .play .triangle-right {
    width: 0;
    margin: auto;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 30px solid #209BD8;
    border-bottom: 15px solid transparent;
}


.section-service {
    padding-top: 20px;
    overflow: hidden;
    padding-bottom: 70px;
}

@media screen and (max-width: 1000px) {
    .section-service {
        padding-top: 30px;
        padding-bottom: 0px;
    }
}

.section-service .title {
    background: #004789;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1000px) {
    .section-service .title {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-service .title:after {
    height: 100%;
    width: 600px;
    left: -500px;
    content: "";
    top: 0;
    background: #004789;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-service .title:after {
        display: none;
    }
}

.section-service :where(h2, .h2) {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    display: block;
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
}

@media screen and (max-width: 1000px) {
    .section-service :where(h2, .h2) {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-service .service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-top: 40px;
}

@media screen and (max-width: 1000px) {
    .section-service .service-list {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
        grid-gap: 15px;
    }
}

@media screen and (max-width: 400px) {
    .section-service .service-list.page-service-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.section-service .service-list .elem {
    height: 250px;
    display: block;
    position: relative;
}

.section-service .service-list .elem:before {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
}

.section-service .service-list .elem .preview {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-service .service-list .elem .more {
    font-family: Source Serif Pro;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    position: absolute;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    right: 10px;
    color: #fff;
    text-decoration: none;
    z-index: 3;
    bottom: 10px;
    opacity: 0;
    border-bottom: 1px solid #fff;
}

.section-service .service-list .elem .name {
    -webkit-transform: skew(-20deg);
    transform: skew(-20deg);
    position: absolute;
    width: 250px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 70px;
    z-index: 3;
    background: rgba(233, 233, 233, 1);
    bottom: 0;
    left: -13px;
    padding: 5px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 550px) {
    .section-service .service-list .elem .name {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        left: 0;
        width: 100%;
        padding: 15px;
        height: auto;
    }
}

.section-service .service-list .elem .name span {
    -webkit-transform: skew(20deg);
    transform: skew(20deg);
    display: block;
    margin: auto;
    margin-left: 0;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #000000;
}

@media screen and (max-width: 550px) {
    .section-service .service-list .elem .name span {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        font-size: 14px;
    }
}

.section-service .service-list .elem:hover:before {
    opacity: 1;
}

.section-service .service-list .elem:hover .name {
    bottom: 50px;
}

.section-service .service-list .elem:hover .more {
    opacity: 1;
}

.section-service .service-list-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 55px;
    margin-top: 40px;
}

@media screen and (max-width: 1000px) {
    .section-service .service-list-2 {
        margin-top: 20px;
        grid-gap: 15px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 750px) {
    .section-service .service-list-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 450px) {
    .section-service .service-list-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.section-service .service-list-2 .elem {
    padding-top: 56.25%;
    display: block;
    position: relative;
}

.section-service .service-list-2 .elem:before {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
}

.section-service .service-list-2 .elem .preview {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-service .service-list-2 .elem .more {
    font-family: Source Serif Pro;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    position: absolute;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    right: 10px;
    color: #fff;
    text-decoration: none;
    z-index: 3;
    bottom: 10px;
    opacity: 0;
    border-bottom: 1px solid #fff;
}

.section-service .service-list-2 .elem .name {
    -webkit-transform: skew(-20deg);
    transform: skew(-20deg);
    position: absolute;
    width: calc(100% + 20px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 35px;
    z-index: 3;
    background: #E9E9E9;
    top: -35px;
    left: -10px;
    padding: 0px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 1000px) {
    .section-service .service-list-2 .elem .name {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        height: auto;
        left: 0;
        width: 100%;
        padding: 15px;
    }
}

.section-service .service-list-2 .elem .name span {
    -webkit-transform: skew(20deg);
    transform: skew(20deg);
    display: block;
    margin: auto;
    margin-left: 0;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    color: #000000;
}

@media screen and (max-width: 1000px) {
    .section-service .service-list-2 .elem .name span {
        font-size: 14px;
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-service .service-list-2 .elem:hover:before {
    opacity: 1;
}

.section-service .service-list-2 .elem:hover .name {
    bottom: 50px;
}

.section-service .service-list-2 .elem:hover .more {
    opacity: 1;
}

.section-service .service-list-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px;
    margin-top: 40px;
}

@media screen and (max-width: 1000px) {
    .section-service .service-list-3 {
        grid-gap: 15px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 450px) {
    .section-service .service-list-3 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.section-service .service-list-3 .elem {
    padding-top: 56.25%;
    display: block;
    position: relative;
}

.section-service .service-list-3 .elem:before {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
}

.section-service .service-list-3 .elem .play {
    height: 80px;
    width: 80px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    left: 50%;
    z-index: 3;
    top: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 5px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.section-service .service-list-3 .elem .play .triangle-right {
    width: 0;
    margin: auto;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 30px solid #209BD8;
    border-bottom: 15px solid transparent;
}

.section-service .service-list-3 .elem .preview {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-service .service-list-3 .elem .more {
    font-family: Source Serif Pro;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    position: absolute;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    right: 10px;
    color: #fff;
    text-decoration: none;
    z-index: 3;
    bottom: 10px;
    opacity: 0;
    border-bottom: 1px solid #fff;
}

.section-service .service-list-3 .elem .name {
    -webkit-transform: skew(-20deg);
    transform: skew(-20deg);
    position: absolute;
    width: calc(100% + 20px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 40px;
    z-index: 3;
    background: #E9E9E9;
    bottom: -40px;
    left: -10px;
    padding: 0px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 1000px) {
    .section-service .service-list-3 .elem .name {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        padding: 15px;
        width: 100%;
        height: auto;
        left: 0;
    }
}

.section-service .service-list-3 .elem .name span {
    -webkit-transform: skew(20deg);
    transform: skew(20deg);
    display: block;
    margin: auto;
    margin-left: 0;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
}

@media screen and (max-width: 1000px) {
    .section-service .service-list-3 .elem .name span {
        font-size: 14px;
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-service .service-list-3 .elem:hover:before {
    opacity: 1;
}

.section-service .service-list-3 .elem:hover .more {
    opacity: 1;
}

.section-event {
    padding-top: 20px;
    overflow: hidden;
    padding-bottom: 70px;
}

@media screen and (max-width: 1000px) {
    .section-event {
        padding-top: 30px;
        padding-bottom: 0;
    }
}

.section-event .title {
    background: #209BD8;
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1000px) {
    .section-event .title {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-event .title:after {
    height: 100%;
    width: 600px;
    right: -500px;
    content: "";
    top: 0;
    background: #209BD8;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-event .title:after {
        display: none;
    }
}

.section-event :where(h2, .h2) {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    display: block;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
}

@media screen and (max-width: 1000px) {
    .section-event :where(h2, .h2) {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-event .content {
    background: #EEEEEE;
    width: 100%;
    margin-top: -25px;
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
    padding-top: 65px;
    padding-bottom: 25px;
}

@media screen and (max-width: 1000px) {
    .section-event .content {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        margin-top: 0;
        padding-top: 20px;
        padding-bottom: 20px;
        background: none;
    }
}

.section-event .content:after {
    height: 100%;
    width: 600px;
    left: -500px;
    content: "";
    top: 0;
    background: #EEEEEE;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-event .content:after {
        display: none;
    }
}

.section-event .content .row {
    max-width: 750px;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}

@media screen and (max-width: 1000px) {
    .section-event .content .row {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

@media screen and (max-width: 800px) {
    .section-event .content .row {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
    }
}

.section-event .content .row .contact-cell {
    background: #004789;
    padding: 15px;
    text-align: center;
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
}

.section-event .content .row .contact-cell a {
    display: inline-block;
    color: #fff;
    margin-top: 5px;
    border-bottom: 1px solid #fff;
}

.section-event .content .row-2 {
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    margin: auto;
    display: grid;
    max-width: 90%;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1000px) {
    .section-event .content .row-2 {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        max-width: 100%;
    }
}

@media screen and (max-width: 650px) {
    .section-event .content .row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .section-event .content .row-2 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.section-event .content .row-2 a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 15px;
    border: 3px solid #004789;
    color: #000000;
}

@media screen and (max-width: 1000px) {
    .section-event .content .row-2 a {
        font-size: 14px;
        text-align: center;
    }
}

.section-video {
    padding-top: 20px;
    overflow: hidden;
    padding-bottom: 130px;
}

@media screen and (max-width: 1000px) {
    .section-video {
        padding-top: 30px;
        padding-bottom: 0;
    }
}

.section-video .title {
    background: #004789;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1000px) {
    .section-video .title {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-video .title:after {
    height: 100%;
    width: 600px;
    left: -500px;
    content: "";
    top: 0;
    background: #004789;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-video .title:after {
        display: none;
    }
}

.section-video h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    display: block;
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
}

@media screen and (max-width: 1000px) {
    .section-video h2 {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-video .video-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    margin-top: 40px;
    position: relative;
}

@media screen and (max-width: 1000px) {
    .section-video .video-content {
        margin-top: 20px;
        grid-gap: 15px;
    }
}

@media screen and (max-width: 600px) {
    .section-video .video-content {
        grid-template-columns: repeat(1, 1fr);
    }
}

.section-video .video-content:before {
    width: 95px;
    height: 130px;
    left: -120px;
    background: url("/img/left-before.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    top: 0%;
}

.section-video .video-content:after {
    width: 95px;
    height: 130px;
    right: -120px;
    background: url("/img/right-after.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    top: 0%;
}

.section-video .video-content a {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.section-video .video-content a .preview {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    top: 0;
    left: 0;
}

.section-video .video-content a .play {
    height: 80px;
    width: 80px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    left: 50%;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 5px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.section-video .video-content a .play .triangle-right {
    width: 0;
    margin: auto;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 30px solid #209BD8;
    border-bottom: 15px solid transparent;
}

.section-portfolion {
    overflow: hidden;
}

@media screen and (max-width: 1000px) {
    .section-portfolion {
        padding-top: 30px;
    }
}

.section-portfolion .wrapper {
    display: flow-root;
    position: relative;
}

.section-portfolion .left-sec {
    position: absolute;
    height: 100%;
    width: 52%;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 50px;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .left-sec {
        position: relative;
        width: 100%;
        padding-top: 0;
    }
}

.section-portfolion .left-sec .cont-row {
    height: 220px;
    position: relative;
    top: -55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .left-sec .cont-row {
        top: 0;
        height: auto;
        padding-top: 15px;
        padding-bottom: 20px;
    }
}

.section-portfolion .left-sec .cont-row .middle {
    margin: auto;
    width: 100%;
    padding-right: 100px;
    -webkit-transform: skew(15deg);
    transform: skew(15deg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .left-sec .cont-row .middle {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        padding-right: 0;
        grid-gap: 15px;
    }
}

@media screen and (max-width: 600px) {
    .section-portfolion .left-sec .cont-row .middle {
        grid-template-columns: repeat(1, 1fr);
    }
}

.section-portfolion .left-sec .cont-row .middle a {
    height: 55px;
    background: #004789;
    display: block;
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    padding-top: 18px;
    padding-left: 75px;
    color: #FFFFFF;
    position: relative;
}

.section-portfolion .left-sec .cont-row .middle a img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
}

.section-portfolion .left-sec .content-l {
    margin: auto;
    background: #EEEEEE;
    width: 100%;
    height: 220px;
    -webkit-transform: skew(-15deg);
    transform: skew(-15deg);
    padding-bottom: 25px;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .left-sec .content-l {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        height: auto;
        background: none;
        padding-bottom: 0;
    }
}

.section-portfolion .left-sec .content-l .title {
    background: #209BD8;
    -webkit-transform: skew(35deg);
    transform: skew(35deg);
    position: relative;
    right: 100px;
    z-index: 3;
    top: -25px;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .left-sec .content-l .title {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        top: 0;
        right: 0;
    }
}

.section-portfolion .left-sec .content-l .title:after {
    height: 100%;
    width: 600px;
    left: -500px;
    content: "";
    top: 0;
    background: #209BD8;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .left-sec .content-l .title:after {
        display: none;
    }
}

.section-portfolion .left-sec .content-l h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    display: block;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
}

@media screen and (max-width: 1000px) {
    .section-portfolion .left-sec .content-l h2 {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-portfolion .left-sec .content-l:after {
    height: 100%;
    z-index: -1;
    width: 700px;
    left: -600px;
    content: "";
    top: 0;
    background: #EEEEEE;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .left-sec .content-l:after {
        display: none;
    }
}

.section-portfolion .right-sec {
    float: right;
    width: 50%;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .right-sec {
        width: 100%;
    }
}

.section-portfolion .right-sec .title {
    background: #004789;
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .right-sec .title {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-portfolion .right-sec .title:after {
    height: 100%;
    width: 600px;
    right: -500px;
    content: "";
    top: 0;
    background: #004789;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .right-sec .title:after {
        display: none;
    }
}

.section-portfolion .right-sec h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    display: block;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
}

@media screen and (max-width: 1000px) {
    .section-portfolion .right-sec h2 {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-portfolion .right-sec .content {
    background: #fff;
    width: 100%;
    height: 100%;
    margin-top: -25px;
    -webkit-transform: skew(-15deg);
    transform: skew(-15deg);
    padding-top: 65px;
    padding-bottom: 25px;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .right-sec .content {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        background: none;
        padding-bottom: 0;
        margin-top: 0;
        padding-top: 20px;
    }
}

.section-portfolion .right-sec .content:after {
    height: 100%;
    width: 700px;
    right: -600px;
    z-index: -1;
    content: "";
    top: 0;
    background: #fff;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .right-sec .content:after {
        display: none;
    }
}

.section-portfolion .right-sec .content .row {
    -webkit-transform: skew(15deg);
    transform: skew(15deg);
    margin: auto;
    padding-left: 100px;
}

@media screen and (max-width: 1000px) {
    .section-portfolion .right-sec .content .row {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        padding-left: 0;
    }
}

.section-portfolion .right-sec .content .title-s {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 15px;
}

.section-portfolion .right-sec .content ul {
    margin-bottom: 25px;
}

.section-portfolion .right-sec .content ul li {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.section-portfolion .right-sec .content ul li:before {
    content: "";
    position: absolute;
    top: 7px;
    width: 0;
    left: 0px;
    height: 0;
    border-bottom: 8px solid #333;
    border-right: 7px solid transparent;
}

.section-photos {
    padding-top: 90px;
    overflow: hidden;
    padding-bottom: 100px;
}

@media screen and (max-width: 1000px) {
    .section-photos {
        padding-top: 0px;
        padding-bottom: 0;
        margin-top: 30px;
    }
}

.section-photos .title {
    background: #004789;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1000px) {
    .section-photos .title {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-photos .title:after {
    height: 100%;
    width: 600px;
    left: -500px;
    content: "";
    top: 0;
    background: #004789;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-photos .title:after {
        display: none;
    }
}

.section-photos h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    display: block;
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
}

@media screen and (max-width: 1000px) {
    .section-photos h2 {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-photos .result-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 50px;
}

@media screen and (max-width: 1000px) {
    .section-photos .result-list {
        margin-top: 20px;
        grid-gap: 15px;
    }
}

@media screen and (max-width: 750px) {
    .section-photos .result-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .section-photos .result-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.section-photos .result-list a {
    height: 240px;
    display: block;
}

@media screen and (max-width: 500px) {
    .section-photos .result-list a {
        height: 200px;
    }
}

.section-photos .result-list a img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-advant-2 {
    position: relative;
    display: flow-root;
    overflow: hidden;
    margin-bottom: 90px;
}

@media screen and (max-width: 1000px) {
    .section-advant-2 {
        padding-top: 30px;
        margin-bottom: 0;
    }
}

.section-advant-2 .title {
    background: #004789;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1000px) {
    .section-advant-2 .title {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-advant-2 .title:after {
    height: 100%;
    width: 600px;
    left: -500px;
    content: "";
    top: 0;
    background: #004789;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-advant-2 .title:after {
        display: none;
    }
}

.section-advant-2 h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    display: block;
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
}

@media screen and (max-width: 1000px) {
    .section-advant-2 h2 {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-advant-2 .left {
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 45%;
    z-index: 2;
}

@media screen and (max-width: 1000px) {
    .section-advant-2 .left {
        display: none;
    }
}

.section-advant-2 .left img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.section-advant-2 .right {
    float: right;
    background: #fff;
    width: 70%;
    padding: 50px;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    position: relative;
}

@media screen and (max-width: 1000px) {
    .section-advant-2 .right {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        width: 100%;
        padding: 15px;
    }
}

.section-advant-2 .right:after {
    height: 100%;
    width: 700px;
    right: -600px;
    z-index: -1;
    content: "";
    top: 0;
    background: #fff;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-advant-2 .right:after {
        display: none;
    }
}

.section-advant-2 .right .row {
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
    margin-left: 200px;
}

@media screen and (max-width: 1000px) {
    .section-advant-2 .right .row {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        margin-left: 0;
    }
}

.section-advant-2 .right .title-s {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 15px;
}

.section-advant-2 .right ul li {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.section-advant-2 .right ul li:before {
    content: "";
    position: absolute;
    top: 7px;
    width: 0;
    left: 0px;
    height: 0;
    border-bottom: 8px solid #333;
    border-right: 7px solid transparent;
}

.section-video-2 {
    padding-top: 90px;
    overflow: hidden;
    padding-bottom: 100px;
}

@media screen and (max-width: 1000px) {
    .section-video-2 {
        padding-top: 30px;
        padding-bottom: 0;
    }
}

.section-video-2 .title {
    background: #004789;
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1000px) {
    .section-video-2 .title {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-video-2 .title:after {
    height: 100%;
    width: 600px;
    right: -500px;
    content: "";
    top: 0;
    background: #004789;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .section-video-2 .title:after {
        display: none;
    }
}

.section-video-2 h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    display: block;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
}

@media screen and (max-width: 1000px) {
    .section-video-2 h2 {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
    }
}

.section-video-2 .result-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

@media screen and (max-width: 1000px) {
    .section-video-2 .result-list {
        margin-top: 20px;
        grid-gap: 15px;
    }
}

@media screen and (max-width: 800px) {
    .section-video-2 .result-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 450px) {
    .section-video-2 .result-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.section-video-2 .result-list a {
    height: 240px;
    display: block;
    position: relative;
}

@media screen and (max-width: 800px) {
    .section-video-2 .result-list a {
        height: 200px;
    }
}

.section-video-2 .result-list a .play {
    height: 80px;
    width: 80px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    left: 50%;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 5px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.section-video-2 .result-list a .play .triangle-right {
    width: 0;
    margin: auto;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 30px solid #209BD8;
    border-bottom: 15px solid transparent;
}

.section-video-2 .result-list a img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}

.no-bottom {
    padding-bottom: 0;
    margin-bottom: 0;
}

footer {
    margin: 20px 0 0 0;
    padding-top: 60px;
    padding-bottom: 30px;
    background: #fff;
}

@media screen and (max-width: 1000px) {
    footer {
        padding-top: 20px;
        padding-bottom: 20px;
        margin-top: 30px;
    }
}

footer .wrapper {
    display: flow-root;
}

footer .logotype {
    float: left;
    width: 30%;
}

@media screen and (max-width: 1000px) {
    footer .logotype {
        width: 100%;
        margin-bottom: 30px;
    }
}

footer .contact-info {
    float: left;
    width: 30%;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}

@media screen and (max-width: 1000px) {
    footer .contact-info {
        width: 50%;
    }
}

@media screen and (max-width: 700px) {
    footer .contact-info {
        width: 100%;
        margin-bottom: 30px;
    }
}

footer .contact-info .line {
    margin-bottom: 10px;
    color: #004789;
}

footer .contact-info .line a {
    font-weight: 800;
    color: #004789;
}

footer .menu-footer {
    display: grid;
    float: right;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 40px;
}

@media screen and (max-width: 1000px) {
    footer .menu-footer {
        float: left;
        grid-gap: 10px 20px;
    }
}

footer .menu-footer li {
    display: block;
}

footer .menu-footer .sub_top_menu {
    display: none;
}

footer .menu-footer a {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #004789;
}

.slider-item-photo {
    margin-top: 40px;
    position: relative;
}

@media screen and (max-width: 1000px) {
    .slider-item-photo {
        margin-top: 20px;
    }
}

.slider-item-photo .nav-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 50px;
    width: 50px;
}

.slider-item-photo .nav-arrow.prev {
    transition: 0.2s;
    left: -70px;
    background: url("/img/prev.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.slider-item-photo .nav-arrow.next {
    right: -70px;
    background: url("/img/next.svg");
    transition: 0.2s;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.slider-item-photo .slider-photo {
    overflow: hidden;
}

.slider-item-photo .nav-arrow.next:hover {
    cursor: pointer;
    opacity: 0.5;
}

.slider-item-photo .nav-arrow.prev:hover {
    cursor: pointer;
    opacity: 0.5;
}

.slider-item-photo img {
    height: 220px;
    object-fit: cover;
    object-position: center
}

.breadcrums {
    padding-top: 20px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: rgba(96, 96, 96, 0.6);
}

.breadcrums a {
    color: #004789;
}

.section-calculate {
    margin-bottom: 70px;
}

@media screen and (max-width: 1000px) {
    .section-calculate {
        margin-bottom: 0;
    }
}

.section-calculate .row {
    background: #fff;
    font-weight: 500;
    padding: 50px;
}

.title-top {
    padding-top: 20px;
}

@media screen and (max-width: 1000px) {
    .title-top {
        padding-top: 0;
    }
}

.title-top h1 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 18px;
    color: #000000;
}

.title-top h1.center-title {
    text-align: center;
}

.page-content {
    padding-top: 50px;
}

@media screen and (max-width: 1000px) {
    .page-content {
        padding-top: 30px;
    }
}

.page-content h1 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 18px;
    color: #000000;
    margin-bottom: 40px;
}

.page-content .opisanie {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

@media screen and (max-width: 850px) {
    .page-content .opisanie {
        grid-template-columns: repeat(1, 1fr);
    }
}

.page-content .about-text {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
}

.page-content .video {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 30px;
}

@media screen and (max-width: 1000px) {
    .page-content .video {
        grid-gap: 15px;
    }
}

@media screen and (max-width: 450px) {
    .page-content .video {
        grid-template-columns: repeat(1, 1fr);
    }
}

.page-content .video a {
    display: block;
    position: relative;
    width: 100%;
    height: 280px;
}

@media screen and (max-width: 450px) {
    .page-content .video a {
        height: 200px;
    }
}

.page-content .video a .preview {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.page-content .video a .play {
    height: 80px;
    width: 80px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    left: 50%;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 5px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.page-content .video a .play .triangle-right {
    width: 0;
    margin: auto;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 30px solid #209BD8;
    border-bottom: 15px solid transparent;
}

.page-content .half-sec {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.page-content .half-sec ul {
    margin-bottom: 50px;
    margin-top: 50px;
}

.page-content .half-sec ul li {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.page-content .half-sec ul li:before {
    content: "";
    position: absolute;
    bottom: 7px;
    width: 0;
    left: 0px;
    height: 0;
    border-bottom: 8px solid #333;
    border-right: 7px solid transparent;
}

.page-content .before-after {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
}

@media screen and (max-width: 850px) {
    .page-content .before-after {
        grid-gap: 15px;
    }
}

@media screen and (max-width: 450px) {
    .page-content .before-after {
        grid-template-columns: repeat(1, 1fr);
    }
}

.page-content .before-after .img {
    position: relative;
}

.page-content .before-after .img .titler {
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    width: 100%;
    position: absolute;
    height: 30px;
    background: #E9E9E9;
    top: -15px;
    padding-top: 5px;
}

.page-content .before-after .img .titler span {
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
    color: #004789;
    display: block;
    text-align: center;
}

.page-content .job {
    margin-top: 50px;
}

.page-content .job h3 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 22px;
}

.page-content .job ul {
    margin-bottom: 25px;
}

.page-content .job ul li {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.page-content .job ul li:before {
    content: "";
    position: absolute;
    bottom: 7px;
    width: 0;
    left: 0px;
    height: 0;
    border-bottom: 8px solid #333;
    border-right: 7px solid transparent;
}

.page-content .photo-section-page {
    margin-top: 30px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}

@media screen and (max-width: 1000px) {
    .page-content .photo-section-page {
        grid-gap: 15px;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 500px) {
    .page-content .photo-section-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mobile-header {
    display: none;
    height: 60px;
    padding-left: 15px;
    background: #fff;
    padding-right: 15px;
}

@media screen and (max-width: 1000px) {
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* display: block; */
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 5;
        left: 0;
    }
}

.mobile-header .logotype {
    height: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.mobile-header .logotype a {
    margin: auto;
}

.mobile-header .logotype a img {
    height: 40px;
}

.mobile-header .burgerm {
    height: 60px;
    width: 30px;
    display: inline-block;
    vertical-align: top;
    /* margin-right: 15px; */
    margin-left: 15px;
    position: relative;
}

.mobile-header .burgerm span {
    position: absolute;
    top: 50%;
    height: 2px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #004789;
    width: 100%;
}

.mobile-header .burgerm:after {
    position: absolute;
    top: 18px;
    content: "";
    height: 2px;
    background: #004789;
    width: 100%;
}

.mobile-header .burgerm:before {
    position: absolute;
    bottom: 18px;
    content: "";
    height: 2px;
    background: #004789;
    width: 100%;
}

.mobile-header .phone {
    height: 40px;
    margin-left: 15px;
    /* top: 10px; */
    width: 40px;
    background: #004789;
    /* position: absolute; */
    right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
}

.mobile-header .phone a {
    margin: auto;
}

.mobile-header .phone img {
    height: 20px;
    width: 20px;
}

.mobile-header .adress {
    height: 40px;
    /* top: 10px; */
    /* position: absolute; */
    /* right: 75px; */
    display: -webkit-box;
    margin: 0 10px;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 650px) {
    .mobile-header .adress {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .mobile-header .logotype a img {
        height: 25px;
    }
}

.mobile-header .adress span {
    margin: auto;
    color: #004789;
    font-size: 14px;
    font-weight: 800;
}


.video.lazyload:after {
    content: "";
    height: 80px;
    width: 80px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    left: 50%;
    top: 50%;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 5px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.video.lazyload:before {
    content: "";
    position: absolute;
    left: calc(50% + 4px);
    z-index: 3;
    top: 50%;
    pointer-events: none;
    width: 0;
    margin: auto;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 30px solid #209BD8;
    border-bottom: 15px solid transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.navigation-slider {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 3;
    display: flow-root;
    padding: 0 20px;
}

.navigation-slider .prev {
    height: 40px;
    width: 40px;
    background-color: #fff;
    float: left;
    background-image: url(/img/prev.svg);
    background-position: center;
    background-size: 80%;
    border-radius: 50%;
    cursor: pointer;
    background-repeat: no-repeat;
}

.navigation-slider .next {
    height: 40px;
    width: 40px;
    background-color: #fff;
    float: right;
    background-image: url(/img/next.svg);
    background-position: center;
    background-size: 80%;
    cursor: pointer;
    border-radius: 50%;
    background-repeat: no-repeat;
}

/**
.titlewerde{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0px;
    font-size: 2rem;
}
 */

.titlewerde {
    display: none;
}


@media screen and (max-width: 500px) {
    .navigation-slider {
        display: none;
    }
}

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


.link-btn-sec {
    text-align: center;
    margin-top: 30px;
}

.link-btn-sec a {
    color: #fff;
    background: #209BD8;
    padding: 15px 25px;
    font-size: 19px;
    font-weight: 500;
    display: inline-block;
}

@media screen and (max-width: 500px) {
    .link-btn-sec a {
        font-size: 15px;
    }
}


.section-service .service-list-3 .elem:after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    top: 50%;
    margin-top: -35px;
    border-radius: 50%;
    background-color: #209BD8;
    background-image: url("/img/players.svg");
}


.grid * {
    box-sizing: border-box;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
    padding: 20px 0;
}

.grid li {
    --swiper-theme-color: #007aff;
    --swiper-navigation-size: 44px;
    text-size-adjust: 100%;
    list-style: none;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

@media only screen and (max-width: 1200px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.grid-item {
    width: 100%;
    height: 100%;
}

.grid-item .image {
    height: 400px;
    overflow: hidden;
}

.grid-item .info {
    position: relative;
    height: calc(100% - 200px);
    padding: 16px 14px 80px 14px;
}

.grid-item .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info h3 {
    color: #337AB7;
    font-size: 218px;
    font-weight: normal;
    margin: 0;
    text-align: center;
}

.info-text p {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 10px;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.grid-item-video {
    width: 200%;
    height: 100%;
}

.grid-item-video .video-content {
    height: 320px;
    overflow: hidden;
}

.grid-item-video .video-content img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 480px) {
    .grid-item-video {
        width: 100%;
    }

    .grid-item-video .video-content {
        height: auto;
    }
}

.grid .right {
    float: right;
    background: #fff;
    width: 100%;
    padding: 0 0 0 50px;
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    position: relative;
}

@media screen and (max-width: 1000px) {
    .grid .right {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        width: 100%;
        padding: 15px;
    }
}

.grid .right:after {
    height: 150%;
    width: 1500px;
    right: -600px;
    z-index: -1;
    content: "";
    top: -50px;
    background: #fff;
    position: absolute;
}

@media screen and (max-width: 1000px) {
    .grid .right:after {
        display: none;
    }
}

.grid .right .row {
    -webkit-transform: skew(25deg);
    transform: skew(25deg);
    margin-left: -10px;
}

@media screen and (max-width: 1000px) {
    .grid .right .row {
        -webkit-transform: skew(0deg);
        transform: skew(0deg);
        margin-left: 0;
    }
}

.grid .right .title-s {
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 15px;
}

.grid .right .row ul li {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.grid .right .row ul li:before {
    content: "";
    position: absolute;
    top: 7px;
    width: 0;
    left: 0px;
    height: 0;
    border-bottom: 8px solid #333;
    border-right: 7px solid transparent;
}

.grid .section-type-cards__item-desc-title {
    font-size: 18px;
    line-height: 1.3;
}


.grid .section-type-cards__item-img {
    height: 455px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.grid .section-type-cards__item-img img {
    width: 100%;
    height: 450px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.grid .section-type-cards__item-img .navigation-sawa .btn {
    height: 40px;
    width: 40px;
    background-color: #fff;
    cursor: pointer;
    border-radius: 50%;
}

.grid .section-type-cards__item-img .navigation-sawa {
    position: absolute;
    left: 0;
    top: 50%;
    height: 40px;
    width: 100%;
    z-index: 2;
    padding: 0 20px;
    margin-top: -20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width: 480px) {
    .grid .section-type-cards__item-img {
        height: 450px;
    }
}

.slides-dor {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.slides-dor input {
    display: none;
}

.slide-container-dor {
    display: block;
}

.slides-dor .slide-dor {
    top: 0;
    opacity: 0;
    height: 100%;
    display: block;
    position: absolute;
    transform: scale(0);
    transition: all 0.7s ease-in-out;
}

.slides-dor .slide-dor img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-dor label {
    width: 50px;
    height: 50px;
    top: 50%;
    display: none;
    border-radius: 50%;
    position: absolute;
    opacity: 1;
    z-index: 9;
    cursor: pointer;
    transition: opacity 0.2s;
    color: #5199FF;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    text-shadow: 0px 0px 15px rgb(119, 119, 119);
}

.slide-dor:hover + .nav-dor label {
    opacity: 0.5;
}

.nav-dor label:hover {
    opacity: 1;
}

.nav-dor .next {
    right: 0;
}

input:checked + .slide-container-dor .slide-dor {
    opacity: 1;

    transform: scale(1);

    transition: opacity 1s ease-in-out;
}

input:checked + .slide-container-dor .nav-dor label {
    display: block;
}

@media only screen and (max-width: 480px) {
    .slides-dor .slide-dor img {
        width: 100%;
    }

    .slides-dor .slide-dor {
        width: 100%;
        height: 200px;
    }

    .nav-dor label {
        width: 35px;
        height: 35px;
        top: 40%;
    }

    .slides-dor {
        margin: 0 0 200px 0;
    }
}


.slide-dor-2 {
    display: grid;
    grid-template-columns: repeat(4, 100%);
    overflow: hidden;
    scroll-behavior: smooth;
}

.slide-dor-2 .dorogi {
    width: 100%;
    height: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, auto);
    margin: 1rem 0;
}

.slide-dor-2 .dorogi .dorogi-img {
    height: auto;
    overflow: hidden;
}

.slide-dor-2 .dorogi .dorogi-img img {
    transition: transform 280ms ease-in-out;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-dor-2 .dorogi a {
    position: absolute;
    color: #000;
    text-decoration: none;
    font-size: 35px;
    top: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    text-align: center;
    z-index: 1;
}

.slide-dor-2 .dorogi a:nth-of-type(1) {
    top: 50%;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
}

.slide-dor-2 .dorogi a:nth-of-type(2) {
    top: 50%;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 480px) {
    .slide-dor-2 .dorogi a:nth-of-type(1) {
        top: 5%;
        bottom: 0;
        left: 0;
    }

    .slide-dor-2 .dorogi a:nth-of-type(2) {
        top: 5%;
        bottom: 0;
        right: 0;
    }
}


.arrow-6 {
    margin: 0;
}

.arrow-6 svg {
    position: relative;
    top: 25%;
    width: 25px;
    height: auto;
    margin: 0;
    cursor: pointer;
    overflow: visible;
}

.arrow-6 svg polygon,
.arrow-6 svg path {
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    fill: #337AB7;
}

.arrow-6 svg:hover polygon,
.arrow-6 svg:hover path {
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
    fill: #000;
}

.arrow-6 svg:hover .arrow-6-pl {
    animation: arrow-6-anim 1s cubic-bezier(0.2, 1, 0.3, 1) infinite;
}

.arrow-6 svg:hover .arrow-6-pl-fixed {
    animation: arrow-6-fixed-anim 1s cubic-bezier(0.2, 1, 0.3, 1) infinite;
}

@keyframes arrow-6-anim {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    5% {
        transform: translateX(-0.1rem);
    }
    100% {
        transform: translateX(1rem);
        opacity: 0;
    }
}

@keyframes arrow-6-fixed-anim {
    5% {
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .arrow-6 svg {
        width: 20px;
    }
}


.blog-wrapper {
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.blog-wrapper .blog-card {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    max-width: 280px;
    margin: 5px;
    background: #fff;
    border: 1px solid #5199FF;
    text-align: center;
    cursor: pointer;
}

.blog-wrapper .blog-card:hover {
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}

.blog-wrapper .blog-card:hover .card-img img {
    opacity: 0.8;
}

.blog-wrapper .blog-card .card-img {
    position: relative;
    text-align: center;
    background: #5199FF;
    height: 200px;
    overflow: hidden;
}

.blog-wrapper .blog-card .card-img img {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    max-height: 190px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-wrapper .blog-card .card-text {
    padding: 5px 15px 20px;
    line-height: 1.5;
    font-weight: 400;
    margin: 30px 0 0;
}

.article-node-473 .section-advant-2 .left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.article-node-473 .section-type-cards__item-img {
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .article-node-473 .section-advant-2 .left {
        position: relative;
        margin-top: 20px;
        width: 100%;
    }
}

.button-links {
    margin: 25px auto;
    display: block;
    width: fit-content;
    background-color: #004789;
    color: #fff;
    font-weight: bold;
    padding: 18px 32px;
}

.button-links:hover {
    background-color: #209BD8;
}


.hero {
    padding: 50px 0;
    position: relative;
    top: -20px;
    left: -350px;
    width: 160%;
    height: 100%;
    background-size: cover;
    z-index: -1;
    background-color: #fff;
}

@media (max-width: 480px) {
    .hero {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

table.iksweb {
    text-decoration: none;
    border-collapse: collapse;
    width: 100%;
    text-align: left;
}

table.iksweb th {
    font-weight: normal;
    font-size: 16px;
    color: #ffffff;
    background-color: #079CE3;
}

table.iksweb td {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

table.iksweb td, table.iksweb th {
    white-space: pre-wrap;
    padding: 10px 30px;
    line-height: 13px;
    vertical-align: middle;
    border: 1px solid #E6E7E8;
}

table.iksweb table.iksweb tr:hover {
    background-color: #EAE8E8
}

table.iksweb tr:hover td {
    color: #000;
    cursor: pointer;
}

.mobile-table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

table.iksweb th:nth-child(odd) {
    background: #337AB7;
}

table.iksweb tr:nth-child(even) {
    background: #F8F8F8;
}

@media (max-width: 480px) {
    table.iksweb {
        border-collapse: none;
    }

    table.iksweb td {
        font-size: 13px;
        line-height: 1.1;
    }

    .mobile {
        text-align: center;
    }
}

.ramka {
    background-color: #E9E9E9;
    padding: 10px 5px 10px 20px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
}


.acor-container {
    margin: 20px 0;
}

.acor-container .acor-body {
    width: calc(100% - 40px);
    margin: 0 auto;
    height: 0;
    color: rgba(0, 0, 0, 0);
    background-color: #fff;
    line-height: 1.5;
    padding: 0 30px;
    box-sizing: border-box;
    transition: color 0.5s, padding 0.5s;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
}

.acor-container .acor-body p {
    margin: 0 0 10px;
}

.acor-container label {
    cursor: pointer;
    background-color: #209BD8;
    display: block;
    padding: 15px 20px;
    width: 100%;
    color: #fff;
    font-weight: 600;
    box-sizing: border-box;
    z-index: 100;
    font-size: 18px;
    margin: 0 0 5px;
    transition: color .35s;
}

.acor-container label:hover {
    color: #FFF;
}

.acor-container input {
    display: none;
}

.acor-container label:before {
    content: '\276F';
    float: right;
}

.acor-container input:checked + label {
    background-color: #209BD8;
    color: #FFF;
}

.acor-container input:checked + label:before {
    transition: transform .35s;
    transform: rotate(90deg);
}

.acor-container input:checked + label + .acor-body {
    height: auto;
    margin-top: -5px;
    color: #000;
    padding: 20px 30px 10px;
}

.atuin-btn {
    display: inline-flex;
    text-decoration: none;
    position: relative;
    font-size: 14px;
    line-height: 10px;
    padding: 10px 30px;
    color: #FFF;
    font-weight: bold;
    background: #337AB7;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    top: 0;
    left: 23%;
}

.atuin-btn:hover,
.atuin-btn:active,
.atuin-btn:focus {
    color: #FFF;
}

.atuin-btn:before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    left: 0;
    border-right: 50px solid transparent;
    border-top: 50px solid #2D6B9F;
    transition: transform 0.5s;
    transform: translateX(-100%);
    z-index: -1;
}

.atuin-btn:hover:before,
.atuin-btn:active:before,
.atuin-btn:focus:before {
    transform: translateX(0);
}

.main-banner .grid-tabe .elem {
    color: #004789;
}

.article-card{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 200px 1fr;
    background: white;
    color: black;
}
.article-card_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-card_content{
    padding: 1em;
    display: grid;
    grid-template-columns: 100%;
}
.article-card_title{
    font-weight: 700;
}
.article-card_txt{
    font-size: 14px;
    margin: .5em 0 0 0;
}

footer .r-active-wrapper {
    display: flex;
    margin-top: 20px;
    justify-content: flex-end;
    font-size: 14px;
}

footer .r-active-wrapper a {
    color: #004789;
}

@media screen and (max-width: 600px) {
    .atuin-btn {
        top: -5%;
        left: 17%;
    }

    .section-advant h2, .section-advant-2 h2, .section-video h2, .section-photos h2, .section-event h2, .section-service :where(h2, .h2) {
        font-size: 16px;
    }

    .matomba_iframe iframe {
        min-height: 470px !important;
    }

    .section-advant .left-content, .section-advant .right {
        padding-top: 20px;
    }

    .section-advant .right--mob {
        padding-top: 70px;
    }

    .main-banner .grid-tabe .elem {
        color: #fff;
        font-size: 16px;
    }

    .acor-container label {
        font-size: 16px;
    }

    .acor-container .acor-body {
        font-size: 14px;
    }

    .main-banner .grid-tabe .elem {
        color: #ffffff !important;
    }

    .section-advant .vid-desc {
        position: relative;
        bottom: 0;
    }

    .section-advant .right a .preview {
        object-fit: contain;
    }

    .main-banner .desc .grid-table .elem, .main-banner .grid-table .elem {
        color: #ffffff;
        font-weight: normal;
    }
}