@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700&display=swap");

.accent_text {
    color: #8ea9b9
}

button {
    cursor: pointer
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.bold {
    font-weight: 700
}

.uppercase {
    text-transform: uppercase
}

input[type=email]:focus, input[type=tel]:focus, input[type=text]:focus {
    box-shadow: 0 0 15px rgba(142, 169, 185, .3);
    transition: all .3s cubic-bezier(.2, 0, .5, 1)
}

input[type=submit]:hover {
    background: #6f91a5;
    cursor: pointer;
    transition: all .3s cubic-bezier(.2, 0, .5, 1)
}

input[type=submit]:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(142, 169, 185, .8)
}

.menu {
    position: fixed;
    background: #fff;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    left: 0;
    top: 0;
    padding: 90px 20px;
    transform: translateX(-100vw);
    transition: all .4s cubic-bezier(.2, 0, .5, 1)
}

#burger {
    display: none
}

#burger ~ .burger {
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 7px 4px
}

#burger ~ .burger span {
    flex-shrink: 0;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background: #8ea9b9;
    position: relative;
    display: block;
    transition: all .3s cubic-bezier(.2, 0, .5, 1)
}

#burger:checked ~ .burger span:first-child {
    transform: rotate(-45deg)
}

#burger:checked ~ .burger span:nth-child(2) {
    transform: translateX(4px)
}

#burger:checked ~ .burger span:nth-child(3) {
    transform: rotate(45deg)
}

#burger:checked ~ .menu {
    transform: translateX(0)
}

@media (min-width: 768px) {
    .container {
        width: 688px
    }
}

@media (min-width: 1280px) {
    .menu {
        position: relative;
        transform: none;
        padding: 0;
        left: auto;
        top: auto;
        width: auto;
        height: auto
    }

    .menu ul {
        display: flex;
        gap: 20px
    }

    .container {
        width: 1199px
    }
}

@media (min-width: 1890px) {
    .container {
        width: 1764px
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

#header {
    background: #fff
}

#header:before {
    opacity: 1
}

header#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all .3s cubic-bezier(.2, 0, .5, 1)
}

header#header:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 100%;
    background: #cdd9df;
    opacity: 0;
    transition: opacity .3s ease-in-out
}

header#header .burger {
    right: 15px;
    top: 8px;
    cursor: pointer
}

header#header #burger:checked ~ .menu_section {
    display: block;
    transform: translateX(0)
}

header#header #burger:checked ~ .menu_section .inner {
    right: 0
}

header#header .logo {
    text-decoration: none
}

header#header .logo img {
    border: none
}

header#header .logo img:first-child {
    display: none
}

header#header .menu_section {
    display: block;
    position: fixed;
    z-index: 4;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .35);
    transform: translateX(100vw);
    transition: all .4s cubic-bezier(.2, 0, .5, 1)
}

header#header .menu_section .inner {
    position: absolute;
    background: #fff;
    width: 320px;
    padding: 20px;
    height: 100%;
    overflow: auto;
    right: -200px;
    transition: all .6s cubic-bezier(.2, 0, .5, 1)
}

header#header .menu_section .inner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    background: #eef4f5
}

header#header .menu_section .inner #close_mobite_menu_btn {
    font-family: Montserrat;
    border: none;
    background: none;
    width: 100%;
    height: 30px;
    text-align: left;
    color: #4f606e;
    font-size: 16px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 40px
}

header#header .menu_section .inner #close_mobite_menu_btn img {
    margin-right: 10px;
    width: 15px;
    height: 15px
}

header#header .menu_section .inner .location {
    border-bottom: 1px solid #cdd9df;
    padding-bottom: 10px;
    margin-bottom: 24px
}

header#header .menu_section .inner .location .selected {
    border: 1px solid #8ea9b9;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 10px;
    background: url(../img/arrow-down.svg) no-repeat right 10px center
}

header#header .menu_section .inner .location .selected:hover ~ ul {
    position: absolute;
    display: block;
    padding: 20px;
    display: grid;
    gap: 10px;
    background: #fff;
    width: calc(100% - 40px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .07), 0 2px 4px rgba(0, 0, 0, .07), 0 4px 8px rgba(0, 0, 0, .07), 0 8px 16px rgba(0, 0, 0, .07), 0 16px 32px rgba(0, 0, 0, .07), 0 32px 64px rgba(0, 0, 0, .07)
}

header#header .menu_section .inner .location .selected:hover ~ ul li a {
    text-decoration: none;
    color: #4f606e
}

header#header .menu_section .inner .location ul {
    display: none
}

header#header .menu_section .inner .centered_menu {
    display: grid;
    gap: 30px
}

