@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
.nav-tabs {
  border-bottom: none;
}
.nav-tabs .nav-item {
  display: flex;
  flex: 1 1 auto;
}
.nav-tabs .nav-item .nav-link {
  width: 100%;
  border-radius: 6px;
  margin-bottom: auto;
  border: none;
  font-weight: 500;
  font-size: 16px;
  color: #171717;
}
@media (max-width: 768px) {
  .nav-tabs .nav-item .nav-link {
    padding: 6px;
  }
}

.nav.nav-tabs {
  padding: 4px;
  border-radius: 8px;
  background: #F5F7FA;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  column-gap: 8px;
}

.tab-content {
  padding: 40px 24px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
}

.form-control:disabled, .form-control[readonly] {
  background-color: inherit;
}

.toggle-password {
  right: 16px;
  bottom: 13px;
  cursor: pointer;
  background-color: transparent;
  background-image: url(../images/icons/eye-open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 24px;
  width: 24px;
}

.show-password ~ .toggle-password {
  background-image: url(../images/icons/eye-closed.svg);
}

.membership-billing {
  font-size: 16px;
  font-weight: 600;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}

.list-style-none {
  list-style: none;
}

html,
body {
  height: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #171717;
  line-height: normal;
}

.body-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1 1 auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Inter", sans-serif;
  line-height: normal;
  color: #000;
  font-style: normal;
}

h1 {
  font-size: clamp(40px, 3.7878787879vw, 50px);
  font-weight: 800;
}

h2 {
  font-size: clamp(20px, 2.4242424242vw, 32px);
  font-weight: 800;
  margin-bottom: 0;
}

h3 {
  font-size: clamp(18px, 1.8181818182vw, 24px);
  font-weight: 700;
}

h4 {
  font-size: clamp(16px, 1.3636363636vw, 18px);
  font-weight: 600;
}

h5 {
  font-size: 14px;
  font-weight: 400;
}

.bg-grey-light {
  background-color: #F5F7FA;
  border-radius: 16px;
  overflow: hidden;
}

.courses-link {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: #171717;
  font-weight: 500;
  padding: 6px 0;
}

