@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
    font-family: "Lato-Regular";
    src: url("../fonts/Lato-Regular.woff2") format("truetype");
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    clear: both;
}
html {
    overflow-x: hidden;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}
body {
    font-family: 'Lato-Regular', sans-serif;
    /*font-family: 'HalvarMittel-Lt', sans-serif;*/
    min-height: 100vh;
    color: rgb(33, 37, 41);
    font-size: 16px;
    min-width: 320px;
    position: relative;
    overflow-x: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1.5;
}
.lds-ring {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    z-index: 100;
    transform: translate(-50%, -50%);
}
.lds-ring {
    visibility: hidden;
}
.lds-ring.active {
    visibility: visible;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.lds-spinner {
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    zoom: .4;
    z-index: 100;
}
.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #fff;
}
.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}
.lds-spinner {
    visibility: hidden;
}
.lds-spinner.active {
    visibility: visible;
}
.lds-spinner.lds-spinner-main {
    position: relative;
    visibility: visible;
    flex-direction: column;
    zoom: .6;
}
.lds-spinner.lds-spinner-main div:after {
    background: #1f336f;
}
@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
tbody, td, tfoot, th, thead, tr {
    text-align: center;
    vertical-align: middle;
    padding: 0.75em;
}
.color-orange {
    color: #f45740 !important;
}
a.color-orange:hover {
    color: #fff !important;
}
.bg-grey {
    background-color: #6763630f;
}
.flex-start {
    display: flex;
    justify-content: start;
}
.flex-between {
    display: flex;
    justify-content: space-between;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.preloader__row {
    position: relative;
    width: 70px;
    height: 70px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}
.preloader__item {
    position: absolute;
    display: inline-block;
    top: 0;
    background-color: #337ab7;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    animation: preloader-bounce 2s infinite ease-in-out;
}
.preloader__item:last-child {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}
@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes preloader-bounce {
    0%,
    100% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
}
.arrow-right-svg {
    fill: #6a7c92;
    width: 10px;
    height: 10px;
}
.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
}
.loaded .preloader {
    display: none;
}

body.offcanvas-active {
    overflow:hidden;
}
b, strong {
    color: #1f336f;
    font-weight: 600;
}
header {
    border-bottom: 1px solid #eee;
}
#home {
    padding-top: 71px;
}
h1, h2, h3, h4, h5, h6 {
    color: #1f336f;
    /*ddd*/
    /*font-weight: 400;*/
}
h4, h5, h6 {
    font-weight: 400;
}
a {
    color: #005da3;
    text-decoration: none;
}
a > .box-style {
    width: 100%;
}
a:hover {
    color: #0a58ca;
}
.fa, .fas {
    #color: #005da3;
    color: #005da3;
}
.fa-home {
    font-size: 1.8em;
}
tbody, td, tfoot, th, thead, tr {
    vertical-align: top;
}
section {
    display: block;
    padding-top: 2em;
    padding-bottom: 2em;
}
section.page-section {
    padding-top: 0;
}
section.view-page {
    padding-top: calc(71px + 3em);
}
section.view-page .breadcrumb {
    margin-bottom: 1em;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    margin-top: 0 !important;
}
.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition-property: all;
    transition-duration: 0.1s;
    transition-timing-function: ease-out;
    transition-delay: 0s;
    border-top: none;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    box-sizing: border-box;
}
.dropdown-menu.show {
    padding: 0;
    margin: 0;
    width: 220px;
/*    top: 80px;*/
    visibility: visible; /* shows sub-menu */
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in;
    transition-delay: 0s;
}
.dropdown-menu.show li {
    margin: 10px 0;
}
.dropdown-menu.show li a:hover {
    color: #1f336f !important;
}
.dropdown-menu.show li:hover a:after {
    transition: width .3s ease-in-out;
    width: 20%;
}
.hidden-desktop {
    display: none;
}
.hidden-mobile {
    display: block;
}
.dropdown-item.active,
.dropdown-item:active {
    background-color: inherit;
}
.navbar-nav .nav-item a.dropdown-item {
    padding: 5px 20px;
}
nav#navbar_main,
.navbar-wrapper,
.navbar-wrapper .navbar-nav {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    background-color: #fff;
    align-items: center;
}
li.nav-item.dropdown:hover:before {
    content: '';
    position: absolute;
    border: 10px solid transparent;
    border-bottom: 10px solid #f8f9fa;
    bottom: -1px;
    left: 50%;
    margin-left: -7.5px;
}
.navbar-nav .nav-item {
    padding: 0;
    text-transform: uppercase;
}
.navbar-nav .nav-item:hover a.nav-link {
    #color: #051441;
    color: #1f336f;
}
.navbar-nav .nav-item:hover a.nav-link:after {
    transition: width .3s ease-in-out;
    width: 40px;
}

/* overwrite swiper */

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-right: 1em;
    font-size: 2em;
    color: #fff;
}
.swiper-pagination-bullet {
    background-color: 0;
}
.swiper-pagination-bullet-active .circ1 {
    stroke-dashoffset: 220px;
    transition: linear 12s stroke-dashoffset;
    transform: scale(1);
}
.swiper-pagination-bullet-active .circ .circ-text {
    font-size: 20px;
}
.swiper-pagination-bullet:first-child .circ1 {
    animation-name:circ1;
    animation-duration: 12s;
}
@keyframes circ1 {
    0% {stroke-dashoffset: 440px;}
    100% {stroke-dashoffset: 220px;}
}
@keyframes w100c {
    0% {width: 0;}
    95% {width: 100%;}
    98% {width: 98%;}
    100% {width: 100%;}
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 5%;
    width: 100%;
    text-align: left;
    padding: 0 5%;
}
/*.hidden-mobile .swiper-slide {
    opacity: 1;
    transition: all 0ms ease 0s;
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    text-align: left;
    min-height: 200px;
    align-items: start;
    height: 95vh;
}*/
.navbar {
    padding: 0;
    width: 100%;
}
.navbar-nav .nav-item a {
    font-size: 14px;
    padding: 0 0 7px 0;
}
.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
    color: #051441;
    font-weight: 400;
}
.feature-box {
    height: 400px;
    overflow: hidden;
    box-shadow: 0 0 30px rgb(232 232 232 / 45%);
}
.feature-box .box-tags {
    position: absolute;
    bottom: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.feature-box .box-tags a {
    color: #1f336f;
    padding: 0 3px;
}
.feature-box-big {
    height: 535px;
}
.box-style {
    padding: 0;
    border: 1px solid hsl(206deg 23% 95%);
    border-radius: 0;
    margin-bottom: 30px;
    #border: none;
}
.box-style:hover {
    box-shadow: 0 0 30px rgb(193 194 199 / 45%);
}
.feature-content {
    padding: 10px 15px;
    position: relative;
    height: 255px;
}
.feature-content span {
    float: left;
    width: 100%;
    text-align: left;
    color: #6a7c92;
    height: 50px;
    overflow: hidden;
}
.feature-content h5 {
    margin-bottom: 10px;
}
.feature-content ul li {
    display: grid;
    font-size: 16px;
    border-top: 1px solid #adbaca;
    padding: 8px;
}
.feature-content p {
    font-size: .95em;
    line-height: 1.4;
    color: #001;
    font-weight: 400;
    margin: 0;
    text-align: left;
}
.feature-content .box-description {
    font-size: 16px;
    line-height: 1.5;
    color: #6a7c92;
    overflow: hidden;
    height: 165px;
}
.feature-title {
    font-weight: 600;
}
.text-blue {
    color: #005da3 !important;
}
.text-darkgrey {
    color: darkgrey !important;
}
.text-lightsteelblue {
    color: lightsteelblue !important;
}
.portfolio-img {
    border-bottom: 1px solid #eee;
}
.portfolio-img,
.portfolio-img img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}
.news-layout .feature-box {
    position: relative;
    background-color: #fff;
}