header#header .menu_section .inner .centered_menu a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase
}

header#header .download {
    display: none
}

header#header .tel {
    font-size: 0;
    background: url(../img/fi-rs-phone-call-m_faded.svg) no-repeat 50% !important;
    width: 21px;
    height: 21px
}

header#header .search_section {
    z-index: 15;
}

header#header .search_section #form_caller {
    background: none;
    padding: 0;
    margin: 0;
    border: none;
    position: absolute;
    right: 80px;
    top: 12px
}

header#header .search_section .serch_wrapper {
    display: block;
    position: fixed;
    z-index: 4;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .35);
    transform: translateX(100vw);
    transition: all .4s cubic-bezier(.2, 0, .5, 1)
}

header#header .search_section .serch_wrapper.opened {
    transform: translateX(0)
}

header#header .search_section .serch_wrapper.opened form {
    right: 0
}

header#header .search_section .serch_wrapper form {
    position: absolute;
    background: #fff;
    width: 320px;
    padding: 20px;
    min-height: 100vh;
    right: -200px;
    transition: all .6s cubic-bezier(.2, 0, .5, 1)
}

header#header .search_section .serch_wrapper form:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    background: #eef4f5
}

header#header .search_section .serch_wrapper form button {
    font-family: Montserrat;
    border: none;
    background: none;
    width: 100%;
    height: 30px;
    text-align: left;
    color: #4f606e;
    font-size: 16px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 50px
}

header#header .search_section .serch_wrapper form button img {
    margin-right: 10px;
    width: 15px;
    height: 15px
}

header#header .search_section .serch_wrapper form input[type=text] {
    width: 100% !important;
    outline: none !important;
    color: #4f606e !important;
    border: none !important;
    background: #fff !important;
    border: 1px solid #3D5265 !important;
    padding: 15px 70px 15px 15px !important;
    font-size: 15px !important;
    line-height: normal !important;
    margin: 0 !important;
    height: 50px !important;
    box-shadow: none;
    border-radius: 0;
}

header#header .search_section .serch_wrapper form input[type=text].tt-input--show ~ .close {
    display: block
}

header#header .search_section .serch_wrapper form .loader {
    width: 20px;
    height: 20px;
    border: 2px solid #3d5265;
    border-left-color: transparent;
    border-radius: 100%;
    position: absolute;
    right: 40px;
    top: 50%;
    margin-top: -10px;
    animation: rotate .8s linear infinite;
    display: none
}

header#header .search_section .serch_wrapper form .close {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    cursor: pointer;
    transform: rotate(45deg);
    display: none
}

header#header .search_section .serch_wrapper form .close:after, header#header .search_section .serch_wrapper form .close:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: #3d5265
}

header#header .search_section .serch_wrapper form .close:after {
    transform: rotate(90deg)
}

header#header .search_section .serch_wrapper .twitter-typeahead {
    min-width: 100%
}

header#header .search_section .serch_wrapper .serch_wrapper_input {
    position: relative;
    z-index: 1
}

header#header .search_section .serch_wrapper .serch_wrapper_input._open .close, header#header .search_section .serch_wrapper .serch_wrapper_input.loading .loader {
    display: block
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeInOut {
    0%, to {
        opacity: 1
    }
    50% {
        opacity: 0
    }
}

@keyframes svgRotate360 {
    0% {
        transform: rotate(-90deg)
    }
    to {
        transform: rotate(270deg)
    }
}

.noDelay {
    transition-delay: 0s !important
}

.mobile-hide {
    display: none
}

.select-city select {
    opacity: 0;
    width: 0
}

.select-city .select2-container {
    width: auto !important
}

.select-city .select2-container .select2-selection--single {
    background: none;
    border: none
}

.select-city .select2-container .select2-selection--single .select2-selection__rendered {
    background: url(../img/fi-rs-marker-colored.svg) no-repeat 0;
    padding: 0 0 0 24px
}

.select-city .select2-container .select2-selection--single .select2-selection__arrow {
    opacity: 0
}

.select2-container .select2-dropdown {
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
    border: none;
    border-radius: 10px !important;
    padding: 24px;
    width: auto !important;
    white-space: nowrap
}

.select2-container .select2-dropdown .select2-search--dropdown {
    padding: 0;
    margin: 0 0 20px
}

.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field {
    border: none;
    background: #f2f2f2;
    padding: 10px;
    font-size: 15px;
    line-height: normal;
    border-radius: 5px
}

.select2-container .select2-dropdown .select2-results__options {
    /* scrollbar-face-color: transparent;
    scrollbar-track-color: #92abb9;
    scrollbar-color: #92abb9 transparent;
    scrollbar-width: thin; */
    min-width: -moz-max-content;
    min-width: max-content;
    overflow-x: hidden;
    overflow-y: auto
}

