* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #9455ad;
  --dark-color: #51a657;
  --alternate-dark-color: #b9ebb3;
  --alternate-primary-color: #ebb8ff;
  --softer-primary-color: #dec7e7;
  --gray: #808080;
}

body {
  font-family: "Poppins", sans-serif;
  background: url(/images/Bzz.png);
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* Nav Bar*/
.navbar {
  background: #fff;
  padding: 20px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
}

.navbar .main-menu ul {
  display: flex;
}

.navbar ul li a {
  padding: 10px 20px;
  display: block;
  font-weight: 600;
  transition: 0.5s;
}

.navbar ul li a:hover {
  color: var(--primary-color);
}

/* Hero */
.hero {
  position: relative;

  padding: 100px 20px 75px;

  text-align: center;
  border-radius: 0 0 80px 80px;
  background: radial-gradient(
    circle at top left,
    rgba(254, 227, 255, 0.8) 0%,
    rgba(255, 240, 254, 0.8) 100%
  );
}

.hero .hero-text {
  margin-bottom: 20px;
  text-align: center;
}

/* HERO TWO-COLUMN */

.hero-content .hero-heading {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}

.hero-image {
  flex: 0 0 52%;
}

.hero-image img {
  width: 100%;
  width: 1100px;
  border-radius: 12px;
  box-shadow: 0px 10px 8px #888888;
}

.hero-content {
  flex: 1;
  text-align: left;
  margin-left: 0;
}
.hero-button {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
}
.hero-button .btn-hero {
  margin: 0;
}

/* optional responsive stack */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
  }
  .hero-content {
    text-align: center;
    margin-top: 30px;
  }
  .hero-image {
    flex: none;
    width: 100%;
  }
}

/* Testimonials */
.testimonials {
  position: relative;
  padding: 20px 0px 40px;
  overflow: hidden;
  background: rgba(254, 227, 255, 0.8);
  margin-bottom: 40px;
}

.testimonials > * {
  position: relative;
  z-index: 1;
}

.testimonials .testimonials-heading {
  margin-bottom: 40px;
}

.testimonials-heading {
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.icon {
  opacity: 50%;
  color: #2e9233;
}

.testimonials-text {
  margin-left: 40px;
  font-weight: normal;
}

.testimonials-person {
  color: var(--gray);
}

.footer {
  padding-top: 10px;
  padding-bottom: 10px;
  padding: 20px;
  background-color: rgba(235, 255, 231, 255);
}

/* Mission Statement */
.mission-box {
  padding: 40px 0;
  text-align: center;
}

.mission-text {
  color: var(--dark-color);
}

.mission {
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 0;
}

.mission-body-text {
  margin-top: 25px;
  font-weight: normal;
  color: gray;
}

/* Utility Classes*/
.container {
  margin: 0 auto;
  padding: 0 15px;
}

.container-sm {
  max-width: 1100px;
  backdrop-filter: blur(14px);
  margin: 0 auto;
  padding: 0 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  margin: 0 auto;
  padding: 13px 20px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
}

.btn-hero {
  display: block;
  max-width: 133px;
}

.btn:hover {
  opacity: 0.8;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
}
.btn-primary-alt {
  background: var(--alternate-primary-color);
  color: #fff;
}

.btn-dark {
  background: var(--dark-color);
  color: #fff;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Text Classes */
.text-xxl {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 40px 0 20px;
}

.text-xl {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 40px 0 20px;
}

.text-lg {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 30px 0 20px;
}

.text-md {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 20px 0 10px;
}

.text-sm {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 10px 0 5px;
}

.text-center {
  text-align: center;
}

.bg-primary {
  background: var(--primary-color);
  color: #fff;
}

.bg-primary-alternate {
  background: var(--alternate-primary-color);
  color: #fff;
}
.bg-softer-primary {
  background: var(--softer-primary-color);
  color: #fff;
}
.bg-dark-alternate {
  background: var(--alternate-dark-color);
  color: #fff;
}
.bg-dark {
  background: var(--dark-color);
  color: #fff;
}
.bg-black {
  background: #000;
  color: #fff;
}
.bg-gray {
  background: var(--gray);
  color: #fff;
}

/* Card */

.card {
  background: #fff;
  background: url(/images/Bz.png);
  color: #000;
  border-radius: 10px;
  padding: 20px;
  max-width: 360px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.card:hover {
  transform: translateY(-5px);
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}