.section-one {
    margin-top: 120px;
}

.left-sidebar {
    margin-top: 9em;
}
.left-sidebar h5 {
    margin-bottom: 25px;
}
.left-sidebar ul li {
    padding: 0;
}
.left-sidebar ul li a {
    font-size: 15px;
    font-weight: 300;
    color: #1f336f;
}

/* Бургер кнопка */
.navbar-toggle .icon-bar:nth-of-type(2) {
    top: 1px;
}
.navbar-toggle .icon-bar:nth-of-type(3) {
    top: 2px;
}
.navbar-toggle .icon-bar {
    position: relative;
    transition: all 200ms ease-in-out;
}
.navbar-toggle.active .icon-bar:nth-of-type(1) {
    top: 6px;
    transform: rotate(45deg);
}
.navbar-toggle.active .icon-bar:nth-of-type(2) {
    background-color: transparent;
}
.navbar-toggle.active .icon-bar:nth-of-type(3) {
    top: -6px;
    transform: rotate(-45deg);
}

/*  managers-section  */
.managers-section .rounded-circle {
    width: 200px;
    height: 200px;
    background-color: #83A7C9;
    object-fit: cover;
}
.managers-section .feature-box {
    text-align: center;
    margin-bottom: 40px;
}
.managers-section .box-style {
    position: relative;
}
.managers-section .feature-box .feature-content p.position {
    color: #005da3;
    font-weight: 600;
}
.managers-section .feature-box .feature-content p > i {
    padding: 20px;
}
.managers-section .feature-box .portfolio-img {
    max-height: auto !important;
}
.main-slider {
    height: calc(70vh - 71px);
}
.swiper-container-fade .swiper-slide {
    #background-position-y: 50%;
    background-repeat: no-repeat;
    background-size: 65% !important;
}
.swiper-slide {
    cursor: pointer;
}
.swiper-slide-image img {
    width: 100%;
    object-fit: cover;
}
.swiper-slide-text {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    width: 35%;
    background-color: #1f336f;
    height: 100%;
    padding: 0 5%;
}
.swiper-slide-image-background {
/*    float: right;
    width: 65%;
    height: 100%;
    background-position-x: 100%;
    background-size: cover !important;*/
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #1f336f;
    font-weight: 600;
}
.navbar-dark .navbar-nav .nav-item:hover svg {
    transition: all .3s ease-in-out;
    transform: rotate(180deg);
}
.navbar-dark .navbar-nav .nav-link svg {
    width: 18px;
    margin: 0 0 3px 3px;
}
.desktop-text h4 {
    color: #fff;
    font-size: 2em;
}
.desktop-text h4:after {
    content: '';
    display: block;
    width: 3em;
    height: 3px;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px 0;
}
.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
    background-color: #005da3;
    padding: 20px;
}
.swiper-button-next.swiper-button-white:hover, .swiper-button-prev.swiper-button-white:hover {
    background-color: #051441;
    padding: 20px;
    transition: background-color 1s;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
}
.swiper-pagination-bullet {
    opacity: .6;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    font-weight: 700 !important;
}
.swiper-slide-image:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.50);
}
.header-phone {
    display: flex;
}
.header-phone .fa-map-marker,
.header-phone .fa-address-card {
    color: #6a7c92;
    display: flex;
    align-items: center;
}
.header-phone p {
    font-size: 12px;
    line-height: 15px;
    padding-left: 20px;
}
.box-style .box-content-style h3 {
    font-size: 18px;
    font-weight: 400;
    margin: 20px 0;
    text-align: left;
    /* align-items: center; */
    vertical-align: middle;
    display: flex;
    /* overflow: hidden; */
    line-height: 24px;
    /*height: auto;*/
}
.section-title h1 {
    margin-bottom: 20px !important;
}
.section-title h2 {
    line-height: normal;
    font-weight: 600;
    margin-bottom: 15px;
}
.breadcrumb li {
    color: #6a7c92;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-title p {
    font-size: 15px;
    text-align: left;
    line-height: 1.5;
    letter-spacing: 1.4px;
    color: #2c5697;
    text-transform: uppercase;
}
.breadcrumb {
    vertical-align: middle;
    align-items: center;
}
.separator-breadcrumb img {
    margin: 0 5px;
    width: 20px;
}
.breadcrumb li:first-child {
    padding-left: 0;
}
.breadcrumb li a {
    color: #005da3;
}
.breadcrumb li a:hover span {
    text-decoration: underline;
}
.breadcrumb i {
    color: #005da3;
    font-weight: 100;
    font-size: 0.6em;
    display: flex;
    vertical-align: middle;
    align-items: center;
}
.breadcrumb span.active {
    color: rgba(0,0,0,0.66)!important;
}
#navbar_main .fa.fa-bars,
.offcanvas-header {
    display:none;
}
.header-logo {
    display: flex;
    align-items: center;
}
.header-logo img {
    width: 5em;
    height: 5em;
}
.header-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-logo .logo-text h2 {
    font-size: 0.8em;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 600;
    padding-left: 10px;
}
.header-logo a .logo-text h2:hover {
    opacity: .9;
    color: #0a58ca !important;
}
.screen-overlay {
    width: 0%;
    height: 100%;
    z-index: 30;
    position: fixed;
    top: 0;
    left: 0;
    opacity:0;
    visibility:hidden;
    background-color: rgba(34, 34, 34, 0.6);
    transition:opacity .2s linear, visibility .1s, width 1s ease-in;
}
.screen-overlay.show {
    transition:opacity .5s ease, width 0s;
    opacity:1;
    width:100%;
    visibility:visible;
}
.header-desktop-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.help-block {
    color: orangered;
}
#mainImageOutput {
    width: 300px;
    height: 300px;
    background-size: contain;
    background-image: url('../images/site/no-image.webp');
}