.select2-container .select2-dropdown .select2-results__options .select2-results__option {
    padding: 6px
}

.select2-container .select2-dropdown .select2-results__options .select2-results__option--highlighted[aria-selected] {
    background: #8ea9b9
}

header .header-phone {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 9;
    right: 145px;
    top: 14px
}

header .header-phone a {
    transition: all .3s linear
}

@media (min-width: 1280px) {
    header .header-phone a:hover {
        color: #00bfd6 !important
    }
}

header .header-contacts {
    display: none !important;
    vertical-align: middle;
    transform: none;
    opacity: 1;
    margin: 0;
    width: auto;
    padding: 0;
    box-shadow: none;
    visibility: visible;
    top: 0;
    right: 0
}

header .header-contacts > svg {
    display: block
}

.podmenu {
    background: #f7f9fa;
    box-shadow: 0 300px 0 300px #f7f9fa;
    margin: 30px -20px -20px;
    padding: 30px 20px
}

.podmenu__link {
    display: none;
    padding: 0 !important
}

.podmenu__items {
    display: flex;
    gap: 30px;
    flex-wrap: wrap
}

.podmenu__item {
    width: 100%
}

.podmenu__item > a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase
}

.podmenu__sub {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px;
    padding-left: 16px;
}

.podmenu__sub__item {
    width: 100%
}

.podmenu__sub__item > a {
    color: #4f606e;
    font-size: 14px;
    line-height: 150%;
    text-decoration: none
}

.podmenu #podmenu-show, .podmenu #podmenu-show-2 {
    display: none
}

.tt-menu {
    background: #fff;
    position: absolute;
    margin-top: 10px;
    box-sizing: border-box;
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
    border-radius: 10px !important;
    padding: 24px;
    width: auto
}

.tt-menu .tt-suggestion {
    padding: 6px;
    font-size: 15px;
    line-height: 150%
}

header#header {
    height: auto;
    display: flex;
    padding: 0
}

header#header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center
}

header#header .podmenu__link {
    text-transform: uppercase;
    transition: all .3s linear;
    width: 0;
    overflow: hidden;
    margin-right: 0;
    color: #3D5265;
}

header#header .podmenu__link:hover {
    color: #118fa0
}

header#header .podmenu__item.hide-hd {
    display: none
}

@media (max-width: 1600px) {
    header#header .podmenu__item.hide-hd {
        display: block
    }
}

header#header .menu_section .inner .location {
    width: 0;
    transition: all .3s linear;
    overflow: hidden;
    min-width: 0;
    padding-right: 0
}

@media (max-width: 1279px) {
    header#header .menu_section .inner .location {
        width: auto;
        min-width: 140px;
        padding-right: 20px
    }
}

header#header .header-main__phons {
    max-width: 0;
    transition: all .3s linear;
    overflow: hidden;
    opacity: 0
}

@media (max-width: 1279px) {
    header#header {
        height: 89px
    }

    header#header .row {
        align-items: center;
        margin: 0;
    }

    header#header .header-main__phons {
        opacity: 1
    }
}

header#header .menu_section {
    z-index: 0
}

@media (max-width: 1279px) {
    header#header .menu_section {
        z-index: 20
    }
}

header#header .search_section {
    padding-left: 64px
}

@media (max-width: 1279px) {
    header#header .search_section #form_caller {
        top: 32px
    }
}

header#header .header__user-menu {
    display: flex;
    align-items: center;
    gap: 40px
}

header#header .header__user-menu > li a {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s linear
}

header#header .header__user-menu > li a svg path {
    transition: all .3s linear
}

@media (max-width: 1279px) {
    header#header .header__user-menu {
        margin-left: auto;
        display: none
    }
}

header#header .header-main {
    height: 72px;
    display: flex;
    align-items: center;
    width: 100%;
    opacity: 1;
    transition: all .3s linear;
    border-bottom: 1px solid #cdd9df
}

header#header .header-main .podmenu__link, header#header .header-main .podmenu__links {
    transition: all .3s linear
}

header#header .header-main .podmenu__link:hover, header#header .header-main .podmenu__links:hover {
    color: #118fa0
}

@media (max-width: 1279px) {
    header#header .header-main {
        display: none
    }
}

header#header .header-phone {
    align-items: flex-start
}

header#header .header-phone > a.tel {
    background-image: url(../img/fi-rs-phone-call-m.svg);
    height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end !important;
    row-gap: 4px
}

@media (max-width: 1279px) {
    header#header .header-phone {
        top: 34px
    }

    header#header .header-phone > a.tel {
        height: 21px !important
    }
}

