@import "../fonts/Museo-Sans-Cyr/stylesheet.css";

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100%;
    min-width: 320px;
    font-family: "Museo Sans Cyrl 300", sans-serif;
    font-weight: 300;
    font-style: normal;
}

body {
    background-color: #092f64;
    color: #FFF;
    touch-action: none;
    overflow: hidden;
}

a {
    color: #FFF;
}
a:hover, a:active, a:focus {
    text-decoration: none;
    color: #FFF;
    filter: drop-shadow(0 0 5px #FFF);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
a:focus {
    outline:0;
}

.link-btn-1 {
    font-family: "Museo Sans Cyrl 500", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1.2rem;
    letter-spacing: .05rem;
    position: relative;
    padding-right: 1.2rem;
}
.link-btn-1:after {
    content: '';
    position: absolute;
    right: 0;
    top: 2px;
    bottom: 0;
    margin: auto;
    font-size: 1rem;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAATCAYAAABC3CftAAAACXBIWXMAAAsSAAALEgHS3X78AAAAXUlEQVQoFZ3S7QmAMAyE4XMjR3D/LdxAJ3glguBHkwsGml8PpU1OwAyoOtE2B6Ph4IVKeEcpfKMhHKEPzNADTpw0rV3S4lDU2rqp9abfv7NzshO3u7MpaOWpTiboAE7D95DTXSHgAAAAAElFTkSuQmCC');
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: contain;
    width: 20px;
    height: 12px;
}

.link-btn-1:hover,
.link-btn-1:focus,
.link-btn-1:active {
    text-decoration: underline;
}

#page-wrapper {
    height: 100%;
    width: 100%;
    min-height: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    touch-action: none;
}

#page-wrapper > section {
    position: relative;
    display: flex;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-color: #001C44;
    color: #FFF;
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    touch-action: auto;
}

#page-wrapper > section > div {
    height: 100%;
    width: 100%;
    min-height: 100%;
}

#header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    font-family: "Museo Sans Cyrl 700", sans-serif;
    font-weight: 600;
    font-style: normal;
}

#header-section .nav-item {
    position: relative;
    padding: 0;
}

#header-section .nav-item > a {
    padding: 0 .5rem;
    display: block;
    text-transform: uppercase;
    font-family: "Museo Sans Cyrl 700", sans-serif;
    font-weight: 600;
    font-style: normal;
}

#header-section .lang-top-menu > .nav-item > a {
    font-family: "Museo Sans Cyrl 100", sans-serif;
    font-weight: 200;
    font-style: normal;
}

#header-section .nav-item > a:before {
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 1rem;
    background: #FFF;
}

#header-section .nav-item:last-child > a:before {
    content: unset;
}

#header-section .top_menu > .nav-item > a {
    padding: 0 2rem;
}

#header-section .nav-item.active > a {
    font-family: "Museo Sans Cyrl 900", sans-serif;
    font-weight: bold;
    font-style: normal;
}

#header-section .nav-item:last-child {
    border-right: 0;
}

#header-section .logo-wrapper-dummy {
    display: block;
    width: 100%;
    height: 100px;
}

#page-scroll_bar {
    position: fixed;
    height: 100%;
    top: 0;
    right: 34px;
    z-index: 10;
}

@media (max-width: 992px) {
    #page-scroll_bar {
        right: 24px;
    }
}

#page-scroll_bar ul {
    position: relative;
}

#page-scroll_bar ul, #page-scroll_bar li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}

#page-scroll_bar li {
    width: 6px;
    height: 50px;
    /*background: rgba(255, 255, 255, 0.5);*/
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#page-scroll_bar li.active {
    background: rgba(255, 255, 255, 1);
}

#page-scroll_bar li:hover, #page-scroll_bar li:active, #page-scroll_bar li:focus {
    background: rgba(255, 255, 255, 1);
}

#page-scroll_bar li:first-child {
    margin-top: 0;
}

#page-scroll_bar li > a {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {

    #page-scroll_bar li {
        margin-top: 10px;
        height: 40px;
    }

    #page-scroll_bar {
        right: 20px;
    }

}