/*footer*/
footer {
    width: 100%;
    background-color: #1f336f !important;
    padding:10px 0 25px 0;
}
footer h4 {
    color: #fff;
}
.col_white_amrc {
    color: #fff;
}
.col_white_amrc:after,
footer h4:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: #c11e07;
    margin: 12px 0;
}
footer p {
    color:#fff;
    padding-bottom: 0;
    margin-bottom: 8px;
}
.footer {
    margin-top: 0;
}
.footer_ul_amrc {
    margin: 0;
    list-style-type: none;
    font-size: 14px;
    padding: 0 0 10px 0;
}
.footer_ul_amrc li {
    padding: 0 0 5px 0;
}
footer p .fa,
.footer_ul_amrc li,
.footer_ul_amrc li i,
.footer_ul_amrc li a {
    max-width: 400px;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
}
.footer_ul_amrc li a:hover {
    color: #fff !important;
    text-decoration: underline;
}
.fleft { float:left;}
.fright { float:right;}
.padding-right { padding-right:10px; }

.footer_ul2_amrc {
    margin:0px;
    list-style-type:none;
    padding:0px;
}
.footer_ul2_amrc li p {
    display:table;
}
.footer_ul2_amrc li a:hover {
    text-decoration:none;
}
.footer_ul2_amrc li i {
    margin-top:5px;
}
.footer .fa {
    color: #fff;
}
.bottom_border {
    border-bottom:1px solid #fff;
    padding-bottom:20px;
}
.foote_bottom_ul_amrc {
    list-style-type:none;
    padding:0px;
    display:table;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
}
.foote_bottom_ul_amrc li {
    display:inline;
}
.foote_bottom_ul_amrc li a {
    color: #fff;
    margin: 0 12px;
}
.social_footer_ul {
    display:table;
    margin:15px auto 0 auto;
    list-style-type:none;
}
.social_footer_ul li {
    padding-left:20px;
    padding-top:10px;
    float:left;
}
.social_footer_ul li a {
    color:#fff;
    border:1px solid #CCC;
    padding:8px;
    border-radius:50%;
}
.social_footer_ul li i {
    width:20px;
    height:20px;
    text-align:center;
}
.progress-section .section-title {
    padding-bottom: 50px;
}
.progress-section h2 {
    color: #fff;
    font-size: 4.5em;
    font-weight: 600;
    line-height: 1;
}
.progress-section .progress-hr {
    height: 5px;
    border-radius: 5px;
    width: 20%;
    background-color: #fff;
    margin: 10px auto;
}
.progress-section .progress-annotation {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1.4px;
    color: #fff;
    text-transform: uppercase;
}
.progress-section .section-header-title h2 {
    line-height: 55px;
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 40px;
    color: #fff;
}
.progress-section div p .progress-p {
    width: 50%;
    margin: 0 auto;
}
.progress-title {
    border: 1px solid #eee;
    padding: 20px 5% 50px 5%;
}
.doc-item {
    padding: 1em 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.doc-item img {
    width: 2em;
    margin-right: 1em;
}
.doc-item a {
    color: #051441;
}
.product-slider.gallery-top {
    height: 400px;
}
.product-slider.gallery-thumbs {
    margin-top: 10px;
    height: 100px;
}
.product-slider.gallery-thumbs .swiper-slide {
    width: 100px !important;
}
.product-price {
    padding-top: 50px;
}
.product-price b {
    font-size: 1.8em;
    color: #005da3;
}
.vacancy-page h2:after,
.ecology-page h2:after,
.contacts-page h2:after,
.product-description h2:after,
.vacancy-page h3:after,
.ecology-page h3:after,
.contacts-page h3:after,
.product-description h3:after,
.vacancy-page h4:after,
.ecology-page h4:after,
.contacts-page h4:after,
.view-one-news h4:after,
.product-description h4:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: #c11e07;
    margin: 12px 0;
}
.vacancy-title h3:after {
    content: none;
}
.swiper-slide-thumb-active {
    border: 2px solid #001;
}
.vacancy-description p {
    padding: 5px 0;
}
.vacancy-block {
    margin-bottom: 3.5em;
}
.vacancy-page-text {
    color: #fff;
    padding: 3%;
    display: flex;
    align-items: flex-end;
}
.vacancy-page-text a {
    color: #fff;
}
.vacancy-page-text a:hover {
    color: #fff !important;
}
.vacancy-page-text-part {
    padding: 5px 0;
}
.vacancy-page-text .vacancy-step {
    font-size: 6em;
    font-weight: 600;
    width: 100%;
    padding-bottom: 0.2em;
}
.vacancy-page-text .vacancy-big-title {
    width: 100%;
    font-size: 1.3rem;
    line-height: 1.4;
    padding-bottom: 1em;
}
.vacancy-page-text .fa {
    color: #fff;
    width: 1.5em;
}
.vacancy-page h5 {
    margin: 20px 0;
}
.achievements .section-header-title p {
    color: #eee;
}
.product-category {
    display: flex;
    width: 100%;
    float: left;
}
.product-category h4 {
    padding-right: 1em;
}
.product-category h4 a.active {
    text-decoration: underline;
}
.error-page {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-text {
    padding: 3em 20% 0 20%;
}
.subscription-form {
    display: flex;
    width: 30%;
    margin: 0 auto;
}
.min-height-145 {
    min-height: 0;
}
.min-height-145 ul li {
    display: flex;
    align-items: center;
}
.main-color {
    color: #1f336f;
}
.news-date {
    float: right;
    font-weight: 300;
    padding: 0;
    font-size: medium;
}
.news-date time {
    padding: 10px;
}
.news-date svg {
    fill: #9b9b9b;
}
.news-date:hover svg,
.news-date:hover {
    color: #001;
    fill: #001;
    /*transition: all .5s ease-in-out;*/
}
.news-content .news-date {
    padding-left: 0;
    position: relative;
}
.about-section {
    background-color: transparent;
    position: relative;
    padding-top: 90px;
    padding-bottom: 0;
}
.about-box {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.box {
    /* padding-top: 3em; */
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-right: 3px solid #1f336f;
}
.about-item {
    width: 33.33%;
    display: block;
    padding: 0 38px;
    border-left: 3px solid #1f336f;
    border-bottom: 3px solid transparent;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    #font-weight: 600;
    margin-bottom: 150px;
}
.about-head {
    #font-size: 24px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    color: #1f336f;
    #margin-right: 12px;
    #height: 122px;
}
.about-number {
    #margin-top: 17px;
    #font-size: 4em;
    #line-height: .5;
    #margin-left: -10px;

    font-size: 4.5em;
    font-weight: 600;
    line-height: 1;
}
.about-body {
    #font-size: 16px;
    #line-height: 1.5;
    color: #555567;
    font-size: 1.2em;
}
.about-body strong {
    display: block;
    color: #008ce4;
    #font-weight: 400;
}
.shipping-section .box,
.shipping-section .about-item {
    border: none;
}
.shipping-section .about-item .about-head {
    text-align: center;
    font-size: 2em;
}
.shipping-section .about-item .about-head .about-number {
    padding-bottom: 20px;
}
.shipping-section .about-item .about-body {
    text-align: center;
}
.shipping-section .about-item .about-head span {
    min-height: 4em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.requisites ul {
    line-height: 2.5em;
}
.contacts-page {
    color: #6a7c92;
}
.contacts-map {
    position: relative;
    border: 1px solid #eee;
    height: 450px;
}
.product-title {
    font-size: 32px;
/*    font-weight: 700;*/
    width: 50vw;
    padding: 0 15px;
    height: 140px;
    align-items: flex-end;
    display: flex;
    padding-bottom: 5px;
}
.product-title span {
    color: #1f336f;
    font-size: 25px;
}
.product-title span.product-title-medium {
    width: 50%;
}
.product-title span.product-title-big {
    width: 70%;
}
.product-content {
    display: flex;
    box-shadow: 0 0 12px 0 rgb(206 200 200 / 64%);
    background-color: #fff;
    height: 500px;
}
.product-content .product-image img {
/*    width: 550px;
    height: 500px;*/
    scale: .8;
    object-fit: cover;
}
.product-content .product-image img:hover {
    opacity: .9;
    transition: opacity .3s ease-in-out;
}
.product-property {
    margin: 10px auto;
}
.product-property table {
    width: 400px;
}
.products-slider .products-slider-wrapper {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    z-index: 10;
}
.products-slider .products-slider-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-slide1 {
    margin-right: 5%;
    cursor: pointer;
    padding-bottom: 1px;
    padding-top: 10px;
}
.quality-item a {
    width: 100%;
    /*border: 3px solid #eee;*/
}
/*.quality-item a:hover {
    transition: all .5 ease;
    filter: opacity(0.7);
}*/
.quality-item h4 {
    display: flex;
    align-items: center;
    font-size: 18px;
    text-align: left;
    justify-content: flex-start;
    padding-bottom: 10px;
}
.quality-item img {
    padding-bottom: 15px;
    object-fit: contain;
    width: 100%;
    height: 300px;
    border: 1px solid #eee;
}
.text-left {
    text-align: left !important;
}
.contact-item {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
th, tr, td {
    padding: .3em;
}
@media all and (max-width:992px) {
    .dropdown-menu, .dropdown-menu.show {
        padding: 0 0 0 1em;
    }
    /*ddd*/
/*    h1 {
        font-size: 2.5em;
    }*/
    .dropdown-menu.show li {
        margin: 0;
    }
    section {
        padding-top: 0;
    }
    section.view-page {
        padding-top: 6em;
    }
    .vacancy-page-text {
        padding: 0 3% 70px 3%;
    }
    .offcanvas-header {
        display:block;
    }
    .mobile-offcanvas {
        background-color: #fff;
    }
    .mobile-offcanvas.show {
        visibility: visible;
        transform: translateX(0);
    }
    nav.navbar .dropdown:hover > .dropdown-menu.show {
        display: block;
        position: relative !important;
        top: 0;
        border: none;
        background-color: transparent;
    }
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover {
        #color: #051441;
        color: #1f336f;
        font-size: 14px;
        font-weight: 600;
    }
    .navbar-nav .nav-item {
        padding: 0;
    }
    .navbar-nav .nav-item a:hover,
    .navbar-nav .nav-item a.active {
        color: #051441;
        font-weight: 600;
        background-color: transparent;
    }
    .navbar-nav .nav-item:hover:after {
        content: none;
    }
    .navbar-nav .nav-item a {
        justify-content: start;
    }
    .navbar-nav .nav-item a.dropdown-item {
        padding: 0;
        text-transform: capitalize;
    }
    .navbar-wrapper {
        top: 50px;
        position: relative;
        margin: 0 auto;
        padding: 0 50px;
    }
    .fa-times {
        float: right;
        font-size: 30px;
        padding: 20px 20px 0 0;
    }
    #navbar_main .fa.fa-bars {
        display: block;
        float: right;
        font-size: 30px;
        padding: 20px 10px;
    }
    .dropdown-toggle::after {
        margin-left: 25px;
    }
    .dropdown .dropdown-menu {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        max-height: 0;
        display: block;
        overflow: hidden;
        opacity: 1;
        border: none;
    }
    .dropdown .dropdown-menu.show {
        max-height: 100%;
        opacity: 1;
        box-shadow: none;
    }
    .header-logo img {
        width: 4em;
        position: absolute;
        padding: 5px;
    }
    .header-logo .logo-text h2 {
        font-size: 0.7em;
        text-transform: uppercase;
        font-weight: 600;
        display: table-caption;
        padding-left: 6em;
        line-height: 1.2;
    }
    .header-logo a {
        justify-content: flex-start;
    }
    .offcanvas-header {
        height: 66px;
    }
    .offcanvas-header .header-logo {
        top: 1em;
        position: absolute;
    }
    .mobile-offcanvas {
        visibility: hidden;
        transform:translateX(-100%);
        border-radius: 0;
        display: block;
        position: fixed;
        top: 0; left: 0;
        height: 100%;
        z-index: 1200;
        width: 85%;
        overflow-y: scroll;
        overflow-x: hidden;
        transition: visibility .3s ease-in-out, transform .3s ease-in-out;
    }
    nav#navbar_main,
    .navbar-wrapper,
    .navbar-wrapper .navbar-nav {
        display: block;
        width: 100%;
        padding-left: 0;
    }
    li.nav-item.dropdown:hover:before,
    li.nav-item.dropdown:before {
        content: none;
    }
    .progress-section h2 {
        font-size: 1.4em;
        margin-bottom: unset;
    }
    .progress-title h2 {
        font-size: 1.2em;
        color: #051441;
    }
    .progress-section .progress-annotation {
        font-size: 0.6em;
        margin-top: 12px;
        padding-bottom: 0 10px;
    }
    .requisites ul {
        line-height: 2em;
    }
    .news-content div p {
        text-align: justify;
    }
/*    section.view-page .breadcrumb {
        margin-bottom: -2em;
    }*/
}

@media only screen and (max-width: 767px) {
    .product-slider.gallery-thumbs {
        #height: 100px;
    }
    .gallery-thumbs .swiper-slide {
        width: 3.5em !important;
        height: 3.5em !important;
    }
    .product-slider.gallery-thumbs .swiper-slide {
        width: 70px !important;
        height: 70px !important;
    }
    .product-right-block {
        padding-top: 50px;
    }
    .product-category {
        display: inline-block;
    }
    .product-category h4 {
        padding: 0.4em;
        font-size: 1.3em;
        float: left;
    }
    .mb-display-55 {
        margin-bottom: 0;
    }
    .error-text {
        padding: 0;
        width: 100%;
    }
    .min-height-145 {
        min-height: 145px;
    }
    .box {
        padding-top: 0;
        zoom: 85%;
    }
    .about-section {
        padding-top: 50px;
        padding-bottom: 0;
    }
    .about-item {
        width: 100%;
        margin-bottom: 40px;
        padding: 0 30px;
        display: inline-block;
    }
    .about-item:last-child {
        margin-bottom: 0;

        padding-right: 1em;
        border-right: 1px solid #eee;
    }
    .about-number {
        #font-size: 2.4em;
        margin-top: 20px;
        padding-right: 20px;
        font-size: 3em;
    }
    .shipping-section .about-item {
        display: block;
    }
    .shipping-section .about-item:last-child {
        padding-bottom: 5em;
    }
    .shipping-section .about-item:after {
        content: '';
        width: 50%;
        height: 3px;
        background-color: #1f336f;
        margin: 0 auto;
        display: flex;
        margin-top: 1em;
    }
    .shipping-section .about-item:last-child:after {
        content: none;
    }
    .shipping-section .about-item .about-head {
        height: auto;
    }
    .shipping-section .about-item .about-head .about-number {
        padding-right: 0;
    }
    .shipping-section .about-item .about-head span {
        margin-bottom: 0.5em;
        line-height: 1em;
        font-size: 0.7em;
    }
    .about-head {
        height: 95px;
        margin-bottom: 15px;
    }
    section.page-section {
        padding-top: 2em;
    }
    .section-heading {
        margin-bottom: 20px;
    }
    .section-title h2 {
        margin-bottom: 0;
        line-height: 1.2;
    }
}

@media print {
    *,:after,:before {
        color: #000!important;
        text-shadow: none!important;
        -webkit-box-shadow: none!important;
        box-shadow: none!important;
    }

    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100%!important;
    }

    p {
        orphans: 3;
        widows: 3;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:after,:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    vertical-align: middle;
}

p {
    margin: 0 0 10px;
    line-height: 1.5;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width:768px) {
    .container {
        width: 750px;
    }
}

@media (min-width:992px) {
    .container {
        width: 970px;
    }
    .container-fluid {
        padding: 0 15% 0 15%;
    }
    .left-sidebar {
        margin-top: 0;
        background-color: #fff;
        padding: 2em 15px 50px;
        height: min-content;
    }
    .bg-eee {
        background: #ada996;
        background: -webkit-linear-gradient(to right, #fdfbfb, #ebedee);
        background: linear-gradient(to right, #fdfbfb, #ebedee);
        /*#fdfbfb → #ebedee*/
    }
    .news-content {
        display: inherit;
        background-color: #fff;
        padding: 15px;
    }
    video {
        vertical-align: middle;
        width: 100%;
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px;
    }
}

.container:after,.container:before,.row:after,.row:before {
    display: table;
    content: " ";
}

.container:after,.row:after {
    clear: both;
}
img {
    border: 0;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto 1280 / 750;
}
.clear {
    clear: both;
}
.map-section__map-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    height: 0;
    padding-top: 35%;
}
.map-section__map-wrapper svg {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateZ(0);
    padding: 0 25px;
    transition: transform .4s linear;
    fill: #20487c;
}

#mypopup {
    width: 300px;
    padding: 20px;
    font-size: 40px;
    background-color: #fff;
    border-radius: 6px;
    position: absolute;
    color: #1f336f;
    border: 2px solid #1f336f;
    font-weight: 900;
    padding-bottom: 10px;
}
#mypopup p {
    font-size: 0.5em;
    font-weight: 600;
    line-height: 1.5;
}
#mypopup::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 30px solid transparent;
    border-right: 60px solid #fff;
    left: -42px;
    bottom: -20px;
    transform: rotate(-35deg);
    background-color: transparent;
}
.header-instagram path:hover {
    opacity: .9;
}
svg.social-ico-svg:hover path {
    -webkit-filter: grayscale(50%);
    filter: grayscale(50%);
}
.page-item.active .page-link {
    background-color: #1f336f;
    border-color: #1f336f;
}
.page-link {
    color: #1f336f;
}
.page-link:focus {
    box-shadow: none;
    color: inherit;
    background-color: inherit;
}
.page-item.active .page-link:hover {
    color: #fff !important;
}
h2:after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #c11e07;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 25px auto;
}
.logo-text h2:after {
    content: none;
}
.news-content h2:after {
    content: none;
}
.info-document {
    height: 420px;
}
.info-document h5 {
    max-height: 70px;
    padding: 10px 0 0 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.info-document span {
    color: #7a8ca2;
}
.info-document span:hover {
    color: #3763eb;
}
.info-document-title {
    height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info-document-preview {
    height: 300px;
    width: 250px;
    background-size: cover !important;
    border: 1px solid #eee;
}
.monster_button .img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.monster_button .text {
    align-items: center;
    font-size: 1.3em;
    color: #6a7c92;
    display: grid;
}
.monster_button .text h4 {
    font-size: 1.1em;
    min-height: 3.2em;
    display: flex;
    align-items: center;
}
.monster_button .text small {
    font-size: 16px;
}
.doc-ico {
    width: 50px;
    height: 50px;
    position: absolute;
}
.desktop-banner {
    height: 100%;
}
.home-slider {
    position: relative;
    display: flex;
    width: 100%;
    background: linear-gradient(to right, #000428, #004e92);
}
.home-slider .home-slider-controls {
    position: absolute;
    bottom: 60px;
    display: flex;
    width: 100%;
    z-index: 10;
    align-items: center;
    justify-content: start;
    zoom: .8;
    margin-left: 28%;
}
.home-slider .home-slider-controls div,
.home-slider .home-slider-controls ul {
    margin-left: 80px;
    bottom: 10px;
}
.home-slider .home-slider-controls .swiper-button-next,
.home-slider .home-slider-controls .swiper-button-prev {
    position: relative !important;
    margin-top: 0 !important;
}
.home-slider .home-slider-controls .swiper-button-next:after,
.home-slider .home-slider-controls .swiper-button-prev:after {
    font-size: 2em;
}
.home-slider .swiper-button-next:after,
.home-slider .swiper-button-prev:after {
    color: #fff;
}
ul.home-slider-pagination {
    position: relative;
    display: flex;
}
li.swiper-pagination-bullet  {
    font-size: 1.4em !important;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    vertical-align: 0;
    width: 45px;
    height: 45px;
    cursor: pointer;
    opacity: 1;
    z-index: 10;
    background-color: transparent;
}
li.swiper-pagination-bullet:not(:last-of-type) {
    margin-right: 80px !important;
}
li.swiper-pagination-bullet svg {
    transform: rotate(-90deg);
}
li.swiper-pagination-bullet:not(:last-of-type):after  {
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -webkit-calc(100% + 10px);
    left: calc(100% + 10px);
}

li.swiper-pagination-bullet circle.progress-bar__background {
    fill: none;
    stroke: #fff;
    stroke-width: 1;
}
.progress-bar__progress {
    fill: none;
    stroke: #1f336f;
    stroke-dasharray: 100 100;
    stroke-dashoffset: 100;
    stroke-width: 2;
    /*   transition: stroke-dashoffset 2s linear; */
}
li.swiper-pagination-bullet-active svg circle.progress-bar__progress {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 5s linear;
}
.progress-bar__progress.disabled {
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0s;
}
.index-banner {
    display: flex;
    height: 100%;
}
.index-banner-text {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 28%;
    background: linear-gradient(to right, #004e92, #000428);
    color: #fff;
    padding: 5% 2% 0 2%;
    z-index: 10;
}
.index-banner-text h1,
.index-banner-text h2 {
    color: #fff;
    font-size: 1.6em;
    margin-bottom: 20px;
}
.index-banner-text h1:after,
.index-banner-text h2:after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #c11e07;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    margin-left: 0;
    margin-bottom: 0;
}
.index-banner-text a h2 {
    margin-bottom: 0;
}
.index-banner-text a h2:after {
    content: none;
}
.index-banner-text p {
    font-size: 20px;
    padding-bottom: 25px;
}
.index-banner-image {
    width: 100%;
}
.index-banner-image:after {
    content: '';
    display: block;
    height: 20%;
    width: 100%;
    background: linear-gradient(transparent, black);
    position: absolute;
    bottom: 0;
}
.index-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*.index-banner-image {
    width: 70%;
    background-size: cover !important;
    height: 100%;
    !*background-position-y: -150px !important;*!
}
.index-banner-image img {
    height: 100%;
    width: 100%;
    filter: brightness(90%);
}*/
li.multiline {
    display: flex;
    align-items: baseline;
}
ul.list-inline {
    line-height: 1.95em;
}
/*.quality-item {
    overflow: hidden;
    box-shadow: 0 0 30px rgb(225 225 216 / 45%);
}*/
.sw-items__item {
    padding: 10px;
}
.sw-items__text {
    padding: 15px;
    background-color: #eee;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.sw-items__text span.sw-items__num {
    float: left;
    font-size: 4.5em;
    font-weight: 900;
    color: #c11e07;
    margin-right: 5%;
}
.sw-items__text span.sw-items__double-number {
    width: 1.2em;
}
.view-page p {
    text-align: justify;
}
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(100px);
    }
}
svg #wheel {
    animation: scroll ease 1.5s infinite;
}
.bg-image-4850037 {
    background-size: 40%;
    background: url(../images/site/bg-npz1.webp) no-repeat fixed left;
}
.index-product-card {
    position: relative;
    padding: 10px;
    margin-bottom: 6em;
    overflow: hidden;
}
.index-product-card h2 {
    font-size: 1.4em;
    line-height: 38px;
}
.index-product-card h2::after {
    content: none;
}
.index-product-card::after {
    background-image: -webkit-linear-gradient(90deg, rgb(44, 49, 56) 0%, rgba(74, 144, 226, 0.15) 100%);
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: -moz-linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.30196) 100%);
    /* background-image: -webkit-linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.30196) 100%); */
    background-image: -ms-linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.30196) 100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: .1;
}
.index-product-card__body {
/*    display: flex;
    justify-content: center;
    align-items: center;*/
    height: 400px;
}
.index-product-card__slider {
    position: relative;
}
.index-product-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-product-card__controls {
    position: absolute;
    top: 20px;
    right: 20px;
}
.index-product-card__controls .swiper-button-next:after,
.index-product-card__controls .swiper-button-prev:after {
    font-size: 2em;
}
.index-product-wrapper {
    height: 400px;
}
.product-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-product-content-wrapper {
    padding-left: 5%;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.index-product-img-wrapper {
    width: 50%;
}
.yandex-rating-badge {
    position: fixed;
    top: 20px;
    right: 50px;
}
.subscribe-button {
    height: auto;
    padding: 16px 4%;
    position: absolute;
    right: 50%;
    background-color: #c11e07;
    color: #fff;
    border: none;
    transition: background-color .3s linear;
    text-transform: uppercase;
    bottom: 0;
    transform: translateX(50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.subscribe-button:hover {
    color: #fff !important;
}
.index-banner-text .subscribe-button {
    padding: 10px 20px;
    width: 200px;
    position: relative;
    transform: none;
    right: auto;
    margin-left: 0;
}
.user-cookie-confirm {
    position: fixed;
    z-index: 10;
    bottom: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
    background-color: #eee;
    color: #1f336f;
    padding: 20px 0;
}
.user-cookie-confirm p {
    padding: 0 0 20px 0;
    margin: 0;
}
.user-cookie-confirm .subscribe-button {
    position: relative;
    margin: 0 auto;
    right: 0;
    transform: translateX(0);
    zoom: .8;
}
.subscribe-button:hover {
    /*background-color: #c11e07;*/
    background-color: #ff4e25;
}
.user-cookie-confirm .lds-spinner {
    bottom: 65px;
}
.index-banner-text a {
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
}
.index-banner-text a img {
    animation: animate 2s infinite;
    position: relative;
    width: 75px;
    height: 100%;
    margin-left: 30px;
}
.vacancy-page h2:after {
    text-align: left;
    margin: 25px 0;
}
@keyframes animate {
    0% {
        opacity: .9;
        transform: translateX(-15px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: .9;
        transform: translateX(15px);
    }
}
@keyframes bg-move {
    0% {
        background-position-x: 50%;
        background-size: 25%;
    }
    /*50% {
        transform: rotate(60deg);
    }*/
    100% {
        background-position-x: 0;
        background-size: 50%;
    }
}

@media (prefers-reduced-motion: no-preference) {
    section.bg-move {
        animation-name: bg-move;
        animation-duration: 1s;
        animation-delay: .2s;
        /*animation-iteration-count: infinite;*/
    }
}

/* reset text content end */
@media (min-width: 992px) {
    #home {
        margin-top: -2%;
        padding-top: 0;
    }
    #home .hidden-mobile {
        height: 100%;
    }
    .header-navigations {
        position: absolute;
        top: 715px;
        width: 100%;
    }
    .header-navigations-list {
        display: flex;
        flex-direction: row;
        margin: 0 auto;
        padding-left: 5%;
        padding-right: 5%;
        justify-content: space-around;
    }
    .header-navigations-list li {
        cursor: pointer;
        background-color: #fff;
        padding: 20px;
        color: #1f336f;
        font-weight: 600;
        height: 150px;
        max-width: 330px;
        width: 330px;
        zoom: calc((100% / 90) * 100);
    }
    .header-navigations-list li a {
        bottom: 20px;
        position: absolute;
        font-size: 18px;
    }
    .header-navigations-list li:hover {
        background-color: #c11e07;
        color: #fff;
        transition: all .5s;
    }
    .header-navigations-list li:hover a {
        transition: all .5s;
        color: #fff;
    }
    .header-navigations-list li .header-navigations-list-icon svg {
        fill: #1f336f;
    }
    .header-navigations-list li:hover .header-navigations-list-icon svg {
        transition: all .5s;
        fill: #fff;
    }
    .header-navigations-list-icon {
        width: 110px;
        float: right;
    }
    .navbar-area {
        height: 89px;
    }
    .navbar-nav .nav-item {
        height: 88px;
        display: flex;
        align-items: center;
    }
    .feature-box-big {
        height: 400px;
    }
    .feature-content {
        height: 120px;
    }
    .product-arrow {
        position: absolute;
        display: flex;
        align-items: center;
        height: 100%;
        cursor: pointer;
        z-index: 1;
    }
    .product-arrow-left,
    .product-arrow-right {
        position: absolute;
    }
    .product-arrow-left:hover svg g path,
    .product-arrow-right:hover  svg g path {
        fill: #000;
    }
    .product-arrow-right {
        position: absolute;
        right: -10em;
    }
    .product-arrow-left {
        position: absolute;
        left: -10em;
    }
    .product-arrow-left-path,
    .product-arrow-right-path {
        fill: rgb(107 114 116);
    }
    .product-arrow-left-path:hover,
    .product-arrow-right-path:hover {
        fill: #001;
    }
    .block-tile {
        background-color: #fff;
        padding: 2em 15px 2em 15px;
    }
    .scroll-down-wrapper {
        z-index: 10;
        position: relative;
    }
    .scroll-down-wrapper .scroll-down {
        width: 22px;
    }
    @-webkit-keyframes slide-in-top {
        0% {
            opacity: .8;
            width: 0;
        }
        100% {
            opacity: 1;
            width: 100%;
        }
    }
    @keyframes slide-in-top {
        0% {
            opacity: .8;
            width: 0;
        }
        100% {
            opacity: 1;
            width: 100%;
        }
    }
    .quality-item {
        padding: 0 2%;
        height: auto;
    }
    .quality-item a,
    .news-layout a {
        position: relative;
    }
    .doc-overlay,
    .news-overlay {
        position: absolute;
        visibility: hidden;
        overflow: hidden;
        top: 0;
        left: -999999px;
        height: 400px;
    }
    .doc-overlay,
    .quality-item a {
        height: auto;
    }
    .quality-item h4 {
        height: 75px;
        overflow: hidden;
    }
    .quality-item h3 {
        font-size: 25px;
        height: 180px;
        line-height: 35px;
        text-align: left;
        margin-bottom: 20px;
        display: flex;
        align-items: flex-end;
    }
    .doc-overlay h3,
    .news-overlay h3 {
        position: absolute;
        top: 30px;
        left: 20px;
        color: #fff;
        font-size: 25px;
        width: 350px;
        padding: 0 10px;
        height: auto;
        line-height: 35px;
        text-align: left;
    }
    .news-overlay h3:after {

    }
    .news-overlay h3:hover:after {

    }
    .news-overlay-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        color: #fff;
        align-items: center;
        height: 80px;
    }
    .news-overlay-bottom time,
    .news-overlay-bottom span {
        width: 200px;
        height: 100%;
        align-items: center;
        display: flex;
        position: absolute;
    }
    .news-overlay-bottom img {
        width: 100px;
        height: 100%;
        position: absolute;
        right: 20px;
        border: none;
        animation: animate 2s infinite;
    }
    .quality-item a:hover .doc-overlay,
    .news-layout a:hover .news-overlay {
        visibility: visible;
        left: 0;
        background-color: #1f336f;
        z-index: 10;
        width: 100%;
        -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }
    .quality-item a:hover > h3.doc-title {
        visibility: hidden;
    }
    .quality-item a:hover .doc-overlay {
        /* margin-top: 40px; */
        max-height: 500px;
        bottom: 0;
        position: absolute;
        margin-top: 40px;
    }
    .contacts-page address {
        min-height: 250px;
    }
}
/** MOBILE **/
@media (max-width: 991px) {
    .view-page p {
        text-align: left;
    }
    .index-banner-text h1 {
        color: #fff;
        font-size: 1.2em;
        margin-bottom: 0;
    }
    .sw-items__item {
        padding: 5px;
    }
    .quality-item {
        margin: auto;
    }
    .quality-item h3 {
        height: auto;
        text-align: left;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .header-social-link {
        margin-top: 20px;
        line-height: 22px;
        position: fixed;
        bottom: 5%;
        color: rgba(0,0,0,0.66)!important;
    }
    .header-social-link-top {
        margin-top: 0;
        position: fixed;
        top: calc(71px + 5px);
        right: 10px;
        background-color: #fff;
        border-radius: 5px;
        align-items: center;
    }
    .navbar-wrapper {
        height: 71px;
        line-height: 40px;
        width: 100%;
        padding-left: 15px;
    }
    .nav-item {
        z-index: 999;
        background-color: #fff;
    }
/*    .nav-item.dropdown {
        margin-bottom: 10px;
    }*/
    footer p .fa, .footer_ul_amrc li, .footer_ul_amrc li i, .footer_ul_amrc li a {
        font-size: 1em;
    }
    .feature-box-big {
        height: auto;
    }
    .feature-content {
        height: auto;
    }
    .feature-content, .news-date {
        padding: 10px;
    }
    .box-style .box-content-style h3 {
        margin-top: 0;
    }
    .about_our_serv_hold {
        margin: 0 auto !important;
    }
    .table>:not(caption)>*>* {
        padding: .3rem .3rem;
    }
    section {
        min-height: 300px;
    }
    .nav-top {
        display: none;
    }
    .product-content {
        flex-direction: column;
        width: 200px;
    }
    .product-title {
        align-items: center;
        width: 100%;
        height: 100px;
        padding: 0;
    }
    .product-title span {
        font-size: 14px;
        font-weight: 700;
    }
    .product-title span.product-title-medium,
    .product-title span.product-title-big {
        width: 100%;
    }
    .product-content .product-image img {
        width: 550px;
        height: 200px;
        object-fit: cover;
    }
    .product-property {
        margin-bottom: 0;
    }
    .product-property table {
        width: 200px;
        font-size: x-small;
        margin-bottom: 0;
    }
    .swiper-container-fade .swiper-slide {
        overflow: hidden;
        background-size: cover !important;
    }
    .swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
        background-color: #1f336f;
        padding: 20px;
    }
    .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
        bottom: 0;
        margin: 0 5px;
        border-radius: 0%;
        width: 25px;
        height: 25px;
        float: left;
        font-size: 22px;
        font-weight: 300;
        color: #1f336f;
    }
    .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: auto;
        left: auto;
        text-align: center;
        padding: 0 5%;
    }
    .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #1f336f;
        color: #fff !important;
        width: 30px;
        height: 30px;
        font-size: 20px;
        transition: background 1s;
    }
    .swiper-button-prev {
        left: 0;
    }
    .swiper-button-next {
        right: 0;
    }
    .swiper-slide-text {
        bottom: 0;
    }
    .desktop-text {
        display: none;
    }
    .mobile-text {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #1f336f;
        height: 130px;
        width: 100%;
        font-size: 16px;
        padding: 10px;
        position: relative;
    }
    .main-slider {
        height: auto;
    }
    .mobile-text span {
        z-index: 2;
    }
    .mobile-text-content {
        z-index: 10;
    }
    .swiper-slide-text:before {
        opacity: 1;
    }
    .swiper-slide-image img {
        height: 270px;
    }
    .swiper-slide-image:after {
        content: none;
    }
    .swiper-pagination {
        position: relative;
        margin-top: 5px;
    }
    .mob-overlay {
        position: absolute;
        width: 100%;
        height: 10vh;
        background-color: #000;
        opacity: 0.5;
    }
    .hidden-desktop {
        display: block;
    }
    .hidden-mobile {
        display: none;
    }
    .before {
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }
    .swiper-slide-text h4 {
        color: #fff;
    }
    .product-slider.gallery-top {
        height: 200px;
    }
    .carousel-section-wrapper .swiper-button-next.swiper-button-white,
    .carousel-section-wrapper .swiper-button-prev.swiper-button-white {
        top: 33%;
    }
    .yandex-rating-badge {
        position: fixed;
        bottom: 0;
        right: 0;
        /* transform: scale(.8); */
        top: auto;
    }
    /*ddd*/
    h1 {
        font-size: 1.6em;
    }
    h2 {
        font-size: 1.5em;
    }
    h3 {
        font-size: 1.4em;
    }
    h4 {
        font-size: 1.3em;
    }
    h5 {
        font-size: 1.2em;
    }
    .doc-overlay,
    .news-overlay {
        display: none;
    }
    .user-cookie-confirm p {
        padding: 20px;
    }
    .user-cookie-confirm .subscribe-button {
        position: relative;
        /* transform: translateX(50%); */
        zoom: .8;
        margin-left: 20px;
        margin-right: auto;
    }
    .user-cookie-confirm .lds-spinner {
        left: 220px;
    }
    .vacancy-list {
        padding-left: 2%;
        padding-right: 2%;
    }
}
.alert-main {
    color: #fff;
    background-color: #004e92 !important;
    border-color: #bee5eb !important;
    position: fixed !important;
    right: 1%;
    bottom: 5%;
    z-index: 999;
}
.close:hover {
    color: inherit;
    text-decoration: none;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0 0.5rem;
}
.navbar-nav .nav-item a.nav-link:after {
    background-color: transparent;
}
.dropdown-menu li:hover a,
.navbar-nav .nav-item:hover a.nav-link {
    color: blue;
}
.properties-list a.active {
    background-color: #1f336f;
    color: #fff;
}
.breadcrumb {
    background-color:transparent !important;
}
a:hover {
    color: blue !important;
}

/*body {
    font-size: calc(0.75em + 1vmin);
}*/