@media (min-width: 1280px) {
    header#header {
        transform: translate3d(0, -80px, 0)
    }
}

header#header .centered_menu {
    /* margin-left: 20px !important */
}

header#header .centered_menu > a:nth-child(2):before {
    display: none
}

header#header .podmenu__link {
    padding: 0 !important;
    width: 54px;
    overflow: visible;
    margin-right: 20px
}

header#header .menu_section .inner .location {
    width: auto;
    min-width: 140px;
    padding-right: 20px
}

header#header .header-main__phons {
    max-width: -moz-fit-content;
    max-width: fit-content;
    opacity: 1;
    margin-right: 40px
}

header#header .header-main {
    opacity: 0
}

@media (max-width: 1889px) {
    header#header .available-link {
        position: absolute;
        top: 200%;
        right: 0;
        margin: 0
    }
}

@media (max-width: 1279px) {
    header#header .available-link {
        margin: 0;
        top: 100%;
        left: 0;
        right: 0
    }
}

@media (max-width: 1600px) {
    header#header .centered_menu {
        /* display: none !important */
    }
}

header#header .burger {
    top: auto
}

@media (min-width: 1280px) {
    header#header .header-contacts label {
        padding-top: 3px
    }

    header#header .tel {
        color: #333;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        padding-left: 26px;
        background: url(../img/fi-rs-phone-call-m_faded.svg) no-repeat 0 2px !important;
    }

    header#header .tel .header-phone__desc {
        white-space: pre-wrap;
        max-width: 136px;
        color: #3d5265;
        text-align: right;
        font-size: 12px;
        font-weight: 400;
        line-height: 16px
    }
}

#hero .items .desc_wrapper .h2 {
    line-height: 1.1;
}

@media (max-width: 1279px) {
    header#header .centered_menu {
        /* display: none !important */
    }

    header#header ~ #hero {
        padding-top: 100px
    }
}

header#header .header-main__bottom, header#header .header-main__top {
    width: 100%;
    display: flex;
    align-items: center
}

header#header .header-main__top {
    height: 72px;
    border-bottom: 1px solid #cdd9df
}

header#header .header-main__bottom {
    height: 80px
}

header#header .header-main__phons {
    display: flex;
    gap: 56px
}

@media (min-width: 1280px) and (max-width: 1332px) {
	header#header .header-main__phons {
		gap: 16px;
		margin-right: 32px;
	}
}

header#header .header-main__row {
    display: flex;
    align-items: center;
    justify-content: space-between
}

header#header .header-main__menu-top {
    display: flex;
    gap: 80px
}

header#header .header-main__menu-bot ul {
    display: flex;
    align-items: center
}

header#header .header-main .podmenu {
    display: flex;
    align-items: center;
    gap: 32px
}

header#header .header-main .podmenu a {
    text-decoration: none;
    color: #333
}

.available-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 16px 8px 24px;
    margin-right: 40px;
    border-radius: 800px;
    background: #118fa0;
    text-decoration: none
}

.available-link, .available-link svg {
    transition: all .3s linear
}

.available-link__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.available-link__text span {
    color: #fff
}

.available-link__text span:first-child {
    font-size: 13px;
    font-weight: 700;
    line-height: 16px
}

.available-link__text span:nth-child(2) {
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    opacity: .8
}

@media (min-width: 1280px) {
    .available-link:hover {
        background: #0c7786
    }

    .available-link:hover svg {
        transform: translate3d(5px, 0, 0)
    }
}

@media (max-width: 1279px) {
    .available-link {
        margin: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-radius: 0;
        justify-content: center;
        height: 40px;
        padding: 10px 16px
    }

    .available-link__text {
        flex-direction: row;
        align-items: center;
        gap: 26px
    }

    .available-link__text span:first-child, .available-link__text span:nth-child(2) {
        font-size: 15px;
        font-weight: 600
    }

    .available-link__text span:first-child {
        position: relative
    }

    .available-link__text span:first-child:after {
        content: "";
        display: block;
        width: 2px;
        height: 14px;
        border-radius: 4px;
        opacity: .8;
        background: #fff;
        position: absolute;
        right: -14px;
        top: 2px
    }
}

.call-center-info {
    padding: 16px 20px;
    background: #e4f4f7;
    font-family: Open Sans;
    display: flex;
    flex-direction: column;
    align-items: start
}

.call-center-info__name {
    color: #3c4b58;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.call-center-info__text {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #3d5265;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px
}

.call-center-info a {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    display: inline-block;
    margin-bottom: 2px;
    transition: all .3s ease-in-out
}

.call-center-info a:hover {
    color: #00bfd6
}