.logo-wrapper, .logo-big-wrapper {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper:hover, .logo-wrapper:active, .logo-wrapper:focus {
    text-decoration: none;
    color: #FFF;
    filter: drop-shadow(0 0 1px #FFF);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.logo-big-wrapper:hover, .logo-big-wrapper:active, .logo-big-wrapper:focus {
    text-decoration: none;
    color: #FFF;
    filter: drop-shadow(0 0 5px #FFF);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.logo-wrapper > .logo-image {
    background: url("../images/logo.png") no-repeat center center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 80px;
    height: 80px;
    display: inline-block;
}
.logo-big-wrapper > .logo-image {
    background: url("../images/logo.png") no-repeat center center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 250px;
    height: 250px;
    display: inline-block;
}

.logo-wrapper > .logo-text {
    margin-left: 14px;
    display: inline-block;
    text-transform: uppercase;
    width: 150px;
    height: 100%;
    line-height: .85rem;
    font-family: "Museo Sans Cyrl 300", sans-serif;
    font-size: .9rem;
    font-weight: 300;
    font-style: normal;
}
.logo-big-wrapper > .logo-text {
    margin-left: 2.6rem;
    display: inline-block;
    text-transform: uppercase;
    height: 100%;
    line-height: 2.5rem;
    font-size: 2.5rem;
    width: 370px;
    font-family: "Museo Sans Cyrl 500", sans-serif;
    font-weight: normal;
    font-style: normal;
    letter-spacing: .1rem;
}

#header-section .logo-wrapper {
    position: absolute;
    z-index: 2;
}

@media (max-width: 992px) {

    .logo-big-wrapper {
        padding-top: 100px;
    }
}

@media (max-width: 768px) {

    .logo-big-wrapper > .logo-text {
        margin-left: 1.5rem;
        display: inline-block;
        text-transform: uppercase;
        height: 100%;
        line-height: 2rem;
        font-size: 2rem;
        width: 100%;
    }
}

@media (max-width: 576px) {

    .logo-wrapper, .logo-big-wrapper {
        display: flex;
        text-align: center;
    }

    .logo-big-wrapper {
        display: block;
        text-align: center;
        padding-top: 100px;
    }

    #header-section .logo-wrapper {
        position: relative;
        text-align: left;
        justify-content: left;
    }

    .logo-big-wrapper > .logo-image {
        display: block;
        background-position: center center;
        height: 150px;
        width: 100%;
    }

    .logo-big-wrapper > .logo-text {
        padding-top: 2rem;
        margin-left: 0;
        display: block;
        text-transform: uppercase;
        height: 100%;
        line-height: 1.5rem;
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
    }
}

.section-text-1 {
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 3rem;
    font-family: "Museo Sans Cyrl 500", sans-serif;
    font-weight: normal;
    font-style: normal;
    letter-spacing: .1rem;
}

@keyframes board-1-section-text-1-animate-1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes board-1-section-text-1-animate-1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes board-1-section-text-1-animate-1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes board-1-section-text-1-animate-1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#board-1 .section-text-1 {
    opacity: 0;
}

#board-1.animation-enabled .section-text-1 {
    opacity: 0;
    -webkit-animation: board-1-section-text-1-animate-1 1s 2s;
    -o-animation: board-1-section-text-1-animate-1 1s 2s;
    animation: board-1-section-text-1-animate-1 1s 2s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.section-text-2 {
    text-transform: uppercase;
    font-size: 3rem;
    line-height: 3rem;
    font-family: "Museo Sans Cyrl 700", sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: .2rem;
}
@media (max-width: 568px) {
    .section-text-2 {
        font-size: 2rem;
        line-height: 2rem;
    }
}

.section-text-3 {
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-family: "Museo Sans Cyrl 500", sans-serif;
    font-weight: normal;
    font-style: normal;
    letter-spacing: .1rem;
}

.section-text-4 {
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 2rem;
    font-family: "Museo Sans Cyrl 700", sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: .2rem;
}

.section-text-5 {
    font-size: .9rem;
    line-height: 1rem;
    font-family: "Museo Sans Cyrl 300", sans-serif;
    font-weight: normal;
    font-style: normal;
}

.section-text-6 {
    font-size: .8rem;
    line-height: .8rem;
    font-family: "Museo Sans Cyrl 300", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #004E93;
}

.section-text-block-1 {
    width: 100%;
    background: rgba(0, 28, 68, .8);
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-family: "Museo Sans Cyrl 100", sans-serif;
    font-weight: 200;
    font-style: normal;
    letter-spacing: 0;
}

@media (max-width: 768px) {
    .section-text-block-1 {
        width: 100%;
    }
}

@media (max-width: 568px) {
    .section-text-block-1 {
        width: 100%;
    }
}

.section-btn-1 {
    background-color: #001C44;
    color: #FFF;
    font-size: 1.2rem;
    line-height: 1.2rem;
    font-family: "Museo Sans Cyrl 500", sans-serif;
    font-weight: normal;
    font-style: normal;
    padding: 1rem 5rem;
    -webkit-border-radius: 30px 30px;
    -moz-border-radius: 30px 30px;
    border-radius: 30px 30px;
    border: 0;
}
.section-btn-1.outline {
    border: 1px solid #FFF;
}
.section-btn-2 {
    background-color: #FFF;
    color: #001C44;
    font-size: 1.2rem;
    line-height: 1.2rem;
    font-family: "Museo Sans Cyrl 700", sans-serif;
    font-weight: 600;
    font-style: normal;
    padding: 1.2rem 2.4rem;
    -webkit-border-radius: 30px 30px;
    -moz-border-radius: 30px 30px;
    border-radius: 30px 30px;
    border: 0;
}

.section-next-btn {
    display: block;
    width: 100%;
    padding: 1rem 0 2rem 0;
    text-decoration: none;
}

.section-next-btn > .section-next-btn-image {
    background: url("../images/section-next-btn.png") no-repeat center center;
    -webkit-background-size: contain;
    background-size: contain;
    display: inline-block;
    width: 80px;
    height: 50px;
}

@media (max-width: 576px) {

    .section-text-1 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .section-next-btn {
        padding: 1rem 0;
    }
}

.section-next-btn:hover,
.section-next-btn:active,
.section-next-btn:focus {
    text-decoration: none;
    color: #FFF;
    filter: drop-shadow(0 0 5px #FFF);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#page-loader {
    position: fixed;
    z-index: 1000000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #001C44;
}

#page-loader .logo-big-wrapper {
    padding-top: 0;
    filter: none;
}

