/* ==========================
   CSS RESET
   ========================== */

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

html, body {
    height: 100%;
}

body {
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-column {
    display: flex;
    flex-direction: column;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #111;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0px;
}

.header,
.footer {
    flex-shrink: 0;
}

.main {
    flex: 1 0 auto;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.btn {
    opacity: 1;
    padding-top: 16px;
    padding-right: 24px;
    padding-bottom: 16px;
    padding-left: 24px;
    border-radius: 10px;
    background: rgba(230, 42, 25, 1);
    color: #fff;   
    width: fit-content;
    border: 1px solid rgba(230, 42, 25, 1);
}
.btn.secondary{
  height:56px;
  padding:0 28px;
  border-radius:14px;
  font-size:16px;
  cursor:pointer;
  border:1px solid rgba(230, 42, 25, 1);
  background:#fff;
  color:rgba(230, 42, 25, 1);
}
.btn.full {
    width: 100%;
}
form.contacts-form {
    gap: 16px;
    opacity: 1;
    border-radius: 20px;
    border-width: 1px;
    padding: 30px;
    width: 80%;
    background: #F8FAFC;
    border: 1px solid #C9CFD1;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.btn.secondary:hover{
  background:rgba(230, 42, 25, 1);
  color:#fff;
  transition: all 0.3s ease;
}
.btn:hover{
  background:#fff;
  color:rgba(230, 42, 25, 1);
  border:1px solid rgba(230, 42, 25, 1);
  transition: all 0.3s ease;
}
.hidden {
    display: none;
}

.open {
    display: flex;
}

a{
    font-family: "Lato", sans-serif;
    font-weight: 550;
    font-size: 14px;
    line-height: 16px;
    color: rgba(127, 127, 127, 1);
}

a:hover {
    color: #000;
}

a:active {
    color: #000;
}
a.href_active {
    color: #000;
}

h4{
font-family: Montserrat;
font-weight: 600;
font-size: 24px;
line-height: 112.99999999999999%;
}

h5{
font-family: Montserrat;
font-weight: 600;
font-size: 20px;
line-height: 112.99999999999999%;
letter-spacing: -1px;
}
footer{
    background: rgba(10, 10, 10, 1);
}

footer a{
    color: rgba(255, 255, 255, 1);
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;
}
.margin-bottom-90 {
    margin-bottom: 90px;
}
.margin-bottom-60 {
    margin-bottom: 60px;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.header {
    height: 92px;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: space-between;
}
nav.header__nav {
    display: flex;
}

nav.header__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
nav.header__nav li {
    padding: 8px 16px;
}
.header__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 12px;
}
.header__lang {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    vertical-align: middle;
    color: rgba(10, 10, 10, 1);
    position: relative;
}
.header__lang-dropdown {
    position: absolute;
    z-index: 99999;
    background: #fff;
    width: 86px;
    height: 64px;
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 6px;
    opacity: 1;
    padding-top: 7px;
    padding-right: 22px;
    padding-bottom: 7px;
    padding-left: 22px;
    border-radius: 10px;
    border-width: 1px;
    border: 1px solid rgba(201, 207, 209, 1);
    top: calc(100% + 5px);
}
.header__lang-selected {
    display: flex;
    align-items: center;
}
.header__lang-selected {
    display: flex;
    align-items: center;
    gap: 11px;
    opacity: 1;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 10px;
    border-width: 1px;
    height: 48px;
    border: 1px solid rgba(201, 207, 209, 1);
    cursor: pointer;
}
.header__lang-dropdown.hidden {
    display: none;
}

button.btn.header__btn.btn_open-form-thanks {
    width: 128px;
    height: 48px;
    gap: 10px;
    opacity: 1;
    padding-top: 16px;
    padding-right: 24px;
    padding-bottom: 16px;
    padding-left: 24px;
    border-radius: 10px;
    background: rgba(230, 42, 25, 1);
    color: #fff;
}
.header__lang-dropdown div {
    cursor: pointer;
}
footer.footer {
    padding: 50px 0px;
    color: #fff;
}
.footer .container {
    display: flex;
    justify-content: space-between;
}
.footer__logo {
    display: flex;
    align-items: anchor-center;
    gap: 32px;
}
button.footer__btn {
    width: 192px;
    height: 40px;
    opacity: 1;
    border-radius: 10px;
    background: #fff;
}
.footer__first {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 328px;
}
.footer__second {
    display: flex;
    width: 201px;
    gap: 32px;
    opacity: 1;
}
.footer__second ul {
    gap: 20px;
    display: flex;
    opacity: 1;
    flex-direction: column;
}
.footer__third ul {
    gap: 32px;
    display: flex;
    flex-direction: column;
}
.footer__fourth ul {
    gap: 32px;
    display: flex;
    flex-direction: column;
}

.footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer__bottom-right ul {
    display: flex;
    flex-direction: row;
    align-items: start;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__bottom {
    margin-top: 100px;
}
.footer__bottom-right {
    width: 770px;
}
.margin-top-90 {
    margin-top: 90px;
}
.margin-top-60 {
    margin-top: 60px;
}
.margin-top-30 {
    margin-top: 30px;
}
.padding-top-90 {
    padding-top: 90px;
}
.padding-bottom-90 {
    padding-bottom: 90px;
}
section.section.section_main-hero {
    background: 
        linear-gradient(270deg, rgba(255,255,255,0.75) 0%, #FFFFFF 64.46%),
        url("/img/baead44fcf3cab8a17c6eb063356d0cad736cab2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

h1.section_main-hero__title {
    font-family: Inter;
    font-weight: 700;
    font-size: 56px;
    letter-spacing: -1px;
    width: 80%;
}
h1 span,h2 span {
    color: rgba(232, 41, 22, 1);
}
.section_main-hero__content {
    padding: 89px 0px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
p.section_main-hero__text {
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.5px;
    color: rgba(102, 102, 102, 1);
}

ul.section_main-hero__list {
    display: flex;
    gap: 14px;
}
ul.section_main-hero__list li{
border: 1px solid rgba(201, 207, 209, 1);
    width: 258px;
    height: 96px;
    gap: 10px;
    opacity: 1;
    border-radius: 16px;
    border-width: 1px;
    padding-top: 8px;
    padding-right: 15px;
    padding-bottom: 8px;
    padding-left: 8px;
    display: flex;
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    vertical-align: middle;
}

ul.section_main-hero__list li img {
    max-width: 80px;
}
ul.section_main-hero__list li div {
    display: flex;
    gap: 7px;
    flex-direction: column;
    justify-content: center;
}
.icon_plus {
  width: 20px;
  height: 20px;
}

section.section.section_main-video_text {
    padding: 90px 0px;
}

.section_main-video_text__content {
    display: flex;
    gap: 54px;
}

.badge {
    color: rgba(230, 42, 25, 1);
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    gap: 4px;
    opacity: 1;
    border-radius: 6px;
    padding-top: 4px;
    padding-right: 8px;
    padding-bottom: 4px;
    padding-left: 8px;
    line-height: 120%;
    display: flex;
    background: rgba(230, 42, 25, 0.1);
    width: fit-content;
}

span.badge.white {
    background: #F8FAFC;
    color: #000;
}
span.badge.grey {
    background: #E8F0F8;
    color: #000;
}

h2 {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 42px;
    line-height: 112.99999999999999%;
    vertical-align: middle;
}

.section_main-video_text p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: rgba(102, 102, 102, 1);
}

.section_main-video_text__content__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 50%;
    justify-content: center;
}
.section_main-video_text__content__video {
    width: 40%;
}
.section_main-big_main_block {
    background-image: url('/img/MaskGroup.png');
    background-size: 40%;
    background-position: center right;
    background-color: rgba(248, 250, 252, 1);
    background-repeat: no-repeat;
}
section.section_main-big_main_block .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section_main-big_main_block__content {
    width: 60%;
    gap: 18px;
    display: flex;
    flex-direction: column;
    padding: 80px 0px;
}
.section_main-big_main_block__content p{
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    color: rgba(102, 102, 102, 1);
    vertical-align: middle;
}
.section_main-big_main_block__content ul {
    display: flex;
    flex-wrap: wrap;
}

.section_main-big_main_block__content li {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    width: 50%;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    vertical-align: middle;
    padding: 15px 75px 15px 20px;
}

.section_main-big_main_block__content li img {
    padding: 0px 0px;
    width: 46px;
}
.section_main-big_main_block__counts ul {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section_main-big_main_block__counts li{
    gap: 20px;
    opacity: 1;
    border-radius: 30px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.section_main-big_main_block__counts span {
    font-family: Montserrat;
    font-weight: 700;
    color: rgba(232, 41, 22, 1);
}

.section_main-big_main_block__counts ul span{
    font-size: 38px;
    font-weight: 500;
}
.section_main-big_main_block__counts p {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    vertical-align: middle;
}
.section_main-big_main_block__counts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
section.section.section_main-big_main_cases {
    padding: 90px 0px;
    background-color: rgba(248, 250, 252, 1);
}

.section_main-big_main_cases__box {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.section_main-big_main_cases__content_left {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 60px;
}
.section_main-big_main_cases__content_right {
    width: 53%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.section_main-big_main_cases__content_left p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    vertical-align: middle;
    color: rgba(102, 102, 102, 1);
}

.section_main-big_main_cases__content_right__item {
    display: flex;
    width: 47%;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(230, 232, 238, 1);
    padding: 15px;
    border-radius: 20px;
}

.section_main-big_main_cases__content_right__item h3{
    font-family: Montserrat;
    font-weight: 600;
    font-size: 24px;
    line-height: 112.99999999999999%;
    color: rgba(34, 46, 80, 1);
    vertical-align: middle;
}
.section_main-big_main_cases__content_right__item p{
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    vertical-align: middle;
    color: rgba(105, 111, 140, 1);
}
button.btn_show_more {
    border: 1px solid rgba(232, 41, 22, 1);
    opacity: 1;
    padding-top: 16px;
    padding-right: 18px;
    padding-bottom: 16px;
    padding-left: 18px;
    border-radius: 10px;
    border-width: 1px;
    color: rgba(232, 41, 22, 1);
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    margin: 0 auto;
    display: block;
}
.section_main-photo_text__content {
    display: flex;
}
.section_main-photo_text__content__left {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}
.section_main-photo_text__content__right {
    width: 35%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}
.section_main-photo_text__content__left p{
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    vertical-align: middle;
    color: rgba(102, 102, 102, 1);
}

section.section.section_main-photo_text {
    padding: 90px 0px;
}
.section_main-big_main_singles__content__top {
    display: flex;
    gap: 40px;
    padding: 90px 0px;
}
.section_main-big_main_singles__content__top__left {
    width: 55%;
}
.section_main-big_main_singles__content__top__right {
    width: 45%;
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.section_main-big_main_singles__content__top__right  p{
font-family: Montserrat;
font-weight: 400;
font-size: 16px;
line-height: 130%;
vertical-align: middle;
color: rgba(102, 102, 102, 1);
}

.section_main-big_main_singles__content__items {
    display: flex;
    flex-wrap: wrap;
}

.section_main-big_main_singles__content__items {
    display: flex;
    flex-wrap: wrap;
    gap: 31px;
    padding-top: 60px;
}

.section_main-big_main_singles__content__items__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.section_main-big_main_singles__content__items__item h4 {
    margin-left: 20px;
    font-family: Montserrat;
font-weight: 600;
font-size: 24px;
color: rgba(10, 10, 10, 1);
}
.section_main-big_main_singles__content__items__item a {
    margin-left: 20px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;

    color: rgba(232, 41, 22, 1);
}


section.section.section_main-big_main_singles {
    background-color: rgba(248, 250, 252, 1);
    padding-bottom: 90px;
}
.section_main-big_main_singles__content__top{
    padding: 90px 0px 35px 0px;
    border-bottom: 1px solid rgba(201, 207, 209, 1);
}
.section.section_main-big_main_singles .section_main-big_main_singles__content__top{
    padding: 90px 0px 35px 0px;
    border-bottom: 1px solid rgba(201, 207, 209, 1);
}
.section_main-section_icons_text__content {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    padding: 22px;
}
.section_main-section_icons_text__content {
    display: flex;
    flex-wrap: wrap;
    gap: 31px;
}
.section_main-section_icons_text__content__item {
    gap: 8px;
    opacity: 1;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    background: rgba(248, 250, 252, 1);
    padding-top: 35px;
    width: 31%;
}

.section_main-section_icons_text__content__item img {
    width: 66px;
}

.section_main-section_icons_text__content__item p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: rgba(102, 102, 102, 1);
}

.section_main-section_icons_text__content__item h4 {
    margin-top: 15px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 22px;
    line-height: 112.99999999999999%;
    letter-spacing: -1px;
}

.section_main-main_numbers_text__content__bottom {
    padding-top: 35px;
    display: flex;
}
.section_main-main_numbers_text__content__bottom__right {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
}
.section_main-main_numbers_text__content__bottom__left {
    width: 50%;
}
.section_main-main_numbers_text__content__bottom__right__item {
    width: 320px;
    gap: 8px;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.section_main-main_numbers_text__content__bottom__right span {
    width: 8px;
    height: 24px;
    opacity: 1;
    color: rgba(232, 41, 22, 1);
    background: rgba(230, 42, 25, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.section_main-main_numbers_text__content__bottom__right p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: rgba(102, 102, 102, 1);
}
.section_main-main_numbers_text__content__bottom__right span {
    width: 32px;
    height: 56px;
    opacity: 1;
    color: rgba(232, 41, 22, 1);
    background: rgba(230, 42, 25, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.5px;
}

.section_main-main_numbers_text__content__bottom__right__item h4 {
    margin-top: 15px;
}

section.section.section_main-main_questions {
    margin-top: 35px;
    margin-bottom: 90px;
}
.section_main-main_questions__content {
    display: flex;
    flex-wrap: wrap;

}
.section_main-main_questions__content__item.open_jaq {
    background: rgba(248, 250, 252, 1);
    width: 48%;
    gap: 12px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    margin-bottom: 24px;
}
.section_main-main_questions__content {
    display: flex;
    flex-wrap: wrap;
justify-content: space-between;
}
.section_main-main_questions__content__item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 0px 24px;
}
.section_main-main_questions__content__item__body {
    padding: 0px 24px 0px 24px;
}
.section_main-main_questions__content__item__body {
    overflow: hidden;
    height: 0;
}

.section_main-main_questions__content__item__body  p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
}
.btn-row {
    display: flex;
    gap: 16px;
}

/* базовый стиль */
.icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(232, 41, 22, 1);
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* линии рисуем псевдоэлементами */
.icon-btn::before,
.icon-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1.6px;
    background: #fff;
    transform-origin: center;
}

/* ✕ */
.close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ＋ */
.add-btn::before {
    transform: translate(-50%, -50%) rotate(0deg);
}
.add-btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* hover эффект */
.icon-btn:hover {
    filter: brightness(0.9);
}
.mobile {
    display: none;
}

.section_main-main_icons_numbers .section_main-section_icons_text__content__item span{
    width: 36px;
    height: 36px;
    opacity: 1;
    color: rgba(232, 41, 22, 1);
    background: rgba(230, 42, 25, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.5px;
}
.section_main-video_text_reverse .section_main-video_text__content {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.section_page-hero__content .section_page-hero__title {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 77px;
    letter-spacing: 0px;
    vertical-align: middle;
}

h2.section_page-hero__subtitle {
    font-family: Inter;
    font-weight: 700;
    font-size: 56px;
    line-height: 110.00000000000001%;
    letter-spacing: -1px;
    vertical-align: middle;
    color: rgba(230, 42, 25, 1);
}
.section_page-hero__content p{
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.5px;
    vertical-align: middle;
    margin: 25px 0px;
    color: rgba(102, 102, 102, 1);
}
.section_page-hero__content {
    display: flex;
    gap: 5%;
    justify-content: space-between;
}
.section_page-hero__content-right {
    position: relative;
}
img.section_page-hero__content-play_btn {
    position: absolute;
    top: 36%;
    left: 29%;
    cursor: pointer;
}
section.section.section_main-main_icons_text_two_buttons .section_main_icons_text__contents{
    text-align: center;
}
.section_main-main_icons_text_two_buttons__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}
.section_main-main_icons_text_two_buttons .section_main_icons_text__content {
    gap: 18px;
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 885px;
    align-items: center;
}
.section_main-main_icons_text_two_buttons p{
    max-width: 630px;
    font-family: Montserrat;
font-weight: 400;
font-style: Regular;
font-size: 16px;
line-height: 130%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
color: rgba(102, 102, 102, 1);
}
.section_main-main_icons_text_two_buttons .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.section_main-main_icons_text_two_buttons__buttons .btn_show_more {
    margin: 0;
    padding-top: 12px;
    padding-bottom: 12px;
}
.section_page-hero__content-left {
    display: flex;
    flex-direction: column;
    width: 55%;
    margin-top: 90px;
}
section.section.section_main-main_icons_text_two_buttons {
    margin: 90px;
}

.section_page-half_icons__content {
    display: flex;
    gap: 32px;
}
.section_page-half_icons__content-left {
    width: 50%;
}
.section_page-half_icons__content-right {
    width: 50%;
}
.section_page-half_icons__content-left {
    width: 50%;
    position: relative;
}
img.section_page-half_icons__content-left__logo {
    position: absolute;
    bottom: -30px;
    width: 138px;
}
.section_page-half_icons__content-left {
    width: 50%;
    position: relative;
    gap: 28px;
    display: flex;
    flex-direction: column;
}
.section_page-half_icons__content-right__item {
    display: flex;
    flex-direction: row;
    gap: 5%;
}
.section_page-half_icons__content-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.section_page-half_icons__content-right__item__text {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section_page-half_icons__content-right__item__text  p{
font-family: Montserrat;
font-weight: 400;
font-size: 16px;
line-height: 130%;
color: rgba(102, 102, 102, 1);
}
.c_green .badge{
color: rgba(68, 159, 72, 1);
background: rgba(68, 159, 72, 0.1);
}
.c_green h2 span{
color: rgba(68, 159, 72, 1);
}
.section_page-straits__content {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
.section_page-straits__content__item__img {
    border-radius: 12px;
        
    overflow: hidden;
}
.section_page-straits__content__item__text {
    background: rgba(76, 159, 56, 0.25);
    border-radius: 12px;padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section.section.section_page-straits {
    margin: 40px 0px;
}
.section_page-straits__content__item__text h5{
font-family: Montserrat;
font-weight: 600;
font-size: 20px;
line-height: 112.99999999999999%;
letter-spacing: -4%;
}
.section_page-straits__content__item__text p{
font-family: Montserrat;
font-weight: 400;
color: rgba(79, 71, 71, 1);
font-size: 16px;

line-height: 130%;
letter-spacing: 0%;
vertical-align: middle;

}
.section_page-straits__content__item:nth-child(even) .section_page-straits__content__item__text  {
    background: rgba(199, 33, 47, 0.25);
}
.section_page-straits__content__item {
    width: 206px;
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.section_page-straits__content__item {
    width: 206px;
}
section.section.section_page-half_icons {
    margin-top: 90px;
}
.main_icons_text_v2 .section_main-section_icons_text__content {
    justify-content: center;
}
.head_h_text_center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px 0px;
    gap: 18px;
}
.section_page-ul__content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.section_page-ul__content__item {
    max-width: 416px;
    display: flex;
    flex-direction: column;
    gap: 16px;
        padding: 24px;
}
.section_page-ul__content__item li::marker {
  color: rgba(232, 41, 22, 1);
}
.section_page-ul__content__item  li{
font-family: Montserrat;
font-weight: 400;
font-size: 16px;
line-height: 130%;
letter-spacing: 0%;
list-style-type: disc;
color: rgba(102, 102, 102, 1);
}
.section_page-ul__content__item   p{
color: rgba(102, 102, 102, 1);
font-family: Montserrat;
font-weight: 400;
font-size: 16px;
line-height: 130%;
letter-spacing: 0%;

}
.section_page-ul__content__item  ul{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.section_page-ul__content__item   h4{
font-family: Montserrat;
font-weight: 600;
font-size: 22px;
line-height: 112.99999999999999%;
letter-spacing: -4%;
}
.only_cases .section_main-big_main_cases__content_right__item {
    flex-wrap: wrap;
    max-width: 413px;
    padding: 26px;
}
.only_cases .section_main-big_main_cases__content_right__item a:first-child {
    text-align: center;
    display: contents;
}
.only_cases .section_main-big_main_cases__content_right__item img{
    width: 100%;
}
.only_cases .section_main-big_main_cases__box {

    flex-wrap: wrap;
}
.section_cases_tags__content {
    opacity: 1;
    border-radius: 16px;
    border-width: 1px;
    border: 1px solid rgba(201, 207, 209, 1);
    padding: 20px;
        display: flex;
    flex-wrap: wrap;
        gap: 10px;
}
.section_cases_tags__content a{
font-family: Montserrat;
font-weight: 500;
font-size: 18px;
line-height: 120%;
letter-spacing: 0%;

}
section.section.section_cases_tags {
    margin-top: 60px;
}

.section_cases_tags__content__item {
    opacity: 1;
    border-radius: 99px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    transition: all 0.3s ease;
    
        cursor: pointer;
}
.section_cases_tags__content__item.tag_active {
    background-color: rgba(230, 42, 25, 1);
    color: white;
}
.section_cases_tags__content__item.tag_active a{
    color: white;
}

.section_cases_tags__content__item:hover {
    background-color: rgba(230, 42, 25, 1);
    color: white;
}
.section_cases_tags__content__item:hover a{
  
    color: white;
}
.section_cases_tags__content__item a{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #111;
}
.section_main-slider__content__item h4{
font-family: Montserrat;
font-weight: 600;
font-size: 22px;
line-height: 112.99999999999999%;
letter-spacing: -4%;
color: rgba(10, 10, 10, 1);
}
.section_main-slider__content__item p{
font-family: Montserrat;
font-weight: 400;
font-size: 16px;
line-height: 130%;
letter-spacing: 0%;
color: rgba(105, 111, 140, 1);

}
.section_main-slider__content__item {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    padding: 22px;
}
.section_page-half_icons__content-left p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: rgba(102, 102, 102, 1);
}
.form{
  max-width:980px;
}

.grid{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.col{
  flex:1 1 calc(50% - 18px);
  min-width:260px;
}

.custom-select{
  position:relative;
  width:100%;
}

.select-trigger{
  height:56px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  cursor:pointer;
  background:#fff;
  width: 100%;
}

.select-trigger span{
  color:#111827;
}

.select-trigger::after{
  content:"▾";
  font-size:14px;
  color:#6b7280;
}

.options{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  right:0;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  overflow:hidden;
  display:none;
  z-index:10;
}

.options div{
  padding:14px 18px;
  cursor:pointer;
}

.options div:hover{
  background:#f3f4f6;
}

.custom-select.open .options{
  display:block;
}

.section_page_product_image_form textarea{
  width:100%;
  min-height:140px;
  border:1px solid #e5e7eb;
  background:#fff;
  border-radius:14px;
  padding:16px 18px;
  resize:none;
  margin-top:18px;
  font-size:15px;
}
.section_page_product_image_form  p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #4F4747;

}
.section_page_product_image_form  h2{
    font-family: Montserrat;
    font-weight: 700;
    font-size: 42px;
    line-height: 112.99999999999999%;
    letter-spacing: -4%;
    vertical-align: middle;
}
.checkbox{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:10px;
}

.actions{
  margin-top:26px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}


section.section_page_product_image_form {
    background: rgba(248, 250, 252, 1);
}
.section_page_product_image_form__content-right {
    width: 100%;
}
.section_page_product_image_form__content-left {
    width: 100%;
}
.section_page_product_image_form__content-left img {
    width: 100%;
}
.section_page_product_image_form__content {
    display: flex;
    gap: 5%;
}

.section_page_product_image_form__content-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:1000;
}

.modal.active{
  display:block;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.4);
}

.modal-window{
  position:relative;
  max-width:720px;
  margin:60px auto;
  background:#fff;
  border-radius:20px;
  padding:36px;
  z-index:1;
  animation:modalShow .25s ease;
}

@keyframes modalShow{
  from{transform:translateY(20px);opacity:0}
  to{transform:translateY(0);opacity:1}
}

.modal-close{
  position:absolute;
  top:14px;
  right:16px;
  border:none;
  background:none;
  font-size:28px;
  cursor:pointer;
}

.modal-title{
  font-size:34px;
  margin-bottom:10px;
}

.modal-subtitle{
  color:#4b5563;
  margin-bottom:20px;
}

.modal-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

input,
textarea{
  height:56px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:0 16px;
  font-size:15px;
  font-family: Montserrat;
font-weight: 400;
font-size: 16px;
line-height: 130%;
letter-spacing: 0%;
vertical-align: middle;

}

.modal-form textarea{
  height:120px;
  padding:14px 16px;
  resize:none;
}
h2.modal-title {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 42px;
    line-height: 112.99999999999999%;
    letter-spacing: -4%;
    vertical-align: middle;
}
.contacts-form__row.flex-row {
    gap: 16px;
}
.contacts-form__row.flex-row input{
    width: 100%; 
}
.contacts-form__row.flex-column textarea{
    width: 100%; 
    min-height: 180px;
    padding: 18px;
}
.contacts-form__column {
    gap: 16px;
}
.main_icons_numbers_borders_icons .section_main-section_icons_text__content__item {
    border: 1px solid #C9CFD1;
    padding-top: 5px;
    gap: 16px;
    justify-content: space-between;
}
.section_main-section_icons_text__content__item a {
        font-family: Montserrat;
    font-weight: 600;
    font-size: 20px;
    line-height: 112.99999999999999%;
    letter-spacing: -4%;
    color: #E82916;
}
.main_icons_numbers_borders_icons .section_main-section_icons_text__content__item>div{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.b_black{
    background-color: #000;
    color: #fff;
    width: 100%;    border: 1px solid;
}
.b_black:hover{
    background-color: #333;
    color: #fff;
    border-color: #333;
    
}
.section_main-more_product_items {
    display: flex;
    flex-direction: row;
    gap: 20px;
    min-height: 500px;
}
section.section.section_page-more_product {
    margin-top: 40px;
}
.section_page-more_product__item {
    width: 25%;
}

.section_page-more_product__item>img{
    width: 100%;
}
.section_page-more_product__item {
    width: 25%;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    overflow: hidden;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.section_page-more_product__item h4 a{
    color: #000;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 22px;
    line-height: 112.99999999999999%;
    letter-spacing: -4%;
}
.section_page-more_product__item p{
    color: #666666;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
}
.section_page-more_product .section_page-half_icons__content {
    flex-direction: column;
    border: 1px solid #C9CFD1;
    background: #fefefe;
    padding-right: 24px;
    padding-bottom: 60px;
    padding-left: 24px;
    border-radius: 12px;
    border-width: 1px;
}
.section_three_blocks_text__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.section_three_blocks_text__content-left-icon {
    width: 340px;
    height: 176px;
    gap: 22px;
    opacity: 1;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;    background: #F8FAFC;
        justify-content: center;
}
.section_three_blocks_text__content-right-icon {
    width: 340px;
    height: 176px;
    gap: 22px;
    opacity: 1;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;    background: #F8FAFC;
        justify-content: center;
}
.section_three_blocks_text__content-left-icon img{
    width: 66px;
    height: 50px;
}
.section_three_blocks_text__content-left {
    gap: 22px;
    display: flex;
    flex-direction: column;
    align-items: end;
}
.section_three_blocks_text__content-right {
    gap: 22px;
    display: flex;
    flex-direction: column;
}
.section_three_blocks_text__content-left .section_three_blocks_text__content-left-icon:first-child{
    width: 290px;
    height: auto; 
}
.section_three_blocks_text__content-right .section_three_blocks_text__content-right-icon:first-child{
    width: 290px;
    height: auto; 
}
.section.section_main-three_blocks h4{
    font-family: Montserrat;
    font-weight: 600;
    font-size: 22px;
    line-height: 112.99999999999999%;
    letter-spacing: -4%;
    text-align: center;

}
.section_three_blocks_text__content-center-icon {
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px 20px;
    height: 313px;
    padding: 60px;
      gap: 22px;
}
.section_three_blocks_text__content-center-icon img{
    width: 99px;
    height: 75px;
}
.section_three_blocks_text__content-center-icon p{
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    color: #666666;
    text-align: center;  
}
.section.section_main-blog .section_cases_tags__content__item.tag_active {
    gap: 4px;
    opacity: 1;
    padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 10px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    align-items: center;
}
.section_main-video_text__content__video iframe {
    width: 100%;
    height: 100%;
}
.select-trigger.error{
  border:1px solid red;
}
.section.section_main-blog .section_cases_tags__content__item:hover{
        gap: 4px;
    opacity: 1;
    padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 10px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    align-items: center;
}
.section.section_main-blog  .section_cases_tags__content__item {
    opacity: 1;
    padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.section.section_main-blog  .section_cases_tags__content {
    opacity: 1;
    border-radius: 16px;
    border-width: 1px;
    border: 0px solid rgba(201, 207, 209, 1);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.section.section_main-blog   p {
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #666666;
    letter-spacing: -0.5px;
}
.section.section_main-blog .section_main-big_main_singles__content__top__left {
    width: 55%;
    gap: 7px;
    display: flex;
    flex-direction: column;
}
.section.section_main-blog .section_main-big_main_singles__content__top {
    align-items: end;
}
.section_blog-posts_top__content-left {
    width: 70%;
    min-height: 484px;
}
.section_blog-posts_top__content-right {
    width: 30%;
    min-height: 484px;
}
.section_blog-posts_top__content {
    display: flex;
    gap: 25px;
}
.section.section_blog-posts_top h3 a{
    font-family: Montserrat;
    font-weight: 700;
    font-size: 42px;
    line-height: 112.99999999999999%;
    letter-spacing: -4%;
    color: #fff;
}
.section.section_blog-no_image_posts h3 a {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 22px;
    line-height: 112.99999999999999%;
    letter-spacing: -4%;
}
.section_blog-posts_top__content>div{
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    gap: 24px;
    padding: 20px;
    color: #fff;
    border-radius: 12px;
    background-size: cover;
    background-repeat: no-repeat;
}
.section_blog-posts_top__content>div>div{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.section_blog-no_image_posts__content {
    display: flex;
    gap: 32px;
}
.section_blog-no_image_posts__content-item {
    gap: 22px;
    opacity: 1;
    border-radius: 8px;
    border-width: 1px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #C9CFD1;
    width: 33%;
    border: 1px solid #C9CFD1
}
.section.section_blog-no_image_posts h3{

    font-family: Montserrat;
    font-weight: 600;
    font-size: 22px;
    line-height: 112.99999999999999%;
    letter-spacing: -4%;

}
.section_blog-no_image_posts__content-item>div{
        font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.section_blog-image_posts__content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.section_blog-image_posts__content-item {
    display: flex;
    flex-direction: column;
    width: 405px;
    gap: 12px;
    justify-content: space-between;
    border: 1px solid #C9CFD1;
    border-radius: 12px;
}
.section_blog-image_posts__content-item h4{
    padding: 0px 20px;
}
.section_blog-image_posts__content-item >div{
    padding: 0px 20px;
    display: flex;
    gap: 10px;
}
.section_blog-image_posts__content-item .btn.full {
    width: 90%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
}
.section_blog-image_posts__content-item span.badge.grey {

    color: #000;
    position: relative;
    left: 20px;
}
.section_single__content__text {

}
.section_single__content {
    border: 1px solid #C9CFD1;
    opacity: 1;
    border-radius: 24px;
    border-width: 1px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
    background: #F8FAFC;
    padding-left: 30px;
    width: 75%;
}
.section_single__sidebar {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.section_single__content__text ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section.section_single .container {
    display: flex;    gap: 25px;
}
.section_single__content__text li{

    list-style-type: disc;
    font-family: Montserrat;
font-weight: 500;
font-style: Medium;
font-size: 18px;
leading-trim: NONE;
line-height: 160%;
letter-spacing: 0%;
vertical-align: middle;

}
.section_single__content__text  li::marker {
    color: rgba(232, 41, 22, 1);
}
.section_single__content__text a {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #E82916;
}
.section_single__content__text b{
    font-family: Montserrat;
font-weight: 700;
font-style: Bold;
font-size: 18px;
line-height: 160%;
letter-spacing: 0%;
vertical-align: middle;

}
.section_single__content__text p{
    font-family: Montserrat;
font-weight: 500;
font-style: Medium;
font-size: 16px;
line-height: 160%;
letter-spacing: 0%;
vertical-align: middle;

}
.section_single__content__text h1{
        font-family: Montserrat;
font-weight: 700;
font-style: Bold;
font-size: 42px;
line-height: 112.99999999999999%;
letter-spacing: -4%;
vertical-align: middle;
}
.section_single__content__text h2{
    font-family: Montserrat;
font-weight: 700;
font-style: Bold;
font-size: 42px;
line-height: 112.99999999999999%;
letter-spacing: -4%;
vertical-align: middle;

}
.section_single__content__text h3{
    font-family: Montserrat;
font-weight: 600;
font-style: SemiBold;
font-size: 24px;
line-height: 112.99999999999999%;
letter-spacing: -4%;
vertical-align: middle;

}
.section_single__content__text h4{
    font-family: Montserrat;
font-weight: 600;
font-style: SemiBold;
font-size: 22px;
line-height: 112.99999999999999%;
letter-spacing: -4%;
vertical-align: middle;

}
.section_single__content__text h5{
    font-family: Montserrat;
font-weight: 600;
font-style: SemiBold;
font-size: 20px;
leading-trim: NONE;
line-height: 112.99999999999999%;
letter-spacing: -4%;
vertical-align: middle;

}
.section_single__content__text hr{
        border: 1px solid #BDBABA;
}
.section_single__content__text img{
    border-radius: 20px;
    overflow: hidden;
}
.section_single__sidebar>div{
    border: 1px solid #C9CFD1;
    background: #F8FAFC;
    border-radius: 20px;
    border-width: 1px;
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 30px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section_single__sidebar>div p{
    font-family: Montserrat;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 140%;
letter-spacing: 0%;

}
.section_single__sidebar__author__name {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.section_single__sidebar__author__name span{
    color: #484851;
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;

}
.section_single__sidebar__author__name h3{
    font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    color: #202029;
    line-height: 140%;
    letter-spacing: 0%;

}
.section_single__sidebar__author__top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #202029;
}
.section_single__sidebar__article_content_list h3{
    font-family: Montserrat;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    color: #202029;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;

}
.section_single__sidebar__article_content_list ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.section_single__sidebar__article_content_list li{
    font-family: Montserrat;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    color: #202029;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;

}
.section_single__sidebar__article_content_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.section_single__content__img_bar {
    position: relative;    margin-bottom: 25px;
}
.section_single__content__img_bar img{
        width: 100%;
}
.section_single__content__img_bar__caption {
    opacity: 1;
    border-width: 1.08px;
    padding-top: 21.67px;
    padding-right: 28.18px;
    padding-bottom: 21.67px;
    padding-left: 28.18px;
    border-top-left-radius: 21.67px;
    border-top-right-radius: 21.67px;
    position: absolute;
    bottom: 0px;
    width: 90%;
    border: 1.08px solid #4A4C4E;
    background: #04091C70;
    backdrop-filter: blur(10.837209701538086px);
    color: #fff;
    text-align: center;
        left: 5%;
}
.section_single__content__img_bar__caption p{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: Inter;
font-weight: 500;
font-style: Medium;
font-size: 14px;
line-height: 120%;
letter-spacing: 0%;

}
.section_single__content__img_bar__caption span {
    border: 1px solid #fff;
    width: 22px;
    opacity: 0.3;
    margin: 0 20px;
}
.section_main-breadcrumb__content {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    margin: 20px 0px;
}
.href_active{
    position: relative;
}
.href_active a{
    color: #000;
    font-family: Inter;
    font-weight: 550;
    font-size: 14px;
        line-height: 24px;
    letter-spacing: 0%;
}
header .href_active:after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 2px;
    background-color: #000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    left: calc(50% - 10px);
    border-radius: 2px;
}
footer .href_active a{

    color: rgba(232, 41, 22, 1);
}
footer a:hover{

    color: rgba(232, 41, 22, 1);
}
footer a{
        font-size: 16px !important;
}
@media (max-width:1280px){
    .section_single__content {
        margin-bottom: 30px;
    width: 100%;
}
.section_single__sidebar {
    width: 100%;
}
.section.section_single .container {
        flex-direction: column-reverse;
    flex-wrap: wrap;
}
.section_single__content__img_bar__caption p {
        gap: 12px 0px;
    flex-wrap: wrap;
}
.section_single__content__img_bar__caption span {
display: none;
}
    .section_blog-no_image_posts__content-item {
        width: 100%;
    }
    .section_blog-no_image_posts__content {
        flex-wrap: wrap;
    }
    .section_blog-posts_top__content {
        flex-wrap: wrap;
    }
    .section_blog-posts_top__content>div{
        width: 100%;
        background-position: center;
    }
    .section_three_blocks_text__content {
        flex-direction: column;
    }
    .section_three_blocks_text__content-left-icon,.section_three_blocks_text__content-right-icon {
        width: 100% !important;
    }
    .section_main-more_product_items {
        flex-direction: column;
    }
    .section_page-more_product__item {
        width: 100%;
    }
    .section_page_product_image_form__content {
        display: flex;
        gap: 5%;
        flex-direction: column;
    }
    .col{
        flex:1 1 100%;
    }

    .section_page-hero__content {

        flex-direction: column;
    }
    .section_page-straits__content {

        flex-direction: column;

    }
    .section_page-half_icons__content {

        flex-direction: column;
    }
    img.section_page-half_icons__content-left__logo {
        position: initial;
            width: 100%;
    }
    .section_page-half_icons__content-left {
        width: 100%;
    }
    .section_page-half_icons__content-right {
        width: 100%;
    }

    .section_page-hero__content-left {
    margin-top: 30px;
        width: 100%;
    }
    .section_page-hero__content .section_page-hero__title {
        font-family: Inter;
        font-weight: 700;
        font-size: 41px;
        line-height: 110.00000000000001%;
        letter-spacing: -1px;
        vertical-align: middle;
    }
    h2.section_page-hero__subtitle {
        font-family: Inter;
        font-weight: 700;
        font-size: 36px;
        line-height: 110.00000000000001%;
        letter-spacing: -1px;
        vertical-align: middle;
    }
    .section_page-hero__content {

        gap: 60px;
    }
    .section_main-video_text_reverse .section_main-video_text__content {
        flex-direction: column;
    }
    .section_main-main_icons_text_two_buttons__buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        flex-direction: column;
    }
    .section_page-hero__content p {
        letter-spacing: -0.5px;
        vertical-align: middle;
        margin: 25px 0px;
        color: rgba(102, 102, 102, 1);
        font-family: Inter;
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
    }
    section.section.section_page-hero {
        margin-top: 0px;
    }
    h2 {
    font-size: 32px;
    }
    .mobile {
        display: block;
    }
    nav.header__nav.mobile-hidden {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }
    h1.section_main-hero__title {
        font-family: Inter;
        font-weight: 700;
        font-size: 36px;
        line-height: 110.00000000000001%;
        letter-spacing: -1px;
        width: 100%;
    }
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 15px;
    }
    p.section_main-hero__text {
        letter-spacing: -0.5px;
        color: rgba(102, 102, 102, 1);
        font-family: Inter;
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
    }
    ul.section_main-hero__list {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
    ul.section_main-hero__list li {
        width: 100%;
        background: #fff;
    }
    ul.section_main-hero__list li div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    ul.section_main-hero__list li div:first-child{
        width: auto;
    }

    .btn {
        width: 100%;
    }
    .section_main-video_text__content {
        display: flex;
        gap: 24px;
        flex-direction: column;
    }
    .section_main-video_text__content__video {
        width: 100%;
    }
    .section_main-video_text__content__text {
        width: 100%;
    }
    .icon_plus {
        width: 26px;
        height: 26px;
    }
    .section_main-big_main_block__counts ul {
        flex-direction: column;
        align-items: start;
    }
    .section_main-big_main_cases__box {
        flex-direction: column;
    }
    .section_main-big_main_singles__content__items {
        flex-direction: column;
    }
    .section_main-big_main_block__content ul {
        flex-direction: column;
    }
    .section_main-big_main_cases__content_right {
        flex-direction: column;
        width: 100%;
    }
    .section_main-big_main_singles__content__top {
        flex-direction: column;
    }
    .section_main-section_icons_text__content {
        flex-direction: column;
        gap: 7px;
    }
    .section_main-main_numbers_text__content__bottom {
        flex-direction: column;
    }
    .section_main-main_questions__content {
        flex-direction: column;
    }
    .footer .container {
        flex-direction: column;
    }
    .footer__bottom-right {
        width: 100%;
    }
    .footer__bottom-right ul {
        flex-direction: column;
    }
    .header__burger-btn span {
        height: 1px;
        width: 100%;
        display: table-cell;
        background: #fff;
    }
    .header__burger-btn.btn {
        width: 39px;
        height: 36px;
        padding: 0px;
    }
.header__burger-btn span {
        height: 2px;
        width: 21px;
        display: block;
        background: #fff;
        border-radius: 1px;
        margin: 6px auto 5px auto;
        position: relative;
        top: 2.5px;
    }
    .header__burger-btn.btn.hrest {
    background: rgba(230, 42, 25, 1);
}
    .header__lang-selected {
        gap: 11px;
        padding-right: 10px;
        padding-left: 10px;
        height: 36px;
    }
    .header__burger.mobile {
        display: flex;
        gap: 36px;
        position: relative;
    }
    .section_main-hero__content {
        padding: 25px 0px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    .section_main-big_main_block {
        background-position: bottom;
        background-image: none;
    }
    .section_main-big_main_block__content {
        width: 100%;
        padding: 60px 0px 0px 0px;
    }
    section.section.section_main-video_text {
        padding: 60px 0px;
    }
    .section_main-big_main_block__content li {
        width: 100%;
    }
    .section_main-big_main_cases__content_left {
        width: 100%;
    }
    .section_main-big_main_cases__content_right__item {
        width: 100%;
    }
    .section_main-photo_text__content {
        flex-direction: column;
    }
    .section_main-photo_text__content__left {
        width: 100%;
    }
    .section_main-photo_text__content__right {
        width: 100%;
    }
    .section.section_main-blog .section_main-big_main_singles__content__top__left {
        width: 100%;
    }
    .section_main-big_main_singles__content__top__right {
        width: 100%;
    }
    .section_main-big_main_singles__content__top {
        padding: 30px 0px 35px 0px;
        border-bottom: 1px solid rgba(201, 207, 209, 1);
    }
    .section_main-section_icons_text__content__item {
        width: 100%;
    }
    .section_main-main_numbers_text__content__bottom__left {
        width: 100%;
    }
    .section_main-main_numbers_text__content__bottom__right {
        width: 100%;
    }
    .section_main-main_questions__content__item.open_jaq {
        width: 100%;
    }


    nav.header__nav ul {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    .header__lang-selected.mobile-hidden {
        display: none;
    }
    nav.header__nav ul {
        display: flex;
        align-items: baseline;
        flex-direction: column;
        width: 100%;
        justify-content: space-between;
        opacity: 1;
        border-radius: 10px;
        border-width: 1px;
        font-family: Inter;
        font-weight: 700;
        line-height: 110.00000000000001%;
        letter-spacing: -1px;
        padding: 15px;
    }
    .header__nav a {
        font-size: 28px;
        color: #000;
        font-family: Inter;
        font-weight: 700;
        line-height: 110%;
        letter-spacing: -1px;
    }
    .header__actions {
        position: relative;
        bottom: 25px;
        left: 20px;
    }
    .header__nav {
        box-sizing: border-box;
        position: absolute;
        top: 85px;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: start;
        height: calc(100vh - 135px);
        justify-content: space-between;
        left: 0px;
        right: 0px;
    }

    .header__nav::after {
        content: "";
        position: absolute;
        inset: 15px; 
        border: 1px solid rgba(201, 207, 209, 1);
        border-radius: 16px; 
        pointer-events: none;
    }
    nav.header__nav {
        overflow: hidden;
        opacity: 1;
        z-index: 99999999;
        transition: max-height 0.5s ease, opacity 0.5s ease;
    }

    nav.header__nav.mobile-hidden {
        opacity: 0;
        max-height: 0;
    }

    .hrest span {
       transform: rotate(45deg);
       transition: transform 0.3s ease;
    }
       .hrest span:first-child {
        transform: rotate(-45deg);
        position: relative;
        top: 10.5px;    
    }
    section.section.section_main-main_icons_text_two_buttons {
        margin: 0;
    }
    img.section_page-half_icons__content-left__logo {
        display: none;
    }
    .hrest span:nth-child(3) {
        display: none;
    }
    .section_main-video_text p {
        font-size: 15px;
    }
    .section_main-big_main_block__content p {
        font-size: 15px;
    }
    .promi_image{
        position: relative;
        left: 15px;
    }
    .section_main-big_main_cases .btn_show_more{
        display: none;
    }
    .cases-slider {
        padding: 0 16px 20px;
    }
    .cases-slider .section_main-big_main_cases__content_right__item {
        width: 100%;
    }
    .slick-dots {
        width: 50% !important;
        margin: 0 auto !important;
        position: inherit !important;
    }
    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 10px !important;
        height: 10px !important;
        margin: 0 2px!important;
        padding: 0;
        cursor: pointer;
    }
    .slick-initialized .slick-slide {
        display: flex !important;
    }
    .section_main-photo_text__content__right {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 20px;
        overflow: hidden;
        margin-top: 45px;
    }
    .section_main-section_icons_text__content {
        padding: 0px;
    }
    .icon-btn {
        min-width: 40px;
        min-height: 40px;
    }
    h5 {
        font-size: 16px;
    }
    .footer__logo-subtitle {
        font-family: Montserrat;
        font-weight: 400;
        font-size: 15px;
        line-height: 140%;
        vertical-align: middle;
    }
    .footer__second {
        display: flex;
        width: 100%;
        gap: 100px;
        opacity: 1;
        margin-top: 30px;
    }
    .footer__third {
        margin-top: 30px;
    }
    .footer__fourth {
        margin-top: 30px;
    }
    .footer__bottom {
        margin-top: 30px;
    }
}
