.menu {
    font-family: "Rubik";
    height: 100%;
    font-size: 18px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.menu .menu-wrapper {
    height: 100%;
}

.menu .menu__list {
    height: 100%;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.menu .menu__list .menu-item>.link-btn{
	margin-left: 5px;
}
.menu .menu__list > li {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.menu .menu__list > li:not(:last-child) {
    /*margin-right: 2.8888888889em;*/
    margin-right: 2em;
}

.menu .menu__list > li > a {
    font-size: 1em;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: normal;
    color: #04324b;
    text-align: center;
    white-space: nowrap;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-transform: none;
}

.menu .menu__dropdown {
    position: relative;
}

.menu .menu__dropdown-list {
    position: absolute;
    top: 100%;
    left: -12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
    background-color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(114, 114, 114, 0.2);
}

.menu .menu__dropdown-list .menu__dropdown-list {
    top: -10px;
    left: 100%;
}

.menu .menu__dropdown-list a {
    display: block;
    padding-left: 22px;
    padding-right: 22px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 1em;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: #04324b;
    text-transform: none;
    white-space: nowrap;
}

.menu__dropdown-arrow {
    position: relative;
    background-color: transparent;
    width: 25px;
    height: 20px;
    color: #04324b;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.menu__dropdown-arrow._active {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.menu__dropdown-list .menu__dropdown-arrow {
    display: block;
}

.menu__dropdown.hover > .menu__dropdown-list {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.menu-overlay {
    pointer-events: none;
    position: fixed;
    display: block;
    width: 100%;
    height: calc(100vh - 111px);
    top: 111px;
    right: 0;
    background-color: #ffffff;
    transition: all 0.8s ease-in-out;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
}

.menu-overlay.active {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.nav > li > a {
    padding: 0;
}

.nav > li > a:hover,
.nav > li > a:focus {
    text-decoration: none;
    background-color: transparent;
}

.menu-burger {
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 1;
    z-index: 5;
    background-color: transparent;
}

.menu-burger:before,
.menu-burger::after {
    content: "";
    height: 2px;
    width: 24px;
    background: #2D79B7;
    display: block;
    position: absolute;
    left: 7px;
    -webkit-transform-origin: center;
    transform-origin: center;
    transition: -webkit-transform 0.3s cubic-bezier(0.42, 0, 0.002, 1);
    transition: transform 0.3s cubic-bezier(0.42, 0, 0.002, 1);
    transition: transform 0.3s cubic-bezier(0.42, 0, 0.002, 1), -webkit-transform 0.3s cubic-bezier(0.42, 0, 0.002, 1);
}

.menu-burger:before {
    -webkit-transform: rotate(45deg) scale(0);
    transform: rotate(45deg) scale(0);
}

.menu-burger::after {
    -webkit-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(0);
}

.menu-burger span {
    display: block;
    position: absolute;
    top: 13px;
    right: 7px;
    width: 24px;
    height: 2px;
    background: #2D79B7;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform-origin: right;
    transform-origin: right;
    transition: -webkit-transform 0.5s cubic-bezier(0.42, 0, 0.002, 1);
    transition: transform 0.5s cubic-bezier(0.42, 0, 0.002, 1);
    transition: transform 0.5s cubic-bezier(0.42, 0, 0.002, 1), -webkit-transform 0.5s cubic-bezier(0.42, 0, 0.002, 1);
}

.menu-burger span:nth-child(2) {
    width: 24px;
    top: 18px;
    transition-delay: 0.1s;
}

.menu-burger span:nth-child(3) {
    top: 23px;
    transition-delay: 0.2s;
}

.menu-burger.active span {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.menu-burger.active:before {
    -webkit-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
    transition-delay: 0.5s;
}

.menu-burger.active::after {
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
    transition-delay: 0.5s;
}

.header-search {
    padding-left: 10px;
    padding-right: 10px;
}

.header-search__box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.header-search__input {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    background-color: #f2f2f7;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    height: 48px;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    padding-left: 12px;
    padding-right: 48px;
}

.header-search__input::-webkit-input-placeholder {
    color: #999999;
}

.header-search__input::-moz-placeholder {
    color: #999999;
}

.header-search__input:-ms-input-placeholder {
    color: #999999;
}

.header-search__input::-ms-input-placeholder {
    color: #999999;
}

.header-search__input::placeholder {
    color: #999999;
}

.header-search__input:focus {
    outline: none;
}

.header-search__submit {
    position: absolute;
    top: 0;
    right: 0;
    height: 48px;
    width: 48px;
    background: transparent;
}

.rs-header {
    background: #ffffff;
}

.rs-header__top {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    height: 66px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #d9e5ec;
    padding-left: 230px;
    padding-right: 230px;
}

.rs-header__logos {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    overflow-x: auto;
}

.rs-header__logos picture:not(:last-child) {
    margin-right: 45px;
}

.rs-header__social {
    margin-left: 25px;
}

.rs-header__logo {
    -ms-flex-preferred-size: 106px;
    flex-basis: 106px;
}

.rs-header__logo img {
    width: 100%;
}

.rs-header__bottom {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 77px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 230px;
    padding-right: 230px;
}

.rs-header__btns {
    display: grid;
    grid-template-columns: auto auto;
    gap: 15px;
}

.rs-header .header-social {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
}

.rs-header .header-social li {
    width: 55px;
    height: 32px;
    border: 1px solid rgba(45, 121, 183, 0.3);
    border-radius: 24px;
    transition: background 0.3s ease-out;
}

.rs-header .header-social li:not(:last-child) {
    margin-right: 7px;
}

.rs-header .header-social li a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #2d79b7;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: background 0.3s ease-out;
}

.rs-header .header-social li:hover {
    background: #2d79b7;
}

.rs-header .header-social li:hover a {
    background: #ffffff;
}

.rs-header .header-btns-mobile {
    padding-top: 17px;
    padding-bottom: 17px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rs-header .header-btns-mobile .btn-color {
    font-size: 12px;
    padding-left: 21px;
    padding-right: 21px;
    height: 38px;
}

.rs-header .header-social-mobile {
    padding-top: 17px;
    padding-bottom: 17px;
}

.rs-header .header-social-mobile .header-social {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.rs-header .header-social-mobile .header-social li {
    width: 100%;
}

.sticky .rs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}
.rs-header .rs-header_lang{
    margin-right: 25px;
}
.rs-header .rs-header-grow{
      flex-grow: 1;
}

.rs-header .rs-header_lang .btn-color {
    font-weight: 400;
    font-size: 18px;
    color: #04324B;
    background: #8FB8CD;
    border: 1px solid #8FB8CD;
    height: 31px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 30px;
}

.rs-header .rs-header_lang .btn-color:hover {
    background: #76a8c1;
    border: 1px solid #76a8c1;
    color: #04324B;
}
.rs-header .rs-header_lang .btn-color.btn-color2 {
    color: #8FB8CD;
    background: #fff;
    border: 1px solid #8FB8CD;
}

.rs-header .rs-header_lang .btn-color.btn-color2:hover {
    background: #eee;
    border: 1px solid #8FB8CD;
    color: #8FB8CD;
}
@media (min-width: 991.98px) {
    .menu__dropdown-list li > a {
        transition: color 0.3s ease;
    }

    .menu__dropdown-list li:hover > a {
        color: #2D79B7;
    }

    .menu__list > li > a {
        height: 100%;
        position: relative;
        transition: color 0.3s ease;
    }

    .menu__list > li.active > a,
  .menu__list > li:hover > a {
        color: #ff5e00;
    }

    .menu__dropdown-list .menu__dropdown-arrow {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        display: none;
    }

    .menu__dropdown-list li:hover > .menu__dropdown-arrow,
  .menu__dropdown-list li.hover > .menu__dropdown-arrow {
        -webkit-transform: rotate(-90deg) translateY(10px);
        transform: rotate(-90deg) translateY(10px);
    }

    .menu__dropdown.hover > .menu__dropdown-arrow {
        -webkit-transform: rotateX(-180deg);
        transform: rotateX(-180deg);
    }

    .menu-overlay {
        display: none;
    }

    .rs-header__logo {
        display: none;
    }

    .rs-header .header-btns-mobile {
        display: none;
    }

    .rs-header .header-social-mobile {
        display: none;
    }

    .sticky.out .rs-header {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
        transition: transform 0.5s, -webkit-transform 0.5s;
    }
}

@media (any-hover: hover) and (min-width: 991.98px) {
    .menu__dropdown:hover > .menu__dropdown-arrow {
        -webkit-transform: rotateX(-180deg);
        transform: rotateX(-180deg);
    }
}

@media (max-width: 1800px) {
    .rs-header__top {
        padding-left: 15px;
        padding-right: 15px;
    }

    .rs-header__bottom {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 1400px) {
    .menu {
        font-size: 13px;
    }

    .menu .menu__list > li:not(:last-child) {
        margin-right: 1.1111111111em;
    }
}

@media (max-width: 1176px) {
    .menu .menu__dropdown-list a {
        white-space: normal;
    }
    .rs-header .rs-header_lang .btn-color {
    font-size: 12px;
    height: 20px;
    padding-left: 8px;
    padding-right: 8px;

    }
    .rs-header .rs-header_lang {
    margin-right: 5px;
    min-width: 75px;
    margin-left: 8px;
    }
    .rs-header__social {
    margin-left: 5px;
    }
}

@media (max-width: 991.98px) {
    .menu {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        visibility: hidden;
        pointer-events: none;
        opacity: 0;
        left: 0;
        height: calc(100vh - 111px);
        position: fixed;
        top: 111px;
        width: 100%;
        transition: opacity 0.3s ease-in-out 0s, -webkit-transform 0.5s ease-in-out 0s;
        transition: transform 0.5s ease-in-out 0s, opacity 0.3s ease-in-out 0s;
        transition: transform 0.5s ease-in-out 0s, opacity 0.3s ease-in-out 0s, -webkit-transform 0.5s ease-in-out 0s;
        overflow-y: auto;
        font-size: 13px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .menu.active {
        visibility: visible;
        pointer-events: auto;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        transition: opacity 0.3s ease-in-out 0.8s, -webkit-transform 0.5s ease-in-out 0.8s;
        transition: transform 0.5s ease-in-out 0.8s, opacity 0.3s ease-in-out 0.8s;
        transition: transform 0.5s ease-in-out 0.8s, opacity 0.3s ease-in-out 0.8s, -webkit-transform 0.5s ease-in-out 0.8s;
    }

    .menu .menu-wrapper {
        height: auto;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 375px;
        margin: 0 auto;
    }

    .menu .menu__list {
        display: block;
        height: auto;
    }

    .menu .menu__list > li:not(:last-child) {
        border-bottom: 1px solid #D9E5EC;
    }

    .menu .menu__list > li {
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: auto;
        margin-right: 0 !important;
        padding-top: 13px;
        padding-bottom: 13px;
        margin-left: 0;
    }

    .menu .menu__list > li > a {
        color: #04324b;
        font-weight: 400;
        line-height: 1.2;
        letter-spacing: normal;
    }

    .menu .menu__dropdown {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .menu .menu__dropdown-list {
        position: static;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        margin: 0;
        padding: 20px 0px 7px 0px;
        pointer-events: auto;
        background-color: transparent;
        border: 0;
        box-shadow: none;
        height: auto;
    }

    .menu .menu__dropdown-list .menu__dropdown-list {
        padding: 10px 0px 0px 20px;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .menu .menu__dropdown-list li {
        text-align: center;
    }

    .menu .menu__dropdown-list a {
        color: #ffffff;
        text-decoration: underline;
        white-space: normal;
        padding-left: 0;
        padding-right: 0;
    }

    .menu__dropdown-arrow {
        color: #04324b;
        margin-left: 20px;
    }

    .rs-header {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .rs-header__top {
        border-top: 1px solid #d9e5ec;
        height: 60px;
        -ms-flex-order: 2;
        order: 2;
    }
    .rs-header__logos {
        justify-content: space-between;
        width: 100%;
    }
    .rs-header__social {
        display: none;
    }


    .rs-header__bottom {
        height: 51px;
    }

    .rs-header__btns {
        display: none;
    }
}

@media (max-width: 991px) {
    .menu-burger {
        display: block;
    }
}

@media (any-hover: hover) {
    .menu__dropdown-arrow {
        display: none;
    }

    .menu__dropdown:hover > .menu__dropdown-list {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
}

@media (min-width: 992px) {
  .menu .menu__list > li > .dropdown-menu  {
	width: 260px;
	box-shadow: 0 4px 8px rgba(0,0,0,.1);
	border: 1px solid #dddddd;
	border-radius: 0 0 4px 4px;
	margin: 0;
	padding: 0;  
  }
  .menu .menu__list > li > .dropdown-menu > li > a {
		font-weight: 300;
		color: #000;
		font-size: 14px;
		padding: 11px 13px;
		position: relative;
		border-bottom: 1px solid #dddddd;
		-webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
		white-space: normal;
	}
  .menu .menu__list > li:hover > .dropdown-menu {
    display: block;
  }
}