@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

:root {
    --bg-color-dark: #29292D;;
    --bg-color-light-gray: #FAFAFA;
    --border-color-light-gray: #808080;
    --color-white: #FFFFFF;
    --dots-color-gray: #8C8C8C;
    --button--hover: #c90617;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
    height: 100%;
}

pre {
    color: #000;
}

body {
    margin: 0;
}

h1 {
    font-style: normal;
    font-weight: normal;
    font-size: 32px;
    color: #000000;
}

h2 {
    font-style: normal;
    font-weight: normal;
    font-size: 56px;
    line-height: 77px;
    color: #3F3F44;
}

h3 {
    font-style: normal;
    font-weight: normal;
    font-size: 42px;
    line-height: 50px;
    color: #3F3F44;
}

h4 {
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 50px;
    color: #3F3F44;
    margin: 20px 0;
}

h5 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 26px;
    line-height: 36px;
    color: #3F3F44;
}

h6 {
    font-style: normal;
    font-weight: normal;
    font-size: 21px;
    line-height: 29px;
    color: #3F3F44;
}

.parent-section h3 {
    margin: 0.5em 0;
}

p {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    color: var(--bg-color-light-gray);
    font-size: 16px;
    line-height: 24px;
}

p strong {
    font-size: 16px;
    font-weight: 600;
}

a {
    color: var(--bg-color-light-gray);
    text-decoration: none;
}

.container {
    max-width: 1410px;
    width: 100%;
    margin: 0 auto;
}

.navigation {
    font-family: 'Open Sans';
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.navigation__links ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigation__links ul li {
    padding: 15px 25px;
    white-space: nowrap;
}

@media (max-width: 1770px) {
    .navigation__links ul li {
        padding: 15px 10px;
    }
}
@media (max-width: 1367px) {
    .navigation__links ul li {
        padding: 15px 5px;
    }
}
@media (max-width: 1280px) {
    .navigation__links ul li {
        padding: 15px 3px;
    }
}
.navigation__other {
    display: flex;
    color: #ffffff;
    align-items: center;
}

.lang__switcher {
    display: flex;
    align-items: center;
}

.search {
    margin: 0 25px;
    cursor: pointer;
    max-width: 25px;
    max-height: 25px;
}

.search img {
    max-width: 100%;
}

.search__close {
    cursor: pointer;
}

.lang__switcher img {
    margin: 5px 5px 0;
}

.user__cabinet {
    display: flex;
    align-items: center;
}
.user__cabinet span {
    color: white;
}

.user__cabinet img {
    margin: 0 5px;
}

.button__link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    font-size: 18px;
    line-height: 30px;
    height: 50px;
    background: #EE061A;
    color: var(--color-white);
    transition: 0.6s;
    border: 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    white-space: nowrap;
}

.button__link:hover {
    background: var(--button--hover);
    transition: 0.6s;
}

.public__text {
    font-family: 'Open Sans';
    font-size: 24px;
    line-height: 36px;
    max-width: 1170px;
    margin: 60px auto;
    padding: 10px;
}

.public__text .button__link {
    margin-top: 40px;
}

