:root {
  --text: #1a1a1a;
  --muted: #5b5b5b;
  --accent: #0f172a;
  --rule: #e5e7eb;
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  /* font-family: ui-serif, Georgia, "Times New Roman", Times, serif; */
  color: var(--text);
  background: #ffffff;
}

/* this is the start of the header */
header {
  position: fixed;
  z-index: 9999;
  top: 20px;
  background: #fff;
  border-radius: 24px;
  padding: 4px 24px 4px 16px;
  width: 800px;
  box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 10%);
  border: 1px solid #e3e3e3;
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*gap: 80px;*/
  gap:0px;
}

.headerLinks ul li a {
  color: #43454A;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.headerLinks ul li a:hover {
  text-decoration: underline;
}

.headerLinks ul li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.anotherMTit h2 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 36px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}

.logoCont {
  width: 109px;
  height: 56px;
}

.logoCont img {
  max-width: 100%;
  height: auto;
}

.menu {
  position: fixed;
  top: -340px;
  width: 100%;
  height: auto;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  transition: top 0.3s ease;
  z-index: 1001;
  /* padding: 20px; */
}

.menu.open {
  top: 0;
}

.menu h2 {
  margin-top: 0;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin-top: 5rem;
}

.menu ul li {
  margin-bottom: 15px;
}

.menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.menu ul li a:hover {
  color: #007BFF;
}

button#hamburgerBtn {
  display: none;
  cursor: pointer;
}

.schoolSignupBtn {
    margin-right: 0.5rem;
    z-index: 1;
}

.schoolSignupBtn {
    /* margin: 1rem 1rem 1rem 0rem; */
    font-weight: bold;
    background: radial-gradient(circle, #128807 0%, #0d6b05 100%);
    /* bright blue */
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.3rem;
    text-decoration: none;
}

.headerTopTit {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.closeBtn svg {
  height: 25px;
  width: 25px;
  cursor: pointer;
  margin:0.5rem;
}

/* this is the end of the header  */

.cookie-notice {
  max-width: 860px;
  margin: 48px auto 64px;
  padding: 0 20px;
  line-height: 1.6;
  font-size: 16px;
  padding-bottom: 20px;
}

.title {
  text-align: center;
  /*font-weight: 800;*/
  font-size: 40px;
  line-height: 1.15;
  margin: 7rem 0 28px;
}

.meta {
  /* font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial; */
  color: var(--text);
  font-size: 15px;
}

.meta p {
  margin: 10px 0
}

.scope {
  margin: 18px 0;
}

.divider {
  height: 1px;
  background: var(--rule);
  margin: 22px 0 30px;
  border: 0;
}

a {
  color: #0b56d0;
  text-decoration: underline;
}

h2 {
  font-size: 20px;
  margin: 14px 0 8px;
  font-weight: 800;
}

ol {
  padding-left: 22px;
  margin: 8px 0 0 0;
}

ul>li {
  margin: 10px 0;
  list-style: none;
}

.lead {
  font-weight: 700;
}

/* Print-friendly tweaks */
@media print {
  .cookie-notice {
    margin: 0;
    padding: 0
  }

  a {
    color: inherit;
    text-decoration: none;
  }
}

footer {
  background: #000D14;
  color: #fff;
}

.footer_cont {
  display: grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 80px;
}

.footTit h4 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0px;
}

.socialIcons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.followUs_cont p {
  font-size: 16px;
  font-weight: 500;
}

.contactUs_cont a {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 15px;
  min-height: 32px;
  text-decoration: none;
  color: #fff;
}

.contactUs_cont {
  padding-left: 40px;
}

.other_links ul {
  padding-left: 0px;
}

.other_links li {
  list-style: none;
  margin: 0px;
}

.other_links a {
  color: #fff;
  text-decoration: none;
}

.footTit {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .headerLinks ul li {
    justify-content: center;
  }

  button#hamburgerBtn {
    display: block;
    background: transparent;
    border: none;
  }

  .headerLinks.mobile {
    display: none !important;
  }


  header .headerLinks {
    display: none;
  }

  header {
    width: calc(100% - 80px);
  }
  
  .schoolSignupBtn {
        display: none;
    }

  .footer_cont {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 15px;
  }

  .footTit {
    margin-bottom: 10px;
  }

  .footTit h4 {
    font-size: 20px;
  }

  .socialIcons {
    gap: 16px;
  }

  .socialIcons a {
    width: 28px;
  }

  .contactUs_cont a {
    min-height: auto;
  }

  .contactUs_cont {
    padding-left: 0;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  button#hamburgerBtn {
    display: none;
  }

  header .headerLinks {
    display: block;
  }

  header {
    /*width: calc(100% - 100px);*/
    width: 90%;
  }

  .footer_cont {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 30px;
    gap: 20px;
  }

  .footTit {
    margin-bottom: 15px;
  }

  .footTit h4 {
    font-size: 22px;
  }

  .socialIcons {
    gap: 20px;
  }

  .socialIcons a {
    width: 30px;
  }

  .contactUs_cont a {
    min-height: auto;
  }

  .contactUs_cont {
    padding-left: 0;
  }
}