@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;700&display=swap");

/* *!BASE SECTION  */

:root {
  --primaryColor: #800080;
  --secondaryColor: #fff;
  --primaryPink: #f2e5f2;
  --navColor1: #13293a;
  --navColor2: #556270;
  --navColor3: #828c97;
  --navColor4: #b3b8bf;
  --boxShadow: rgba(0, 0, 0, 0.55) 0px 3px 3px 0px;
  --smallBorderRadius: 0.2rem;
  --mediumBorderRadius: 0.4rem;
  --largeBorderRadius: 0.8rem;
  --buttonGradient: linear-gradient(
    122deg,
    rgba(180, 111, 207, 1) 38%,
    rgba(141, 90, 195, 1) 60%
  );
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  background-color: var(--primaryPink);
  font-family: "Open Sans", sans-serif;
  padding: 0.2rem;
  overflow-x: hidden;
}

/* *!NAV SECTION  */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8vh;
  background-color: var(--secondaryColor);
  padding: 0.2rem;
  padding-bottom: 1rem;
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}

nav .logo {
  font-weight: 700;
  color: var(--primaryColor);
}

.nav_items {
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
}

.nav_items a {
  padding: 0.4rem;
}

.nav_items a:first-child {
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  font-size: 0.8rem;
  margin-right: 0.2rem;
}

.nav_items a:nth-child(2) {
  color: var(--secondaryColor);
  background-image: var(--buttonGradient);
  font-size: 0.8rem;
}

.nav_items .fa-bars {
  color: var(--primaryColor);
  font-size: 1.5rem;
  margin-left: 1.5rem;
}

/* *!HERO SECTION  */

.hero {
  background-color: var(--primaryPink);
  display: flex;
  flex-direction: column;
  height: 50vh;
}

.hero h3 {
  color: var(--primaryColor);
  text-align: center;
  margin: 1rem 3rem;
  padding: 1rem 0.5rem;
  background-color: #fff;
  font-size: 1rem;
  border-radius: 0.2rem;
  box-shadow: var(--boxShadow);
  font-weight: 900;
}

.hero p {
  color: var(--primaryColor);
  text-align: center;
  font-weight: 700;
}

.hero p:nth-child(2) {
  font-size: 1.3rem;
  font-weight: 900;
}

.hero-buttons {
  height: 20vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
}

.hero-buttons a:first-child {
  padding: 0.3rem;
  background: var(--buttonGradient);
  color: var(--secondaryColor);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  border-radius: var(--smallBorderRadius);
  box-shadow: var(--boxShadow);
}

.hero-buttons a:nth-child(2) {
  padding: 0.5rem;
  border: 2px solid var(--primaryColor);
  color: var(--primaryColor);
  margin-top: 3rem;
  margin-bottom: 1rem;
  box-shadow: var(--boxShadow);
  border-radius: var(--smallBorderRadius);
}

.hero-buttons a:nth-child(3) {
  padding: 0.4rem 3rem;
  color: var(--secondaryColor);
  background-color: var(--primaryColor);
  box-shadow: var(--boxShadow);
  border-radius: var(--smallBorderRadius);
}

/* *!PROGRAMME SECTION  */

.programme-section {
  background-color: #e1c3e1;
  border-radius: var(--mediumBorderRadius);
  box-shadow: var(--boxShadow);
}

.programme-head {
  padding: 1rem;
}

.programme-section h3 {
  text-align: center;
  color: var(--primaryColor);
}

.programme-section p {
  margin: 2rem 3rem;
  text-align: center;
  color: var(--primaryColor);
  /* padding: 1rem; */
}

.programme-section .img-container {
  margin: 2.5rem;
  width: 75vw;
  background-color: var(--primaryPink);
  height: 7rem;
  display: flex;
  border-radius: var(--mediumBorderRadius);
}

.img-container .img-text {
  display: flex;
  margin-top: 2rem;
  margin-left: 1rem;
  flex-direction: column;
  align-items: center;
  color: var(--primaryColor);
}

.img-text i {
  font-size: 2rem;
  margin-left: -8rem;
  margin-top: -2rem;
}

.programme-section img {
  height: 7rem;
  width: 9rem;
  background-color: #fdfcfd;
  border-radius: var(--mediumBorderRadius);
}

.key-points {
  background-color: #7e267e;
  display: grid;
  justify-content: center;
  justify-items: center;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
  padding: 1rem;
}

.key-points .box {
  color: var(--primaryColor);
  font-weight: 900;
  width: 9rem;
  height: 7rem;
  border-radius: var(--mediumBorderRadius);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgb(255, 254, 255);
  background: linear-gradient(
    122deg,
    rgba(255, 254, 255, 1) 38%,
    rgba(186, 139, 186, 1) 96%
  );
}

/* *!SUCCESS SECTION  */

