.nav-menu {
  display: flex;
}
.logo__img {
  max-width: 144px;
  width: 100%;
}
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 80px;
  background: #fff;
  position: fixed;
  left: 0;
  box-sizing: border-box;
  z-index: 6;
}

.top-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
}

.top-nav .nav-menu__link {
  position: relative;
  margin-right: 20px;
  font-size: 14px;
  margin-left: 20px;
  padding-bottom: 2px;
  color: #232323;
  opacity: 0.5;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 24px;
  font-family: Arimo, OpenSans, sans-serif;
}

.top-nav .nav-menu__link:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #232323;
}

.top-nav .nav-menu__link:hover {
  color: #232323;
  opacity: 1;
  transition: 0.4s;
}

.top-nav .nav-menu__link.mobLabel:hover {
  opacity: 0.5;
}
.top-nav .nav-menu__link.mobLabel:hover:after {
  width: 0;
}
.top-nav .nav-menu__link:hover:after {
  width: 100%;
  transition: 0.4s;
}

.top-nav .nav-menu__link.active {
  opacity: 1;
}

.top-nav .nav-menu__link.active:after {
  width: 100%;
}

.button {
  background: #013274;
}

.language-menu {
  margin-right: 40px;
}

.language-menu:focus {
  outline: none;
}

.nice-select {
  border: none;
  font-family: Arimo, OpenSans, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: normal;
  color: rgba(35, 35, 35, 0.51);
  height: auto;
  padding-right: 22px;
  text-transform: uppercase;
}

.nice-select .current {
  font-size: 14px;
}
/* SELECT */
.list li a {
  font-weight: 400;
  text-decoration: none;
  color: rgba(35, 35, 35, 0.51);
  width: 100%;
  text-align: center;
  height: 100%;
  display: block;
  box-sizing: border-box;
  padding-left: 18px;
  padding-right: 18px;
}

.list li.selected a {
  font-weight: bold;
}
.nice-select .option {
  padding: 0;
}
.nice-select .current {
  font-size: 14px;
}

.nice-select .list {
  left: 5px;
}
@media all and (max-width: 992px) {
  .nemu-display-none {
    display: none;
  }
}
/* END SELECT */
.mobile-menu-icon,
.header-placeholder {
  display: none;
}

.nav-menu__link.mob,
.nav-menu__link.mobLabel {
  display: none;
}

@media all and (max-width: 1200px) {
  .top-nav {
    padding: 20px;
  }
  .top-nav .nav-menu__link {
    margin-right: 10px;
    margin-left: 10px;
  }
}

.mobile-menu-bg {
  display: none;
}
@media all and (max-width: 992px) {
  .top-nav {
    padding: 16px 36px 18px 12px;
  }

  .logo__img {
    max-height: 28px;
  }

  .mobile-menu-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    cursor: pointer;
    z-index: 2;
  }

  .mobile-menu-icon__item2 {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .mobile-menu-icon__item1,
  .mobile-menu-icon__item2,
  .mobile-menu-icon__item3 {
    width: 24px;
    height: 2px;
    opacity: 0.5;
    background-color: #232323;
    transition: 0.4s;
  }

  /* Rotate first bar */
  .mobile-menu-icon.change .mobile-menu-icon__item1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 5px);
    transform: rotate(-45deg) translate(-6px, 5px);
  }

  /* Fade out the second bar */
  .mobile-menu-icon.change .mobile-menu-icon__item2 {
    opacity: 0;
  }

  /* Rotate last bar */
  .mobile-menu-icon.change .mobile-menu-icon__item3 {
    -webkit-transform: rotate(45deg) translate(-5px, -5px);
    transform: rotate(45deg) translate(-5px, -5px);
  }

  .nav-menu,
  .btn-connect-with-us {
    display: none;
  }

  .open-mobile-menu .nav-menu {
    display: flex;
  }

  .open-mobile-menu .btn-connect-with-us {
    display: block;
    max-width: 200px;
    width: 100%;
    margin-top: 25px;
    margin-left: 12px;
  }

  .open-mobile-menu .nav-menu {
    flex-direction: column;
  }

  .open-mobile-menu .nav-menu__link {
    display: inline-block;
    margin-left: 12px;
    margin-right: 12px;
    font-size: 20px;
    margin-bottom: 15px;
  }

  .open-mobile-menu .language-menu {
    display: none;
  }

  .language-menu {
    margin-right: 15px;
  }

  .nice-select:after {
    width: 4px;
    height: 4px;
  }

  .logo {
    position: relative;
    z-index: 2;
  }

  .top-nav__actions {
    position: relative;
    height: 0;
    z-index: 1;
  }

  .header-placeholder {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    background: #fff;
    height: 65px;
    width: 100%;
    z-index: 1;
  }

  .open-mobile-menu .nav-menu {
    position: fixed;
    height: calc(100vh - 65px);
    top: 65px;
    right: 0;
    max-width: 300px;
    width: 100%;
    padding-top: 35px;
    padding-bottom: 40px;
    background: #fff;
    z-index: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .mobile-menu-bg {
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
  }
}