.for {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.for .block {
    font-family: 'Open Sans';
    max-width: 33%;
    width: 100%;
    max-height: 600px;
    display: flex;
    overflow: hidden;
    position: relative;
    justify-content: center;
    cursor: pointer;

}

/*.for .block::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(41, 41, 45, 0.9);
    left: 0;
    top: 0;
    transition: opacity 0.6s;
    opacity: 0.8;
}*/

.for .block .bubbles::after { /*Добавил*/
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(41, 41, 45, 0.7);
    left: 0;
    top: 0;
    transition: opacity 0.6s;
    opacity: 0.7;
}

/*.for .block:hover::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(41, 41, 45, 0.6);
    left: 0;
    top: 0;
    transition: opacity 0.6s;
    opacity: 0.7;
}*/

.for .block:hover .bubbles::after { /*Добавил*/
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: none;
    left: 0;
    top: 0;
    transition: opacity 0.6s;
    opacity: 0;
}

.for .block:hover .block__text { /*Добавил*/
    background: rgba(41, 41, 45, 0.6);
}

.bubbles::before {
    content: '';
    position: absolute;
    background-image: url('../img/back_bubbles.png');
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: opacity 0.6s;
    opacity: 0.1;
}

.for .block__text {
    position: absolute;
    width: 80%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.for .block img {
    width: 100%;
    object-fit: cover;
    height: 600px;
    /*
    -moz-transition: all 1s ease-out;
	-o-transition: all 1s ease-out;
	-webkit-transition: all 1s ease-out;
	*/
    z-index: -1;
}

.for .block:hover img {
    /*	-webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);*/
    z-index: -1;
}

.for .block:hover .block__text {
    z-index: 3;
}

/*
.block::before {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(41, 41, 45, 0.6);
    left: 0;
    top: 0;
    transition: opacity 0.6s;
    height: 100%;
    opacity: 1;
}*/

/*menu*/
.menu__left {
    max-width: 340px;
    min-width: 340px;
    width: 100%;
    /*margin-right: 20px;*/
    position: relative;
}

.menu__left ul {
    margin: 50px 0;
    padding: 0;
    position: sticky;
    top: 65px;
}

.menu__left ul li {
    list-style: none;
    position: relative;
}

.menu__left ul li a {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #707075;
}

.menu__left ul li.active a {
    color: #3F3F44;
}

@media (max-width: 1200px) {
    .menu__left {
        display: none;
    }
}

.for .block__text .title {
    font-style: normal;
    font-weight: normal; /*bold;*/
    font-size: 26px;
    line-height: 37px;
    text-align: center;
    color: var(--color-white);
}

.block__text .sub__title {
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin-top: 10px;
    color: var(--bg-color-light-gray);
}

.block__arrow {
    position: absolute;
    width: 26px;
    height: 26px;
    bottom: 50px;
    right: 50px;
    z-index: 1;
}
.vacancy__block_info .block__arrow {
    bottom: 20px;
}

.block__arrow svg {
    transition: 0.6s;
    transform: rotate(0deg);
}

.block:hover .block__arrow svg {
    transform: rotate(90deg);
    transition: 0.6s;
    fill: red;
}

.bubble_banner {
    background-color: #000000;
    position: relative;
    padding: 50px 0 0 0;
    margin: 10px 0;
    color: var(--color-white);
    text-align: center;
    min-height: 380px;
    z-index: 1;
}

.banner__img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.banner__img img {
    max-width: 100%;
}

.bubble_banner .button__link {
    margin: 20px auto;
    width: 270px;
}

.bubble_banner h4 {
    color: var(--color-white);
}

.bubble_banner p {
    max-width: 690px;
    margin: 0 auto 35px;
}

.bubble_banner .bubbles::before {
    z-index: -1;
}


.customn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 99%;
    margin: 0 auto;
}

.customn .customn__element_button {
    margin-bottom: 30px;
}

.customn__element {
    position: relative;
    width: 49.7%;
    font-family: 'Open Sans';
    overflow: hidden;
    min-height: 580px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
}

.customn .customn__element:nth-child(2) {
    background-color: var(--bg-color-dark);
}

.customn .customn__element:nth-child(2) .customn__element_subtitle {
    color: var(--color-white);
}

.customn__element__info {
    max-width: 450px;
    text-align: center;
    margin: 0 auto;
}

.customn__element_title {
    font-weight: normal; /*bold;*/
    font-size: 32px;
    line-height: 44px;
    color: #EA2839;
    /*padding: 50px 0 0;*/
}

.customn__element_subtitle {
    font-weight: normal;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #3F3F44;
}

.customn__element_button .button__link {
    max-width: 138px;
    margin: 20px auto 0;
}

.customn__element .customn__element_img img {
    max-width: 100%;
    /*margin: 35px 0;*/
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
}

.customn__element:hover .customn__element_img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    z-index: -1;
}

.customn__element_label {
    position: absolute;
    bottom: 0px;
    right: 20px;
    z-index: 1;
}

.customn .customn__element:nth-child(3) {
    height: 100%;
    min-height: 600px;
    display: flex;
    justify-content: end;
}

.customn .customn__element:nth-child(3) img {
    position: absolute;
    height: 100%;
}

.customn .customn__element:nth-child(3)::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    background: linear-gradient(180deg, rgba(41, 41, 45, 0.2) 0%, rgba(41, 41, 45, 0.9) 100%);
    left: 0;
    width: 100%;
    height: 100%;
}