.success-section {
  background: #e7daf1;
  padding: 1rem;
  border-radius: var(--mediumBorderRadius);
  box-shadow: var(--boxShadow);
  margin-top: 2rem;
}

.success-head {
  padding: 0.5rem 0;
  background-color: var(--primaryColor);
  margin: 1.5rem 0.5rem;
  border-radius: var(--smallBorderRadius);
}

.success-section h3 {
  text-align: center;
  color: var(--secondaryColor);
}

.success-section img {
  width: 75vw;
  margin-left: 1.5rem;
  height: 20vh;
  border-radius: var(--smallBorderRadius);
}

.success-section ul {
  padding-left: 1rem;
}

.success-section li:first-child {
  font-weight: 700;
  font-size: 1.2rem;
}

.success-section li {
  margin: 2rem 0;
  margin-left: 1.5rem;
  color: var(--primaryColor);
}

/* *!MONEYBACK SECTION SECTION  */

.moneyback-section {
  background: rgb(179, 111, 207);
  background: linear-gradient(
    139deg,
    rgba(179, 111, 207, 1) 36%,
    rgba(166, 104, 203, 1) 63%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--secondaryColor);
  padding: 1rem;
  border-radius: var(--mediumBorderRadius);
  margin-top: 2rem;
  box-shadow: var(--boxShadow);
}

.moneyback-section h3 {
  text-align: center;
}

.moneyback-section h3:first-child {
  letter-spacing: 0.3rem;
  font-size: 2rem;
}

.moneyback-section p {
  margin: 2rem 1.5rem;
  text-align: justify;
  font-size: 1rem;
}

.moneyback-section img {
  margin-top: 1rem;
  width: 70vw;
  border-radius: var(--largeBorderRadius);
}

.moneyback-section a {
  padding: 0.5rem 2rem;
  background-color: var(--secondaryColor);
  color: var(--primaryColor);
  font-weight: 700;
  border-radius: var(--smallBorderRadius);
  box-shadow: var(--boxShadow);
}

/* *!COURSE SECTION  */

.course-section {
}

.course-section h3 {
  background-color: var(--primaryColor);
  color: var(--secondaryColor);
  text-align: center;
  padding: 1rem;
  margin: 1rem 3rem;
  border-radius: var(--smallBorderRadius);
  box-shadow: var(--boxShadow);
}

.course-section p {
  font-weight: 700;
  color: var(--primaryColor);
}

.tabs {
  display: flex;
  justify-content: space-between;
  margin-left: 1rem;
}

.tabs a {
  background-color: var(--primaryColor);
  color: var(--secondaryColor);
  padding: 0.4rem 1rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  box-shadow: var(--boxShadow);
}

.tabs a:nth-child(2),
.tabs a:nth-child(3) {
  background-color: #ddc1dd;
  color: var(--primaryColor);
}

.tabs a:nth-child(3) {
  margin-right: -1rem;
}

.course-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  justify-items: center;
  grid-gap: 1rem;
  color: var(--secondaryColor);
}

.box {
  height: 10rem;
  border: 1px solid black;
  width: 8rem;
  background-color: #7e267e;
  box-shadow: var(--boxShadow);
  border-radius: var(--mediumBorderRadius);
}

.box span {
  padding: 0.8rem;
}

.box img {
  width: 7.3rem;
  background-color: #fff;
  margin-left: 0.2rem;
  height: 12vh;
  object-fit: contain;
}

.see-more-container {
  display: flex;
  justify-content: center;
  margin: 1.5rem;
}

.course-section .see-more {
  padding: 0.3rem 1rem;
  background-color: var(--primaryColor);
  color: var(--secondaryColor);
  border-radius: var(--smallBorderRadius);
}

/* *!FEEDBACK SECTION  */

.feeback-section {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 47%,
    rgba(128, 10, 128, 1) 47%
  );
}

.feeback-section h3 {
  text-align: center;
  margin: 2rem 0;
  padding-top: 2rem;
  color: var(--primaryColor);
}

.feedback-container {
  background-color: #fff;
  z-index: 10;
  height: 38vh;
  width: 80vw;
  border: 2px solid white;
  margin-left: 3rem;
  border: 2px solid var(--primaryColor);
  box-shadow: var(--boxShadow);
  border-radius: var(--largeBorderRadius);
}

.profile {
  display: flex;
}

.profile img {
  width: 3rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  margin: 1rem 0 1rem 1rem;
}

.profile-deatils {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  /* margin-left: 1rem; */
}

.profile-deatils .name {
  font-weight: 600;
  color: var(--primaryColor);
}

.profile-deatils p:nth-child(2) {
  font-weight: 600;
  color: #969696;
  font-size: 0.7rem;
  margin-top: -0.5rem;
}

