@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
main {
  padding: 88px 0 0;
}
@media screen and (max-width: 1366px) {
  main {
    padding: 72px 0 0;
  }
}

body.rud-overflow {
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

.rud-header {
  display: flex;
  width: 100%;
  justify-content: center;
  background-color: #FFF;
  font-family: "Nunito Sans", sans-serif;
  font-style: normal;
  box-sizing: border-box;
  position: fixed !important;
  top: 0;
  left: 0;
}
.rud-header *, .rud-header *::after, .rud-header *::before {
  font-family: "Nunito Sans", sans-serif;
  font-style: normal;
  box-sizing: border-box;
}
.rud-header .container {
  width: 100%;
  max-width: 1920px;
  display: flex;
  align-items: center;
  padding: 18px 120px;
  position: relative;
}
@media screen and (max-width: 1780px) {
  .rud-header .container {
    padding: 18px 80px;
  }
}
@media screen and (max-width: 1366px) {
  .rud-header .container {
    padding: 16px 64px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header .container {
    padding: 16px 48px;
  }
}
@media screen and (max-width: 600px) {
  .rud-header .container {
    padding: 16px 24px;
  }
}
.rud-header .container::after {
  content: "";
  display: block;
  width: calc(100% - 240px);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 120px;
  background-color: #CACACA;
}
@media screen and (max-width: 1780px) {
  .rud-header .container::after {
    width: calc(100% - 160px);
    left: 80px;
  }
}
@media screen and (max-width: 1366px) {
  .rud-header .container::after {
    width: calc(100% - 128px);
    left: 64px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header .container::after {
    width: calc(100% - 96px);
    left: 48px;
  }
}
@media screen and (max-width: 600px) {
  .rud-header .container::after {
    width: calc(100% - 48px);
    left: 24px;
  }
}
.rud-header__logo {
  width: 36px;
  height: 48px;
}
@media screen and (max-width: 1366px) {
  .rud-header__logo {
    width: 30px;
    height: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__logo {
    margin: 0 auto 0 0;
  }
}
.rud-header__logo svg {
  width: 100%;
  height: 100%;
}
.rud-header__nav {
  margin: 0 auto;
  height: calc(100% + 36px);
}
@media screen and (max-width: 1366px) {
  .rud-header__nav {
    height: calc(100% + 32px);
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__nav {
    display: none;
  }
}
.rud-header__nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: unset;
  padding: unset;
  height: 100%;
}
.rud-header__nav > ul > li {
  margin: 0 24px 0 0;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1150px) {
  .rud-header__nav > ul > li {
    margin: 0 12px 0 0;
  }
}
.rud-header__nav > ul > li::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: transparent;
  transition: 0.3s all ease-in-out;
}
.rud-header__nav > ul > li:last-child {
  margin: unset;
}
.rud-header__nav > ul > li > span,
.rud-header__nav > ul > li > a {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.48px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.rud-header__nav > ul > li > span svg,
.rud-header__nav > ul > li > a svg {
  width: 11px;
  height: 7px;
  stroke: #D2AC67;
  margin: 0 0 0 8px;
  transition: 0.3s all ease-in-out;
}
.rud-header__nav > ul > li > span:hover,
.rud-header__nav > ul > li > a:hover {
  color: #808F4E;
}
.rud-header__nav > ul > li > span:hover svg,
.rud-header__nav > ul > li > a:hover svg {
  stroke: #808F4E;
}
.rud-header__nav > ul > li.active::after {
  background-color: #808F4E;
}
.rud-header__nav > ul > li.active > span,
.rud-header__nav > ul > li.active > a {
  color: #808F4E;
}
.rud-header__nav > ul > li.active svg {
  stroke: #808F4E;
  transform: rotate(180deg);
}
.rud-header__nav--item__modal {
  position: fixed;
  top: 88px;
  left: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100 - 88px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 1366px) {
  .rud-header__nav--item__modal {
    height: calc(var(--vh, 1vh) * 100 - 72px);
    top: 72px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__nav--item__modal {
    top: 0;
    height: calc(var(--vh, 1vh) * 100);
  }
}
.rud-header__nav--item__modal.active {
  opacity: 1;
  pointer-events: inherit;
}
.rud-header__nav--item__modal::after, .rud-header__nav--item__modal::before {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: calc(100% - 130px);
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 1780px) {
  .rud-header__nav--item__modal::after, .rud-header__nav--item__modal::before {
    height: calc(100% - 166px);
  }
}
@media screen and (max-width: 1366px) {
  .rud-header__nav--item__modal::after, .rud-header__nav--item__modal::before {
    height: calc(100% - 52px);
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__nav--item__modal::after, .rud-header__nav--item__modal::before {
    display: none;
  }
}
.rud-header__nav--item__modal::after {
  left: 0;
  background: #FFF;
}
.rud-header__nav--item__modal::before {
  right: 0;
  background: #D2AC67;
}
.rud-header__nav--item__modal--head {
  display: none;
}
@media screen and (max-width: 1024px) {
  .rud-header__nav--item__modal--head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    position: relative;
    z-index: 2;
    max-width: 696px;
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .rud-header__nav--item__modal--head {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__nav--item__modal--head {
    padding: 16px 24px;
  }
}
.rud-header__nav--item__modal--head::after {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 96px);
  height: 1px;
  bottom: 0px;
  left: 48px;
  background-color: #CACACA;
}
@media screen and (max-width: 600px) {
  .rud-header__nav--item__modal--head::after {
    width: calc(100% - 48px);
    left: 24px;
  }
}
.rud-header__nav--item__modal--head__logo {
  width: 30px;
  height: 40px;
}
.rud-header__nav--item__modal--head__logo svg {
  width: 100%;
  height: 100%;
}
.rud-header__nav--item__modal--head__close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(128, 143, 78, 0.5);
}
.rud-header__nav--item__modal--head__close svg {
  width: 12px;
  height: 12px;
}
.rud-header__nav--item__modal--back {
  display: none;
  background-color: #fff;
  padding: 48px 48px 24px;
  width: 100%;
  max-width: 696px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .rud-header__nav--item__modal--back {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .rud-header__nav--item__modal--back {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__nav--item__modal--back {
    padding: 24px;
  }
}
.rud-header__nav--item__modal--back__btn {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  color: #808080;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.48px;
}
.rud-header__nav--item__modal--back__btn--arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px 0 0;
}
.rud-header__nav--item__modal--back__btn--arrow svg {
  width: 9px;
  height: 16px;
}
.rud-header__nav--item__modal--wrap {
  display: flex;
  align-items: flex-start;
  height: calc(100% - 130px);
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-bottom: 2px solid #D2AC67;
}
@media screen and (max-width: 1780px) {
  .rud-header__nav--item__modal--wrap {
    height: calc(100% - 166px);
  }
}
@media screen and (max-width: 1366px) {
  .rud-header__nav--item__modal--wrap {
    height: calc(100% - 52px);
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__nav--item__modal--wrap {
    height: 100%;
    max-width: 696px;
    margin: 0;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .rud-header__nav--item__modal--wrap {
    max-width: 100%;
  }
}
.rud-header__nav--item__modal--content {
  width: 63%;
  padding: 40px 120px;
  display: flex;
  align-items: center;
  height: 100%;
  overflow: auto;
  background-color: #fff;
}
@media screen and (max-width: 1780px) {
  .rud-header__nav--item__modal--content {
    padding: 40px 80px;
  }
}
@media screen and (max-width: 1366px) {
  .rud-header__nav--item__modal--content {
    width: 67%;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__nav--item__modal--content {
    width: 100%;
    padding: 0 48px 36px;
    height: calc(100% - 388px);
  }
}
@media screen and (max-width: 600px) {
  .rud-header__nav--item__modal--content {
    padding: 0 24px 24px;
    height: calc(100% - 364px);
  }
}
.rud-header__nav--item__modal--content .simplebar-vertical {
  right: 14px;
  width: 4px;
  background: #E1E1E1;
  border-radius: 4px;
  top: 48px;
  bottom: 48px;
}
@media screen and (max-width: 1366px) {
  .rud-header__nav--item__modal--content .simplebar-vertical {
    top: 24px;
    bottom: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__nav--item__modal--content .simplebar-vertical {
    top: 0;
    bottom: 36px;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__nav--item__modal--content .simplebar-vertical {
    right: 8px;
  }
}
.rud-header__nav--item__modal--content .simplebar-vertical .simplebar-scrollbar::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  opacity: 1;
  background: #E4C792;
}
.rud-header__nav--item__modal--content .simplebar-content {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .rud-header__nav--item__modal--content .simplebar-content {
    align-items: flex-start;
  }
}
.rud-header__nav--item__modal--list {
  display: none;
  flex-direction: column;
  width: 100%;
}
.rud-header__nav--item__modal--list.active {
  display: flex;
}
.rud-header__nav--item__modal--list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: #808080;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -2.4px;
  transition: 0.3s all ease-in-out;
  border-bottom: 1px solid #CACACA;
}
@media screen and (max-width: 1780px) {
  .rud-header__nav--item__modal--list__item {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -2.16px;
    padding: 16px 0;
  }
}
@media screen and (max-width: 1366px) {
  .rud-header__nav--item__modal--list__item {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1.68px;
    padding: 12px 0;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__nav--item__modal--list__item {
    padding: 6px 8px 6px 24px;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.6px;
    border-radius: 50px;
    border: 1px solid #CACACA;
    margin: 0 0 8px;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__nav--item__modal--list__item {
    font-size: 18px;
    line-height: 110%;
    letter-spacing: -0.54px;
  }
}
.rud-header__nav--item__modal--list__item:last-child {
  margin: unset;
}
.rud-header__nav--item__modal--list__item--arrow {
  width: 64px;
  min-width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s all ease-in-out;
  margin: 0 0 0 12px;
}
@media screen and (max-width: 1780px) {
  .rud-header__nav--item__modal--list__item--arrow {
    min-width: 48px;
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__nav--item__modal--list__item--arrow {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
}
.rud-header__nav--item__modal--list__item--arrow svg {
  width: 10px;
  height: 24px;
  opacity: 0.5;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 1780px) {
  .rud-header__nav--item__modal--list__item--arrow svg {
    width: 8px;
    height: 20px;
  }
}
.rud-header__nav--item__modal--list__item:hover {
  color: #000;
}
.rud-header__nav--item__modal--list__item:hover .rud-header__nav--item__modal--list__item--arrow {
  background-color: #EDEDED;
}
.rud-header__nav--item__modal--list__item:hover .rud-header__nav--item__modal--list__item--arrow svg {
  opacity: 1;
}
.rud-header__nav--item__modal--logo {
  background: #D2AC67;
  width: 37%;
  height: 100%;
  padding: 27px 147px 27px 27px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1780px) {
  .rud-header__nav--item__modal--logo {
    padding: 27px;
    justify-content: center;
  }
}
@media screen and (max-width: 1366px) {
  .rud-header__nav--item__modal--logo {
    width: 33%;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__nav--item__modal--logo {
    width: 100%;
    height: 222px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__nav--item__modal--logo svg {
    width: 240px;
    height: 115px;
  }
}
.rud-header__nav--item__modal--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}
.rud-header__schedule {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0 36px 0 0;
}
@media screen and (max-width: 1150px) {
  .rud-header__schedule {
    margin: 0 24px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__schedule {
    display: none;
  }
}
.rud-header__schedule--time {
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.42px;
  text-transform: uppercase;
  opacity: 0.4;
}
.rud-header__schedule a {
  color: #D2AC67;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 1366px) {
  .rud-header__schedule a {
    font-size: 16px;
    letter-spacing: -0.48px;
  }
}
.rud-header__schedule a:hover {
  color: #C39A4E;
}
.rud-header__socials {
  padding: 10px 24px;
  border-radius: 51px;
  border: 2px solid #D9D9D9;
  display: flex;
  align-items: center;
  margin: 0 36px 0 0;
}
@media screen and (max-width: 1366px) {
  .rud-header__socials {
    padding: 8px 16px;
  }
}
@media screen and (max-width: 1150px) {
  .rud-header__socials {
    margin: 0 24px 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__socials {
    display: none;
  }
}
.rud-header__socials a {
  margin: 0 12px 0 0;
  display: flex;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 1366px) {
  .rud-header__socials a {
    width: 20px;
    height: 20px;
  }
  .rud-header__socials a svg {
    width: 100%;
    height: 100%;
  }
}
.rud-header__socials a:last-child {
  margin: 0;
}
.rud-header__socials a:hover {
  transform: translateY(-5px);
}
.rud-header__langs {
  border-radius: 52px;
  border: 2px solid #D9D9D9;
  padding: 14px 18px;
}
@media screen and (max-width: 1366px) {
  .rud-header__langs {
    padding: 8px 18px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__langs {
    margin: 0 24px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__langs {
    display: none;
  }
}
.rud-header__langs .wpml-ls-statics-shortcode_actions {
  padding: unset;
  border: none;
}
.rud-header__langs .wpml-ls-statics-shortcode_actions ul {
  line-height: 1;
}
.rud-header__langs .wpml-ls-statics-shortcode_actions ul li {
  margin: 0 16px 0 0;
  position: relative;
}
.rud-header__langs .wpml-ls-statics-shortcode_actions ul li::after {
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  position: absolute;
  background: #797979;
  top: 0;
  right: -9px;
}
.rud-header__langs .wpml-ls-statics-shortcode_actions ul li:last-child {
  margin: unset;
}
.rud-header__langs .wpml-ls-statics-shortcode_actions ul li:last-child::after {
  display: none;
}
.rud-header__langs .wpml-ls-statics-shortcode_actions ul li a {
  padding: unset;
}
.rud-header__langs .wpml-ls-statics-shortcode_actions ul li a span {
  color: #797979;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.42px;
  text-transform: uppercase;
  transition: 0.3s all ease-in-out;
}
.rud-header__langs .wpml-ls-statics-shortcode_actions ul li a:hover span {
  color: #808F4E;
}
.rud-header__langs .wpml-ls-statics-shortcode_actions ul li.wpml-ls-current-language a span {
  color: #D2AC67;
  opacity: 0.8;
}
.rud-header__burder {
  display: none;
}
@media screen and (max-width: 1024px) {
  .rud-header__burder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #808F4E;
  }
}
.rud-header__burder svg {
  width: 18px;
  height: 12px;
}
.rud-header__services {
  position: fixed;
  top: 88px;
  left: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100 - 88px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 1366px) {
  .rud-header__services {
    top: 72px;
    height: calc(var(--vh, 1vh) * 100 - 72px);
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__services {
    height: calc(var(--vh, 1vh) * 100);
    top: 0;
  }
}
.rud-header__services.active {
  opacity: 1;
  pointer-events: inherit;
  z-index: 1;
}
.rud-header__services::after, .rud-header__services::before {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: calc(100% - 130px);
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 1780px) {
  .rud-header__services::after, .rud-header__services::before {
    height: calc(100% - 166px);
  }
}
@media screen and (max-width: 1366px) {
  .rud-header__services::after, .rud-header__services::before {
    height: calc(100% - 124px);
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__services::after, .rud-header__services::before {
    display: none;
  }
}
.rud-header__services::after {
  left: 0;
  background: #D2AC67;
}
.rud-header__services::before {
  right: 0;
  background: #FFF;
}
.rud-header__services--head {
  display: none;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    position: relative;
    z-index: 2;
    max-width: 696px;
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .rud-header__services--head {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__services--head {
    padding: 16px 24px;
  }
}
.rud-header__services--head::after {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 96px);
  height: 1px;
  bottom: 0px;
  left: 48px;
  background-color: #CACACA;
}
@media screen and (max-width: 600px) {
  .rud-header__services--head::after {
    width: calc(100% - 48px);
    left: 24px;
  }
}
.rud-header__services--head__logo {
  width: 30px;
  height: 40px;
}
.rud-header__services--head__logo svg {
  width: 100%;
  height: 100%;
}
.rud-header__services--head__close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(128, 143, 78, 0.5);
}
.rud-header__services--head__close svg {
  width: 12px;
  height: 12px;
}
.rud-header__services--back {
  display: none;
  background-color: #fff;
  padding: 48px 48px 24px;
  width: 100%;
  max-width: 696px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--back {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .rud-header__services--back {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__services--back {
    padding: 24px;
  }
}
.rud-header__services--back__btn {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  color: #808080;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.48px;
}
.rud-header__services--back__btn--arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px 0 0;
}
.rud-header__services--back__btn--arrow svg {
  width: 9px;
  height: 16px;
}
.rud-header__services--wrap {
  background-color: #FFF;
  display: flex;
  align-items: flex-start;
  height: calc(100% - 130px);
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  border-bottom: 2px solid #D2AC67;
  z-index: 2;
}
@media screen and (max-width: 1780px) {
  .rud-header__services--wrap {
    height: calc(100% - 166px);
  }
}
@media screen and (max-width: 1366px) {
  .rud-header__services--wrap {
    height: calc(var(--vh, 1vh) * 100 - 124px);
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__services--wrap {
    max-width: 696px;
    margin: 0;
    height: calc(100% - 144px);
  }
}
@media screen and (max-width: 768px) {
  .rud-header__services--wrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__services--wrap {
    height: calc(100% - 120px);
  }
}
.rud-header__services--list {
  display: flex;
  flex-direction: column;
  border-right: 2px solid #FFF;
  background: #D2AC67;
  width: calc(33.3333333333% + 64px);
  padding: 48px 56px 48px 120px;
  height: 100%;
  overflow: auto;
}
@media screen and (max-width: 1780px) {
  .rud-header__services--list {
    padding: 48px 56px 48px 80px;
    width: calc(33.3333333333% + 48px);
  }
}
@media screen and (max-width: 1366px) {
  .rud-header__services--list {
    padding: 24px 36px 24px 64px;
    width: calc(33.3333333333% + 8px);
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #fff;
    padding: 0 56px 24px 48px;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__services--list {
    padding: 0 20px 24px 24px;
  }
}
.rud-header__services--list .simplebar-vertical {
  right: 14px;
  width: 4px;
  background: #E4C792;
  border-radius: 4px;
  top: 48px;
  bottom: 48px;
}
@media screen and (max-width: 1366px) {
  .rud-header__services--list .simplebar-vertical {
    top: 24px;
    bottom: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list .simplebar-vertical {
    background: #E1E1E1;
    top: 0;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__services--list .simplebar-vertical {
    right: 8px;
  }
}
.rud-header__services--list .simplebar-vertical .simplebar-scrollbar::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  opacity: 1;
  background: #FFF;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list .simplebar-vertical .simplebar-scrollbar::before {
    background: #E4C792;
  }
}
.rud-header__services--list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 8px;
  border-radius: 80px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  padding: 6px 8px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__item {
    border-radius: 64px;
    border: 1px solid #CACACA;
  }
}
.rud-header__services--list__item:last-child {
  margin: unset;
}
.rud-header__services--list__item--link {
  display: flex;
  align-items: center;
  max-width: calc(100% - 52px);
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__item--link {
    width: 100%;
  }
}
.rud-header__services--list__item--link__icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #C29749;
  margin: 0 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in-out;
}
.rud-header__services--list__item--link__icon svg {
  width: 20px;
  height: 20px;
  fill: #FFF;
  transition: 0.3s all ease-in-out;
}
.rud-header__services--list__item--link span {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.6px;
  opacity: 0.75;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 1366px) {
  .rud-header__services--list__item--link span {
    font-size: 18px;
    line-height: 110%;
    letter-spacing: -0.54px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__item--link span {
    color: #000;
  }
}
.rud-header__services--list__item--arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s all ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rud-header__services--list__item--arrow svg {
  width: 9px;
  height: 18px;
  stroke: #FFF;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__item--arrow svg {
    stroke: #000;
  }
}
.rud-header__services--list__item.active {
  background-color: #FFF;
  border-color: #FFF;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__item.active {
    border-color: #CACACA;
  }
}
.rud-header__services--list__item.active .rud-header__services--list__item--link span {
  color: #000;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__item.active .rud-header__services--list__item--link span {
    opacity: 0.75;
  }
}
.rud-header__services--list__item.active .rud-header__services--list__item--link__icon {
  background-color: #738340;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__item.active .rud-header__services--list__item--link__icon {
    background-color: #C29749;
  }
}
.rud-header__services--list__item.active .rud-header__services--list__item--arrow {
  background-color: #D2AC67;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__item.active .rud-header__services--list__item--arrow {
    background-color: #FFF;
  }
}
@media screen and (min-width: 1024px) {
  .rud-header__services--list__item:hover:not(.active) {
    border-color: #E4C792;
  }
  .rud-header__services--list__item:hover:not(.active) .rud-header__services--list__item--link__icon {
    background-color: #FFF;
  }
  .rud-header__services--list__item:hover:not(.active) .rud-header__services--list__item--link__icon svg {
    fill: #AD863F;
  }
  .rud-header__services--list__item:hover:not(.active) .rud-header__services--list__item--arrow {
    background-color: #E4C792;
  }
}
.rud-header__services--list__item:not(.rud-header__services--list__item--has_childs) {
  padding: unset;
}
.rud-header__services--list__item:not(.rud-header__services--list__item--has_childs) .rud-header__services--list__item--link {
  padding: 6px 8px;
  max-width: 100%;
  width: 100%;
}
.rud-header__services--list__second {
  width: calc(33.3333333333% - 60px);
  padding: 48px 56px 48px;
  background: linear-gradient(90deg, #E7E7E7 -2.04%, rgba(248, 248, 248, 0) 8.84%);
  height: 100%;
  transition: 0.3s all ease-in-out;
  overflow: auto;
}
@media screen and (max-width: 1780px) {
  .rud-header__services--list__second {
    width: calc(33.3333333333% - 48px);
  }
}
@media screen and (max-width: 1366px) {
  .rud-header__services--list__second {
    padding: 24px 36px;
    width: calc(33.3333333333% - 38px);
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__second {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: #fff;
    padding: 0 56px 24px 48px;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__services--list__second {
    padding: 0 20px 24px 24px;
  }
}
.rud-header__services--list__second .simplebar-vertical {
  right: 14px;
  width: 4px;
  background: #E1E1E1;
  border-radius: 4px;
  top: 48px;
  bottom: 48px;
}
@media screen and (max-width: 1366px) {
  .rud-header__services--list__second .simplebar-vertical {
    top: 24px;
    bottom: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__second .simplebar-vertical {
    top: 0;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__services--list__second .simplebar-vertical {
    right: 8px;
  }
}
.rud-header__services--list__second .simplebar-vertical .simplebar-scrollbar::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  opacity: 1;
  background: #808F4E;
}
.rud-header__services--list__second.opacity {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__second.opacity {
    left: -100%;
    opacity: 1;
    pointer-events: inherit;
  }
}
.rud-header__services--list__second--list {
  display: none;
  flex-direction: column;
}
.rud-header__services--list__second--list.active {
  display: flex;
}
.rud-header__services--list__second--list__item {
  padding: 8px 0;
  border-bottom: 1px solid #CACACA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.rud-header__services--list__second--list__item a {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.54px;
  opacity: 0.5;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__second--list__item a {
    width: 100%;
  }
}
@media screen and (max-width: 1366px) {
  .rud-header__services--list__second--list__item a {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.48px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__second--list__item a {
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.54px;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__services--list__second--list__item a {
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.48px;
  }
}
.rud-header__services--list__second--list__item--arrow {
  width: 36px;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 12px;
  border-radius: 50%;
  transition: 0.3s all ease-in-out;
}
.rud-header__services--list__second--list__item--arrow svg {
  width: 6px;
  height: 10px;
  stroke: #808080;
  transition: 0.3s all ease-in-out;
}
.rud-header__services--list__second--list__item.active a {
  opacity: 1;
}
.rud-header__services--list__second--list__item.active .rud-header__services--list__second--list__item--arrow {
  background-color: #808F4E;
}
.rud-header__services--list__second--list__item.active .rud-header__services--list__second--list__item--arrow svg {
  stroke: #FFF;
}
@media screen and (min-width: 1024px) {
  .rud-header__services--list__second--list__item:hover:not(.active) a {
    opacity: 1;
  }
  .rud-header__services--list__second--list__item:hover:not(.active) .rud-header__services--list__second--list__item--arrow {
    background-color: #EDEDED;
  }
  .rud-header__services--list__second--list__item:hover:not(.active) .rud-header__services--list__second--list__item--arrow svg {
    stroke: #000;
  }
}
.rud-header__services--list__second--list__item:not(.rud-header__services--list__second--list__item--has_childs) {
  padding: unset;
}
.rud-header__services--list__second--list__item:not(.rud-header__services--list__second--list__item--has_childs) a {
  padding: 8px 0;
  max-width: 100%;
  width: 100%;
}
.rud-header__services--list__second--list__separator {
  margin: 0 0 24px;
}
.rud-header__services--list__third {
  width: calc(33.3333333333% - 124px);
  background: linear-gradient(90deg, #E7E7E7 -2.04%, rgba(248, 248, 248, 0) 8.84%);
  padding: 48px 56px 48px;
  height: 100%;
  transition: 0.3s all ease-in-out;
  overflow: auto;
}
@media screen and (max-width: 1780px) {
  .rud-header__services--list__third {
    width: calc(33.3333333333% - 80px);
  }
}
@media screen and (max-width: 1366px) {
  .rud-header__services--list__third {
    padding: 24px 36px;
    width: calc(33.3333333333% - 34px);
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__third {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: #fff;
    padding: 0 56px 24px 48px;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__services--list__third {
    padding: 0 20px 24px 24px;
  }
}
.rud-header__services--list__third.opacity {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__third.opacity {
    left: -100%;
    opacity: 1;
    pointer-events: inherit;
  }
}
.rud-header__services--list__third .simplebar-vertical {
  right: 14px;
  width: 4px;
  background: #E1E1E1;
  border-radius: 4px;
  top: 48px;
  bottom: 48px;
}
@media screen and (max-width: 1366px) {
  .rud-header__services--list__third .simplebar-vertical {
    top: 24px;
    bottom: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__third .simplebar-vertical {
    top: 0;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__services--list__third .simplebar-vertical {
    right: 8px;
  }
}
.rud-header__services--list__third .simplebar-vertical .simplebar-scrollbar::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  opacity: 1;
  background: #808F4E;
}
.rud-header__services--list__third--list {
  display: none;
  flex-direction: column;
}
.rud-header__services--list__third--list.active {
  display: flex;
}
.rud-header__services--list__third--list a {
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.48px;
  transition: 0.3s all ease-in-out;
  padding: 10px 0;
  border-bottom: 1px solid #CACACA;
}
@media screen and (max-width: 1366px) {
  .rud-header__services--list__third--list a {
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.48px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-header__services--list__third--list a {
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.54px;
    padding: 8px 0;
  }
}
@media screen and (max-width: 600px) {
  .rud-header__services--list__third--list a {
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.48px;
  }
}
@media screen and (min-width: 1024px) {
  .rud-header__services--list__third--list a:hover {
    color: #808F4E;
  }
}
.rud-header__services--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .rud-header__services--bg {
    opacity: 0;
  }
}
.rud-header__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 696px;
  height: calc(var(--vh, 1vh) * 100);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
  display: none;
}
.rud-header__menu.active {
  opacity: 1;
  pointer-events: inherit;
}
@media screen and (max-width: 1024px) {
  .rud-header__menu {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .rud-header__menu {
    width: 100%;
  }
}
.rud-header__menu--wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  border-right: 2px solid #D2AC67;
}
.rud-header__menu--head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .rud-header__menu--head {
    padding: 16px 24px;
  }
}
.rud-header__menu--head::after {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 96px);
  height: 1px;
  bottom: 0px;
  left: 48px;
  background-color: #CACACA;
}
@media screen and (max-width: 600px) {
  .rud-header__menu--head::after {
    width: calc(100% - 48px);
    left: 24px;
  }
}
.rud-header__menu--head__logo {
  width: 30px;
  height: 40px;
}
.rud-header__menu--head__logo svg {
  width: 100%;
  height: 100%;
}
.rud-header__menu--head__close {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(128, 143, 78, 0.5);
}
.rud-header__menu--head__close svg {
  width: 12px;
  height: 12px;
}
.rud-header__menu--content {
  padding: 36px 48px 0;
  height: calc(100% - 72px);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  overflow: auto;
}
@media screen and (max-width: 600px) {
  .rud-header__menu--content {
    padding: 36px 24px 0;
  }
}
.rud-header__menu--content__info {
  display: flex;
  align-items: center;
  margin: 0 0 64px;
}
@media screen and (max-width: 600px) {
  .rud-header__menu--content__info {
    flex-wrap: wrap;
  }
}
.rud-header__menu--content .simplebar-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rud-header__menu--content .simplebar-vertical {
  right: 14px;
  width: 4px;
  background: #E1E1E1;
  border-radius: 4px;
  top: 36px;
  bottom: 96px;
}
@media screen and (max-width: 600px) {
  .rud-header__menu--content .simplebar-vertical {
    bottom: 64px;
    right: 8px;
  }
}
.rud-header__menu--content .simplebar-vertical .simplebar-scrollbar::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  opacity: 1;
  background: #808F4E;
}
.rud-header__menu--schedule {
  display: flex;
  flex-direction: column;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 600px) {
  .rud-header__menu--schedule {
    width: 100%;
    margin: 0 0 24px;
  }
}
.rud-header__menu--schedule__time {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
@media screen and (max-width: 600px) {
  .rud-header__menu--schedule__time {
    font-size: 16px;
    letter-spacing: -0.48px;
  }
}
.rud-header__menu--schedule a {
  color: #D2AC67;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 600px) {
  .rud-header__menu--schedule a {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
}
.rud-header__menu--schedule a:hover {
  color: #C39A4E;
}
.rud-header__menu--socials {
  display: flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 51px;
  border: 2px solid #D9D9D9;
  margin: 0 12px 0 0;
}
.rud-header__menu--socials a {
  width: 28px;
  height: 28px;
  margin: 0 16px 0 0;
}
.rud-header__menu--socials a:last-child {
  margin: unset;
}
.rud-header__menu--socials a svg {
  width: 100%;
  height: 100%;
}
.rud-header__menu--langs {
  border-radius: 51px;
  border: 2px solid #D9D9D9;
  padding: 13px 20px;
}
.rud-header__menu--langs .wpml-ls-statics-shortcode_actions {
  padding: unset;
  border: none;
}
.rud-header__menu--langs .wpml-ls-statics-shortcode_actions ul {
  line-height: 1;
}
.rud-header__menu--langs .wpml-ls-statics-shortcode_actions ul li {
  margin: 0 16px 0 0;
  position: relative;
}
.rud-header__menu--langs .wpml-ls-statics-shortcode_actions ul li::after {
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  position: absolute;
  background: #797979;
  top: 0;
  right: -9px;
}
.rud-header__menu--langs .wpml-ls-statics-shortcode_actions ul li:last-child {
  margin: unset;
}
.rud-header__menu--langs .wpml-ls-statics-shortcode_actions ul li:last-child::after {
  display: none;
}
.rud-header__menu--langs .wpml-ls-statics-shortcode_actions ul li a {
  padding: unset;
}
.rud-header__menu--langs .wpml-ls-statics-shortcode_actions ul li a span {
  color: #797979;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.42px;
  text-transform: uppercase;
  transition: 0.3s all ease-in-out;
}
.rud-header__menu--langs .wpml-ls-statics-shortcode_actions ul li a:hover span {
  color: #808F4E;
}
.rud-header__menu--langs .wpml-ls-statics-shortcode_actions ul li.wpml-ls-current-language a span {
  color: #D2AC67;
  opacity: 0.8;
}
.rud-header__menu--nav {
  padding: 0 0 36px;
  margin: auto 0 0;
}
.rud-header__menu--nav > ul {
  margin: unset;
  padding: unset;
  display: flex;
  flex-direction: column;
  list-style: none;
}
.rud-header__menu--nav > ul > li {
  padding: 20px 0;
  border-bottom: 1px solid #CACACA;
  margin: unset;
}
@media screen and (max-width: 600px) {
  .rud-header__menu--nav > ul > li {
    padding: 16px 0;
  }
}
.rud-header__menu--nav > ul > li > a,
.rud-header__menu--nav > ul > li > span {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -1.68px;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .rud-header__menu--nav > ul > li > a,
  .rud-header__menu--nav > ul > li > span {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -1.2px;
  }
}
.rud-header__menu--nav > ul > li .rud-header__menu--nav__item--arrow {
  width: 48px;
  min-width: 48px;
  margin: 0 0 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .rud-header__menu--nav > ul > li .rud-header__menu--nav__item--arrow {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }
}
.rud-header__menu--nav > ul > li .rud-header__menu--nav__item--arrow svg {
  width: 12px;
  height: 22px;
}
@media screen and (max-width: 600px) {
  .rud-header__menu--nav > ul > li .rud-header__menu--nav__item--arrow svg {
    width: 6px;
    height: 14px;
  }
}
.rud-header__menu--bg {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  background: rgba(0, 0, 0, 0.5);
}

body #bingc-phone-button {
  z-index: 10 !important;
}/*# sourceMappingURL=header.css.map */