/* Animation Keyframes*/
@keyframes page-loader-logo-animation-1 {
    0% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -ms-transform: scale(.5);
        -o-transform: scale(.5);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, .5));
    }
    50% {
        transform: scale(.25);
        -webkit-transform: scale(.25);
        -moz-transform: scale(.25);
        -ms-transform: scale(.25);
        -o-transform: scale(.25);
        filter: drop-shadow(0 0 75px #FFF);
    }
    100% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -ms-transform: scale(.5);
        -o-transform: scale(.5);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, .5));
    }
}
@-moz-keyframes page-loader-logo-animation-1 {
    0% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -ms-transform: scale(.5);
        -o-transform: scale(.5);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, .5));
    }
    50% {
        transform: scale(.25);
        -webkit-transform: scale(.25);
        -moz-transform: scale(.25);
        -ms-transform: scale(.25);
        -o-transform: scale(.25);
        filter: drop-shadow(0 0 75px #FFF);
    }
    100% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -ms-transform: scale(.5);
        -o-transform: scale(.5);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, .5));
    }
}
@-webkit-keyframes page-loader-logo-animation-1 {
    0% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -ms-transform: scale(.5);
        -o-transform: scale(.5);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, .5));
    }
    50% {
        transform: scale(.25);
        -webkit-transform: scale(.25);
        -moz-transform: scale(.25);
        -ms-transform: scale(.25);
        -o-transform: scale(.25);
        filter: drop-shadow(0 0 75px #FFF);
    }
    100% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -ms-transform: scale(.5);
        -o-transform: scale(.5);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, .5));
    }
}
@-o-keyframes page-loader-logo-animation-1 {
    0% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -ms-transform: scale(.5);
        -o-transform: scale(.5);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, .5));
    }
    50% {
        transform: scale(.25);
        -webkit-transform: scale(.25);
        -moz-transform: scale(.25);
        -ms-transform: scale(.25);
        -o-transform: scale(.25);
        filter: drop-shadow(0 0 75px #FFF);
    }
    100% {
        transform: scale(.5);
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -ms-transform: scale(.5);
        -o-transform: scale(.5);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, .5));
    }
}

#page-loader .logo-big-wrapper > .logo-image {
    transform: scale(.5);
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    -ms-transform: scale(.5);
    -o-transform: scale(.5);
    animation: page-loader-logo-animation-1 2s 1;
    -moz-animation: page-loader-logo-animation-1 2s 1;
    -webkit-animation: page-loader-logo-animation-1 2s 1;
    -o-animation: page-loader-logo-animation-1 2s 1;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* Animation Keyframes*/
@keyframes board-1-logo-image-animation-1 {
    0% {
        -webkit-transform: scale(.5) translate3d(200px, 0, 0);
        -moz-transform: scale(.5) translate3d(200px, 0, 0);
        -ms-transform: scale(.5) translate3d(200px, 0, 0);
        -o-transform: scale(.5) translate3d(200px, 0, 0);
        transform: scale(.5) translate3d(200px, 0, 0);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1) translate3d(200px, 0, 0);
        -moz-transform: scale(1) translate3d(200px, 0, 0);
        -ms-transform: scale(1) translate3d(200px, 0, 0);
        -o-transform: scale(1) translate3d(200px, 0, 0);
        transform: scale(1) translate3d(200px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1) translate3d(0, 0, 0);
        -moz-transform: scale(1) translate3d(0, 0, 0);
        -ms-transform: scale(1) translate3d(0, 0, 0);
        -o-transform: scale(1) translate3d(0, 0, 0);
        transform: scale(1) translate3d(0, 0, 0);
    }
}
@keyframes board-1-logo-image-animation-2 {
    0% {
        -webkit-transform: scale(.5) translate3d(0, 0, 0);
        -moz-transform: scale(.5) translate3d(0, 0, 0);
        -ms-transform: scale(.5) translate3d(0, 0, 0);
        -o-transform: scale(.5) translate3d(0, 0, 0);
        transform: scale(.5) translate3d(0, 0, 0);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1) translate3d(0, 0, 0);
        -moz-transform: scale(1) translate3d(0, 0, 0);
        -ms-transform: scale(1) translate3d(0, 0, 0);
        -o-transform: scale(1) translate3d(0, 0, 0);
        transform: scale(1) translate3d(0, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1) translate3d(-163px, 0, 0);
        -moz-transform: scale(1) translate3d(-163px, 0, 0);
        -ms-transform: scale(1) translate3d(-163px, 0, 0);
        -o-transform: scale(1) translate3d(-163px, 0, 0);
        transform: scale(1) translate3d(-163px, 0, 0);
    }
}
@keyframes board-1-logo-image-animation-3 {
    0% {

    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: scale(1.5);
    }
}
@keyframes board-1-logo-text-animation-1 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-130px, 0, 0);
        -moz-transform: translate3d(-130px, 0, 0);
        -ms-transform: translate3d(-130px, 0, 0);
        -o-transform: translate3d(-130px, 0, 0);
        transform: translate3d(-130px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes board-1-logo-text-animation-2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(130px, 0, 0);
        -moz-transform: translate3d(130px, 0, 0);
        -ms-transform: translate3d(130px, 0, 0);
        -o-transform: translate3d(130px, 0, 0);
        transform: translate3d(130px, 0, 0);
    }
}
@keyframes board-1-logo-text-animation-3 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#board-1 .logo-big-wrapper {
    position: relative;
}


