body {
  margin: 0;
}

h1 {
  font-size: 80px;
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2em;
}

h2 {
  margin-bottom: 0;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 50px;
  font-weight: 700;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 20px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 2em;
}

a {
  text-decoration: none;
  color: #4d4dbc;
}

a:hover {
  color: rgba(7, 108, 186, 0.69);
}

header {
  border-bottom: 1px solid #dcdcdc;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

header a {
  color: unset;
}

.header-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}

.logo {
  width: 30%;
  align-items: center;
  display: flex;
  padding-left: 10px;
}

.logo a {
  max-width: 17%;
}

.logo img {
  max-width: 100%;
}

ul {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0 !important;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 70%;
  font-size: 18px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  padding-right: 10px;
}

.navigation {
  display: flex;
  list-style: none;
  gap: 20px;
  justify-content: flex-end;
}

.navigation li a {
  border-bottom: 0 solid transparent;
  transition: all 0.1s ease;
}

.navigation li a:hover {
  color: #423092;
}

.hamburger-icon {
  display: none;
  border: none;
  background-color: transparent;
}

.hamburger-icon .fa-bars,
.hamburger-icon .fa-x {
  color: #555;
  font-size: 18px;
  cursor: pointer;
}

.hamburger-icon input[type="checkbox"] {
  appearance: none;
}

@media screen and (max-width: 1024px) {
  .menu {
    font-size: 16px;
  }

  .logo a {
    max-width: 100%;
  }

  .logo img {
    height: 50px;
    max-width: none;
  }

  .navigation {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: max-height ease-in-out 0.5s;
    position: absolute;
    background-color: #fff;
    top: 100%;
    align-items: flex-start;
    width: 100%;
    left: 0;
    gap: 0;
  }

  .navigation li {
    border-bottom: 1px solid #f2f2f2;
    width: 100%;
  }

  .navigation li a {
    width: 100%;
    display: block;
    padding: 10px 25px;
  }

  li:has(.active) {
    background-color: #f3f3f3;
  }

  .navigation li a:hover {
    border: unset;
  }

  .hamburger-icon {
    display: block;
  }

  .fa-x {
    display: none !important;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .navigation {
    margin-top: 1rem;
    display: flex;
    max-height: 300px;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .fa-bars {
    display: none;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .fa-x {
    display: inline-block !important;
  }
}

.content-parts {
  max-width: 1200px;
  margin: 50px auto;
  color: #333;
  text-align: left;
  padding: 0 5%;
}

.content-parts ul li {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 2em;
  margin-left: 50px;
}

.two-columns {
  display: flex;
}

.two-columns .col-1, .two-columns .col-2 {
  width: 50%;
}

.col-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-images img {
  border-radius: 5px;
  max-width: 100%;
}

strong {
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .two-columns {
    flex-direction: column;
    justify-content: center;
  }

  .two-columns .col-1, .two-columns .col-2 {
    width: 100% !important;
  }
}

.two-columns .w-60 {
  width: 60%;
}

.two-columns .w-40 {
  width: 40%;
}

.two-columns .w-70 {
  width: 70%;
}

.two-columns .w-30 {
  width: 30%;
}

blockquote {
  margin: 0 auto;
  border-left: 4px solid #5198ce;
  max-width: 70%;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  padding: 10px 20px;
  background-color: #f9f9f9;
  line-height: 2em;
}

blockquote span {
  display: block;
  margin-top: 20px;
  font-weight: 500;
  font-style: normal;
}

.col-quote {
  display: flex;
  align-items: center;
}

blockquote ol {
  margin-top: 30px;
  margin-left: 20px;
  padding-inline-start: 0;
}

.two-columns .shadow-box {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.19);
  margin: 20px;
  border-radius: 6px;
  padding: 0 30px 50px 30px;
}

@media screen and (max-width: 1024px) {
  .two-columns .shadow-box {
    max-width: 70%;
    margin: 20px auto;
  }
}

@media screen and (min-width: 1024px) {
  figure.small-image {
    max-width: 50%;
  }
}

footer {
  width: 100%;
  margin-top: 250px;
}

.footer-container {
  padding-top: 140px;
  padding-bottom: 50px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  background-color: #423092 !important;
  background-image: url(/assets/images/mobile-app-back-2.webp) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.footer-row{
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
}

.footer-container h2, .footer-container p{
  color: #fff;
}

.footer-container a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-container a:hover {
  color: #fff;
}

.social-media-section {
  display: flex;
  gap: 10px;
  font-size: 22px;
  color: #423093;
}

.social-media-section i {
  font-size: 22px;
  color: #423093;
}

.social-media-section .social-box {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px;
  border-radius: 100px;
  width: 30px;
  height: 30px;
  box-shadow: 0px 40px 40px -6px rgba(0, 0, 0, 0.2);
}

.social-box:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.foundations-section {
  margin-top: 40px;
  display: flex;
  gap: 10px;
}

.copyright {
  margin: 0 auto;
  background-color: #0f0335;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px 5%;
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px !important;
  margin: 0 auto;
  max-width: 1200px;
}

.copyright a {
  color: rgba(255, 255, 255, 0.9);
}

.copyright a:hover {
  color: #fff;
}

@media screen and (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .footer-column p, .copyright p {
    text-align: center;
  }

  .social-media-section, .foundations-section {
    justify-content: center;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    padding-left: 5%;
    row-gap: 50px;
  }

  .footer-column {
    width: 50%;
  }

  .copyright {
    padding-left: 5%;
  }
}

.cta-button {
  background-color: #423093;
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  padding: 15px 25px;
  border-radius: 4px;
}

.cta-button:hover {
  box-shadow: rgba(0, 0, 0, 0.7) 0 0 15px;
  color: #fff;
}

#intro-text {
  width: 80%;
  margin-bottom: 55px;
}

#purple-text-box {
  background-color: #423093;
  border-radius: 10px;
  width: 80%;
  margin: 20px auto;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#purple-text-box p {
  color: #fff;
  text-align: center;
}

#purple-text-box img {
  max-width: 100px;
}

