header {
  position: relative;
}

.header-top {
  height: 45px;
  background-color: var(--blue);
  border-bottom: solid 1px rgb(196, 196, 196, 0.6);
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 941px) {
  .header-top {
    display: flex;
  }
}

@media screen and (max-width: 940px) {
  .header-top {
    display: none;
  }
}

.header-container {
  width: 1220px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.header-text {
  font-family: var(--geometria);
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.header-icon {
  width: 20px;
}

.header-top-left {
  display: flex;
  justify-content: space-between;
  width: 550px;
}

.header-top-left a {
  display: flex;
}

.header-top-left img {
  margin-right: 10px;
}

.header-top-right {
  display: flex;
  align-items: center;
}

.arrow {
  margin-left: 10px;
  transition: 100ms;
}

.lang {
  cursor: pointer;
  position: relative;
}

.lang-icon {
  width: 20px;
  margin-left: 10px;
}

.lang:hover .arrow {
  transition: 100ms;
  transform: rotate(180deg);
}

.header-bottom {
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
}

@media screen and (min-width: 941px) {
  .header-bottom {
    display: flex;
  }
}

@media screen and (max-width: 940px) {
  .header-bottom {
    display: none;
  }
}

.header-logo {
  width: 15%;
  max-width: 190px;
  min-width: 140px;
}

.header-navigation {
  display: flex;
  width: 75%;
  min-width: 770px;
  justify-content: space-between;
}

/* .header-navigation-item:hover {
  text-decoration: underline var(--orange) solid 2px;
  text-underline-offset: 5px;
  font-weight: 500;
} */

.header-underline {
  width: 100%;
  height: 2px;
  background-color: var(--orange);
  position: relative;
  transition: 100ms;
  top: -5px;
  opacity: 0;
}

.header-navigation-item:hover .header-underline {
  transition: 100ms;
  top: 5px;
  opacity: 1;
}

.header-dropdown {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.header-dropdown-container {
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  padding: 10px 10px 0 10px;
  position: absolute;
  top: 20px;
  background-color: #0b1f35;
  z-index: 10;
  transition: 200ms;
}

.lang-container {
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  padding: 10px 10px 0 10px;
  position: absolute;
  top: 24px;
  right: 5px;
  background-color: #0b1f35;
  z-index: 10;
  transition: 200ms;
}

.lang-container a {
  margin-bottom: 10px !important;
  display: flex;
  transition: 200ms;
}

.lang-container a:hover {
  opacity: 0.5;
  transition: 200ms;
}

.lang:hover .lang-container {
  visibility: visible;
  opacity: 1;
  transition: 200ms;
}

.header-dropdown:hover .header-dropdown-container {
  visibility: visible;
  opacity: 1;
  transition: 200ms;
}

.header-dropdown-container a {
  margin-bottom: 10px !important;
}

.header-dropdown:hover .arrow {
  transition: 100ms;
  transform: rotate(180deg);
}



.header-mobile {
  position: fixed;
  top: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 10;
  background-color: var(--blue);
  height: 70px;
  padding: 0 10px;
  border-bottom: solid 1px rgb(196, 196, 196, 0.6);
}

@media screen and (min-width: 941px) {
  .header-mobile {
    display: none;
  }
}

@media screen and (max-width: 940px) {
  .header-mobile {
    display: flex;
  }
}

.mobile-logo {
  height: 40px;
}

.mobile-burger {
  width: 40px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.mobile-burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ffffff;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.mobile-burger span:nth-child(1) {
  top: 0px;
}

.mobile-burger span:nth-child(2),
.mobile-burger span:nth-child(3) {
  top: 14px;
}

.mobile-burger span:nth-child(4) {
  top: 28px;
}

.mobile-burger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
  background-color: var(--orange);
}

.mobile-burger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: var(--orange);
}

.mobile-burger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: var(--orange);
}

.mobile-burger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
  background-color: var(--orange);
}

.mobile-wrapper {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  /* display: flex; */
  /* flex-direction: column; */
  height: calc(100vh - 70px);
  overflow-y: auto;
  padding: 20px 20px;
  background-color: var(--blue);
  border-bottom: solid 1px rgb(196, 196, 196, 0.6);
  transition: 200ms;
}

.mobile-wrapper-closed {
  height: 0;
  padding: 0 20px;
  border-bottom: initial;
}

.mobile-navigation-item {
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: var(--geometria);
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  user-select: none;
  position: relative;
  cursor: pointer;
}

.mobile-navigation-underline {
  width: 100%;
  height: 2px;
  background-color: var(--orange);
  position: absolute;
  transition: 100ms;
  bottom: 5px;
  opacity: 0;
}

.mobile-navigation-item:hover .mobile-navigation-underline {
  transition: 100ms;
  bottom: -5px;
  opacity: 1;
}

.mobile-dropdown-arrow {
  width: 24px;
  margin-left: 6px;
  transition: 200ms;
}

.mobile-dropdown-arrow-expand {
  transform: rotate(180deg);
  transition: 200ms;
}

.mobile-dropdown-container {
  padding: 10px 10px 0px 10px;
  background-color: #0b1f35;
  overflow: hidden;
  height: fit-content;
  margin-bottom: 20px;
  transition: 200ms;
}

.mobile-line {
  width: 100%;
  min-height: 1px;
  background-color: rgb(196, 196, 196, 0.6);
  margin: 20px 0;
}

.dropdown-testimonials {
  height: 135px;
}

.dropdown-benefits {
  height: 135px;
}

.dropdown-transport-and-montage {
  height: 135px;
}

.dropdown-transport-and-montage {
  height: 135px;
}

.dropdown-lang {
  height: 115px;
  overflow-y: auto;
}

.mobile-dropdown-container-closed {
  height: 0;
  padding: 0 10px 0px 10px;
  margin-bottom: 0;
  transition: 200ms;
}

.mobile-contacts {
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: var(--geometria);
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.mobile-contacts-icon {
  width: 20px;
  margin-right: 10px;
}

.mobile-lang-icon {
  width: 24px;
  margin-left: 6px;
}