body {
  background-color: white;
}

.price {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.price__title {
  font-size: 32px;
  color: #000000;
  font-weight: 900;
  padding-bottom: 40px;
  width: 60%;
}
@media screen and (max-width: 1279px) {
  .price__title {
    width: 70%;
  }
}
@media screen and (max-width: 999px) {
  .price__title {
    width: 100%;
  }
}

.price-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .price-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.consultation {
  display: flex;
  gap: 10px;
}
@media (max-width: 745px) {
  .consultation {
    flex-direction: column-reverse;
  }
}
.consultation__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.consultation__title {
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 700;
  font-family: BN, sans-serif;
  text-transform: uppercase;
  color: #000000;
  padding-bottom: 40px;
}
@media screen and (max-width: 743px) {
  .consultation__title {
    font-size: 30px;
  }
}
.consultation__text, .consultation__text-last {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 25px;
}
@media screen and (max-width: 743px) {
  .consultation__text, .consultation__text-last {
    font-size: 14px;
    font-weight: 500;
  }
}
.consultation__text-last {
  padding-bottom: 60px;
}
@media screen and (max-width: 743px) {
  .consultation__text-last {
    padding-bottom: 20px;
  }
}
.consultation__text {
  padding-bottom: 10px;
}
.consultation__link {
  font-size: 18px;
  font-weight: 700;
  color: #4E4AFF;
}
.consultation__img {
  width: 38%;
}
@media screen and (max-width: 745px) {
  .consultation__img {
    width: 100%;
  }
}

.main-card {
  border-radius: 40px;
  box-shadow: 2px 3px 12px 0px rgba(30, 33, 55, 0.1803921569);
  padding: 30px;
  margin-top: 80px;
}
@media (max-width: 745px) {
  .main-card {
    padding: 30px 10px;
  }
}
.main-card__title {
  font-size: clamp(40px, 3vw, 54px);
  font-weight: 700;
  text-transform: uppercase;
  color: #060606;
  padding-bottom: 40px;
  font-family: BN, sans-serif;
}
.main-card__text {
  font-size: 26px;
  font-weight: 400;
  color: #000000;
}
@media (max-width: 745px) {
  .main-card__text {
    font-size: 20px;
  }
}

.teaching-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 999px) {
  .teaching-container {
    flex-direction: column;
  }
}

.teaching {
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 999px) {
  .teaching {
    margin-top: 80px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 999px) {
  .teaching__second {
    margin-top: 0px;
  }
}
.teaching__item {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-start;
}
@media screen and (max-width: 999px) {
  .teaching__item {
    align-items: center;
  }
}
.teaching__img {
  width: 90px;
}
@media screen and (max-width: 500px) {
  .teaching__img {
    width: 75px;
  }
}
.teaching__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.teaching__title {
  font-size: 25px;
  color: #13324F;
  font-weight: 900;
  line-height: 32px;
  width: 95%;
}
@media screen and (max-width: 500px) {
  .teaching__title {
    font-size: 20px;
    line-height: 26px;
  }
}
.teaching__text {
  font-size: 18px;
  color: #383838;
  font-weight: 400;
}
@media screen and (max-width: 500px) {
  .teaching__text {
    font-size: 16px;
    line-height: 21px;
  }
}
.teaching__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-left: 109px;
}
@media screen and (max-width: 1279px) {
  .teaching__form {
    margin-left: 0;
  }
}
@media screen and (max-width: 999px) {
  .teaching__form {
    display: none;
  }
}
.teaching__title-last {
  width: 100%;
  font-family: "BN", sans-serif;
  text-transform: uppercase;
  font-size: 60px;
  line-height: 70px;
}

.start-learn-mobile {
  display: none;
}
@media (max-width: 999px) {
  .start-learn-mobile {
    display: block;
  }
}