@media (min-width: 768px) {
    header#header {
        background: #fff
    }

    header#header:before {
        opacity: 1
    }

    .mobile-hide {
        display: block
    }

    .mobile-show {
        display: none
    }

    .container {
        padding: 0
    }
}

@media (min-width: 1280px) {
    header#header, header#header .row {
        display: flex;
        align-items: center
    }

    header#header .row {
        position: relative;
        margin: 0;
        flex-wrap: nowrap
    }

    header#header .logo {
        display: flex;
        align-items: center;
        margin: 0 20px 0 0
    }

    header#header .logo img {
        display: block;
        width: 160px
    }

    header#header .logo img:first-child {
        display: block
    }

    header#header .logo img:last-child {
        display: none
    }

    header#header .menu_section {
        position: relative;
        width: auto;
        height: auto;
        left: auto;
        top: auto;
        padding: 0;
        margin: 0;
        transform: none;
        background: none;
        flex: auto
    }

    header#header .menu_section .inner {
        width: auto;
        position: relative;
        min-height: auto;
        padding: 0;
        left: auto;
        right: auto;
        transform: none;
        background: none;
        display: flex;
        align-items: center;
        overflow: visible
    }

    header#header .menu_section .inner .location {
        border: none;
        padding: 0 20px 0 0;
        margin: 0;
        order: 1;
        min-width: 140px
    }

    header#header .menu_section .inner:before {
        display: none
    }

    header#header .menu_section .inner #close_mobite_menu_btn {
        display: none
    }

    header#header .menu_section .inner .centered_menu {
        display: flex;
        gap: 0;
        order: 3;
        font-size: 14px;
        margin: 0;
    }

    header#header .menu_section .inner .centered_menu a {
        position: relative;
        margin: 0 12px;
        font-weight: 400;
        color: #000;
        white-space: nowrap
    }

    header#header .menu_section .inner .centered_menu a:before {
        content: "";
        position: absolute;
        display: block;
        border: 2px solid #cdd9df;
        border-radius: 100%;
        right: -17px;
        top: 4px;
        width: 6px;
        height: 6px
    }

    header#header .menu_section .inner .centered_menu a:after {
        content: "";
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: -5px;
        width: 0;
        height: 1px;
        background: #00bfd6;
        transition: all .3s ease-in-out;
        transform: scaleY(2) translateZ(0);
        transform-origin: center center
    }

    header#header .menu_section .inner .centered_menu a.active:after, header#header .menu_section .inner .centered_menu a:hover:after {
        width: 100%;
        transform: scaleY(1) translateZ(0)
    }

    header#header .menu_section .inner .centered_menu a:last-child:before {
        display: none
    }

    header#header .tel {
        font-size: 16px;
        width: auto;
        background: url(../img/fi-rs-phone-call-m_faded.svg) no-repeat 0 !important;
        text-decoration: none;
        color: #333333;
        padding-left: 25px;
        display: flex;
        align-items: center;
        background-size: 16px;
        white-space: nowrap
    }

    header#header .header-contacts {
        display: inline-block !important;
        vertical-align: middle;
        cursor: pointer;
        position: relative;
        z-index: 1
    }

    header#header .header-contacts #header-contacts-show {
        display: none
    }

    header#header .header-contacts #header-contacts-show:checked ~ .header-contacts__items {
        display: flex
    }

    header#header .header-contacts label {
        display: block;
        cursor: pointer;
        padding: 10px
    }

    header#header .header-contacts svg {
        fill: #92abb9;
        transition: all .3s cubic-bezier(.2, 0, .5, 1);
        display: block
    }

    header#header .header-contacts:hover svg {
        fill: #000
    }

    header#header .header-contacts__items {
        position: absolute;
        z-index: 1;
        right: 0;
        top: 100%;
        width: 320px;
        background: #fff;
        box-shadow: 0 0 15px rgba(0, 0, 0, .15);
        border: none;
        border-radius: 10px !important;
        padding: 24px;
        margin: 5px 0 0;
        display: none;
        flex-wrap: wrap;
        gap: 0;
        cursor: auto
    }

    header#header .header-contacts__item {
        width: 100%;
        font-size: 14px;
        line-height: 150%;
        color: #4f606e
    }

    header#header .header-contacts__item p {
        margin: 0 0 5px
    }

    header#header .header-contacts__item a {
        color: #118fa0;
        text-decoration: none;
        font-weight: 600;
        transition: all .3s cubic-bezier(.2, 0, .5, 1)
    }

    header#header .header-contacts__item a:hover {
        color: #000
    }

    header#header .header-contacts__name {
        color: #000;
        font-weight: 600;
        margin-bottom: 5px
    }

    header#header .header-contacts__name__sub {
        font-size: 12px;
        line-height: 150%;
        text-transform: uppercase;
        color: #92abb9
    }

    header#header .header-phone {
        position: relative;
        right: 0;
        top: 0
    }

    header#header .download {
        background: url(../img/fi-rs-sign-in.svg) no-repeat 0;
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #000;
        padding-left: 25px;
        font-size: 14px;
        margin: 0 20px 0 10px;
        white-space: nowrap
    }

    header#header .search_section #form_caller {
        right: -20px;
        top: 50%;
        margin-top: -12px
    }

    header#header .search_section #form_caller img {
        display: block
    }

    header#header .search_section .serch_wrapper {
        width: calc(50% + 200px);
        height: auto;
        position: absolute;
        right: -20px;
        top: 50%;
        margin-top: -25px;
        left: auto
    }

    header#header .search_section .serch_wrapper form {
        right: 0;
        min-height: 0;
        width: auto;
        position: relative;
        padding: 0
    }

    header#header .search_section .serch_wrapper form:before {
        display: none
    }

    header#header .burger, header#header .search_section .serch_wrapper form #close_mobite_search_btn {
        display: none
    }

    header#header .podmenu {
        background: none;
        margin: 0;
        padding: 0;
        box-shadow: none;
        order: 2;
        position: relative;
        z-index: 1
    }

    header#header .podmenu__items {
        display: none;
        position: absolute;
        z-index: 1;
        left: 0;
        top: 100%;
        width: auto;
        background: #fff;
        box-shadow: 0 0 15px rgba(0, 0, 0, .15);
        border: none;
        border-radius: 10px !important;
        padding: 24px;
        white-space: nowrap;
        margin: 5px 0 0
    }

    header#header .podmenu #podmenu-show:checked ~ .podmenu__items {
        display: flex;
        gap: 12px
    }

    header#header .podmenu #podmenu-show:checked ~ .podmenu__link:after {
        transform: rotate(-180deg)
    }

    header#header .podmenu #podmenu-show-2:checked ~ .podmenu__items {
        display: flex;
        gap: 20px
    }

    header#header .podmenu #podmenu-show-2:checked ~ .podmenu__link:after {
        transform: rotate(-180deg)
    }

    header#header .podmenu__item > a {
        text-transform: none;
        color: #000;
        transition: all .3s cubic-bezier(.2, 0, .5, 1)
    }

    header#header .podmenu__item > a:hover {
        color: #8ea9b9
    }

    header#header .podmenu .podmenu__sub__item > a {
        text-transform: none;
        color: #4f606e;
        transition: all .3s cubic-bezier(.2, 0, .5, 1)
    }

    header#header .podmenu .podmenu__sub__item > a:hover {
        color: #8ea9b9
    }

    header#header .podmenu__link {
        display: inline-block;
        cursor: pointer;
        margin: 0 20px 0 0;
        position: relative;
        z-index: 1
    }

    header#header .podmenu__link:after {
        content: "";
        position: absolute;
        z-index: 1;
        left: 100%;
        height: 100%;
        width: 14px;
        margin-left: 6px;
        background: url(../img/menu-arr.svg) no-repeat 50%;
        transition: all .15s cubic-bezier(.2, 0, .5, 1)
    }
    header#header .menu_section .inner .centered_menu a {
        margin: 0 24px
    }
}

