.site-content {
  flex-direction: column;
  margin-top: 0 !important;
}

.grid-container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: fit-content !important;
}

.hero {
  width: 100vw;
  height: 200vh;
  padding: 20vh 5vw 7vh 5vw;
  background: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 50px;
  color: #fff;
}

.hero-intro {
  display: grid;
  grid-template-columns: 45% 45%;
  justify-content: center;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  color: #fff;
}

.hero-buttons {
  display: flex;
  gap: 10px;
}

.hero-text a, .package-inf a {
  background: #fff;
  border-radius: 10px;
  padding: 1vh 6vw;
  text-align: center;
  color: var(--secondary-color);
  font-weight: 700;
  transition: all 1s ease;
}

.hero-text a:hover, .hero-text a:focus, .hero-text a:active, .package-inf a:hover, .package-inf a:focus, .package-inf a:active {
  background: var(--primary-color);
  color: #fff;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  border-radius: 20px;
  object-fit: cover;
}

.hero-success {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    width: 60%;
}

.success-item {
  background: #fff;
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 2vh 3vw;
}

.hero-founder {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
}

.hero-founder img {
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-founder p {
  display: flex;
  gap: 10px;
  align-items: center;
}

.landing-content {
  padding: 4vh 4vw 4vh 4vw;
  width: 100vw;
}

.packages {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.packages h2 {
  width: 30%;
}

.packages h2::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  margin: 20px 0;
}

.pckg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pckg img {
  border-radius: 10px;
}

.package {
  position: relative;
}

.package-inf {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  transition: opacity 0.7s ease;
  opacity: 0;
  padding: 4vh 3vw;
  color:#fff;
}

.package-inf a {
  background-color: #fff;
  border-radius: 10px;
  color:var(--)
}

@media (max-width:768px) {
  .pckg {
    overflow-x: auto;
    grid-template-columns: 1fr;
  }

  .hero-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-success {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 70%;
    padding: 10px;
  }

  .hero-founder {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 200vh;
	height:auto;
  }
	
  .packages h2 {
    width: 80%;
  }
}