.items__right {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
}

.custom__item {
    display: flex;
    margin: 20px 0 40px 0;
}

.subtitle {
    font-style: normal;
    font-weight: normal; /*bold;*/
    font-size: 20px;
    line-height: 24px;
    color: #3F3F44;
    margin-bottom: 5px;
}

.custom__item_icon img {
    width: 40px;
    max-height: 60px;
}

.custom__item_text p {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #56565E;
    margin: 0;
}

.customn__element .block {
    padding: 0 80px;
    max-height: 600px;
}

.custom__item span {
    margin: 0 20px;
    font-weight: 100;
    font-size: 46px;
    line-height: 0.3;
    color: #56565E;
}

.numbers__block {
    z-index: 2;
    display: flex;
    position: relative;
    align-self: end;
    padding: 0 30px 50px;
}

.numbers__block .number {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 96px;
    line-height: 110px;
    color: var(--color-white);
}

.numbers__block .title {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal; /*bold;*/
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #EA2839;
    margin-bottom: 20px;
}

.numbers__block .subtitle {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
    color: #F0F0F0;
}

.number__block_left {
    max-width: 300px;
    width: 100%;
    margin-right: 65px;
}

.number__block_right {
    max-width: 300px;
    width: 100%;
}

.customn__catalog {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 99%;
    margin: 0 auto;
}

.customn__catalog .customn__element:nth-child(2) {
    background-color: var(--bg-color-dark);
}

.customn__catalog .customn__element:nth-child(2) .customn__element_subtitle {
    color: var(--color-white);
}

.customn__catalog .customn__element:nth-child(3) {
    background-color: var(--bg-color-dark);
}

.customn__catalog .customn__element:nth-child(3) .customn__element_subtitle {
    color: var(--color-white);
}

.customn__catalog .customn__element_subtitle {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal; /*bold;*/
    font-size: 30px;
    line-height: 37px;
    text-align: center;
    color: #3F3F44;
}

.customn__catalog .customn__element__info {
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
    height: 100%;
}

.customn__catalog .customn__element_img {
    /*max-width: 450px;*/
    /*margin: 70px auto;*/
}

.customn__element_button {
    margin-bottom: 60px;
}

.map_creation {
    display: flex;
    background-color: var(--bg-color-light-gray);
}

.map_creation .info {
    max-width: 560px;
    padding: 30px 0 60px;
}

.map_creation .info p {
    color: #3F3F44;
    padding: 20px 0 50px;
}

.map_creation .buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 422px;
}

.map_creation .buttons .button {
    margin: 0 0 20px;
    width: 45%;
}

.map_creation .picture {
    align-items: center;
    vertical-align: middle;
    display: flex;
    margin: 0 auto;
}

.map_creation .picture img {
    max-width: 100%;
}

.map {
    height: 100px;
    overflow: hidden;
    position: relative;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: 0.6s;
}

.map_creation .buttons.buttons__mobile {
    display: none;
}

@media (max-width: 991px) {

    .map_creation .info {
        padding: 30px 0 30px;
    }

    .map_creation .info h4 {
        font-size: 30px;
        line-height: 36px;
    }

    .map_creation .info p {
        font-size: 18px;
        line-height: 26px;
        padding: 0;
    }

    .info .buttons {
        display: none;
    }

    .map_creation {
        display: block;
    }

    .map_creation .buttons.buttons__mobile {
        display: flex;
    }

    .buttons__mobile {
        margin: 30px auto;
    }

    .buttons__mobile .button__link {
        width: 115px;
    }

}

footer .oppener {
    background-image: url('../img/oppener_map.svg');
    width: 50px;
    height: 50px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: rotate(-180deg);
    transition: 0.6s;
}

footer.navigation {
    position: relative;
}

.turner {
    transform: rotate(180deg) !important;
    transition: 0.6s;
}

.overflowwer {
    overflow: hidden !important;
    transition: 0.6s;
    height: 400px !important;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}

.ymaps-map {
    -ms-touch-action: auto !important;
    touch-action: auto !important;
}

/*about*/

.row {
    display: flex;
    justify-content: space-between;
}

.header__page__title {
    position: absolute;
    max-width: 690px;
    top: 10%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.header__page__title p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 30px;
    color: #3F3F44;
}

