h1 {
  font-size: 80px;
  line-height: 110%;
  padding-top: 164px;
}
/* Accordion component */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* accordion element */
.accordion {
  padding: 24px 24px 0;
  background-color: #fff;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
    0px 0px 4px 0px rgba(34, 34, 34, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.accordion:hover .hide-show-btn {
  background-color: var(--blue-dark);
}
.title-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hide-show-btn {
  background-color: var(--blue-main);
  border-radius: 20px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateZ(-45deg);
  transition: all 0.2s ease;
  cursor: pointer;
  user-select: none;
}
.accordion-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow-y: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-content li {
  display: flex;
  /* align-items: center; */
  align-items:inherit; 
  gap: 12px;
  margin-left: 24px;
}
.accordion-content li::before {
  content: "";
  display: flex;
  position: relative;
  top: 7px; 
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
  background-color: var(--blue-main);
}
.accordion.active {
  padding: 24px;
}
.accordion.active .hide-show-btn {
  transform: rotateZ(0);
}
.title-line h3 {
  font-size: 20px;
  font-weight: 600;
  user-select: none;
}
.accordion-content {
  max-width: 920px;
}
.accordion-content p.shadow {
  font-size: 16px;
  font-weight: 400;
  color: var(--black-light);
}
.accordion-content p.shadow a {
  font-size: 16px;
}
.accordion-content p.shadow a:hover {
  color: var(--blue-dark);
}
.accordion-content p b {
  font-weight: 600;
}
.accordion-content p b a {
  font-weight: 600;
  color: var(--blue-main);
}
.accordion-content p a {
  color: var(--blue-main);
  transition: color 0.2s ease;
}
.accordion-content p a:hover {
  color: var(--blue-dark);
}
/* END Accordion */

/* Another question */
.another-form {
  display: flex;
  gap: 24px;
  padding: 40px 50px 50px;
  background-color: var(--blue-dark);
  border-radius: 8px;
}
.another-form__title {
  min-width: 658px;
}
.another-form__title h2 {
  color: #fff;
}
.another-form__title p {
  color: #fff;
  font-weight: 500;
}
.another-form__form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.another-form__form .row-inputs {
  width: 100%;
  display: flex;
  gap: 16px;
}
.another-form__form .row-inputs input {
  width: 50%;
}
.another-form__form textarea {
  width: 100%; 	
  height: 96px;
  resize: none;
}
.another-form__form .row-sumbit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.another-form__form .row-sumbit p {
  font-size: 12px;
  color: #fff;
  max-width: 300px;
}
.another-form__form .row-sumbit p a {
  font-size: 12px;
  color: var(--blue-extra-light);
  transition: color 0.2s ease;
}
.another-form__form .row-sumbit p a:hover {
  color: var(--blue-main);
}
.footer-bg {
  top: -100%;
}
@media screen and (max-width: 1440px) {
	.another-form__title {
		min-width: 330px;
	}
}
@media screen and (max-width: 992px) {
	.another-form {
		flex-direction: column;
	}
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 60px;
    padding-top: 88px;
  }
  /* Accordion */
  .accordion {
    padding: 16px 16px 0;
  }

  .accordion.active {
    padding: 16px;
  }
  .accordion:hover .hide-show-btn {
    background-color: var(--blue-main);
  }
  .accordion:active .hide-show-btn {
    background-color: var(--blue-dark);
  }
  .accordion .title {
    font-size: 16px;
	margin-right: 16px;
  }
  /* Teachers */
  .teachers {
    width: 100%;
    overflow: hidden;
  }
  .teachers__list {
    flex-direction: column;
    gap: 32px;
  }
  .teacher-card {
    position: relative;
    z-index: 1;
  }
  .teacher-card__wrapper > img {
    height: auto;
    width: 100%;
  }
  .teacher-card__info_web {
    display: none;
  }
  .teacher-card__info_mobile {
    display: flex;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -10;
    opacity: 0;
  }
  .teacher-card__info_mobile.active {
    display: flex;
    position: fixed;
    z-index: 100;
    opacity: 1;
  }
  .teacher-card__info_mobile .background-info {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: -2;
    transform: translateX(100%);
    transition: 0.01s;
  }
  .teacher-card__info_mobile.active .background-info {
    transform: translateX(0);
  }
  .teacher-card__info_mobile .content {
    display: flex;
    flex-direction: column;
    height: fit-content;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    padding: 32px;
    border-radius: 8px 8px 0 0;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    z-index: -1;
  }
  .teacher-card__info_mobile ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .teacher-card__info_mobile ul li {
    display: flex;
    gap: 12px;
  }
  .teacher-card__info_mobile ul li::before {
    content: "";
    position: relative;
    top: 7px;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    background-color: var(--blue-main);
    border-radius: 50%;
  }
  .teacher-card__info_mobile .sub-info {
    font-size: 14px;
    color: var(--black-light);
  }
  .teacher-card__info_mobile .sub-info a {
    font-size: 14px;
    color: var(--blue-main);
  }
  .teacher-card__info_mobile.active .background-info {
    z-index: 99;
  }
  .teacher-card__info_mobile.active .content {
    transform: translateY(0);
    z-index: 100;
  }
  .teacher-close-btn_mobile {
    background-color: var(--blue-main);
  }
  .teacher-card__name {
    font-size: 24px;
  }
  .teacher-card__job-title {
    font-size: 16px;
  }
  .teacher-card__info-mail,
  .teacher-card__info-phone {
    font-weight: 500;
    color: var(--blue-main);
    font-size: 18px;
  }
  .teacher-card__info_mobile .sub-info a:hover ~ .tooltip {
    display: flex;
  }
  .teacher-card__info_mobile .tooltip:hover {
    display: flex;
  }
  .teacher-card__info_mobile .tooltip {
    display: none;
    position: absolute;
    bottom: 118px;
    right: 26px;
    padding: 7px 8px;
    background-color: var(--black-light);
    border-radius: 4px;
    transition: opacity 0.2s ease;
  }
  .teacher-card__info_mobile .tooltip p {
    max-width: calc(100vw - 68px);
    font-size: 14px;
    color: #fff;
  }
  .teacher-card__info_mobile .tooltip p a {
    font-size: 14px;
    color: var(--blue-extra-light);
  }
  .teacher-card__info_mobile .tooltip-arrow {
    position: absolute;
    bottom: -6px;
    right: 50%;
  }
  /* Another question */
  .another-form {
    flex-direction: column;
    padding: 24px;
  }
  .another-form__title {
    min-width: auto;
  }
  .another-form__form .row-inputs {
    flex-direction: column;
    gap: 12px;
  }
  .another-form__form .row-inputs input {
    width: 100%;
  }
  .another-form__form .row-sumbit {
    flex-direction: column-reverse;
	align-items: flex-start;
    gap: 16px;
  }
}
