.program-banner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 43px;
}

.program-banner__text {
  max-width: 660px;
}

.program-banner__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
}

.program-banner__image {
  width: 435px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

.program-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 991px){
  .program-banner {
    flex-direction: column;
  }
  
  .program-banner__text {
    max-width: 100%;
  }
  
  .program-banner__image {
    width: 260px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 769px){
  .program-banner__text p {
    font-size: 16px;
  }
}

.upcoming_courses_row_wrapper {
  background: #FAFAFA;
  padding: 34px 0 16px;
}

.upcoming_courses_row_wrapper .upcoming_courses_row {
  margin-bottom: 0;
}

.upcoming_courses_row_wrapper .upcoming_courses_row .upcoming_courses_element .upcoming_courses_inner {
  background-color: #fff !important;
}

.upcoming_courses_row_wrapper .upcoming_courses_row .upcoming_courses_element .upcoming_courses_inner:hover {
  background-color: #F5C002 !important;
  transition: all 0.3s ease 0s;
}

.program-doc {
  margin-bottom: 90px;
}

.program-doc-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.program-doc-container {
  background: #FAFAFA;
  padding: 34px 0;
}

.program-doc-container__btn {
  padding: 17px 55px;
  border-radius: 40px !important;
  font-size: 14px;
  line-height: 17px;
  margin: 20px 0;
}

.program-doc-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  width: 100%;
  max-width: 500px;
}

.program-doc-wrapper img {
  max-width: 100%;
  max-height: 100%;
}


@media screen and (max-width: 991px) {
  .program-doc-wrapper {
    flex-direction: column;
  }

  .program-doc-text {
    max-width: 100%;
    margin-bottom: 40px;
  } 
}

.program-teachers__wrapper {
  position: relative;
}

.program-teachers-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 33px 50px;
}

.program-teachers-list__item {
  /*flex: 1 0 0;*/
  /*width: calc(50% - 25px);*/
  flex: 0 0 calc(50% - 25px);
}

.program-teachers__wrapper .owl-carousel .owl-nav{
  position: absolute;
  top: 50%;
  width: 100%;
}

.program-teachers__wrapper .owl-carousel .owl-nav .owl-prev, .program-teachers__wrapper .owl-carousel .owl-nav .owl-next {
  top: 50%;
  bottom: auto;
  z-index: 50;
  background: none !important;
}

.program-teachers__wrapper .owl-carousel .owl-nav .owl-prev.disabled, .program-teachers__wrapper .owl-carousel .owl-nav .owl-next.disabled {
  opacity: .5;
}

.program-teachers__wrapper  .owl-carousel .owl-nav .owl-prev {
  left: 0;
  transform: translate(-100%, -50%);
}

.program-teachers__wrapper  .owl-carousel .owl-nav .owl-next {
  right: 0;
  transform: translate(100%, -50%);
}

.program-teachers__wrapper  .owl-carousel .owl-dots {
  bottom: -40px;
  flex-wrap: wrap;
}

.program-teachers__wrapper .owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.our-teachers-card {
  display: flex;
  align-items: stretch;
  height: auto;
  min-height: 265px;
  margin: 20px 0;
}

.our-teachers-card__avatar {
  width: 265px;
  height: 265px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  z-index: 50;
}

.our-teachers-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-teachers-card__inner {
  background: #FAFAFA;
  box-shadow: 0px 4px 15px rgba(17, 17, 17, 0.1);
  border-radius: 40px;
  width: calc(100% - 20px);
  transform: translate(15px, 0);
  padding: 30px 24px 60px 285px;
  min-height: 185px;
}

.our-teachers-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #065BAA;
  margin-bottom: 7px;
  display: inline-block;
}

.our-teachers-card__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #065BAA;
  margin-top: 1em;
}

.our-teachers-card__text strong {
  font-weight: 700;
}

.our-teachers-card__icons {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}

.our-teachers-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.04);
  position: relative;
  cursor: pointer;
  padding: 6px;
}

.our-teachers-card__icon svg {
  max-width: 100%;
  max-height: 100%;
}

.our-teachers-card__icon-pop {
  position: absolute;
  bottom: calc(100% + 5px);
  left: 0;
  width: 120px;
  background: #DDE5F1;
  border-radius: 5px;
  padding: 8px 10px 10px 10px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
  font-size: 10px;
  line-height: 15px;
  color: #272727;
  text-align: center;
}

.our-teachers-card__icon:hover .our-teachers-card__icon-pop{
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 769px) {
  .our-teachers-card {
    height: auto;
    flex-direction: column;
    align-items: center;
  }
  
  .our-teachers-card__avatar {
    width: 240px;
    height: 240px;
    position: relative;
    transform: none;
    margin: 0 0 -120px;
  }
  
  .our-teachers-card__inner {
    width: 100%;
    transform: translate(0,0);
    padding: 140px 20px 80px;
    min-height: initial;
    box-shadow: none;
  }
}

.question-section {
  background: #065BAA;
  padding: 70px 0;
}

.question-section__title {
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  line-height: 160%;
}

.question-section__description {
  width: 100%;
  max-width: 460px;
}

.question-section__description p {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
}

.question-section__description p a{
  color: #fff;
  text-decoration: underline;
}

.question-section__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.question-section__form {
  width: 100%;
  max-width: 500px;
  padding-top: 25px;
  position: relative;
}

.question-section__form form{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.im-loader-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.im-loader {
  width: 80px;
  height: 80px;
  border: 10px solid #fff;
  border-radius: 50%;
  border-top: 10px solid #065BAA;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.question-section__form form button {
  width: 100%;
  max-width: 240px;
  height: 50px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #FFFFFF;
}

@media screen and (max-width: 1200px) {
    .program-teachers-list__item {
      flex: 1 0 auto;
      width: 100%;
    }
}

@media screen and (max-width: 991px) {
  .question-section {
    padding: 40px 0;
  }

  .question-section__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .question-section__description {
    max-width: 100%;
  }

  .question-section__form {
    padding-top: 0;
  }
  
  .question-section__form form{
    gap: 16px;
  }
}

@media screen and (max-width: 769px) {
  .question-section__description p {
    font-size: 16px;
  }

  .program-teachers-list {
    gap: 30px;
  }

  .program-teachers-list__item {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .program-doc-container__btn {
    font-size: 14px;
    line-height: 14px;
    padding: 16px 20px 16px;
    margin: 30px 0 0;
    min-width: 180px;
    width: auto;
  }

  .program-doc-text {
    margin-bottom: 30px;
  }
}