* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Unbounded', sans-serif;
  color: #1f1f1f;
  overflow-x: hidden;
}

.container {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
}

.btn {
  background-color: #8c52ff;
  color: #ffffff;
  font-weight: 600;
  border-radius: 0;
  padding: 1rem 2rem;
}

.btn:hover {
  background-color: #ffffff;
  color: #8c52ff;
}

.title {
  font-size: 48px;
  font-weight: 600;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 28px !important;
  }
}

.text {
  font-size: 22px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .text {
    font-size: 16px !important;
  }
}

.navbar {
  background-color: #ffffff;
}

.nav-link {
  font-size: 22px;
  font-weight: 500;
}

.nav-btn {
  background-color: #8c52ff;
}

.hero {
  background-color: #1f1f1f;
  padding: 0;
}

.hero--title {
  font-size: 72px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .hero--title {
    font-size: 28px;
    overflow: hidden;
  }
}

.hero--text {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
}

.hero img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.classes--box {
  background-color: #1f1f1f;
  padding: 2rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.classes--box h3,
.classes--box p {
  color: #ffffff;
}

.classes--grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1024px) {
  .classes--grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .classes--grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.images {
  border: 1px solid black;
  border-radius: 15px;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .images {
    border: none;
  }
}

.images h1 {
  font-size: 48px;
  font-weight: 600;
  overflow: hidden;
}

.images img {
  margin-bottom: -250px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .images img {
    margin-bottom: 0;
  }
}

.teachers {
  margin-top: 250px;
}

@media screen and (max-width: 768px) {
  .teachers {
    margin-top: 0;
  }
}

.teachers--box {
  background-color: #1f1f1f;
  padding: 2rem;
  border-radius: 10px;
}

.teachers--box h3 {
    overflow: hidden;
}

.teachers--box h3,
.teachers--box p {
  color: #ffffff;
}

.faq {
  border: 1px solid black;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  .faq {
    border: none;
  }
}

.faq .accordion-item {
  margin: 1rem 0;
  background-color: #e1e1e1;
}

.faq .accordion-button {
  background-color: #e1e1e1;
  font-size: 22px;
  color: #1f1f1f;
  font-weight: 600;
  text-transform: uppercase;
}

.faq .accordion-body {
  font-size: 16px;
}

.contact .btn:hover {
  background-color: #8c52ff;
  color: #ffffff;
}

.footer {
  background-color: #1f1f1f;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.footer p,
.footer h4 {
  color: #ffffff;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}
/*# sourceMappingURL=style.css.map */