header .mobile {
  display: none;
}

.hm {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.hm .shadowclose {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  pointer-events: none;
  -webkit-backdrop-filter: saturate(120%) blur(4px);
          backdrop-filter: saturate(120%) blur(4px);
}
.hm .navBoxe {
  position: absolute;
  top: 0;
  left: 0;
  width: min(86vw, 420px);
  height: 100dvh;
  background: var(--dark);
  color: var(--white);
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 6px 0 28px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  will-change: transform;
  z-index: 100;
}
.hm .navBoxe .break {
  margin: 30px 10px 15px;
  height: 1px;
  background-color: #323e63;
}
.hm .navBoxe .contact {
  margin: 0 30px 15px 15px;
}
.hm .navBoxe .contact a {
  background: var(--main-color);
  height: 60px;
  min-width: 166px;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--white);
  justify-content: center;
  gap: 12px;
}
.hm .navBoxe .contact a i {
  color: var(--main-color);
  font-size: 28px;
}
.hm .navBoxe .contact a span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hm .navBoxe .contact a strong {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0;
  margin-top: -2px;
  color: var(--white);
}
.hm .navBoxe .contact a:hover {
  background-color: var(--dmain-color);
}
.hm nav {
  flex: 1 1 auto;
  overflow: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--dark) transparent;
  padding: 24px 12px 28px;
}
.hm nav .headerInsideBox {
  margin-bottom: 30px;
}
.hm nav .headerInsideBox h3 {
  font-size: 19px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 8px 12px 6px;
}
.hm nav .headerInsideBox a {
  min-height: 43px;
  min-width: 150px;
  width: 174px;
  border: none;
  color: var(--white);
  font-size: 14px;
  gap: 5px;
}
.hm .navelements > ul.mod-menu > li.active > a {
  background: var(--dmain-color);
  color: var(--white);
}
.hm .navelements:before {
  content: "";
  display: block;
  height: 1px;
  background-color: #323e63;
  margin: 30px 10px;
}
.hm .navelements ul.mod-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.hm .navelements li {
  position: relative;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.hm .navelements li > img, .hm .navelements li picture, .hm .navelements li svg {
  display: none;
}
.hm .navelements a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 14px 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transform: translateX(-6px);
  transition: transform 260ms ease, background 200ms linear, color 200ms linear;
  -webkit-tap-highlight-color: transparent;
  flex: auto;
  width: 100%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.hm .navelements a:active {
  transform: translateX(-2px) scale(0.995);
}
.hm .navelements a:hover {
  background: var(--dmain-color);
  color: var(--white) !important;
}
.hm .navelements .nav-item.parent > span {
  position: absolute;
  top: 0;
  height: 50px;
  width: 40px;
  right: 10px;
}
.hm .navelements .nav-item.parent > span::after {
  content: "\e090";
  font-family: var(--icons);
  cursor: pointer;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  font-size: 22px;
  opacity: 0.9;
  transition: transform 280ms ease, opacity 200ms linear;
  font-weight: 400;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}
.hm .navelements .nav-item.is-open > span::after {
  transform: translateY(-50%) rotate(90deg);
  opacity: 1;
}
.hm .navelements .mod-menu__sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, transform 300ms ease;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  padding-left: 10px;
  width: 100%;
}
.hm .navelements .mod-menu__sub a {
  font-size: 16px;
  font-weight: 400;
}
.hm .navelements .mod-menu__sub a:hover {
  color: var(--llight);
}
.hm .navelements .mod-menu__sub li.active > a {
  color: var(--main-color);
}
.hm .navelements .nav-item.is-open > .mod-menu__sub {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}
.hm .social {
  padding: 20px 20px 30px;
}
.hm .social > span {
  display: block;
  margin-bottom: 15px;
}
.hm .social .mod-menu {
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hm .social .mod-menu li {
  display: flex;
  align-items: center;
}
.hm .social .mod-menu a {
  font-size: 0;
}
.hm .social .mod-menu a span {
  font-size: 16px;
  height: 30px;
  border-radius: 100%;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background-color: var(--white);
  transition: all 200ms linear;
}
.hm .social .mod-menu a:hover span {
  background-color: var(--main-color);
  color: var(--white);
}
.hm.displayNone, .hm[hidden] {
  display: block;
}

body.mobile .hm {
  opacity: 1;
  pointer-events: auto;
}
body.mobile .hm .shadowclose {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease, visibility 0s linear 0s;
}
body.mobile .hm .navBoxe {
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1670px) {
  body > header .bottom .left nav {
    padding-left: 40px;
  }
  body > header .bottom .left .searchBox {
    height: 100%;
    min-width: inherit;
  }
  body > header .bottom .left .searchBox form {
    justify-content: flex-end;
    padding-right: 0 !important;
    border: none !important;
    height: 100%;
  }
  body > header .bottom .left .searchBox form input {
    position: absolute;
    width: 300px;
    margin-top: 72px;
    border-radius: 15px;
    border: 1px solid var(--dark);
    background-color: var(--white);
    z-index: 10000;
  }
  body > header .bottom .left:hover .searchBox form input, body > header .bottom .left:has(form.active) .searchBox form input {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  body > header .bottom .left:hover .searchBox form:hover input, body > header .bottom .left:has(form.active) .searchBox form:hover input {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
  body > header .bottom .left:has(form.active) .searchBox form, body > header .bottom .left:hover .searchBox form {
    padding-right: 0;
    border: none !important;
  }
}
@media (max-width: 1450px) {
  body > header .bottom .left .logo .mainlogo {
    max-width: 66px;
    overflow: hidden;
  }
  body > header .bottom .left form input {
    margin-top: 52px !important;
  }
}
@media (max-width: 1350px) {
  body > header .bottom .left,
  body > header .bottom .rightside {
    height: 66px;
  }
  body > header .bottom .left .logo .mainlogo {
    max-width: 46px;
  }
  body > header .bottom .left .logo .godlo {
    max-height: 37px;
  }
  .mapBox .width50 {
    padding: 30px;
    width: 100%;
    margin-top: 20px;
  }
  .mapBox iframe {
    position: relative;
    width: calc(100% - 40px);
    height: 300px;
    left: 20px;
    right: 20px;
    border-radius: 15px;
  }
}
@media (max-width: 1320px) {
  body > header .bottom .left .logo svg {
    min-width: 66px;
  }
  body > header .bottom .left .searchBox {
    flex: none;
  }
  body > header .bottom .left .searchBox form a {
    font-size: 22px;
  }
  body > header .bottom .left nav {
    flex: auto;
  }
  body > header .bottom .left nav .mod-menu {
    justify-content: space-between;
    gap: 5px;
  }
  body > header .bottom .left nav .mod-menu a {
    font-size: 15px;
  }
  body > header .bottom .rightside > a span {
    font-size: 14px;
  }
}
@media (max-width: 1270px) {
  .articleBox.center .list .item {
    flex: 1 1 300px;
  }
}
@media (max-width: 1080px) {
  body > header .bottom .left nav {
    align-items: center;
    display: flex;
    justify-content: flex-end;
  }
  body > header .bottom .left nav ul {
    display: none;
  }
  body > header .bottom .left nav > .mobile {
    display: inline-flex;
    font-size: 22px;
    color: var(--dark);
  }
}
@media (max-width: 740px) {
  body > footer .bottom .author a:first-child,
  body > footer .bottom .author .break,
  body > header .top .oldsite,
  body > header .top .oldsite + .break{
    display: none;
  }
}
@media (max-width: 700px) {
  .articleBox.center .list .item {
    flex: 1 1 270px;
  }
  .articleBox.center .list .item .textBox {
    padding: 20px;
  }
  .articleBox.center .list .item .textBox .preinfo .element {
    font-size: 14px;
  }
  .articleBox.center .list .item .textBox h2 {
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  body > header .bottom .logo .godlo, body > header .bottom .logo svg {
    display: none;
  }
  body > header .bottom .left nav {
    padding-left: 15px;
  }
  body > header .bottom .rightside > a span {
    display: none;
  }
  .headerFullBox .breadcrumbs-wrapper {
    display: none;
  }
}
@media (max-width: 630px) {
  .articleBox.center .list .item {
    max-width: 100%;
  }
  .articleBox.center .list .item .image img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  body > header .top .mod-menu,
  body > header .top .mod-menu + .break {
    display: none;
  }
}
@media (max-width: 578px) {
  .articleBox.center,
  body .partners,
  .mapBox,
  .com-content-article__body,
  body > footer,
  .gtBox {
    margin-top: 70px;
  }
  .articleBox.center .header h3,
  body .partners .header h3,
  .mapBox .header h3,
  .com-content-article__body .header h3,
  body > footer .header h3,
  .gtBox .header h3 {
    font-size: 28px;
  }
  body .articleBox .list {
    padding-top: 0;
  }
  .gtBox .textBox {
    padding: 70px 30px;
  }
  body > footer .top {
    padding: 70px 20px;
  }
  .headerBox p {
    font-size: 20px;
  }
  .headerBox h1, .headerBox h2, .headerBox h3, .headerBox h4, .headerBox h5, .headerBox h6 {
    font-size: 40px;
  }
  body > header .bottom form input {
    right: 20px;
    width: calc(100% - 72px) !important;
    top: 70px;
  }
  body > header .bottom .left:hover .searchBox form:hover input,
  body > header .bottom .left:has(form.active) .searchBox form:hover input {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  body > header .bottom .searchBox.active form input {
    opacity: 1 !important;
    pointer-events: all !important;
    visibility: visible !important;
    box-shadow: 0px 10px 20px 20px hsla(0, 0%, 100%, 0.85);
  }
  body .headerFullBox .center h1 {
    font-size: 24px;
  }
}
@media (max-width: 540px) {
  .articleBox.center .header .break,
  .articleBox.center .header a {
    display: none;
  }
  footer .top .center {
    gap: 40px 60px;
  }
  body > footer .bottom .copy {
    max-width: 50%;
    text-align: left;
  }
}
@media (max-width: 480px) {
  body > header .top .contrast {
    gap: 0;
  }
  body > header .top .contrast span {
    display: none;
  }
  body > footer .bottom {
    padding: 0 20px;
  }
}/*# sourceMappingURL=rwd.css.map */