.header {
  position: relative;
}
.header__main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding-top: 40px;
  position: relative;
}
@media (max-width: 1200px) {
  .header__main {
    gap: 25px;
  }
}
@media (max-width: 920px) {
  .header__main {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .header__main {
    padding-top: 15px;
    gap: 15px;
  }
}
.header__social .social:nth-child(1) {
  padding-bottom: 8px;
}
.header__texts-container {
  max-width: 529px;
}
.header__texts-container p {
  padding: 16px 0 40px;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .header__texts-container p {
    padding: 16px 0;
  }
}
@media (max-width: 920px) {
  .header__texts-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }
}
.header__slider {
  display: flex;
  justify-content: end;
}
@media (max-width: 920px) {
  .header__slider {
    justify-content: center;
  }
}
.header__slider-elem {
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .header__slider-elem {
    overflow: unset;
  }
}
.header__slider-info {
  transition: 300ms;
  background-color: white;
  position: absolute;
  bottom: 0;
  width: -webkit-fill-available;
  padding: 40px 32px;
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  z-index: 1;
}
@media (max-width: 480px) {
  .header__slider-info {
    bottom: -25%;
    padding: 16px;
  }
}
.header__slider-info .reed-more {
  position: absolute;
  bottom: 10px;
}
.header__slider-img .heroimg {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 669px;
  height: 500px;
  max-height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  .header__slider-img .heroimg {
    max-height: 100%;
  }
}
.header__slider-img .heroimg.activehero {
  opacity: 1;
  z-index: 1;
}
.header__slider-img img {
  border-radius: 20px;
  max-width: 100%;
}
.header__about-hero {
  max-width: 75%;
  position: absolute;
  opacity: 0;
}
@media (max-width: 480px) {
  .header__about-hero {
    max-width: calc(100% - 58px);
  }
}
.header__about-hero .small {
  padding: 8px 0 25px;
}
.header__about-hero .panim {
  opacity: 0;
}
.header__glass {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.431372549);
}
.header__about-hero.activehero {
  opacity: 1;
  z-index: 1;
}
.header__about-hero.activehero .panim {
  opacity: 1;
}
.header__about-hero.activehero .panim h3 {
  z-index: 9999;
}
.header__about-hero.activehero .reed-more {
  z-index: 9999999;
}
.header__popup {
  height: 100vh;
  align-items: center;
  position: fixed;
  width: 100%;
  display: flex;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  /* Define the thumb style */
  /* Define the track style */
}
.header__popup h3 {
  padding-bottom: 8px;
}
.header__popup img {
  padding-bottom: 24px;
  max-width: 100%;
}
.header__popup ::-webkit-scrollbar {
  width: 3px;
  height: 15px;
  right: 100px;
}
.header__popup ::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 5px;
}
.header__popup ::-webkit-scrollbar-track {
  background-color: var(--mainGrey);
  box-shadow: inset 0 0 2px 2px gainsboro;
}
.header__popup.show {
  z-index: 9999;
  opacity: 1;
}
@media (max-width: 480px) {
  .header__right {
    padding-bottom: 25%;
  }
}

.popup__container {
  max-width: 900px;
  position: relative;
}

.krest {
  background-color: red;
  width: 40px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  cursor: pointer;
  align-items: center;
}
.krest:after {
  position: absolute;
  display: block;
  content: "";
  width: 30px;
  height: 4px;
  background-color: white;
  transform: rotate(45deg);
}
.krest:before {
  display: block;
  position: absolute;
  content: "";
  width: 30px;
  height: 4px;
  background-color: white;
  transform: rotate(135deg);
}

.t2.grey {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--mainGrey);
  text-align: start;
}

.popup-p {
  padding-bottom: 24px;
}

.popup-p.pt {
  padding-top: 24px;
}

.popup-p.bold {
  font-weight: 700;
}

.popup__main {
  padding: 32px;
  background: white;
  max-height: 554px;
  overflow-y: scroll;
}
@media (max-width: 480px) {
  .popup__main {
    padding: 40px 16px;
  }
}

.bg-hero {
  opacity: 0;
}

.arrows {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 88px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
@media (max-width: 720px) {
  .arrows {
    right: 0px;
  }
}
@media (max-width: 480px) {
  .arrows {
    gap: 0px;
  }
}

.arrow {
  width: 40px;
  aspect-ratio: 1/1;
  background: transparent;
  border: unset;
  cursor: pointer;
}

.arrow.disable {
  opacity: 0.2;
  pointer-events: none;
}

.header {
  position: relative;
}
.header__logos {
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 25px;
  position: absolute;
  top: 0;
  padding-top: 40px;
  width: -webkit-fill-available;
}
.header__logos .logos-container {
  background: white;
  padding: 10px 15px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 920px) {
  .header__logos {
    position: relative;
    padding-bottom: 20px;
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .header__logos .hide920 {
    display: none;
  }
}
@media (max-width: 480px) {
  .header__logos {
    padding: 0px;
  }
}
.header__logos img {
  max-width: 100%;
  max-height: 52px;
}/*# sourceMappingURL=header.css.map */