.header {
  min-height: 560px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--color-Primary1);
}
.header .top-par > .main-container {
  display: flex;
  align-items: self-start;
  justify-content: space-between;
}
.element > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 45px;
  padding: 40px 0;
}

.element > ul > li > a {
  color: var(--color-white);
}
.element > ul > li > a.active {
  color: var(--color-Primary2);
}

.logo {
  z-index: 1;
  display: flex;
  width: 190px;
  text-align: center;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
  height: 190px;
}
.logo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg-logo.png);
  background-repeat: no-repeat;
  transform: translateY(-100%);
  transition: all 0.3s linear;
  background-size: contain;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
}
.header.active .logo::after {
  transform: translateY(0);
}
.header.active .img-hero img {
  transform: translateY(0);
}
.logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.dropdown-more-element {
  background-color: var(--color-white);
  position: absolute;
  top: calc(100% + 20px);
  width: 200px;
  display: none;
  box-shadow: 0 2px 5px #00000019;
  z-index: 11;
  border-top: 4px solid var(--color-Primary2);
  left: 0;
}
.more-element {
  position: relative;
}
.dropdown-more-element ul li a {
  padding: 10px 15px;
  color: var(--color-Primary1);
  display: flex;
  border-bottom: 1px solid #ececec;
}

.text-hero {
  height: 100%;
  color: var(--color-white);
  padding-top: 80px;
}
.text-hero p {
  color: var(--color-white);
  margin: 15px 0;
  width: 70%;
}
.text-hero h4 {
  color: var(--color-Primary2);
  font-size: 17px;
}

.links-download {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}
.links-download a {
  background-color: var(--color-white);
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s linear;
  color: var(--color-Primary1);
  border-radius: 7px;
  padding: 15px;
  font-size: 15px;
  min-width: 170px;
}
.links-download a:hover {
  background-color: var(--color-Primary2);
  color: var(--color-white);
}
.links-download a:hover img {
  filter: brightness(0) invert(1);
}

.links-download a span {
  display: block;
  font-size: 13px;
}

.img-hero {
  z-index: 1;
  position: relative;
}
.img-hero img {
  width: 90%;
  display: block;
  object-fit: contain;
  transition: all 0.3 linear;
  transform: translateY(100%);
  margin: 0 auto 0 0;
}
.img-hero::after {
  content: "";
  width: 455px;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  border-radius: 50%;
  z-index: -1;
  left: 35%;
  margin: auto;
  background-color: #4088248b;
}
.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-position: top left;
  background-image: url(../images/bg.png);
  position: absolute;
  width: 20%;
  height: 50%;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: contain;
}
