

#header .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
  position: relative;
  z-index: 99;
}

.social-new {
  display: flex;
  gap: 5px;
}

.social-new a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  align-self: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media screen and (max-width: 1024px) {
  .lang-dropdown a {
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    margin-left: 25px;
    margin-right: 25px;
  }

  .social-new {
    flex-direction: column;
    padding: 0 25px;
  }

  .social-new a {
    display: flex !important;
    height: 60px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 !important;
  }

  .social-new a svg {
    transform: scale(1.7);
  }
}

@media screen and (min-width: 1025px) {
  .lang-dropdown {
    position: relative;
    align-self: center;
    cursor: pointer;
    margin: 0 25px;
  }

  .lang-dropdown a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color:black;
    padding: 5px 3px;
    border-bottom: 5px solid transparent;
    text-decoration: none;
    text-transform: uppercase;
  }

  .lang-dropdown a:first-of-type {
    padding-top: 5px;
    border-bottom-color: black;
    padding-right: 15px;
    pointer-events: none;
  }
  .lang-dropdown a:first-of-type:after {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    content: '\203A';
    font-size: 18px;
    line-height: 0;
  }
    .lang-dropdown.active a:first-of-type:after {
      transform: translateY(-50%) rotate(-90deg);
      margin-right: 4px;
    }

  .lang-dropdown a:nth-child(n + 2) {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    text-align: center;
    left: 0;
    top: 100%;
  }
    .lang-dropdown a:nth-child(n + 2):hover {
      font-weight: bold;
      border: none !important;
    }
    .lang-dropdown.active a:nth-child(n + 2) {
      display: inline-block;
    }

  .lang-dropdown a:last-of-type {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
  }
}



#search-form {
  position: relative;
  z-index: 99;
  margin-left: 25px;
}

#search-form > button {
  all: unset;
  display: flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

#search-form form {
  display: none;
  position: absolute;
  top: -5px;
  right: -5px;
  width: 170px;
  height: calc(100% + 10px);
  background: white;
  border: 1px solid black;
  border-radius: 30px;
  overflow: hidden;
}

#search-form.active form {
  display: block;
}

#search-form form input {
  all: unset;
  text-align: left;
  width: calc(100% - 45px);
  height: 100%;
  font-size: 12px;
  overflow: hidden;
  resize: none;
  float: left;
  margin-left: 10px;
}

@media screen and (max-width: 1024px) {
  #navTrigger {
    top: 18px !important;
  }

  #search-form {
    position: absolute;
    right: 75px;
    top: 22px;
  }

  .nav-wrap {
    position: initial !important;
    z-index: 101 !important;
  }
}

.contacts {
  display: grid !important;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 700px) {
  .contacts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 470px) {
  .contacts {
    grid-template-columns: 1fr;
  }
}

.contacts-entry {
  width: 100% !important;
  margin: 0 !important;
  overflow: hidden;
}


@media screen and (min-width: 1025px) {
  .content-box {
    align-items: flex-start;
  }

  .content-box-slider {
    aspect-ratio: 1/1;
  }
}

.logo-download-btn {
  position: relative;
  width: calc(100% - 150px);
  margin-bottom: 30px;
}

.logo-download-btn::before {
  display: block;
  position: absolute;
  right: -150px;
  top: 0;
  content: '';
  width: 130px;
  height: 60px;
  background: url('../images/logo-example.svg') no-repeat center;
  background-size: contain;
}

@media screen and (max-width: 1024px) {
  .logo-download-btn {
    position: relative;
    width: 100%;
    margin-bottom: 70px;
  }

  .logo-download-btn::before {
    right: initial;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%);
  }
}


div[data-more-id] {
  display: none;
}

div[data-more-id].show {
  display: block;
  margin-bottom: 15px;
}

a[data-more-target] {
  color: black;
  text-decoration: underline;
}


#search-page {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,.2);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

#search-page input,
#search-page button {
  all: unset;
}

#search-page input {
  flex: 1 1 auto;
}

#search-page button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

#search-page-results ol {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

#search-page-results ol a {
  color: black;
  text-decoration: underline;
}