.lead {
  font-size: 18px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

footer {
  background: #F5F7FA;
  padding-top: 16px;
  padding-bottom: 16px;
}

.color-gray {
  color: #878D99 !important;
}

.fz-14 {
  font-size: 14px !important;
}

.fw-600 {
  font-weight: 600;
}

.g-row24 {
  row-gap: 24px;
}

.g-row40 {
  row-gap: 40px;
}

.g-col24 {
  column-gap: 24px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ms-40 {
  margin-left: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-80 {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .mt-80 {
    margin-top: 40px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}

.py-40 {
  padding: 40px 0;
}

.fz-18 {
  font-size: 18px;
}

.color-blue {
  color: #2993CA;
}

.bg-blue {
  background-color: #2993CA;
}

.border-radius img {
  border-radius: 16px;
  overflow: hidden;
}

.border-radius8 {
  border-radius: 8px;
  overflow: hidden;
}

.copyright {
  font-size: 14px;
  color: #878D99;
  font-weight: 400;
}
@media (max-width: 768px) {
  .copyright {
    flex-direction: column;
  }
}

.header-wrapper {
  padding: 16px 28px;
  border-radius: 0 0 16px 16px;
  background: #FFF;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  max-width: 1376px;
  margin: auto;
}

.btn-download {
  color: #2993CA;
  font-weight: 500;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 0 4px;
}

.white-btn,
.black-btn,
.gray-btn {
  display: inline-block;
  padding: 5px 32px;
  height: 43px;
  border-radius: 24px;
  font-weight: 500;
  font-size: 16px;
  min-width: 122px;
  line-height: 33px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 500px) {
  .white-btn,
  .black-btn,
  .gray-btn {
    min-width: 90px;
    font-size: 14px;
    padding: 9px 16px;
    line-height: 24px;
  }
}

.black-btn {
  color: #fff;
  background-color: #171717;
}
.black-btn:hover {
  color: #fff;
  background-color: #878D99;
}

.gray-btn {
  border: 1px solid #171717;
  background-color: #BDC0C6;
}

.white-btn {
  color: #171717;
  background-color: #fff;
  border: 1px solid #171717;
}
.white-btn:hover {
  color: #fff;
  background-color: #878D99;
  border: 1px solid #878D99;
}

.btn-black {
  padding: 8px 32px;
  background-color: #171717;
  border-radius: 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.btn-black:hover {
  background-color: #878D99;
  color: #fff;
}

.shadow-wrapper {
  display: flex;
  padding: 24px;
  border-radius: 16px;
  background: var(--white, #FFF);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
}

.form-control {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  background-color: transparent;
  border: none;
  padding: 8px;
  border-radius: 0;
  resize: none;
  outline: none;
  color: #878D99;
}
.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #878D99;
  opacity: 1; /* Firefox */
}
.form-control :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #878D99;
}
.form-control ::-ms-input-placeholder { /* Microsoft Edge */
  color: #878D99;
}

.control-label {
  color: #878D99;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.form-control:focus {
  background-color: #F5F7FA;
  border-color: #F5F7FA;
  box-shadow: none;
}

.input-wrapper {
  padding: 8px;
  background: #F5F7FA;
  border-radius: 8px;
  position: relative;
}

.invalid-feedback {
  position: absolute;
  left: 0;
  font-size: 13px;
}

.form-radio-label {
  font-weight: 600;
  margin-bottom: 16px;
}

.form-radio-label,
.form-check-label {
  font-size: 16px;
  margin-left: 6px;
  line-height: 28px;
}
@media (max-width: 576px) {
  .form-radio-label,
  .form-check-label {
    font-size: 15px;
  }
}

.form-control--cvv {
  position: absolute;
  top: 33px;
  right: 8px;
}

.form-check {
  position: relative;
}
.form-check .invalid-feedback {
  position: absolute;
  left: 30px;
  top: 18px;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  background-image: none;
  border: none;
  box-shadow: none;
  outline: none;
}

.contact-us-wrapper {
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 991px) {
  .contact-us-wrapper {
    flex-direction: column;
    max-width: 440px;
  }
}

.form-wrapper {
  width: 100%;
  max-width: 416px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  background-image: url("../images/icons/arrow_dropdowns.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  left: 0;
  top: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-size: 16px;
  font-weight: 600;
  color: #878D99;
}

.select2-container--default .select2-selection--single {
  background-color: transparent;
  border: none;
}

.select2.select2-container {
  max-width: 100%;
}

.form-check-input[type=checkbox] {
  border-radius: 2px;
}

.form-check-input:checked {
  background-color: #2993CA;
  border-color: #2993CA;
}

input[type=radio] {
  appearance: none;
  background: #fff;
  border: 2px solid #415674;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  vertical-align: text-bottom;
  position: relative;
}

input[type=radio]::before {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  top: 0;
}

input[type=radio]:checked::before {
  border: 5px solid transparent;
  border-radius: 100%;
  background: #000;
  margin: 2px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  border: 1px solid #171717;
}

.form-check-input:focus {
  box-shadow: none;
}

.icons-wrapper {
  display: flex;
  justify-content: center;
  column-gap: 40px;
}
@media (max-width: 576px) {
  .icons-wrapper {
    justify-content: space-between;
    column-gap: 10px;
    flex-flow: wrap;
  }
}

.approved {
  max-width: 968px;
  margin: auto;
}

.roll {
  width: 64px;
  height: 64px;
  animation-name: animation-roll;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  z-index: 2;
}

.logo-title-wrapper {
  display: flex;
  align-items: center;
  width: 490px;
  height: 73px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .logo-title-wrapper {
    margin-left: auto;
  }
}
@media (max-width: 576px) {
  .logo-title-wrapper {
    width: 400px;
  }
}

.bg-white-animation {
  width: 530px;
  height: 73px;
  background-color: #fff;
  position: absolute;
  left: -100%;
  animation-name: bg-white-animation;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  z-index: 1;
}
@media (max-width: 576px) {
  .bg-white-animation {
    width: 450px;
  }
}

@keyframes bg-white-animation {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: -15%;
  }
}
.notforlearning-img {
  left: 72px;
  animation-name: notforlearning-img;
  animation-duration: 3.3s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}
@media (max-width: 576px) {
  .notforlearning-img {
    left: 72px;
    animation-duration: 4.2s;
  }
}

@keyframes animation-roll {
  0%, 100% {
    left: 0;
    transform: rotate(0deg);
  }
  50% {
    left: calc(100% - 65px);
    transform: rotate(360deg);
  }
}
@keyframes notforlearning-img {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: 15%;
  }
  100% {
    left: 72px;
  }
}
@media (max-width: 768px) {
  .logo-title {
    text-align: end;
  }
}

.logo-title-subtitle {
  font-size: 22px;
  font-weight: 400;
}

.man-unreg {
  position: relative;
  animation-name: man-unreg;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}

@keyframes man-unreg {
  0% {
    top: 30px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skills {
  background-color: #ECF6FF;
  padding: 80px 0 40px 0;
}

.skills-slider {
  max-width: calc((100% - 500px) / 2 + 898px);
  margin-left: auto;
}
@media (max-width: 1400px) {
  .skills-slider {
    max-width: calc((100% - 500px) / 2 + 808px);
  }
}
@media (max-width: 1200px) {
  .skills-slider {
    max-width: calc((100% - 500px) / 2 + 718px);
  }
}
@media (max-width: 992px) {
  .skills-slider {
    max-width: calc((100% - 500px) / 2 + 598px);
  }
}
@media (max-width: 768px) {
  .skills-slider {
    max-width: calc((100% - 500px) / 2 + 508px);
  }
}
@media (max-width: 576px) {
  .skills-slider {
    margin-left: 12px;
  }
}

.skills-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.skills-card__img {
  position: relative;
  height: 360px;
  width: 100%;
}
.skills-card__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.skills-card__text {
  padding: 24px 16px;
  cursor: pointer;
}

.hashtag {
  color: #2993CA;
  font-weight: 400;
  font-size: 16px;
}

.lessons {
  color: #878D99;
  font-weight: 400;
  font-size: 16px;
}

.blue-square {
  width: 100%;
  height: 432px;
  border-radius: 20px;
  border: 8px solid #2993CA;
  background-color: #77BBDF;
}

.hobbies {
  padding: 16px;
  background-color: #77BBDF;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
}

.rotation__item {
  opacity: 0;
  animation: hide 6s step-end infinite;
  border: 1px solid transparent;
}
.rotation__item:nth-child(4n+2) {
  animation-delay: 1.5s;
}
.rotation__item:nth-child(4n+3) {
  animation-delay: 3s;
}
.rotation__item:nth-child(4n+4) {
  animation-delay: 4.5s;
}

@keyframes hide {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
}
@keyframes timer {
  100% {
    width: 100%;
  }
}
.rotation {
  width: 100%;
  height: 100%;
}
.rotation__item {
  font-size: clamp(60px, 7.9545454545vw, 105px);
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  font-weight: 800;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 786px) {
  .rotation__item {
    font-size: 60px;
  }
}

.arrow-gif {
  width: 120px;
  position: relative;
}
.arrow-gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrow-gif-mirror {
  transform: rotateX(190deg);
}
.arrow-gif-mirror img {
  transform: rotate(10deg);
  position: relative;
  top: -30px;
}

.arrow-gif-rot {
  transform: rotate(150deg);
}

.arrow-gif-rot-wrapper {
  position: absolute;
  top: 35%;
  left: 80%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.suggestion-wrapper {
  background: #F5F7FA;
  padding-top: 80px;
  padding-bottom: 80px;
}

.lifestyle-img {
  border-radius: 16px;
  overflow: hidden;
}

.suggestion {
  max-width: 294px;
  margin: auto;
}

.suggestion-text {
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.btn-progress-wrapper {
  background-color: #F5F7FA;
  border-radius: 8px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  padding: 4px;
}

.button-radio.radio-style {
  border: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  background: transparent;
}
.button-radio.radio-style:checked::before {
  border-radius: 0;
  border: none;
  margin: 0;
  background: #fff;
}

.radio-label {
  font-weight: 500;
  font-size: 16px;
  color: #171717;
  position: absolute;
  z-index: 1;
}

.course-overview {
  border-radius: 16px;
  background: #ECF6FF;
  padding: 40px 24px;
  margin: 80px 0;
}
@media (max-width: 991px) {
  .course-overview {
    padding: 24px 12px;
    margin: 24px 0;
  }
}

.border-shadow {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
}

.swiper-button-prev, .swiper-button-next {
  color: #171717 !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev:after, .swiper-button-next:after {
  font-size: 16px !important;
  width: 12px;
  height: 16px;
  text-align: center;
}

.history-border {
  border-right: 4px solid #77BBDF;
  height: 100%;
}
.history-border .history-border-wrapper {
  align-items: end;
  margin-right: 24px;
  row-gap: 24px;
}
@media (max-width: 1200px) {
  .history-border .history-border-wrapper {
    margin-right: 18px;
  }
}
@media (max-width: 768px) {
  .history-border .history-border-wrapper {
    row-gap: 16px;
  }
}

.arrow-wrapper {
  display: flex;
  align-items: center;
}
.arrow-wrapper .arrow-wrapper-subject {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}
@media (max-width: 576px) {
  .arrow-wrapper .arrow-wrapper-subject {
    font-size: 14px;
  }
}
.arrow-wrapper .arrow-text {
  padding: 8px 6px 8px 8px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #fff;
}
.arrow-wrapper .triangle-right, .arrow-wrapper .triangle-left {
  position: absolute;
  border: 18px solid transparent;
  display: inline-flex;
  border-radius: 10px;
}
.arrow-wrapper .triangle-right {
  border-left: 18px solid #2993CA;
  border-right: none;
  right: -13px;
  top: 0;
}
.arrow-wrapper .triangle-left {
  border-right: 18px solid #2993CA;
  border-left: none;
  left: -13px;
  top: 0;
}

.arrow-box {
  background-color: #2993CA;
  border-radius: 8px;
  height: 35px;
  position: relative;
  width: fit-content;
  white-space: nowrap;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #77BBDF !important;
  width: 26px !important;
  height: 6px !important;
  border-radius: 3px !important;
}

.swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  background: #77BBDF !important;
  opacity: 1 !important;
}

.reviews-pagination .swiper-pagination {
  display: none;
}
@media (max-width: 991px) {
  .reviews-pagination .swiper-pagination {
    display: block;
  }
}

.bottom-lead {
  border-radius: 16px;
  background-color: #ECF6FF;
}

.bottom-lead-item {
  border-radius: 8px;
  overflow: hidden;
}
.bottom-lead-item ol li {
  list-style: auto;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.course-program-wrapper {
  display: flex;
  justify-content: space-between;
  column-gap: 24px;
}
@media (max-width: 991px) {
  .course-program-wrapper {
    flex-direction: column;
    background-color: #F5F7FA;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    column-gap: 24px;
  }
}

@media (max-width: 991px) {
  .course-program.dcr-br .course-program__item:last-child {
    border-bottom: 1px solid #BDC0C6 !important;
  }
}

.course-program {
  background-color: #F5F7FA;
  border-radius: 16px;
  width: 50%;
}
@media (max-width: 991px) {
  .course-program {
    width: 100%;
    background-color: transparent;
  }
}
.course-program .course-program__item:last-child {
  border-bottom: none;
}

.course-program__item {
  margin: 24px 24px 0;
  border-bottom: 1px solid #BDC0C6;
}
@media (max-width: 991px) {
  .course-program__item {
    padding: 12px;
    margin: 0 12px;
  }
}
.course-program__item div {
  min-height: 156px;
}
@media (max-width: 991px) {
  .course-program__item div {
    min-height: auto;
  }
}

.btn-tab {
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
  font-size: 22px;
  font-weight: 700;
  color: #171717;
  line-height: normal;
}
.btn-tab:hover {
  color: inherit;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #2993CA;
}

.english-wrapper {
  border-radius: 16px;
  background: #ECF6FF;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
}

.infographic {
  padding: 40px 24px;
  background: #ECF6FF;
  border-radius: 16px;
}

.english-list {
  padding: 0;
  margin-bottom: 24px;
}

.english-list-item {
  list-style: none;
  padding: 16px 24px;
}

.english-list-item:nth-child(odd) {
  background: rgba(255, 255, 255, 0.4);
}

.tab-content {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.modal-header {
  border: none;
  justify-content: center;
  padding: 0;
  margin-bottom: 24px;
}

.modal-body {
  padding: 0;
}

.modal-footer {
  padding: 0;
  border: none;
}

.modal-content {
  padding: 40px 24px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
}

.modal-title {
  font-weight: 700;
  color: #171717;
  font-family: "Inter", sans-serif;
}

.modal-dialog {
  max-width: 700px;
}

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