

.custom-landing-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: whitesmoke;
}
.custom-langing-center {
  width: 60%;
  min-height: 400px;
  display: flex;
}
.custom-langing-title-h1 {
  margin-left: 10px;
}
.custom-langing-info {
  padding: 0 50px;
}
.custom-langing-info ul li {
  margin-bottom: 1rem; /* or any value you prefer */
}

.custom-langing-nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-landing-nav-flex {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding-top: 20px;
}
.custom-langing-nav-list {
  list-style: circle;
}
.custom-landing-nav-list-item a{
  text-decoration: none;
  color: #1BB76D;
  font-weight: 800;
}


.custom-landing-img-wrapper {
  object-fit: contain;
  width: 50%;
  height: 500px;
}
.custom-landing-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.custom-landing-content-wrapper {
  background-color: white;
  padding: 0 20px;
  width: 50%;
}
.custom-landing-content-wrapper h1 {
  margin: 0 0 10px -100px;
  background-color: white;
  display: inline-block;
  padding: 30px;
}



@media (max-width: 800px) {
  .custom-langing-center {
    width: 100%;
  }
  .custom-langing-info {
    padding: 0 10px;
  }
  .custom-langing-title-h1 {
    margin: 0 !important;
    padding: 0 !important;
  }
}
@media (max-width: 400px) {
  .custom-langing-title-h1 {
    width: 100%;
    text-align: center;
    background-color: black;
    font-size: 18px;
    margin: 0 !important;
    padding: 0 !important;
  }
  .custom-landing-content-wrapper {
    padding: 10px 20px;
    width: 100%;
  }
  .custom-landing-img-wrapper {
    display: none;
  }
  .custom-langing-info {
    font-size: 14px;
  }
}







