#main-div {
  min-height: 100vh;
}

/* Hero 1 */

#hero-1 {
  padding-top: 60px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  #hero-1 .page-title h1 {
    font-size: 120px;
  }
}

@media (max-width: 767px) {
  #hero-1 .page-title h1 {
    font-size: 55px;
  }
}

/* Hero 2 */

#hero-2 {
  padding-bottom: 60px;
}

#hero-2 .partner-img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border-radius: 16px;
  cursor: pointer;
  transition: .6s;
}

#hero-2 .partner-img:hover {
  transition: .6s;
  box-shadow: -4px 4px 9px var(--bs-gray-600);
  margin-top: -15px;
  margin-bottom: 15px;
}

/* Modal */

#modal-1 img {
  object-fit: contain;
  object-position: center;
}

@media (min-width: 992px) {
  #modal-1 img {
    width: 50%;
    border-radius: 16px;
    max-height: 260px;
  }
}

@media (max-width: 991px) {
  #modal-1 img {
    width: 80%;
    border-radius: 16px;
    max-height: 100px;
  }
}

#modal-1 .modal-header {
  border-style: none;
}

#modal-1 .card {
  background: #4f7234;
  border-style: none;
  border-color: #98c83d;
}

/* Admin Tools */

#modal-partner-post img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  object-position: center;
  background: white;
  border-radius: 16px;
}