.anchor__menu__left {
    max-width: 340px;
    min-width: 340px;
    width: 100%;
    /*margin-right: 20px;*/
    position: relative;
}

.anchor__menu__left ul {
    margin: 75px 0;
    padding: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 65px;
}

.anchor__menu__left ul li {
    list-style: none;
    position: relative;
}

.anchor__menu__left ul li a {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #707075;
}

.anchor__menu__left ul li.active a {
    color: #3F3F44;
}

.right__block {
    width: 100%;
    margin: 30px 0;
}

.right__block .subtitle {
    font-family: 'Open Sans';
    margin-bottom: 30px;
}

.vacancy__block {
    background-color: var(--bg-color-light-gray);
    padding: 30px;
    margin: 0 0 10px 0;
}

.vacancy__block:hover .block__arrow svg {
    transform: rotate(90deg);
    transition: 0.6s;
    fill: red;
}

.vacancy__block p {
    color: #3F3F44;
}

.header__page_img img {
    width: 100%;
}

.right__block p {
    color: #3F3F44;
    margin-bottom: 30px;
}

.right__block h6 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal; /*bold;*/
    font-size: 24px;
    line-height: 28px;
    color: #3F3F44;
}

.numbers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0;
}

.numbers__item {
    display: flex;
    max-width: 465px;
    width: 100%;
    flex-wrap: wrap;
}

.numbers__item_num {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 96px;
    line-height: 116px;
    color: #EA2839;
}

.numbers__item_info {
    max-width: 270px;
    width: 100%;
    margin: 20px 0 0 20px;
}

.numbers__item_info_title {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal; /*bold;*/
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: #3F3F44;
}

.numbers__item_info_text {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #707075;
}

.standart {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 50px 0;
}

.standart__block {
    max-width: 340px;
    min-width: 340px;
    background-color: var(--bg-color-light-gray);
    text-align: center;
    min-height: 210px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 10px 0;
}

.standart__block_img {
    padding: 20px 0;
}

.standart__block_img img {
    max-width: 100%;
}

.standart__block_text {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #707075;
}

.h-180 {
    max-height: 180px !important;
    min-height: 180px !important;
}

.search__panel {
    max-height: 105px;
    max-width: 1410px;
    height: 100%;
    background-color: var(--bg-color-light-gray);
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 88px;
    z-index: 2;
    display: none;
    width: 100%;
}

@media (max-width: 1770px) {
    .search__panel {
        top: 52px;
    }
}

@media (max-width: 1200px) {
    .search__panel {
        top: 50px;
    }
}

.search__panel .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px 5px;
}

.search__panel.show {
    display: block;
    animation: search-panel 1s cubic-bezier(.3, 0, .3, 1) forwards;
}

/*catalog*/

