@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --fontFamily: 'Montserrat', sans-serif;
    --white: #FFFFFF;
    --text: #FFFFFF;
    --bg: #212832;
    --bgopacity: rgba(33, 40, 50, 0.3);
    --bg2: #383f49;
    --link: #FFFFFF;
    --linkHover: #FFFFFF;
    --line: #23465a;
    --btn: #3a3d46;
}

body {
    background-color: var(--bg);
    font-family: var(--fontFamily);
    color: var(--text);
}

a {
    font-family: var(--fontFamily);
    text-decoration: none;
    color: var(--link);
}

a:hover {
    color: var(--linkHover);
    cursor: pointer;
}

h1, h2, h3, h4, h5 {
    font-family: var(--fontFamily);
    font-weight: 600;
}

ul {
    list-style: none;
    padding-left: 0;
}

label {
    font-weight: 400;
    font-size: 16px;
}

input, textarea, select {
    border: 0;
    background-color: var(--bg2) !important;
    color: #FFF !important;
    border: 0 !important;

}

iframe, video {
    max-width: 100%;
}

.noscrol{
    overflow: hidden;
}

.form-control:focus {
    color: #FFF !important;
    background-color: var(--bg2) !important;
    border: 0;
    outline: 0;
    box-shadow: 0 0 3px 1px rgb(137, 137, 137);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #383f49;
    --bs-btn-border-color: #383f49;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #3a3d46;
    --bs-btn-hover-border-color: #3a3d46;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #1b275a;
    --bs-btn-disabled-border-color: #1b275a;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px;
    }
}

header {
    height: 80px;
    padding: 10px 0;
    width: 100%;
    z-index: 9;
    background: var(--bg);
}

header.fixed {
    padding-top: 10px;
    transition: .3s;
    background: var(--bg);
    position: fixed;
    top: 0;
}


header .phone {
    padding: 20px 0;
    font-size: 18px;
}

footer {
    padding: 40px 0;
    font-size: 12px;
    color: var(--white);
}

.mainForm {
    padding: 60px 0;
}

.mainForm p {
    margin: 0;
}

.mainForm form textarea {

    height: 88px;
}

.mainForm form a {
    font-size: 14px;
}

.title {
    padding: 60px 0;
}

#logo {
    font-size: 24px;
    line-height: 20px;
    font-weight: 600;
}

#logo span {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
}

.mainMenu {
    padding-top: 15px;
}


.mainMenu li {
    padding: 5px 0px;
    margin: 0px 10px;
}


.mainMenu a {
    font-size: 14px;
}

.mainMenu .hovermenu {
    position: absolute;
    left: 0;
    width: 100%;
    display: none;
    z-index: 999;
    padding: 20px 0;
    margin-top: -2px;
    color: #000000;
    font-size: 14px;
    line-height: 22px;
    text-transform: none;
    font-family: Montserrat, Arial;
    font-weight: 400;
    transition: .5s;
}

.mainMenu .hovermenu .container-xxl {
    background: var(--white);
    transition: .5s;
    padding: 40px;

}

.mainMenu li:hover > .hovermenu {
    display: block;
    transition: .5s;
}

.mainVideo {
    height: 600px;
    overflow: hidden;
    background: url("/static/images/videobg.jpg") no-repeat center;
    background-size: cover;
}

.mainVideo .mainVideo__info {
    content: "";
    width: 100%;
    height: 600px;
    display: block;
    position: absolute;
    background: rgb(21 48 62 / 40%);
    text-align: center;
    justify-items: center;
    align-items: center;
    display: flex;
}
.mainVideo .mainVideo__info * {
    text-align: center;
    width: 100%;
}

.mainTextAndFoto {
    padding: 60px 0;
}

.mainTextAndFoto .image {
    height: 340px;
    padding: 40px 0;
    width: 80%;
    margin: 0 auto 20px auto;
    position: relative;

}

.mainTextAndFoto .image img {
    object-fit: cover;
    width: 100%;
    height: 260px;
    position: relative;
}

.mainTextAndFoto .mainTextAndFoto_image_border {
    content: "";
    width: 80%;
    height: 340px;
    display: block;
    position: absolute;
    text-align: center;
    justify-items: center;
    align-items: center;
    border: 2px solid var(--bg2);
    margin-top: -40px;
    margin-left: 10%;
}