.feedback-container p {
  width: 14rem;
  float: right;
  text-align: justify;
  margin-right: 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.feedback-container p span {
  color: var(--primaryColor);
  font-weight: 700;
}

/* *!OFFERS SECTION  */

.offers-section {
  background: rgb(128, 10, 128);
  background: linear-gradient(
    180deg,
    rgba(128, 10, 128, 1) 80%,
    rgba(255, 255, 255, 1) 80%
  );
}

.offers-section h3 {
  padding-top: 2rem;
  text-align: center;
  color: var(--secondaryColor);
  font-size: 1rem;
}

.offer-container {
  margin: 1.5rem;
  height: 25vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: rgb(255, 254, 255);
  background: linear-gradient(
    139deg,
    rgba(255, 254, 255, 1) 9%,
    rgba(184, 136, 184, 1) 84%
  );
  border-radius: var(--largeBorderRadius);
}

.offer-container > p:first-child {
  color: #f200f2;
  font-weight: 700;
  font-size: 1rem;
}

.offer-container p:nth-child(2) {
  font-weight: 600;
  font-size: 0.9rem;
}

.offer-container p:nth-child(3) {
  text-align: center;
  margin-right: -3.3rem;
  font-weight: 700;
}

.offer-container p:nth-child(4) {
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--primaryColor);
  width: 12rem;
}

.save-container {
  display: flex;
}

.save-container p {
  margin-left: 0;
}

.strike {
  text-decoration: line-through;
}

.save {
  background: var(--primaryColor);
  color: var(--secondaryColor);
  text-align: center;
  width: 4rem;
  padding: 0.7rem;
  border-radius: 50%;
  margin-right: -1.3rem;
}

.gap {
  background: var(--primaryColor);
  color: var(--secondaryColor);
  text-align: center;
  width: 4rem;
  padding: 0.7rem;
  border-radius: 50%;
  margin-left: -3.4rem;
}

.offer-container > * {
  margin-left: 2rem;
}

.offer-container a {
  width: 11rem;
  padding: 0.5rem;
  background-color: var(--primaryColor);
  color: var(--secondaryColor);
  margin-left: 2.4rem;
  text-align: center;
  margin-bottom: 0.5rem;
  box-shadow: var(--boxShadow);
  border-radius: 1rem;
}

.query {
  display: flex;
  margin: 1.5rem;
  box-shadow: var(--boxShadow);
  border-radius: var(--mediumBorderRadius);
}

.query-heading {
  color: var(--secondaryColor);
}

.query p {
  height: 4vh;
  width: 30rem;
  background-color: #c8a2c8;
  text-align: center;
  border-radius: 7px 0 0 7px;
}

.query p:first-child {
  margin-left: 0;
  padding-top: 0.3rem;
  margin-bottom: 0;
}

.query i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  text-align: center;
  padding-top: 0rem;
  background: rgb(117, 62, 117);
  color: var(--secondaryColor);
  margin-left: 0;
  border-radius: 0 7px 7px 0;
}

.search-query {
  /* background: red; */
}

.search-query input {
  width: 90vw;
  height: 5vh;
  padding: 0.2rem;
  border: 1px solid var(--primaryColor);
  margin: 1rem;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 89%,
    rgba(117, 62, 117, 1) 89%
  );
  padding-left: 1rem;
  border-radius: var(--mediumBorderRadius);
}

.search-query input::placeholder {
  color: var(--primaryColor);
}

/* *!CONTACT SECTION  */

.contact-section {
  padding: 1rem 0 0 1rem;
  background-color: #000000;
  color: var(--secondaryColor);
  height: 45vh;
}

.contact-section li,
p {
  font-size: 0.8rem;
}
.contact-section ul {
  margin-left: 1rem;
  margin-bottom: 1rem;
  list-style-type: none;
}

.contact-section li {
  margin-bottom: 0.3rem;
}

.contact-section h3:nth-child(2),
.social-links h3 {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

.contact-section i,
p {
  margin-left: 1rem;
  margin-bottom: 0.3rem;
}

.social-links {
  width: 6.5rem;
}

.social-links i {
  font-size: 1.3rem;
}

/* *! Media queries  */

@media screen and (max-height: 780px) {
  .hero {
    height: 55vh;
  }

  .hero-buttons a:first-child {
    margin-bottom: -0.5rem;
  }

  .feedback-container {
    height: 45vh;
  }

  .offer-container {
    height: 32vh;
  }

  .contact-section {
    height: 50vh;
  }
}

@media screen and (max-height: 600px) {
  .hero {
    height: 65vh;
  }

  .hero-buttons a:first-child {
    margin-bottom: -1.5rem;
  }
  .feedback-container {
    height: 50vh;
  }

  .offer-container {
    height: 40vh;
  }

  .tabs a {
    font-size: 0.8rem;
  }

  .contact-section {
    height: 55vh;
  }
}