.catalog {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.catalog .block {
    font-family: 'Open Sans';
    max-width: 32%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    justify-content: space-between;
    cursor: pointer;
    margin: 5px 0;
    background-color: var(--bg-color-light-gray);
    transition: 0.6s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 3px;
    padding: 15px;
}

.catalog .block__text {
    padding: 10px;
}

.catalog .block__text .title,
.catalog .block__text .title a {
    position: relative;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 26px;
    line-height: 36px;
    color: #3F3F44;
    max-width: 370px;
    width: 100%;
}

.ul_list {
    padding: 20px 20px;
    margin: 0;
}

.ul_list li {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 26px;
    color: #3F3F44;
}

.description__text .ul_list li {
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
}

.characteristics table tr .ul_list li {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #3F3F44;
    white-space: break-spaces;
}

.ul_list li a {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    color: #3F3F44;
}

.catalog .block .img {
    text-align: center;
}

.catalog .block .img img {
    max-width: 88%;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
}

.catalog .block:hover {
    background-color: #000000;
    transition: 0.6s;
}

.catalog .block:hover .img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.catalog .block:hover .ul_list li a {
    color: var(--color-white);
}

.catalog .block:hover .block__text .title,
.catalog .block:hover .block__text .title a {
    color: var(--color-white);
}

.ul_list li {
    list-style-image: url('../img/square_catalog.png');
    padding: 5px;
}

.link__block {
    display: block;
}

.back__link a p {
    padding: 50px 0px 30px;
    color: #707075;
    font-size: 14px;
}

.back__link p {
    font-size: 14px;
}

.customn__catalog .customn__element_subtitle {
    padding-top: 50px;
}

/*services*/
.right__block_services .subtitle {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal; /*bold;*/
    font-size: 20px;
    line-height: 30px;
    color: #3F3F44;
    margin: 60px 0;
}

.right__block_services h6 {
    margin-bottom: 20px;
}

.right__block_services ul {
    list-style: none;
    padding: 0 15px;
    margin: 0;
}

.right__block_services ul li {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    color: #3F3F44;
    padding: 5px 20px;
}

.right__block_services ul li {
    list-style-type: "– ";
}

/*Vacancies*/

.vacancy__block {
    background-color: var(--bg-color-light-gray);
    padding: 30px;
    margin: 0 0 10px 0;
    position: relative;
}

.vacancy__block p {
    color: #3F3F44;
}

p.more__details {
    color: rgba(234, 40, 57, 1);
    display: block;
    position: absolute;
    bottom: 10px;
    margin: 0;
    right: 30px;
}

.vacancy__block_info .subtitle {
    margin: 0;
}

.header__page_img img {
    width: 100%;
    min-height: 647px;
    object-fit: cover;
}

/*support*/

.detail__page_right .text {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    color: #3F3F44;
    padding: 30px 0;
}

.detail__page_right .item__name {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 48px;
    line-height: 50px;
    color: #EA2839;
}

.detail__page_right .list__name {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 30px;
    line-height: 36px;
    color: #3F3F44;
}

.detail__page_right .text a {
    color: rgba(234, 40, 57, 1);
}

.ul_list li a {
    color: rgba(234, 40, 57, 1);
}

/*brandbook*/

.download-link-wrapper .download-link:not(:last-of-type) {
    border-bottom: none;
}

.download-link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    color: #3F3F44;
    border-bottom: 1px solid #e6eaef;
    border-top: 1px solid #e6eaef;
    padding-bottom: 30px;
    padding-top: 30px;
    transition: border-color .3s, color .3s;
}

.download-link__wrapper {
    display: flex;
    align-items: center;
}

.download-link__text {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-left: 30px;
}


.download-link__info {
    font-size: 1.2rem;
    line-height: 1;
    padding-top: 4px;
    text-transform: uppercase;
    font-family: 'Open Sans';
    margin-left: 15px;
}

.download-link:not(:last-of-type) {
    border-bottom: none;
}

.download-link:hover {
    outline: none;
    color: rgba(23, 44, 95, .5);
}

.download-link:hover .download-link__icon {
    border-color: rgba(23, 44, 95, .5);
    color: rgba(23, 44, 95, .5);
}

.brand__book {
    margin-bottom: 40px;
}

@media (max-width: 767.98px) {
    .download-link__info {
        display: none;
    }

    .download-link__text {
        margin-left: 15px;
    }
}

@media (min-width: 1200px) {

    .download-link__icon {
        font-size: 1rem;
    }

    .download-link__text {
        font-size: 1.5rem;
    }

    .download-link__info, .os-ios .download-link__info {
        font-size: 1rem;
    }

}

@media (max-width: 1500px) {

    .customn__element .block {
        overflow: scroll;
    }

}

@media (max-width: 1400px) {

    .catalog {
        justify-content: space-between;
    }

    .catalog .block {
        max-width: 47%;
    }

    .catalog .block__text {
        padding: 24px;
    }
}

@media (max-width: 1200px) {

    .right__block_services {
        padding: 10px;
    }

}

@media (max-width: 991px) {

    .section__block .section__item {
        display: block;
    }

    .section__item .section__item_img {
        min-width: 380px;
    }

    .services {
        justify-content: space-around;
    }

}

