* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  text-transform: capitalize;
  border: none;
  outline: none;
  transition: 0.5s linear;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

*::selection {
  background-color: #5454d9;
  color: #ffffff;
}

::-webkit-scrollbar {
  height: 0.3rem;
  width: 0.3rem;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #5454d9;
  border-bottom-left-radius: 2rem;
}

html {
  overflow-x: hidden;
}

body {
  background: #ffffff;
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
span {
  font-family: "Exo 2", sans-serif;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

h1 {
  font-size: 1.8rem;
  line-height: 1.2;
  text-shadow: 0px 0px 3px;
}
@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 2.6rem;
  }
}

h2 {
  text-shadow: 0px 0px 3px;
  font-size: 1.8rem;
  line-height: 1.3;
}
@media only screen and (min-width: 1200px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.35rem;
}
@media only screen and (min-width: 1200px) {
  h3 {
    font-size: 1.5rem;
  }
}

p,
a {
  font-size: 1rem;
}

.start-btn,
.browse-btn,
button {
  outline: none;
  border: none;
  display: block;
  background-size: 200% auto;
  transition: all 0.5s ease;
  text-align: center;
  box-shadow: 0px 0px 6px rgb(208, 208, 228);
}

.start-btn {
  background-image: linear-gradient(to right, #ff5a4e 0%, #4548ff 51%, #c0ccf3 100%);
  color: #ffffff;
}
.start-btn:hover {
  transform: scale(1.05);
}

.browse-btn {
  border: 1px solid #1d10ac;
  color: #1d10ac;
  transition: background 1s ease;
}
.browse-btn:hover {
  background-color: #c6d4fa;
  color: #4e6ab9;
  border: none;
}

.start-btn:hover,
button:hover {
  background-position: right center;
  box-shadow: 0px 0px 8px rgb(203, 203, 241);
}

.resources-card a {
  outline: none;
  border: none;
  display: block;
  background-size: 200% auto;
  transition: all 0.5s ease;
  letter-spacing: 1px;
  background: #a6bdff;
}
.resources-card a:hover {
  background-position: right center;
  background: #4548ff;
  color: #8aa9ff;
}

.contact-btn,
.reviews-btn {
  background: linear-gradient(to right, #ff5e53 0%, #474aff 100%);
}
.contact-btn:hover,
.reviews-btn:hover {
  transform: scale(1.03);
  background: linear-gradient(to right, rgba(255, 94, 83, 0.4588235294) 0%, rgba(71, 74, 255, 0.5019607843) 100%);
}

.class-btn,
.fullclass-btn {
  border-radius: 6px;
  padding: 6px 0;
  margin: 12px 0 0 0;
  color: #ffffff;
  width: 100%;
}
.class-btn:hover,
.fullclass-btn:hover {
  transform: scale(1.03);
}

.class-btn {
  background-color: #484aee;
}

.fullclass-btn {
  background: linear-gradient(to right, #ff5d51 0%, #494cff 100%);
}

.card {
  background-color: rgb(168, 152, 168);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
.card-icon {
  font-size: 3.5rem;
  color: #26136d;
  margin-bottom: 1rem;
}
.card-title {
  font-size: 2rem;
  font-weight: 700;
  color: #26136d;
}
.card-text {
  font-size: 1.5rem;
  line-height: 1.6;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid #484aee;
}

.form-container {
  border-radius: 1rem;
  width: 100%;
  background-color: rgba(127, 145, 236, 0.0784313725);
  margin-top: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 1200px) {
  .form-container {
    margin: 0;
  }
}
.form-container form {
  padding: 0.6rem 1rem;
  margin: 0;
  width: 100%;
  background: white;
  border-radius: 1rem;
}
.form-container form legend {
  color: #1d10ac;
  text-align: center;
  font-weight: 600;
  margin-bottom: 2rem;
}
.form-container form label,
.form-container form input,
.form-container form select,
.form-container form textarea {
  display: block;
  width: 100%;
  color: #5454d9;
  padding: 3px 10px;
  margin: 0;
  background-color: transparent;
}
.form-container form label {
  color: #7f91ec;
  padding: 0;
  margin-top: 8px;
}
.form-container form input,
.form-container form textarea {
  background-color: rgba(162, 173, 233, 0.08);
  border-bottom: 2px solid #ddddff;
}
.form-container form input:focus,
.form-container form textarea:focus {
  border-bottom: none;
  background-color: #ddddff;
  border-radius: 6px;
}
.form-container form select {
  background-color: rgba(162, 173, 233, 0.08);
  border-bottom: 2px solid #ddddff;
  color: #7b808f;
}
.form-container form select:focus {
  background-color: #f7f7f7;
}
.form-container textarea {
  resize: none;
  height: 100px;
  overflow: scroll;
}

.header {
  width: 100%;
  height: 75px;
  margin: 0;
  padding: 0 25px;
  position: fixed;
  top: 0;
  border-radius: 0 0 1rem 1rem;
  background-color: rgba(252, 252, 252, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(252, 252, 252, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  flex-wrap: nowrap;
  z-index: 1000;
}

.header-logo {
  color: #26136d;
  font-size: 2rem;
  font-weight: bolder;
  font-family: "Exo 2";
  display: inline-block;
  letter-spacing: 2px;
}
.header-logo span {
  color: #f7786f;
}

.header-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
@media only screen and (min-width: 1200px) {
  .header-actions {
    gap: 0;
  }
}
.header-actions a {
  padding: 8px 16px;
  margin: 0 3px;
  border-radius: 1.5rem;
  background: #484aee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  flex-wrap: nowrap;
  color: #ffffff;
}
.header-actions a:hover {
  background-color: #4e6ab9;
  transform: translateY(-3px);
}
.header-actions .back-btn {
  padding: 6px 12px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}
.header-actions .back-btn i {
  font-size: 1.2rem;
}

.header-navbar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  padding: 2rem;
  background-color: #ffffff;
  z-index: 1100;
  transition: right 0.5s ease-in-out;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
}
.header-navbar a {
  margin: 0.5rem 0;
  color: #484aee;
}
.header-navbar a:hover {
  text-decoration: underline;
  color: #4e6ab9;
}
.header-navbar.nav-active {
  right: 0;
  margin: 0;
  padding: 1rem 0.5rem;
}
@media only screen and (min-width: 800px) {
  .header-navbar {
    padding: 2rem 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header-navbar {
    padding: 2.5rem 6rem;
    position: static;
    width: auto;
    max-width: auto;
    background: none;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: nowrap;
  }
  .header-navbar a {
    color: #5454d9;
    display: block;
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .header-navbar {
    padding: 4rem 15rem;
    font-size: 1.2rem;
  }
}

.header-copyrights {
  display: block;
  position: absolute;
  bottom: 1rem;
  background: rgba(127, 145, 236, 0.0784313725);
  padding: 6px 12px;
  border-radius: 6px;
  margin: 0 0.5rem 0 0;
}
.header-copyrights a {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-align: left;
}
.header-copyrights p {
  color: #4e6ab9;
  font-size: 0.8rem;
  margin: 6px 0;
}
.header-copyrights p a {
  font-size: 0.8rem;
  color: #26136d;
}
.header-copyrights p i {
  margin-right: 5px;
}
@media only screen and (min-width: 1200px) {
  .header-copyrights {
    display: none;
  }
}

#menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  color: #26136d;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
  display: block;
}
@media only screen and (min-width: 1200px) {
  #menu-btn {
    display: none;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.274);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 600;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.header {
  z-index: 999;
}

.overlay {
  z-index: 600;
}

.header-navbar {
  z-index: 1000 !important;
}

footer {
  margin: 0;
  margin-top: 2rem;
  background-color: #000135;
  color: #5454d9;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
}
footer h3 {
  margin-bottom: 8px;
  color: #c6d4fa;
  font-size: 1.2rem;
}
footer a {
  display: block;
  margin: 5px 0;
  transition: 0.3s;
  color: #f7f7f7;
  opacity: 0.8;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
footer a:hover {
  color: #f7786f;
  transform: translateX(8px);
  text-decoration: none;
}

.footer-contents {
  gap: 30px;
  padding: 30px 10%;
  transition: 0.3s ease;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .footer-contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));
  }
}
.footer-contents .footer-cards {
  margin: 1rem 0;
  width: 100%;
  padding: 0rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
}
.footer-contents .footer-cards p {
  color: #7b808f;
  padding: 0;
  margin: 0;
}

.footer-logo .logo {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bolder;
  font-family: "Exo 2";
  display: inline-block;
  letter-spacing: 2px;
}
.footer-logo .logo span {
  color: #f7786f;
}
.footer-logo p {
  font-size: 1rem;
}

.footer-links a {
  padding-left: 10px;
  text-decoration: underline;
}

.contact-info h4 {
  color: #7b808f;
  margin: 6px;
  padding-top: 1rem;
}
.contact-info a {
  margin: 3px 1.2rem;
  text-decoration: underline;
  text-transform: lowercase;
}
.contact-info i {
  margin-right: 10px;
}

.social-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
}
.social-content .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: nowrap;
  flex-wrap: nowrap;
}
.social-content .social-links a {
  font-size: 1.5rem;
  margin: 0 1rem;
}
.social-content .social-links a:hover {
  color: #f7786f;
}

#footer-bottom {
  border-top: 2px solid #7f91ec;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: wrap;
  flex-wrap: nowrap;
}

.footer-copyrights {
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.footer-legels a {
  text-decoration: underline;
  margin: 0;
}

.badge-levelup i {
  margin-right: 10px;
}

.footer-copyrights a {
  color: #5454d9;
  display: inline-block;
}

.system-container {
  width: 100%;
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media only screen and (min-width: 800px) {
  .system-container {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .system-container {
    padding: 0 12rem;
  }
}

main {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
}

.home {
  height: auto;
  width: 100%;
  min-height: 100svh;
  max-width: 1400px;
  min-width: 350px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
}
.home .columns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  gap: 0;
  flex-wrap: nowrap;
  padding: 1rem;
  margin-top: 2rem;
  gap: 1rem;
}
@media only screen and (min-width: 1200px) {
  .home .columns {
    flex-direction: row;
  }
}
.home .column h1 {
  margin-bottom: 0.5rem;
  color: #1d10ac;
  font-weight: 600;
  text-shadow: 0px 0px 3px #4e6ab9;
  transition: 0.3s ease;
}
.home .column h1 span {
  display: block;
  color: #f7786f;
  font-weight: bold;
  text-shadow: none;
}
.home .column .home-buttons {
  display: block;
  margin-top: 0.8rem;
  padding: 0;
}
@media only screen and (min-width: 800px) {
  .home .column .home-buttons {
    display: flex;
    flex-direction: row;
  }
}
.home .column .home-buttons a {
  width: 100%;
  max-width: 200px;
  padding: 8px 10px;
  margin-top: 0.5rem;
  margin-right: 6px;
  border-radius: 2rem;
}
.home .column .home-buttons a i {
  margin-left: 0.5rem;
}
.home .column img {
  margin: 2rem auto;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  animation: updown 10s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  .home .description {
    max-width: 400px;
  }
}
.home .description p {
  color: #4e6ab9;
  line-height: 1.6;
}

@keyframes updown {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(25px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(25px);
  }
  100% {
    transform: translateY(0px);
  }
}
.parts {
  margin: 1rem auto 2rem auto;
  padding: 1rem 0rem;
  width: 100%;
  max-width: 114rem;
  background: transparent;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
}
@media only screen and (min-width: 800px) {
  .parts {
    padding: 2rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .parts {
    padding: 3rem 0rem;
  }
}
.parts h2 {
  margin: 1rem 0;
  margin-bottom: 1rem;
  color: #1d10ac;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}
.parts h2 span {
  color: #7f91ec;
  display: block;
}
.parts p {
  color: #4e6ab9;
  line-height: 1.3;
  padding: 0 1rem;
}

.resources-container {
  padding: 2rem 0rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem 1rem;
}
.resources-container .resources-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0px 1px 8px #c6d4fa;
  transition: 0.3s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
  text-align: center;
  position: relative;
}
.resources-container .resources-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 600px) {
  .resources-container .resources-card {
    text-align: center;
  }
}
.resources-container .resources-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin: 1rem auto;
}
.resources-container .resources-card h3 {
  color: #4e6ab9;
  text-align: center;
  margin-bottom: 6px;
}
.resources-container .resources-card h3 i {
  margin-right: 0.3rem;
}
.resources-container .resources-card p {
  color: #4e6ab9;
  text-align: center;
  margin: 10px 18px;
  margin: 6px 18px 16px 18px;
  padding: 0;
}
.resources-container .resources-card a {
  box-shadow: 0px 0px 16px rgba(92, 92, 231, 0.397);
  margin-top: auto;
  border-radius: 0 0;
  padding: 8px 0px;
  /* margin-top: auto; */
  /* margin-bottom: 6px; */
  /* border-radius: 3px 0 1rem 0; */
  position: relative;
  bottom: 0;
  /* margin: auto -0rem 0rem auto; */
  width: 100%;
  border-radius: 0 0 1rem 1rem;
  color: #ffffff;
  background: #f7786f;
}
.resources-container .resources-card a:hover {
  opacity: 0.8;
  border-top: 2px solid #4e6ab9;
}

.card-badge {
  padding: 6px 16px;
  text-align: center;
  border-radius: 3px;
  position: absolute;
  top: -0.5rem;
  right: -0.3rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  z-index: 10;
  width: auto;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.164);
  font-weight: 500;
}
.card-badge.card-badge-official {
  background: gold;
  color: #ffffff;
}
.card-badge.card-badge-update {
  color: #1d10ac;
  background: rgb(218, 218, 218);
}
.card-badge.card-badge-popular {
  color: #1d10ac;
  background: rgb(255, 251, 0);
}
.card-badge.card-badge-popular i {
  color: red;
}
.card-badge.card-badge-new {
  background: red;
  color: #ffffff;
}
.card-badge.card-badge-verified {
  color: #1d10ac;
  background: rgb(51, 255, 0);
}
.card-badge.card-badge-free {
  background: rgb(40, 126, 255);
  color: #ffffff;
}
.card-badge.card-badge-members {
  background: #2ecc71;
  color: #ffffff;
}
.card-badge i {
  margin-right: 8px;
}

.classes-content h3 {
  color: #1d10ac;
  text-align: center;
  text-shadow: 0px 1px 3px #ddddff;
}
.classes-content h4 {
  color: #484aee;
  text-align: center;
  margin: 0.8rem 0.5rem;
}
@media only screen and (min-width: 1200px) {
  .classes-content {
    padding: 1rem 3rem;
    flex-direction: column;
  }
}
.classes-content .classes-card {
  padding: 1rem 0;
  margin: 0.5rem 0;
  gap: 6px;
  max-width: 700px;
  width: 100%;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0px 1px 8px #c6d4fa;
  transition: 0.3s ease-out;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
}
@media only screen and (min-width: 1200px) {
  .classes-content .classes-card {
    width: 900px;
    flex-direction: row;
  }
  .classes-content .classes-card:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.classes-content .classes-card .position {
  background-color: #4e6ab9;
  color: #ffffff;
  padding: 8px 16px;
  text-align: center;
  box-shadow: 0px 0px 6px #c6d4fa;
  margin: 12px auto 0px auto;
  border-radius: 6px;
  text-align: center;
}
.classes-content .classes-card .position i {
  margin-right: 1rem;
}
.classes-content .classes-card .classes-column img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 1rem 1rem 0 0;
  object-fit: cover;
}
@media only screen and (min-width: 1200px) {
  .classes-content .classes-card .classes-column img {
    max-width: 100%;
  }
}
.classes-content .classes-card .classes-column img:hover {
  transform: scale(1.05);
}
.classes-content .classes-card .classes-info {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 2px;
  flex-wrap: nowrap;
  padding: 0 1rem;
}
.classes-content .classes-card .classes-info p {
  color: #4e6ab9;
  margin: 0rem 0.3rem;
  text-align: left;
}
.classes-content .classes-card .classes-info p span {
  background: transparent;
  color: #26136d;
  text-decoration: underline;
  margin: 3px;
  border: none;
  box-shadow: none;
}

.more-btn {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  gap: 0;
  flex-wrap: nowrap;
  margin-top: 0;
  margin-bottom: 1rem;
}
.more-btn a {
  border-radius: 2rem;
  padding: 12px 25px;
  width: auto;
  margin: 0rem auto;
}

.teachers-container .teacher-card {
  border: 2px solid #c6d4fa;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
  border-radius: 1rem;
  box-shadow: 0px 4px 15px #c6d4fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
}
.teachers-container .teacher-card .teacher-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0.8rem 0.5rem;
  padding: 1rem;
  width: 100%;
}
.teachers-container .teacher-card .teacher-info mark {
  background-color: #7f91ec;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
}
.teachers-container .teacher-card .teacher-info mark:hover {
  background-color: #26136d;
  border-radius: 5px;
  border-bottom: 2px solid #f7786f;
}
.teachers-container .teacher-card .teacher-info h3 {
  text-align: center;
  color: #1d10ac;
  margin-bottom: 0.5rem;
}
.teachers-container .teacher-card .teacher-info h3 span {
  color: #26136d;
  color: #4e6ab9;
  font-size: 1.2rem;
}
.teachers-container .teacher-card .teacher-info .teacher-details {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
  border-bottom: 2px solid #c6d4fa;
  padding-bottom: 0.5rem;
  width: 100%;
}
.teachers-container .teacher-card .teacher-info .teacher-details p {
  color: #7b808f;
  display: flex;
  align-items: flex-start;
  margin: 0;
  flex-direction: column;
}
.teachers-container .teacher-card .teacher-info .teacher-details p span {
  padding: 6px;
  color: #7f91ec;
  background: #ffffff;
  border-radius: 6px;
}