#board-1 .logo-big-wrapper > .logo-image {
    /*
    position: absolute;
    opacity: 0;
    -webkit-transform: scale(.5) translate3d(0, 0, 0);
    -moz-transform: scale(.5) translate3d(0, 0, 0);
    -ms-transform: scale(.5) translate3d(0, 0, 0);
    -o-transform: scale(.5) translate3d(0, 0, 0);
    transform: scale(.5) translate3d(0, 0, 0);
    */
    opacity: 0;
    position: relative;
    -webkit-transform: scale(.5) translate3d(200px, 0, 0);
    -moz-transform: scale(.5) translate3d(200px, 0, 0);
    -ms-transform: scale(.5) translate3d(200px, 0, 0);
    -o-transform: scale(.5) translate3d(200px, 0, 0);
    transform: scale(.5) translate3d(200px, 0, 0);
}

#board-1 .logo-big-wrapper > .logo-text {
    /*
    opacity: 0;
    visibility: hidden;
    position: relative;
    font-family: "Museo Sans Cyrl 500", sans-serif;
    font-weight: normal;
    font-style: normal;
    */
    opacity: 0;
}

#board-1.animation-enabled .logo-big-wrapper > .logo-image {
    -webkit-animation: board-1-logo-image-animation-1 2s .5s;
    -o-animation: board-1-logo-image-animation-1 2s .5s;
    animation: board-1-logo-image-animation-1 2s .5s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#board-1.animation-enabled .logo-big-wrapper > .logo-text {
    -webkit-animation: board-1-logo-text-animation-1 1s 2s;
    -o-animation: board-1-logo-text-animation-1 1s 2s;
    animation: board-1-logo-text-animation-1 1s 2s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media (max-width: 768px) {
    #board-1.animation-enabled .logo-big-wrapper > .logo-image {
        -webkit-animation: board-1-logo-image-animation-2 2s .5s;
        -o-animation: board-1-logo-image-animation-2 2s .5s;
        animation: board-1-logo-image-animation-2 2s .5s;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        -o-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
    #board-1.animation-enabled .logo-big-wrapper > .logo-text {
        -webkit-animation: board-1-logo-text-animation-2 1s 1.5s;
        -o-animation: board-1-logo-text-animation-2 1s 1.5s;
        animation: board-1-logo-text-animation-2 1s 1.5s;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        -o-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        width: 60%;
    }
}

@media (max-width: 576px) {
    #board-1.animation-enabled .logo-big-wrapper > .logo-image {
        -webkit-animation: board-1-logo-image-animation-3 2s .5s;
        -o-animation: board-1-logo-image-animation-3 2s .5s;
        animation: board-1-logo-image-animation-3 2s .5s;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        -o-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-transform: scale(.5) translate3d(0, 0, 0);
        -moz-transform: scale(.5) translate3d(0, 0, 0);
        -ms-transform: scale(.5) translate3d(0, 0, 0);
        -o-transform: scale(.5) translate3d(0, 0, 0);
        transform: scale(.5) translate3d(0, 0, 0);
        display: inline-block;
        position: relative;
    }
    #board-1.animation-enabled .logo-big-wrapper > .logo-text {
        -webkit-animation: board-1-logo-text-animation-3 1s 1.5s;
        -o-animation: board-1-logo-text-animation-3 1s 1.5s;
        animation: board-1-logo-text-animation-3 1s 1.5s;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        -o-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        width: 100%;
    }
}


#page-slider {
    position: relative;
    height: 100%;
    min-height: 100%;
    display: block;
}

#page-slider > img {
    object-fit: cover;
    -o-object-fit: cover;
    width: 100%;
    height: 100%;
}

.cs-shadow {
    display: none;
}

.cs-container {
    height: 100%;
    min-height: 100%;
    width: 100%;
    display: block;
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
}

#board-1 {
    /* background-image: url("../images/board_1.jpg"); */
}

#board-1:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 28, 68, .3);
}

#board-2 {
    /* background-image: url("../images/board_2.jpg"); */
    background-color: #001C44;
}

#board-2:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 28, 68, .3);
}

#board-3 {
    /* background-image: url("../images/board_3.jpg"); */
    background-color: #001C44;
}

#board-3:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 28, 68, .3);
}

#board-4 {
    /* background-image: url("../images/board_4.jpg"); */
    background-color: #001C44;
}

#board-4:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 28, 68, .3);
}

#board-5 {
    /* background-image: url("../images/board_5.jpg"); */
    background-color: #001C44;
}

#board-5:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 28, 68, .3);
}

#board-6 {
    /* background-image: url("../images/board_empty.png"); */
    background-color: #001C44;
}

#board-6:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 28, 68, .3);
}

.section-list-1 {
    position: relative;
}

.section-list-1 > .nav-item {
    position: relative;
    margin: 0 4rem;
    max-width: 170px;
    width: 150px;
    padding-bottom: 20px;
}

@media (max-width: 992px) {
    .section-list-1 > .nav-item {
        margin: 0 2rem;
    }
}

@media (max-width: 768px) {
    .section-list-1 > .nav-item {
        margin: 0 1rem;
    }
}

.section-list-1 > .nav-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 80%;
    height: 2px;
    background: #FFF;
}

.section-list-1 > .nav-item > h2 {
    font-family: "Museo Sans Cyrl 700", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 2rem;
    text-transform: uppercase;
    padding-top: 1rem;
}

.section-list-1 > .nav-item > h3 {
    font-family: "Museo Sans Cyrl 100", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.5rem;
    letter-spacing: .1rem;
    line-height: 1.5rem;
    text-transform: uppercase;
}

.section-list-1 > .nav-item > h4 {
    font-family: "Museo Sans Cyrl 500", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: .9rem;
    padding-top: .5rem;
}