@media (max-width: 475px) {

    h1 {

    }

    h2 {
        font-size: 40px;
        line-height: 50px;
    }

    h3 {
        font-size: 24px;
        line-height: 32px;
    }

    h4 {
        font-size: 30px;
        line-height: 36px;
    }

    h5 {
        font-size: 30px;
        line-height: 36px;
    }

    h6 {
        font-size: 20px;
        line-height: 30px;
    }

    .right__block h6 {
        font-size: 20px;
        line-height: 30px;
    }

    .subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    p {
        font-size: 14px;
        line-height: 24px;
    }

    .customn .customn__element:nth-child(3) {
        height: 100%;
        min-height: 500px;
        display: block;
    }

    .numbers__block {
        z-index: 2;
        position: relative;
        align-self: start;
        display: block;
        padding: 0 30px;
    }

    .number__block_left {
        padding: 20px 0;
    }

    .services__item {
        overflow: hidden;
    }

    .services__item .text {
        font-size: 20px;
        line-height: 24px;
        padding: 30px 15px;
    }

    .bubbles::before {
        top: -3px;
    }

    .services__item:before {
        top: -3px;
    }

    .catalog .block .img img {
        max-width: 335px;
    }

    .catalog .block {
        min-height: 570px;
    }

    .catalog .block__text {
        padding: 50px;
        min-height: 110px;
    }

}

table.table, table.table th, table.table td {
    border: 1px solid #dedede;
}

table.table th {
    background-color: #ff552f;
    color: white;
    padding: 10px;
}

table.table td {
    text-align: center;
    padding: 10px;
}

table.table td.left {
    text-align: left;
    padding: 10px;
}

table.table tr:nth-child(odd):not(:nth-last-child(1)) {
    background-color: #ececec;
}

table.table tr td:nth-child(1):not(:nth-last-child(1)) {
    font-weight: normal; /*bold;*/
    vertical-align: middle;
}

.right__block_services .list__name {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 30px;
    line-height: 36px;
    color: #3F3F44;
}

/*solution__description*/

.description__block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}

.description__item {
    width: 49%;
    position: relative;
    background-color: var(--bg-color-light-gray);
}

.description__item.big {
    width: 100%;
    padding: 12px;
    position: relative;
    background-color: var(--bg-color-light-gray);
    margin: 10px 0;
}

.description__item:nth-child(1) {
    margin-right: 10px;
}

.description__item_info {
    padding: 30px;
}

.description__item_info .list__name {
    padding: 15px 0;
}

.photo img {
    width: 49%;
}

@media (max-width: 600px) {

    .description__item {
        width: 100%;
        margin-bottom: 10px
    }

    .description__item:nth-child(1) {
        margin-right: 0px;
    }

}

/*Добавил корректировки в соответствии с решением руководителя*/
/*.swiper-slide--title h1 {
    color: #eaffff;
}*/
.swiper-slider--background::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: opacity 0.6s;
    background: linear-gradient(270deg, rgb(11 36 96 / 37%) 0%, rgb(10 18 56 / 23%) 80%), rgb(6 43 79 / 22%);
}

/*СПИСОК со спецмаркером на /about/production/konstruktiv_page/*/
ul.special-marcer-arrow {
    list-style-type: none;
    padding-left: 0;
}

ul.special-marcer-arrow li {
    list-style-type: "➤";
}

ul.special-marcer-arrow li::marker {
    color: #EA2839;
}

.block-list-spec-marcer {
    width: 100%;
    padding: 0 0 0 20px;
}