.teacher-card__img-box {
  position: relative;
  height: 30rem;
  overflow: hidden;
}
.teacher-card__img-box img {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.teacher-card__socials {
  display: flex;
  gap: 0.5rem;
  transition: all 0.4s ease;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  padding-top: 1rem;
  padding: 0.7rem 0.5rem 0 0.5rem;
  width: 100%;
}
.teacher-card__socials i {
  background-color: #5454d9;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 8px;
}
.teacher-card__socials i:hover {
  background-color: #4e6ab9;
}
.teacher-card__socials i a {
  width: 45px;
  height: 45px;
}
.teacher-card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.teacher-card:hover .teacher-card_img-box img {
  transform: scale(1.1);
}
.teacher-card:hover__socails {
  opacity: 1;
}

.testimonials .testimonials-container {
  display: grid;
  grid-template-columns: repeat(1fr);
  padding: 0 1rem;
}
@media only screen and (min-width: 800px) {
  .testimonials .testimonials-container {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .testimonials .testimonials-container {
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials .testimonials-container .comment-top h2 {
  font-size: 1.2rem;
  text-align: center;
  text-shadow: none;
}
.testimonials .testimonials-container .comment-top h2 i {
  color: #2ecc71;
}
.testimonials .testimonials-container h3 {
  font-size: 1.1rem;
}
.testimonials .testimonials-container .comment-content p {
  padding: 0;
}
.testimonials .testimonials-container .comment-rate {
  display: flex;
  color: #ffaa00;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  padding: 10px 0;
}
.testimonials .testimonials-container .comment-rate i {
  font-size: 1rem;
}
.testimonials a {
  width: 250px;
  padding: 6px 16px;
  margin: 6px 3%;
  color: #ffffff;
  border-radius: 0.5rem;
}

.info-column {
  margin: 0;
  margin-bottom: 16px;
  padding: 1rem;
  overflow: hidden;
  width: 100%;
}
.info-column .information-conatiner {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 1200px) {
  .info-column .information-conatiner {
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.info-column .info-content-left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
}
.info-column .about-info {
  background-color: rgba(127, 145, 236, 0.0784313725);
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}
.info-column .about-info h4 {
  color: #4e6ab9;
  font-size: 1.2rem;
  text-align: center;
  margin: 12px 0;
}
.info-column .about-info h4 i {
  margin-right: 6px;
}
.info-column .about-info p {
  font-size: 1rem;
  margin: 6px 0;
}
.info-column .about-status {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  background-color: rgba(127, 145, 236, 0.0784313725);
  margin: 1rem 0;
}
@media only screen and (min-width: 1200px) {
  .info-column .about-status {
    grid-template-columns: repeat(4, 1fr);
  }
}
.info-column .about-status {
  background-color: rgba(127, 145, 236, 0.0784313725);
  border-radius: 0.5rem;
}
.info-column .about-status .box {
  padding: 6px 1rem;
  padding-top: 1rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
}
.info-column .about-status .box i {
  font-weight: 800;
  color: #4e6ab9;
  text-align: center;
  font-size: 1.5rem;
}
.info-column .about-status .box h3 {
  font-weight: 800;
  text-align: center;
  margin: 0.3rem;
  color: #f7786f;
  font-weight: 800;
  text-align: center;
}
.info-column .about-status .box p {
  font-weight: 600;
  margin: 0;
  text-align: center;
  color: rgba(30, 80, 161, 0.5);
  font-weight: 600;
  margin: 0;
  text-align: center;
  border-top: 2px solid #e0e8ff;
  width: 100%;
}
.info-column .result-container {
  background: transparent;
  margin-top: 12px;
  background-color: rgba(127, 145, 236, 0.0784313725);
  border-radius: 0.5rem;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.info-column .result-container canvas {
  display: block;
  height: auto !important;
  width: 100% !important;
  padding: 1rem 0;
  margin: 1rem 0;
}
.info-column .result-container h3 {
  margin: 1rem 0;
  text-align: center;
  border: none;
}
.info-column .result-container .year-results {
  padding: 0.5rem;
  border-radius: 1rem;
  margin: 30px 0;
  text-align: center;
}
.info-column .result-container .year-results h2 {
  margin-bottom: 20px;
}

.contact-content {
  margin-top: 6px;
  border-radius: 0.5rem;
}

.contact-content .contact-cards {
  margin-bottom: 6px;
}
.contact-content .contact-cards .contact-card {
  background-color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
}
.contact-content .contact-cards .contact-card h3 {
  margin: 0px auto;
  padding: 9px;
  border-radius: 0.5rem;
  color: #4e6ab9;
}
.contact-content .contact-cards .contact-card p,
.contact-content .contact-cards .contact-card a {
  color: #4e6ab9;
  padding-left: 16px;
  background-color: #f7f7f7;
  width: 100%;
}
.contact-content .contact-cards .contact-card i {
  margin-right: 12px;
}

.contact-container {
  border-radius: 1rem;
  width: 100%;
  background-color: rgba(127, 145, 236, 0.0784313725);
  margin-top: 2rem;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 1200px) {
  .contact-container {
    display: grid;
    grid-auto-flow: column;
    justify-items: start;
    align-items: start;
  }
}
.contact-container .contact-content h3 {
  margin: 1rem 0;
  color: #1d10ac;
  text-align: center;
}
.contact-container .contact-content h3 span {
  color: #7f91ec;
  display: block;
}
.contact-container .contact-content p {
  margin: 6px 0;
}
.contact-container .contact-left .class-details {
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: center;
  gap: 6px;
}
@media only screen and (min-width: 1200px) {
  .contact-container .contact-left .class-details {
    flex-direction: column;
    align-content: center;
  }
}
.contact-container .contact-left .class-contacts {
  margin: 0.5rem 0;
  padding: 1rem 2rem;
  background-color: rgba(127, 145, 236, 0.0784313725);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.5s ease-in;
  border-left: none;
  border-radius: 12px;
}
.contact-container .contact-left .class-contacts h4 {
  margin-bottom: 1rem;
  color: #1d10ac;
}
.contact-container .contact-left .class-contacts a,
.contact-container .contact-left .class-contacts label {
  color: #7b808f;
  gap: 5px;
}
.contact-container .contact-left .class-contacts a i,
.contact-container .contact-left .class-contacts label i {
  margin-right: 1rem;
  color: #26136d;
}
.contact-container .contact-left .class-contacts a:hover,
.contact-container .contact-left .class-contacts label:hover {
  color: #7f91ec;
  text-decoration: underline;
}
.contact-container .contact-left .class-contacts a {
  text-transform: lowercase;
}
.contact-container .contact-left .class-contacts address {
  text-align: center;
  color: #1d10ac;
  margin-top: 1rem;
  gap: 0;
  line-height: 1;
  border-top: 2px solid #7f91ec;
  padding-top: 6px;
}
.contact-container .contact-left irame {
  width: 100%;
  height: 250px;
  border: none;
  filter: grayscale(0.5);
  transition: 0.3s;
  margin: 0.6rem 0;
}
.contact-container .contact-left irame:hover {
  filter: grayscale(0);
}
.contact-container .contact-right form {
  padding: 0.5rem;
  margin: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 1rem;
}
.contact-container .contact-right form label,
.contact-container .contact-right form input,
.contact-container .contact-right form select,
.contact-container .contact-right form textarea {
  display: block;
  width: 95%;
  color: #5454d9;
  padding: 3px 12px;
  margin: 0;
  background-color: transparent;
  margin-left: 12px;
}
.contact-container .contact-right form label {
  color: #7f91ec;
  margin: 0 10px;
  padding: 0;
  margin-top: 8px;
}
.contact-container .contact-right form input,
.contact-container .contact-right form textarea {
  background-color: rgba(127, 145, 236, 0.0784313725);
  margin-left: 12px;
  border-bottom: 2px solid #ddddff;
}
.contact-container .contact-right form input:focus,
.contact-container .contact-right form textarea:focus {
  border-bottom: none;
  background-color: #ddddff;
  border-radius: 3px;
}
.contact-container .contact-right form select {
  background-color: rgba(127, 145, 236, 0.0784313725);
  margin-left: 12px;
  border-bottom: 2px solid #ddddff;
  color: #7b808f;
}
.contact-container .contact-right form select:focus {
  background-color: #f7f7f7;
}
.contact-container .contact-right p {
  color: red;
  line-height: 1.1;
  padding: 0 1rem;
  font-size: 0.8rem;
  margin: 12px 0;
  text-align: center;
  display: none;
}
.contact-container .contact-right textarea {
  resize: none;
}
.contact-container .contact-right textarea:hover p {
  display: block;
}
.contact-container .contact-right input[type=submit] {
  width: 200px;
  padding: 6px 16px;
  margin: 6px 3%;
  color: #ffffff;
  border-radius: 0.5rem;
}
.contact-container #privacy-label {
  color: red;
  display: flex;
  font-size: 0.8rem;
}

.system-container {
  max-width: 114rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media only screen and (min-width: 800px) {
  .system-container {
    padding: 0 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .system-container {
    padding: 0 10rem;
  }
}

.review-container {
  padding: 1rem 0.5rem;
  margin: 5rem 0 1rem 0;
  background-color: transparent;
  border-radius: 1rem;
  border: none;
}
@media only screen and (min-width: 800px) {
  .review-container {
    margin: 5rem auto 1rem auto;
    width: 500px;
  }
}
.review-container h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #4e6ab9;
  margin-bottom: 6px;
}
.review-container h1 span {
  color: #26136d;
}
.review-container p {
  color: #4e6ab9;
}
.review-container button {
  width: 170px;
  padding: 6px 12px;
  margin: 6px 1%;
  color: #ffffff;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
.review-container button i {
  margin-right: 12px;
}

#thanksMessage {
  position: fixed;
  bottom: 35px;
  right: 5px;
  padding: 6px 24px;
  border-radius: 6px;
  background: rgb(255, 255, 255);
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
  background-color: #484aee;
  color: #ffffff;
}
#thanksMessage i {
  margin-left: 6px;
}

#thanksMessage.show {
  opacity: 1;
  transform: translateY(0);
}

.form-container {
  display: none;
  position: fixed;
  bottom: -1rem;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: auto;
  padding-bottom: 2rem;
  background-color: #ffffff;
  box-shadow: 0px 8px 20px rgb(78, 106, 185);
}
.form-container #nameCharCount,
.form-container #commentCharCount {
  font-size: 9px;
  font-weight: 600;
  background: #f3f6ff;
  padding: 3px 6px;
  border-radius: 3px;
  display: none;
}
@media only screen and (min-width: 800px) {
  .form-container {
    width: 50%;
    height: 50%;
    padding: 1rem 0.5rem;
    margin: 0 1rem 2rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .form-container {
    width: 30%;
    height: 55%;
  }
}
.form-container button {
  width: 180px;
  padding: 6px 12px;
  margin: 6px 1%;
  color: #ffffff;
  border-radius: 0.5rem;
}
.form-container button i {
  margin-right: 12px;
}
.form-container #CloseIcon {
  background-color: #1d10ac;
  width: 40px;
  height: 40px;
  padding: 8px 12px;
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 1rem;
  font-size: 1.4rem;
}

.addcomment-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 0;
  flex-wrap: nowrap;
  margin: 6px 0;
  padding: 6px;
  background-color: #ffffff;
}
.addcomment-content .comment-counts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.addcomment-content .comment-counts p {
  color: #4e6ab9;
}
.addcomment-content .comment-counts p span {
  color: #5454d9;
  font-weight: 800;
}

.comments-load-ani {
  background-color: #c6d4fa;
  color: #5454d9;
  padding: 12px 6px;
  margin: 6px auto;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  align-content: center;
  gap: 6px;
}
.comments-load-ani .loader {
  margin-right: 0.5rem;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite backwards;
  border-radius: 50%;
}

@keyframes spin {
  0% {
    transform: rotateZ(-360deg);
    border: 3px solid #ffffff;
  }
  30% {
    border: 3px solid #5729ff;
    border-bottom: 3px solid rgba(255, 255, 255, 0);
  }
  50% {
    border: 3px solid #bba8ff;
    border-left: 3px solid rgba(255, 255, 255, 0);
    border-bottom: 3px solid rgba(255, 255, 255, 0);
  }
  70% {
    border: 3px solid #ffffff;
    border-top: 3px solid rgba(255, 255, 255, 0);
    border-left: 3px solid rgba(255, 255, 255, 0);
    border-bottom: 3px solid rgba(255, 255, 255, 0);
  }
  85% {
    transform: rotateZ(720deg);
    border: 3px solid #ffffff;
    border-top: 3px solid rgba(255, 255, 255, 0);
    border-left: 3px solid rgba(255, 255, 255, 0);
    border-bottom: 3px solid rgba(255, 255, 255, 0);
  }
  90% {
    border: 3px solid #c6c7ff;
    border-left: 3px solid rgba(255, 255, 255, 0);
    border-bottom: 3px solid rgba(255, 255, 255, 0);
  }
  95% {
    border: 3px solid #a0a1ff;
    border-bottom: 3px solid rgba(255, 255, 255, 0);
  }
  100% {
    border: 3px solid #ffffff;
  }
}
.all-comments h2 {
  text-align: center;
  color: #4e6ab9;
}
.all-comments h2 span {
  color: #1d10ac;
}

.reviews-part {
  overflow-x: scroll;
  height: 500px;
  margin: 2rem 0;
  padding: 0 1rem;
}
@media only screen and (min-width: 800px) {
  .reviews-part {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .reviews-part {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

#userCommentPart {
  display: none;
}

.comment-box {
  margin: 0.5rem 0;
  background-color: #ffffff;
  border-radius: 1rem;
  border: 2px solid #e0e8ff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.comment-box .comment-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  flex-wrap: nowrap;
  background: rgba(216, 231, 255, 0.5);
  padding: 12px;
  border-radius: 6px 6px 0 0;
}
.comment-box .comment-top h2 {
  color: #4e6ab9;
  text-align: left;
}
.comment-box .comment-top span {
  color: #7f91ec;
}
.comment-box h3 {
  color: #4e6ab9;
  text-align: left;
  margin: 6px 0 6px 2rem;
}
.comment-box .comment-content {
  border-radius: 3px;
  margin: 3px 0;
  margin-bottom: 6px;
  color: rgba(30, 80, 161, 0.5019607843);
  padding: 0 2rem;
  text-align: left;
}
.comment-box .comment-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: nowrap;
  flex-wrap: 0;
  margin-top: 6px;
  border-top: 2px solid #c6d4fa;
  padding-top: 6px;
  padding: 6px 8px 6px 12px;
  color: #4e6ab9;
  border-radius: 0 0 14px 14px;
  background: #ffffff;
}
.comment-box .comment-bottom .comment-like {
  margin: 0 6px;
  border-radius: 6px;
  cursor: pointer;
}
.comment-box .comment-bottom .comment-like span {
  color: #1d10ac;
  margin-right: 6px;
}
.comment-box .comment-bottom .comment-like i {
  color: #1d10ac;
  padding: 6px 6px;
  background-color: rgba(127, 145, 236, 0.0784313725);
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

#apiCommentPart .comment-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

#likeBtn.liked {
  background-color: #f7786f;
  color: #ffffff;
  box-shadow: 0px 0px 16px #f7786f;
}

.animate {
  animation: pop 0.6s ease;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

/*# sourceMappingURL=style.css.map */