@keyframes board-3-section-list-1-animation-1 {
    0% {
        -webkit-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        -moz-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        -ms-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        -o-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
    }
    25% {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        -moz-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        -ms-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        -o-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        -moz-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        -ms-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        -o-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
    }
}

@-webkit-keyframes board-3-section-list-1-animation-1 {
    0% {
        -webkit-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        -moz-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        -ms-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        -o-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
    }
    25% {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        -moz-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        -ms-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        -o-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        -moz-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        -ms-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        -o-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
    }
}

@-moz-keyframes board-3-section-list-1-animation-1 {
    0% {
        -webkit-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        -moz-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        -ms-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        -o-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
    }
    25% {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        -moz-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        -ms-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        -o-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        -moz-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        -ms-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        -o-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
    }
}

@-o-keyframes board-3-section-list-1-animation-1 {
    0% {
        -webkit-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        -moz-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        -ms-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        -o-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
        transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
    }
    25% {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        -moz-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        -ms-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        -o-transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
        transform: scale3d(1, 1, 1) rotate3d(1, 0, 0, -180deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        -moz-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        -ms-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        -o-transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
        transform: scale3d(1, 1, 1) rotate3d(-1, 0, 0, 0deg);
    }
}

#board-3.animation-enabled .section-list-1 > .nav-item {
    -webkit-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
    -moz-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
    -ms-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
    -o-transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
    transform: scale3d(1, 0, 1) rotate3d(1, 0, 0, -180deg);
    -webkit-animation: board-3-section-list-1-animation-1 1s .2s;
    -o-animation: board-3-section-list-1-animation-1 1s .2s;
    animation: board-3-section-list-1-animation-1 1s .2s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.section-list-2 {
    position: relative;
    max-width: 70%;
}

@media (max-width: 1200px) {
    .section-list-2 {
        max-width: 100%;
    }
}

.section-list-2 > .nav-item {
    position: relative;
    padding-bottom: 40px;
    flex-basis: 200px;
    flex-shrink: 4;
}

.section-list-2 > .nav-item > a {
    display: block;
    position: relative;
    padding-top: 100px;
    min-width: 80px;
    font-family: "Museo Sans Cyrl 300", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.1rem;
    letter-spacing: 0;
}

.section-list-2 > .nav-item > a > .empty-icon {
    background: url("../images/service-icon-empty.png") rgba(255, 255, 255, .4) no-repeat center center;
    background-size: 50%;
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    -webkit-border-radius: 50% 50%;
    -moz-border-radius: 50% 50%;
    border-radius: 50% 50%;
}

.section-list-2 > .nav-item > a > .service-icon {
    background: no-repeat center center;
    background-size: contain;
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
}

.section-list-2 > .nav-item > a > .service-icon.service-icon-1 {
    background-image: url('../images/service-icon-1.png');
}

.section-list-2 > .nav-item > a > .service-icon.service-icon-2 {
    background-image: url('../images/service-icon-2.png');
}

.section-list-2 > .nav-item > a > .service-icon.service-icon-3 {
    background-image: url('../images/service-icon-3.png');
}

.section-list-2 > .nav-item > a > .service-icon.service-icon-4 {
    background-image: url('../images/service-icon-4.png');
}

.section-list-2 > .nav-item > a > .service-icon.service-icon-5 {
    background-image: url('../images/service-icon-5.png');
}

.section-list-2 > .nav-item > a > .service-icon.service-icon-6 {
    background-image: url('../images/service-icon-6.png');
}

.section-list-3 {
    position: relative;
}

.section-list-3 > .nav-item {
    position: relative;
    margin: 0 2rem;
    max-width: 160px;
    padding-bottom: 20px;
}

.section-list-3 > .nav-item > a {
    display: block;
    position: relative;
    padding-top: 90px;
    min-width: 100px;
}

.section-list-3 > .nav-item > a {
    background: rgba(255, 255, 255, .4) no-repeat center center;
    background-size: 75%;
    display: block;
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50% 50%;
    -moz-border-radius: 50% 50%;
    border-radius: 50% 50%;
}

.section-list-3 > .nav-item > a.empty-icon {
    background-image: url("../images/service-icon-empty.png");
    background-size: 50%;
}

.modal-service-1 {

}

.modal-service-1 > .modal-dialog.modal-lg {
    max-width: 80%;
}

.modal-service-1 > .modal-dialog > .modal-content {
    background: #001c44;
}

.modal-service-1 > .modal-dialog.modal-lg > .modal-content {
    height: 90vh;
}

.modal-service-1 > .modal-dialog.modal-h-auto > .modal-content {
    height: unset;
}

@media (max-width: 768px) {
    .modal-service-1 > .modal-dialog.modal-lg {
        max-width: 90%;
    }
}

@media (max-width: 568px) {
    .modal-service-1 {
        padding-right: 0 !important;
    }

    .modal-service-1 > .modal-dialog.modal-lg {
        max-width: 100%;
        margin: 0;
    }

    .modal-service-1 > .modal-dialog.modal-lg > .modal-content {
        height: 100vh;
        margin: 0;
    }

    .modal-service-1 > .modal-dialog.modal-h-auto > .modal-content {
        height: unset;
    }
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header {
    position: relative;
    padding-top: 150px;
    border: 0;
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header.no-header-picture {
    padding-top: 1rem;
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .modal-service-1-picture {
    background-image: url("../images/service-icon-empty.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    background-size: 50%;
    display: block;
    width: 110px;
    height: 110px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 20px;
    border: 2px solid #FFF;
    -webkit-border-radius: 50% 50%;
    -moz-border-radius: 50% 50%;
    border-radius: 50% 50%;
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .modal-service-1-picture.service-icon-1 {
    background-image: url('../images/service-icon-1.png');
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .modal-service-1-picture.service-icon-2 {
    background-image: url('../images/service-icon-2.png');
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .modal-service-1-picture.service-icon-3 {
    background-image: url('../images/service-icon-3.png');
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .modal-service-1-picture.service-icon-4 {
    background-image: url('../images/service-icon-4.png');
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .modal-service-1-picture.service-icon-5 {
    background-image: url('../images/service-icon-5.png');
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .modal-service-1-picture.service-icon-6 {
    background-image: url('../images/service-icon-6.png');
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .modal-service-1-picture.contact_us-icon {
    background-image: url('../images/contact_us-icon.png');
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .modal-title {
    display: block;
    width: 100%;
    text-align: center;
    font-family: "Museo Sans Cyrl 100", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 2rem;
    text-transform: uppercase;
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #FFF;
    opacity: 1;
    text-shadow: none;
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .close:hover,
.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .close:active,
.modal-service-1 > .modal-dialog > .modal-content > .modal-header > .close:focus {
    color: #FFF;
    opacity: 1;
    text-shadow: none;
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-body {
    font-family: "Museo Sans Cyrl 100", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.1rem;
    letter-spacing: 0;
    line-height: 1.2rem;
    border: 0;
}

.modal-service-1 > .modal-dialog.modal-lg > .modal-content > .modal-body {
    height: 55vh;
    overflow-y: auto;
    padding: 0 3rem;
}

.modal-service-1 > .modal-dialog.modal-h-auto > .modal-content > .modal-body {
    height: unset;
}

.modal-service-1 > .modal-dialog > .modal-content > .modal-footer {
    border: 0;
}

.logo-big-wrapper.logo-wrapper-style-2 {
    justify-content: left;
}

.logo-big-wrapper.logo-wrapper-style-2 > .logo-image {
    width: 170px;
    height: 170px;
}

.logo-big-wrapper.logo-wrapper-style-2 > .logo-text {
    font-family: "Museo Sans Cyrl 500", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 2rem;
    letter-spacing: .1rem;
    line-height: 2rem;
}

@media (max-width: 568px) {
    .logo-big-wrapper.logo-wrapper-style-2 {
        justify-content: left;
    }

    .logo-big-wrapper.logo-wrapper-style-2 > .logo-image {
        width: 100%;
        height: 170px;
    }

    .logo-big-wrapper.logo-wrapper-style-2 > .logo-text {
        text-align: left;
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
}

@media (max-width: 568px) {
    #board-6 > div {
        margin: 0;
    }
}

.left_menu-toggle-btn {
    width: 60px;
    height: 50px;
    display: block;
    position: absolute;
    z-index: 19;
    top: 34px;
    right: 16px;
    background: url("../images/left_menu-toggle-btn.png") no-repeat center center;
    background-size: 50%;
}

.left_menu-toggle-btn:hover, .left_menu-toggle-btn:active, .left_menu-toggle-btn:focus {
    filter: none;
}

@keyframes left-menu-hide-animation-1 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@-moz-keyframes left-menu-hide-animation-1 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@-webkit-keyframes left-menu-hide-animation-1 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@-o-keyframes left-menu-hide-animation-1 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes left-menu-show-animation-1 {
    0% {
        width: 0;
        padding: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        width: 430px;
        padding: 1rem;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-moz-keyframes left-menu-show-animation-1 {
    0% {
        width: 0;
        padding: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        width: 430px;
        padding: 1rem;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes left-menu-show-animation-1 {
    0% {
        width: 0;
        padding: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        width: 430px;
        padding: 1rem;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-o-keyframes left-menu-show-animation-1 {
    0% {
        width: 0;
        padding: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        width: 430px;
        padding: 1rem;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 568px) {
    @keyframes left-menu-show-animation-2 {
        0% {
            width: 0;
            padding: 0;
            -webkit-transform: translate3d(100%, 0, 0);
            -moz-transform: translate3d(100%, 0, 0);
            -ms-transform: translate3d(100%, 0, 0);
            -o-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }
        100% {
            width: 100%;
            padding: 1rem;
            -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
            -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    @-moz-keyframes left-menu-show-animation-2 {
        0% {
            width: 0;
            padding: 0;
            -webkit-transform: translate3d(100%, 0, 0);
            -moz-transform: translate3d(100%, 0, 0);
            -ms-transform: translate3d(100%, 0, 0);
            -o-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }
        100% {
            width: 100%;
            padding: 1rem;
            -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
            -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    @-webkit-keyframes left-menu-show-animation-2 {
        0% {
            width: 0;
            padding: 0;
            -webkit-transform: translate3d(100%, 0, 0);
            -moz-transform: translate3d(100%, 0, 0);
            -ms-transform: translate3d(100%, 0, 0);
            -o-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }
        100% {
            width: 100%;
            padding: 1rem;
            -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
            -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }

    @-o-keyframes left-menu-show-animation-2 {
        0% {
            width: 0;
            padding: 0;
            -webkit-transform: translate3d(100%, 0, 0);
            -moz-transform: translate3d(100%, 0, 0);
            -ms-transform: translate3d(100%, 0, 0);
            -o-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }
        100% {
            width: 100%;
            padding: 1rem;
            -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
            -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }
}

.left_menu {
    display: block;
    z-index: 20;
    position: absolute;
    right: 0;
    top: 0;
    width: 430px;
    height: 100%;
    background: rgba(0, 28, 68, .9);
    padding: 1rem;
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    overflow: hidden;
}

@media (max-width: 568px) {
    .left_menu {
        width: 0;
        padding: 0;
    }
}

.left_menu-close {
    display: block;
    position: absolute;
    z-index: 10;
    right: 1rem;
    top: 1rem;
    font-family: "Museo Sans Cyrl 500", sans-serif;
    font-weight: normal;
    font-style: normal;
    letter-spacing: .1rem;
    line-height: 2rem;
    font-size: 2rem;
}

.left_menu-nav {
    position: relative;
    font-family: "Museo Sans Cyrl 500", sans-serif;
    font-weight: normal;
    font-style: normal;
    letter-spacing: .1rem;
    line-height: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.left_menu-nav > .nav-item {
    position: relative;
    margin-top: 2rem;
    color: #FFF;
}

@media (max-width: 568px) {
    .left_menu-nav > .nav-item {
        margin-top: 0;
    }
    .left_menu-nav > .nav-item:first-child {
        margin-top: 2rem;
    }
}

.left_menu-footer {
    position: relative;
    border-top: 1px solid #004E93;
    display: block;
    width: 100%;
    margin-top: 4rem;
    padding: 1rem;
    font-family: "Museo Sans Cyrl 100", sans-serif;
    font-weight: 200;
    font-style: normal;
    line-height: .9rem;
    font-size: .9rem;
    color: #FFF;
}

.left_menu-copyright {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 1rem 1rem 1rem;
    font-family: "Museo Sans Cyrl 100", sans-serif;
    font-weight: 200;
    font-style: normal;
    line-height: .9rem;
    font-size: .9rem;
    color: #0081da;
}

#header-section {
    z-index: 19;
}

#header-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 28, 68, .5) 0%, rgba(0, 0, 0, 0));
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#header-section:hover:before {
    opacity: 1;
}

#header-section > .container-fluid {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    opacity: 0;
    z-index: 19;
}

#header-section > .left_menu-toggle-btn {
    -webkit-transition: all 3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: 1;
}

#header-section:hover > .container-fluid {
    opacity: 1;
    visibility: visible;
}

#header-section:hover > .left_menu-toggle-btn {
    opacity: 0;
    visibility: hidden;
}

#header-section.visible > .container-fluid {
    opacity: 1;
    visibility: visible;
}

#header-section.visible > .left_menu-toggle-btn {
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 992px) {

    #header-section > .left_menu-toggle-btn {
        opacity: 1 !important;
        visibility: visible !important;
        top: 16px;
        right: 4px;
    }

    #header-section.active > .left_menu-toggle-btn {
        opacity: 0 !important;
        visibility: hidden !important;
    }

}

#header-section .logo-wrapper-dummy.hidden {
    height: unset;
}

@keyframes header-section-top_menu-animation-1 {
    0% {
        -webkit-transform: translate3d(0, -140px, 0);
        -moz-transform: translate3d(0, -140px, 0);
        -ms-transform: translate3d(0, -140px, 0);
        -o-transform: translate3d(0, -140px, 0);
        transform: translate3d(0, -140px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-moz-keyframes header-section-top_menu-animation-1 {
    0% {
        -webkit-transform: translate3d(0, -140px, 0);
        -moz-transform: translate3d(0, -140px, 0);
        -ms-transform: translate3d(0, -140px, 0);
        -o-transform: translate3d(0, -140px, 0);
        transform: translate3d(0, -140px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes header-section-top_menu-animation-1 {
    0% {
        -webkit-transform: translate3d(0, -140px, 0);
        -moz-transform: translate3d(0, -140px, 0);
        -ms-transform: translate3d(0, -140px, 0);
        -o-transform: translate3d(0, -140px, 0);
        transform: translate3d(0, -140px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-o-keyframes header-section-top_menu-animation-1 {
    0% {
        -webkit-transform: translate3d(0, -140px, 0);
        -moz-transform: translate3d(0, -140px, 0);
        -ms-transform: translate3d(0, -140px, 0);
        -o-transform: translate3d(0, -140px, 0);
        transform: translate3d(0, -140px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes header-section-top_menu-lang-animation-1 {
    0% {
        -webkit-transform: translate3d(200px, 0, 0);
        -moz-transform: translate3d(200px, 0, 0);
        -ms-transform: translate3d(200px, 0, 0);
        -o-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-moz-keyframes header-section-top_menu-lang-animation-1 {
    0% {
        -webkit-transform: translate3d(200px, 0, 0);
        -moz-transform: translate3d(200px, 0, 0);
        -ms-transform: translate3d(200px, 0, 0);
        -o-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes header-section-top_menu-lang-animation-1 {
    0% {
        -webkit-transform: translate3d(200px, 0, 0);
        -moz-transform: translate3d(200px, 0, 0);
        -ms-transform: translate3d(200px, 0, 0);
        -o-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-o-keyframes header-section-top_menu-lang-animation-1 {
    0% {
        -webkit-transform: translate3d(200px, 0, 0);
        -moz-transform: translate3d(200px, 0, 0);
        -ms-transform: translate3d(200px, 0, 0);
        -o-transform: translate3d(200px, 0, 0);
        transform: translate3d(200px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes header-section-top_menu-logo-animation-1 {
    0% {
        -webkit-transform: translate3d(-200px, 0, 0);
        -moz-transform: translate3d(-200px, 0, 0);
        -ms-transform: translate3d(-200px, 0, 0);
        -o-transform: translate3d(-200px, 0, 0);
        transform: translate3d(-200px, 0, 0);
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-moz-keyframes header-section-top_menu-logo-animation-1 {
    0% {
        -webkit-transform: translate3d(-200px, 0, 0);
        -moz-transform: translate3d(-200px, 0, 0);
        -ms-transform: translate3d(-200px, 0, 0);
        -o-transform: translate3d(-200px, 0, 0);
        transform: translate3d(-200px, 0, 0);
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes header-section-top_menu-logo-animation-1 {
    0% {
        -webkit-transform: translate3d(-200px, 0, 0);
        -moz-transform: translate3d(-200px, 0, 0);
        -ms-transform: translate3d(-200px, 0, 0);
        -o-transform: translate3d(-200px, 0, 0);
        transform: translate3d(-200px, 0, 0);
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-o-keyframes header-section-top_menu-logo-animation-1 {
    0% {
        -webkit-transform: translate3d(-200px, 0, 0);
        -moz-transform: translate3d(-200px, 0, 0);
        -ms-transform: translate3d(-200px, 0, 0);
        -o-transform: translate3d(-200px, 0, 0);
        transform: translate3d(-200px, 0, 0);
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

#header-section.visible > .container-fluid > .row > div:nth-child(2) {
    position: relative;
    -webkit-transform: translate3d(0, -140px, 0);
    -moz-transform: translate3d(0, -140px, 0);
    -ms-transform: translate3d(0, -140px, 0);
    -o-transform: translate3d(0, -140px, 0);
    transform: translate3d(0, -140px, 0);
}

#header-section.visible > .container-fluid > .row > div:nth-child(3) {
    position: relative;
    -webkit-transform: translate3d(200px, 0, 0);
    -moz-transform: translate3d(200px, 0, 0);
    -ms-transform: translate3d(200px, 0, 0);
    -o-transform: translate3d(200px, 0, 0);
    transform: translate3d(200px, 0, 0);
}

#header-section.visible.animation-enabled > .container-fluid > .row > div:nth-child(2) {
    -webkit-animation: header-section-top_menu-animation-1 1s 2.5s;
    -o-animation: header-section-top_menu-animation-1 1s 2.5s;
    animation: header-section-top_menu-animation-1 1s 2.5s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#header-section.visible.animation-enabled > .container-fluid > .row > div:nth-child(3) {
    -webkit-animation: header-section-top_menu-lang-animation-1 1s 2.5s;
    -o-animation: header-section-top_menu-lang-animation-1 1s 2.5s;
    animation: header-section-top_menu-lang-animation-1 1s 2.5s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#header-section:hover > .container-fluid > .row > div:nth-child(1) #top_logo > .logo-text {
    position: relative;
    -webkit-transform: translate3d(-200px, 0, 0);
    -moz-transform: translate3d(-200px, 0, 0);
    -ms-transform: translate3d(-200px, 0, 0);
    -o-transform: translate3d(-200px, 0, 0);
    transform: translate3d(-200px, 0, 0);
    -webkit-animation: header-section-top_menu-logo-animation-1 1s 1;
    -o-animation: header-section-top_menu-logo-animation-1 1s 1;
    animation: header-section-top_menu-logo-animation-1 1s 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

#header-section:hover > .container-fluid > .row > div:nth-child(2) {
    position: relative;
    -webkit-transform: translate3d(0, -140px, 0);
    -moz-transform: translate3d(0, -140px, 0);
    -ms-transform: translate3d(0, -140px, 0);
    -o-transform: translate3d(0, -140px, 0);
    transform: translate3d(0, -140px, 0);
    -webkit-animation: header-section-top_menu-animation-1 .5s 1;
    -o-animation: header-section-top_menu-animation-1 .5s 1;
    animation: header-section-top_menu-animation-1 .5s 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

#header-section:hover > .container-fluid > .row > div:nth-child(3) {
    position: relative;
    -webkit-transform: translate3d(200px, 0, 0);
    -moz-transform: translate3d(200px, 0, 0);
    -ms-transform: translate3d(200px, 0, 0);
    -o-transform: translate3d(200px, 0, 0);
    transform: translate3d(200px, 0, 0);
    -webkit-animation: header-section-top_menu-lang-animation-1 .5s 1;
    -o-animation: header-section-top_menu-lang-animation-1 .5s 1;
    animation: header-section-top_menu-lang-animation-1 .5s 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media (max-width: 992px) {
    #top_logo {
        display: none !important;
    }
}

.form-control {
    color: #000 !important;
}

.contact_us-map-wrapper-1 {
    background: url('/assets/images/map-screen-example-1.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    cursor: pointer;
}

.contact_us-map-button-1 {
    opacity: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.contact_us-map-wrapper-1:hover .contact_us-map-button-1 {
    opacity: 1;
}

@media (max-width: 992px) {
    .contact_us-map-button-1 {
        opacity: 1;
    }
}

.rvh-100 {
    height: 100vh !important;
}

@media (max-width: 568px) {
    .rvh-100 {
        height: 100% !important;
    }

    #board-1 .section-text-1 {
        padding-top: 3rem;
        font-size: 1rem;
        line-height: 1rem;
    }
}