/*--- vertical menu styles---*/
.container-vertical-menu {
  position: absolute;
  top: 55%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 2;
}

.container-vertical-menu.fixed {
  position: fixed;
}

.vertical-menu {
  position: sticky;
  bottom: 0;
  height: calc(100% - 110px);
  writing-mode: vertical-lr;
  display: inline-flex;
}

.vertical-menu.visible {
}

.vertical-menu__item {
  transform: rotate(180deg);
  border-left: 1px solid #dbdbdb;
}

.vertical-menu__item a {
  text-decoration: none;
  font-family: Arimo, OpenSans, sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  color: #dbdbdb;
  margin-top: 10px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.vertical-menu__item.active {
  border-left: 1px solid #232323;
}

.vertical-menu__item.active a {
  color: #232323;
}

@media all and (max-width: 992px) {
  .container-vertical-menu {
    display: none;
  }
  .nav-menu__link.mobLabel {
    display: block;
  }
  .nav-menu__link.mob {
    display: block;
    margin-left: 30px;
  }

  #select-archive + .nice-select,
  #select-materials + .nice-select {
    display: none;
  }
}
@media all and (max-width: 480px) {
  .open-mobile-menu .top-nav__actions {
    max-width: 100% !important;
  }
}
/*--- vertical menu styles end---*/

#toTop {
  position: fixed;
  border-radius: 40px;
  right: 40px;
  font-size: 20px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  bottom: 40px;
  background-color: #013274;
  opacity: 0.7;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  z-index: 5;
}
#toTop:after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: block;
  height: 10px;
  transform: rotate(225deg);
  width: 10px;
  position: relative;
  top: 2px;
}
#toTop:focus,
#toTop:hover {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  #toTop {
    right: 20px;
    bottom: 20px;
  }
}

.parallax-window {
  /* max-width: 700px; */
}

/* page  */
.breadcrumb-area .page-title {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: normal;
  color: #013274 !important;
  text-transform: uppercase;
  font-family: Arimo, OpenSans, sans-serif;
}
.breadcrumb-content .breadcrumb .breadcrumb-item {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  color: #232323 !important;
  text-transform: uppercase;
  font-family: Arimo, OpenSans, sans-serif;
  cursor: pointer;
  opacity: 0.6;
}

.breadcrumb-content .breadcrumb .breadcrumb-item.active {
  opacity: 1;
}

/* Forms */
#form-error-message,
#form-recaptcha-error-message {
  display: none;
}
.form-group .form__error__message {
  margin-bottom: 24px;
}
.rc-anchor-dark {
  background: #3b3b41 !important;
}
.form__error__message {
  font-family: Arimo, OpenSans, sans-serif;
  font-size: 14px;
  line-height: 1.71;
  color: #f00;
  box-sizing: border-box;
}

/* Forms end */