#mcks-recommended-materials {
  background-image: url(/assets/images/mobile-app-back-1.webp), linear-gradient(270deg, #f5f5ff 0%, #f5f5ff 100%) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

#mcks-recommended-materials .content-parts .two-columns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

#material-count-container {
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
}

.material-count-box {
  background-color: #fff;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  box-shadow: 0px 47px 48px 0px rgba(100, 146, 188, 0.2);
}

@media screen and (max-width: 600px) {
  #material-count-container{
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }
  .material-count-box {
    width: 90%;
  }
}

.counter {
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: -30px !important;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#ebooks {
  background-image: linear-gradient(90deg, #f7ce68 0%, #fbab7e 100%);
}

#videos {
  background-image: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

#articles {
  background-image: linear-gradient(90deg, #a8eb9d 0%, #39abc5 100%);
}

.material-count-box p {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.material-count-box .counter p {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin-block: 0;
}

#app-screens {
  text-align: center;
}

.five-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 50px;
}

.five-columns .col-one-fifth {
  width: 16%;
}

.five-columns .col-one-fifth figure {
  margin-block: 0;
  margin-inline: 0;
}

@media screen and (max-width: 600px) {
  .five-columns {
    justify-content: center;
  }

  .five-columns .col-one-fifth {
    width: 85%;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .five-columns .col-one-fifth {
    width: 30%;
    margin-bottom: 20px;
  }
}

.three-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 50px;
}

.three-columns .col-one-third {
  width: 22%;
  flex-direction: column;
}

.three-columns .col-one-third figure {
  margin-block: 0;
  margin-inline: 0;
}

@media screen and (max-width: 1024px) {
  .three-columns {
    justify-content: center;
  }

  .three-columns .col-one-third {
    width: 75% !important;
  }
}

.reviews{
  font-weight: 600;
}

.review-box{
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  padding: 30px;
  box-shadow: 0px 47px 48px 0px rgba(100, 146, 188, 0.2);
  height: fit-content;

}

@media screen and (max-width: 1024px) {
  .review-box{
    margin-bottom: 30px;
  }
}

.black-cta-button {
  background-color: #000;
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  padding: 15px 25px;
  border-radius: 4px;
}

.black-cta-button:hover {
  box-shadow: rgba(255, 255, 255, 0.6) 0 0 15px;
  color: #fff;
}

#footer-text-col{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.footer-row div .content-images{
  margin-inline: 0;
  margin-block: 0;
}

#left-footer-image{
  position: absolute;
  left: -7px;
  top: 120px;
}

#left-footer-image figure{
  max-width: 230px;
}

#middle-footer-image{
  position: absolute;
  left: 200px;
  top: 50px;
}

#middle-footer-image figure{
  max-width: 190px;
}

#right-footer-image{
  position: absolute;
  left: 350px;
  top: -100px;
}

#right-footer-image figure{
  max-width: 300px;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  #mcks-recommended-img{
    max-width: 75%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  #mcks-recommended-img{
    max-width: 65%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1024px) {
  #left-footer-image{
    position: absolute;
    left: -7px;
    top: 50px;
  }

  #left-footer-image figure{
    max-width: 34vw;
  }

  #middle-footer-image{
    position: absolute;
    left: 25vw;
    top: 20px;
  }

  #middle-footer-image figure{
    max-width: 20vw;
  }

  #right-footer-image{
    position: absolute;
    left: 41vw;
    top: -50px;
  }

  #right-footer-image figure{
    max-width: 42vw;
  }
  #footer-text-col{
    margin-top: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #footer-text-col h2{
    font-size: 50px;
  }
}
