/* Curriculum Hero Section */

.privacy-hero-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}

.privacy-hero-left {
  display: flex;    
  max-width: 785px;
  flex-direction: column;
  padding-left: 175px;
  padding-top: 152px;
}

.privacy-hero-text {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.privacy-hero-text p {
  width: 52%;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 27px;
  letter-spacing: 0.4px;
  color: #6d6488;
}

.privacy-hero-image {
  max-width: 720px;
  height: auto;
  padding-top: 64px;
  left: 40%;
  position: absolute;
}

.privacy-hero-text h1 {
  font-family: Rubik;
  font-size: 80px;
  font-weight: 500;
  line-height: 84px;
  text-align: left;
  color: #8056f6;
  margin: 0;
  padding: 0px;
  line-height: 105%;
}

.privacy-hero-button:hover {
  color: white;
}
.privacy-hero-button {
  width: 233px;
  display: flex;
  flex-direction: row;
  height: 56px;
  padding: 15.15px 38.97px 15.15px 38.97px;
  gap: 4.33px;
  border-radius: 36px;
  font-family: Rubik;
  font-size: 21px;
  font-weight: 600;
  line-height: 25.98px;
  text-align: center;
  border: none;
  background-color: #8056f6;
  cursor: pointer;
  color: #f9f9f9;
  text-decoration: none;
}
a.card-button:hover {
  background-color: #5a43c3;
  text-decoration: none;
  color: white;
  transform: scale(1.1);
}
@media (max-width: 998px) {
  .privacy-hero-section {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
  }

  .privacy-hero-left {
    padding: 2rem;
    gap: 20px;
  }

  .privacy-hero-image {
    width: 100%;
    height: 450px;
    padding: 15px;
    position: static;
  }
  .privacy-hero-text h1 {
    margin: 0;
  }

  .privacy-hero-text p {
    margin: 0;
    width: 100%;
  }
}

@media (min-width: 1600px) {
  .privacy-hero-section {
    justify-content: center;
    gap: 53rem;
  }
  .privacy-hero-left {
    padding-left: 88px;
    max-width: 660px;
  }
  .privacy-hero-text p {
    width: 60%;
  }
  .privacy-hero-image {
    left: 48%;
    max-width: 742px;
  }
}


.privacy-section-area {
  height: 3680px;
  width: 100%;
  background-color: #f6f8ff;
  margin-top: 7rem;
  margin-bottom: 150px;
}

.privacy-section {
  display: flex;
  flex-direction: row;
  gap: 150px;
  justify-content: center;
  padding-top: 236px;
}

.privacy-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 29px;
  width: 324px;
  height: 707px;
}

.privacy-left h5 {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 177%;
  width: 350px;
  color: #443476;
}

.privacy-left a {
  text-decoration: none;
}

.privacy-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 717px;
  gap: 50px;
  height: 2620px;
}

.privacy-policy-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.privacy-policy-content h2 {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 125%;
  color: #443476;
}

.middle-border {
  height: 3350px;
  border: 1px solid rgba(109, 100, 136, 0.5);
}

.privacy-policy-content div ul {
  padding-left: 30px;
}

@media (max-width: 998px) {
  .privacy-section-area {
    width: 100%;
    height: 4960px;
    margin: 0;
  }

  .privacy-section {
    flex-direction: column;
    gap: 65px;
    margin: 6rem 1rem 2rem 1rem;
    padding-top: 50px;
  }

  .privacy-left {
    width: 100%;
  }

  .privacy-left h5 {
    font-size: 28px;
    line-height: 140%;
  }

  .privacy-right {
    width: 100%;
  }

  .privacy-policy-content h2 {
    font-size: 20px;
  }

  .middle-border {
    height: auto;
  }
}