@media (min-width: 1440px) {
    .container {
        width: 1350px;
        padding: 0
    }

    header#header .logo {
        margin-right: 35px
    }

    header#header .logo img {
        width: 180px
    }

    header#header .menu_section .inner .location {
        min-width: 130px
    }

    header#header .menu_section .inner .centered_menu a:before {
        right: -30px
    }

    header#header .search_section #form_caller {
        right: 0
    }

    header#header .search_section .serch_wrapper {
        width: calc(50% + 220px)
    }

    header#header .download {
        margin: 0 55px 0 20px
    }
}

@media (min-width: 1600px) {
    .container {
        width: 1480px
    }

    header#header .logo {
        margin-right: 45px
    }

    header#header .menu_section .inner .location {
        min-width: 140px
    }

    header#header .download {
        margin: 0 60px 0 35px
    }

    header#header .search_section .serch_wrapper {
        width: calc(50% + 250px)
    }
}

@media (min-width: 1890px) {
    .container {
        width: 1764px
    }

    header#header .search_section .serch_wrapper {
        width: calc(50% + 300px)
    }

    header#header .download {
        margin: 0 90px 0 35px
    }
}

.podmenu__link {
    font-size: 15px;
}

input[type="checkbox"] + label.podmenu__link {
    width: auto;
}

