#Home {
  position: relative;
  width: 100%;
  height: fit-content;
  min-height: 100vh;
  background: radial-gradient(at top center, #263d81 0%, #000 100%);
  transition: all 0.2s;
}

#Home_overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  mix-blend-mode: overlay;
  background: url("../images/bg.svg");
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  opacity: 0.7;
  transition: background 3s;
  z-index: 1;
}

#Home_overlay2 {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden !important;
}
#overlay2_img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: top left;
  transform: scale(1.3);
  margin-top: 0px !important;
}

#Home_content {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.Home_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 45px;
  padding-bottom: 100px !important;
}

.Home_text > h1 {
  font-size: 80px;
}

.Home_text > h4 {
  font-size: 35px;
  font-weight: 500;
}

.logo {
  width: 150px;
}
.logo.nav_logo {
  width: 50px !important;
}

@media (max-width: 1023px) {
  .Home_text > h1 {
    font-size: 40px;
  }

  .Home_text > h4 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .Home_text > h1 {
    font-size: 25px;
    text-align: center;
  }

  .Home_text > h4 {
    font-size: 16px;
    text-align: left;
  }
}