/*Стили для КОМПОНЕНТНОЙ БАЗЫ /about/production/component-base/*/
.block-CBase {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.block-CBase p {
    color: black;
}

.block-CBase-one {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.block-CBase-one-info {
    width: 50%;
    padding: 0;
    margin: 0 20px 0 0;
}

.block-CBase-one.symmetrically .block-CBase-one-info {
    margin: 0 0 0 20px;
}

.block-CBase-one-logo-all-external {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.block-CBase-one.symmetrically .block-CBase-one-logo-all-external {
    order: -1;
}

.block-CBase-one-logo-all {
    max-width: 630px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.block-CBase-one-logo-one {
    position: relative;
    width: 70px;
}

.block-CBase-one-logo-one:after {
    content: '';
    display: block;
    padding-top: 100%;
}

.content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.block-CBase-one-logo-all .block-CBase-one-logo-one:nth-child(2n+1) {
    background-color: #edf0fd;
}

.block-CBase-one-logo-all .block-CBase-one-logo-one:nth-child(2n) {
    background-color: #d3d5df;
}

.block-CBase-one-logo-one p, .block-CBase-one-logo-one a {
    text-align: center;
    margin: 0;
    padding: 0;
}

.block-CBase-one-logo-one img {
    max-width: 90%;
    max-height: 90%;
    margin-top: 7px;
}

.block-CBase-one-logo-one:hover img {
    transition: 0.5s;
    transform: scale(1.1);
}

.right-navigation {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 5px;
}

@media (max-width: 1620px) {
    .block-CBase-one-logo-all {
        max-width: 490px;
    }
}

@media (max-width: 1556px) {
	.user__cabinet span {
			display: none;
	}
	.search {
		margin: 0 15px;
	}
}

@media (max-width: 1500px) {
	.contacts__item-tel span {
		display: none;
	}
	.search {
		margin: 0 10px;
	}
}
@media (max-width: 1440px) {
    .block-CBase-one-logo-all {
        max-width: 350px;
    }
}

@media (max-width: 1367px) {
    .right-navigation {
        gap: 0;
    }
	.search {
		margin: 0 10px;
	}
}

@media (max-width: 1200px) {
    .block-CBase-one-logo-all {
        max-width: 455px;
    }

    .block-CBase-one-logo-one {
        width: 65px;
    }
}

@media (max-width: 1024px) {
    .block-CBase-one-logo-all {
        max-width: 350px;
    }

    .block-CBase-one-logo-one {
        width: 70px;
    }
}

@media (max-width: 991px) {
    .block-CBase-one {
        flex-direction: column;
        justify-content: flex-start;
        align-items: space-between;
    }

    .block-CBase-one-logo-all-external {
        align-items: flex-start;
        margin-top: 10px;
    }

    .block-CBase-one.symmetrically .block-CBase-one-logo-all-external {
        order: 0;
    }

    .block-CBase-one-info {
        width: 100%;
        margin: 0 20px;
    }

    .block-CBase-one.symmetrically .block-CBase-one-info {
        margin: 0 20px;
    }

    .block-CBase-one-logo-all-external {
        width: 100%;
    }

    .block-CBase-one-logo-all {
        max-width: 630px;
    }
}

@media (max-width: 670px) {
    .block-CBase-one-logo-all {
        max-width: 490px;
    }
}

@media (max-width: 530px) {
    .block-CBase-one-logo-all {
        max-width: 350px;
    }
}

@media (max-width: 390px) {
    .block-CBase-one-logo-all-external {
        align-items: center;
    }

    .block-CBase-one-logo-all {
        max-width: 270px;
    }

    .block-CBase-one-logo-one {
        width: 90px;
    }
}
.right__block_services {
	width: 100%;
	position: relative;
}
.block-Software {
	width: inherit;
	display: flex;
	flex-direction: column;
	word-break: break-word;
	word-wrap: normal;
	hyphens: none;
    position: relative;
	overflow: auto;
	border-color: var(--border-color-light-gray);
    border: 1px solid;
}
.block-Software-row {
	width: inherit;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.block-Software .block-Software-row:nth-child(1){
	background-color: #d9d9d9;
}
.block-Software .block-Software-row:nth-child(3),
.block-Software .block-Software-row:nth-child(5) {
	background-color: #f2f2f2;
}
.block-Software .block-Software-row:nth-last-child(n+2) {
	border-color: var(--border-color-light-gray);
    border-bottom: 1px solid;
}
.block-Software-row .block-Software-cel:nth-last-child(n+2) {
	border-color: var(--border-color-light-gray);
    border-right: 1px solid;
}
.block-Software-cel {
	padding: 5px;
	min-width: 130px;
}
.block-Software-cel p {
	margin-bottom: 0;
}
.block-Software-row .block-Software-cel:nth-child(1) {
	width: 40%;
}
.block-Software .block-Software-row:nth-child(1) .block-Software-cel:nth-child(1) {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.block-Software-row .block-Software-cel:nth-child(n+2) {
	width: 15%;
	text-align: center;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.margin-top-20 {
    margin-top: 20px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    background-color: #ddd;
    padding: 20px;
}

main {
    flex: 1;
    background-color: #f5f5f5;
}

.main-inform tr td:nth-child(3) {
    min-width: 165px;
}

.main-inform td {
    border: none;
    vertical-align: top;
}

.main-inform strong {
    font-weight: bold;
}

.main-inform ul.files-block {
    padding-left: 0;
    list-style-type: none;
}

.main-inform ul.files-block li {
    display: flex;
    flex-direction: row;
    align-content: space-around;
    align-items: center;
    padding: 0 0 10px 0;
}

.file-url i {
    color: #3F3F44;
}