.mainVideo video {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.mainSlider__item {
    height: 500px;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.mainSlider__item__info {
    width: 100%;
    height: 500px;
    padding-bottom: 80px;
    position: absolute;
    background: rgb(21 48 62 / 70%);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-left: 40px;
}

.mainSlider__item__info:hover {
    background: transparent;
    transition: .3s;
}


.mainSliderProjects__item {
    height: 500px;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.mainSliderProjects__item__info {
    width: 100%;
    height: 500px;
    padding-bottom: 80px;
    /*background: #0000004a;*/
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-left: 40px;

}

.mainSliderProjects__item__info:hover {
    background: transparent;
    transition: .3s;
}

.mainSliderProjects__button {
    width: 70%;
    padding: 5px 0;
    background: var(--bg);
    text-align: center;
    margin-top: 20px;
}

@media screen and (max-width: 1000px) {

    .mainSlider__item, .mainSliderProjects__item {
        height: 500px;
    }

    .mainTextAndFoto {
        text-align: center;
    }
}


.listArticle__item {
    height: 500px;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.listArticle__item.small {
    height: 200px;
}

.listArticle__button {
    width: 70%;
    padding: 5px 0;
    background: rgba(33, 40, 50, 0.8);
    text-align: center;
    margin: 10px 0 0px 0;
}


.pagination {
}

.pagination__link,
[class*='pagination__link-'] {
    display: inline-block;
    padding: 7px 10px;
    text-decoration: none;
    color: var(--white);
    margin-right: 10px;
}

.pagination__link-middle {
    margin: 0 10px;
}

.pagination__link-active {
    background: var(--bg2);
    color: #FFF;
    border-radius: 4px;
}

.pagination__link-disable{
    background: #FFF;
    color: #9a9a9a;
    border-radius: 4px;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    margin-top: 10px
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--bg2);
    color: #FFF;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--bg2);
}

.p404 {
    padding: 160px 0;
}

.p404 h1 {
    font-size: 290px;
    line-height: 160px;
    color: #CCCCCC;
    padding: 60px 0 20px 0;
}

.p404 h2 {
    font-size: 40px;
    line-height: 50px;
    color: #CCCCCC;
    margin-bottom: 40px;
}

.news_article {
    padding: 0 0 60px 0;
}

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

.news_list h1, .news_article h1 {
    padding: 40px 0  40px 0 ;
}

.news_article h2 {
    padding-bottom: 40px;
}



@media (max-width: 1000px) {
    .owl-item.active .mainSliderProjects__item__info {
        background: transparent;
        color: #FFF;
    }

    .owl-item.active .mainSlider__item__info {
        background: transparent;
    }

    .mainTextAndFoto {
        padding: 60px 0!important;
    }

    .mainForm .title {
        padding: 20px 0;
    }

    .p404 {
        padding: 0px 0;
    }

    .p404 h1 {
        font-size: 100px;
        line-height: 100px;
    }

    .p404 h2 {
        font-size: 30px;
        line-height: 40px;
    }
}
@media (max-width: 500px) {

    .mainTextAndFoto {
        padding: 60px 0 60px 0!important;
    }
}

.article__docs {}
.article__docs__list {
    display: flex;
    flex-wrap: wrap
}

.article__docs__item__name {
    font-size: 16px;
    line-height: 20px;
    float: left;
    width: calc(100% - 230px);
    padding-top: 10px;
}

.article__docs__item__date {
    font-size: 14px;
    line-height: 14px;
    color: #5e5e5e;
    padding-top: 5px;
}

.article__docs__item__icon {
    width: 50px;
    float: left;
    padding-top: 10px;
}

.article__docs__item__button {
    width: 180px;
    float: left;
    text-align: right;
}

.article__docs__item__button .btn {
    padding: 8px 20px;
}

@media screen and (max-width: 1000px) {
    .article__docs__item {
        width: 100%;
        padding: 20px 0;
    }

    .article__docs__item:nth-child(2n) {
        width: 100%;
        padding-left: 0;
    }

}

@media screen and (max-width: 500px) {

    .article__docs__item__button {
        width: 100%;
        float: none;
        text-align: left;
    }

    .article__docs__item__name {
        font-size: 16px;
        line-height: 20px;
        float: left;
        width: calc(100% - 50px);
        padding-top: 10px;
    }
}


.mainStatistic {
    margin: 60px 0 60px 0;
}
.mainStatistic__num {
    font-size: 60px;
    text-align:center;
}

.mainStatistic__num span {
    font-weight: 700;
}

.mainStatistic__title {
    text-align:center;
}

@media screen and (max-width: 1000px) {

    .mainStatistic {
        margin: 60px 0 60px 0;
    }
}

#mobileNavWrap {
    opacity: 0;
    background: var(--bg);
    position: absolute;
    min-height: 100%;
    height: fit-content;
    left: -100%;
    z-index: 99997;
    top: 0px;
    position: fixed;
    transition: .2s;
    max-height: 100vh;
}


#mobileNavWrap.activeMenu {
    opacity: 1!important;
    left: 0!important;
}

.mobileNavWrap_info {
    padding: 40px;
}

.mobileNavList {
    padding-left: 40px;
}

.mobileNavList ul {
    padding-left: 20px;
    padding-top: 10px;
}


.mobileNavList li {
    padding: 10px;
    font-weight: 500;
}

.gallery_carousel {

}

.gallery_carousel .owl-item a {
    display: block;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 500px;

}

.mainImageTile {
    text-align: center;
    margin: 60px 0;
    padding-top: 60px;
}


.mainImageTile_image {
    height: 240px;
    padding: 40px 0;
    width: 80%;
    margin: 0 auto 20px auto;
    position: relative;

}

.mainImageTile_image img {
    object-fit: cover;
    width: 100%;
    height: 160px;
    position: relative;
}

.mainImageTile__border {
    content: "";
    width: 80%;
    height: 240px;
    display: block;
    position: absolute;
    text-align: center;
    justify-items: center;
    align-items: center;
    border: 2px solid var(--bg2);
    margin-top: -40px;
    margin-left: 10%;
}

.mainImageTile__title {
    margin-bottom: 20px;
}

.mainImageTile__text {
    padding: 0 40px;
}


@media screen and (max-width: 700px) {
    .mainImageTile__text {
        padding: 0 20px;
    }

    .mainImageTile .col-12 {
        padding-bottom: 40px;
    }
}