input[type="checkbox"] + label::before {
    dispaly: none;
    opacity: 0;
}

.select2-selection__rendered {
    font-size: 15px;
}


header#header .search_section #form_caller {
    right: 0;
}

header#header .burger {
    top: 50%;
    transform: translate3d(0, -50%, 0);
}

.wrap_social_footer {
    margin-top: 40px;
}

header#header .search_section #form_caller .ss_icon_dekstop {
    display: inline-block;
}

header#header .search_section #form_caller .ss_icon_mobile {
    display: none;
}

header#header .header-phone > a.tel {
    background-position-y: 2px !important;
}

header#header .header-phone > a.tel {
    padding-left: 29px;
}

@media (max-width: 1279px) {
    header#header {
        background: #EEF4F5;
        background: transparent;
    }

    header#header .search_section #form_caller {
        top: 33px;
        right: 80px;
    }

    header#header .search_section #form_caller .ss_icon_dekstop {
        display: none;
    }

    header#header .search_section #form_caller .ss_icon_mobile {
        display: inline-block;
    }

    header#header .header-phone > a.tel {
        background-image: url(../img/fi-rs-phone-call-m_mobile.svg) !important;
        height: 25px !important;
        width: 25px;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        padding: 0 !important;
    }

    header#header .header-phone {
        top: 32px;
        right: 140px;
    }

    .podmenu__sub {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    header#header {
        height: 89px !important;
    }
}

header#header .container {
    width: 100%;
    padding: 0 15px;
}

.select-city .select2-container .select2-selection--single .select2-selection__rendered {
    background-image: url('../img/fi-rs-marker-opacity.svg');
    font-size: 14px;
    color: #333333;
    line-height: 20px;
}

.select2-container .select2-selection--single {
    height: 20px;
}

header#header .header-contacts label {
    padding: 2px 0 0 4px;
    position: relative;
    z-index: 9;
}

header#header .header-contacts.show .header-contacts__items {
    display: flex;
}

header#header .header-main__phons {
    overflow: visible;
}

header#header .logo img:first-child {
    width: 206px;
    height: 32px;
}

header#header .logo {
    margin-right: 160px;
}

header#header .no_lk_and_cart .logo {
    margin-right: 70px;
}

header#header .menu_section .inner .centered_menu a {
    font-size: 15px;
    color: #3D5265;
    text-transform: uppercase;
}

header#header .no_lk_and_cart .search_section {
    padding-left: 23px;
}

header#header .menu_section .inner .centered_menu a:before {
    right: -30px;
}

header#header .search_section #form_caller {
    right: 0;
}

header#header .available-link {
    position: static;
    margin-right: 40px;
}

@media (max-width: 1279px) {
    header#header .available-link {
        display: none;
        position: absolute;
        margin-right: 0;
        background: #5C7686;
    }

    header#header .search_section #form_caller {
        right: 75px
    }

    header#header .header-phone {
        right: 130px;
    }
}

#burger ~ .burger span {
    background: #5C7686;
}

header#header .search_section .serch_wrapper form input[type=text]::placeholder {
    color: #778693;
}

@media (min-width: 1280px) {
    header#header .search_section:not(._open_search_data) #form_caller {
        z-index: 6;
    }
}

.contacts-wrap form.form_place + div {
    max-width: 370px;
}
#footer .rs .inner .phones {
    display: flex;
    gap: 5px;
}
#footer .rs .inner .phones a{
    white-space: nowrap;
}
@media (max-width: 1440px) {
    .select2-results__option{
        font-size: 13px;
        line-height:20px;
    }
}
@media (min-width: 1280px){
    #footer .rs .office.office_call{
        margin-top:40px;
    }
    #footer .mls {
        justify-content: start;
        gap: 54px;
    }
}
@media (max-width: 1440px) {
    header#header .search_section .serch_wrapper {
        width: calc(45% + 190px);
    }
}
@media (min-width: 1600px) {
    header#header .search_section .serch_wrapper {
        width: calc(35% + 200px);
    }
}
@media (min-width: 1890px) {
    header#header .search_section .serch_wrapper {
        width: calc(30% + 200px);
    }
}
@media (max-width: 1279px) {
    header#header .search_section .serch_wrapper{
        width:100vw;
    }
}
header#header.header-new .header-contacts__items {
    gap: 0;
}
header .header-contacts .item_row:not(:last-of-type){
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #DCE5E6;
}
header .header-contacts .item_row .header {
    font-size: 16px;
    color: #3D5265;
    margin: 0 0 7px 0;
}
header .header-contacts .item_row .name {
    font-size: 14px;
    color: #3D5265;
    font-weight: 600;
    margin: 0 0 7px 0;
}
header .header-contacts .item_row .address {
    font-size: 14px;
    color: #3D5265;
    margin: 0 0 4px 0;
    position: relative;
}
header .header-contacts .item_row .phones {
    position: relative;
}
header .header-contacts .item_row .phones a {
    font-size: 14px;
    color: #15A4B3;
    font-weight: 600;
    text-decoration: none;
}

/* Firefox */
/* .select2-results__options {
    scrollbar-width: initial !important;
    scrollbar-color: unset unset !important;
} */
/* Стилизация самого скроллбара */
.select2-container .select2-dropdown .select2-results__options::-webkit-scrollbar {
    width: 2px !important; /* Ширина скроллбара */
}
/* Стилизация трека (задний фон скроллбара) */
.select2-container .select2-dropdown .select2-results__options::-webkit-scrollbar-track {
    background: transparent !important; /* Цвет трека */
    border-radius: 10px !important;
}
/* Стилизация ползунка (сам движущийся элемент скроллбара) */
.select2-container .select2-dropdown .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #92abb9 !important; /* Цвет ползунка */
    border-radius: 10px !important; /* Закругление углов */
}
/* Стилизация при наведении на ползунок */
.select2-container .select2-dropdown .select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #92abb9 !important; /* Изменение цвета при наведении */
}
.wrap_menu_fixed {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 150%;
    position: fixed;
    top: 0;
    right: -100%;
    min-width: 340px;
    max-width: 340px;
    width: 100%;
    background: #fff;
    z-index: 9999999;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 800px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-out;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    display: none;
}
@media only screen and (max-width: 1279px) {
    .wrap_menu_fixed {
        display: block;
    }
}
.wrap_menu_fixed.show {
    right: 0;
    opacity: 1;
    visibility: visible;
}
.wrap_menu_fixed .wrap_close_button {
    padding: 32px 16px 32px 20px;
    background: #EEF4F5;
    text-align: left;
}
.wrap_menu_fixed:not(.wrap_menu_fixed_filtres) .wrap_close_button a {
    border: 0 none;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    font-size: 16px;
    color: #3D5265;
    line-height: 24px;
}
.icon_close_menu {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: transparent url(/templates/souz-m/images/close_menu.svg) center center no-repeat;
}
.wrap_menu_fixed .wrap_close_button a .icon_close_menu {
    position: relative;
    top: 2px;
    margin-right: 7px;
}
.wrap_main_menu_all {
    padding: 40px 16px 33px 20px;
}
.wrap_main_menu_all.pt24 {
    padding-top: 24px;
}
.wrap_data_phones .item_row:not(:last-of-type) {
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #DCE5E6;
}
.wrap_data_phones .item_row .header {
    font-size: 16px;
    color: #3D5265;
    margin: 0 0 7px 0;
}
.wrap_data_phones .item_row .name {
    font-size: 14px;
    color: #3D5265;
    font-weight: 600;
    margin: 0 0 7px 0;
}
.wrap_data_phones .item_row .address {
    font-size: 14px;
    color: #3D5265;
    margin: 0 0 4px 0;
    position: relative;
    padding: 0 0 0 20px;
}
.wrap_data_phones .item_row .address:before {
    position: absolute;
    content: '';
    display: block;
    background: url(/templates/souz-m/images/contacts-icons.svg) 0 0 no-repeat;
    left: 0;
    top: 4px;
    width: 11px;
    height: 10px;
    background-position: right 0;
}
.wrap_data_phones .item_row .phones {
    position: relative;
    padding: 0 0 0 20px;
}
.wrap_data_phones .item_row .phones:before {
    position: absolute;
    content: '';
    display: block;
    background: url(/templates/souz-m/images/contacts-icons.svg) 0 -20px no-repeat;
    left: 0;
    top: 4px;
    width: 11px;
    height: 10px;
    background-position: right -20px;
}
.wrap_data_phones .item_row .phones a {
    border: 0 none;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    font-size: 14px;
    color: #15A4B3;
    font-weight: 600;
}
.call-center {
    background: #E4F4F7;
    padding: 16px 20px;
    margin-bottom: 16px;
    border-radius: 5px;
    width: 100%;
}
.call-center__title {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #3C4B58;
    margin: 0 0 10px;
}
.call-center__phone,
.call-center__phone:link,
.call-center__phone:active,
.call-center__phone:visited,
.call-center__phone:focus,
.call-center__phone:hover {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #333333;
    display: flex;
    margin: 0 0 5px;
    text-decoration: none;
}
.call-center__time {
    display: flex;
    align-items: center;
}
.call-center__time span {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    color: #3D5265;
    margin-left: 6px;
}