html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img, svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
img {
  height: auto;
}

*, *::before, *::after {
  box-sizing: border-box;
}
@font-face {
  font-family: "SF UI Display";
  src: url("../fonts/SFUIDisplay-Regular.130c747.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF UI Display";
  src: url("../fonts/SFUIDisplay-Medium.c5cf74c.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF UI Display";
  src: url("../fonts/SFUIDisplay-Semibold.be1f5fa.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.container, .container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1170px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 15%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

body {
  color: #333;
  font-family: "SF UI Display", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  font-feature-settings: normal;
}

@media (max-width: 767px) {
  .desktop {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mobile {
    display: none !important;
  }
}

a {
  color: #1890ff;
  text-decoration: none;
  outline: 0;
  transition: color .3s;
}

.common-btn {
  display: inline-flex;
  background: linear-gradient(180deg, #29f4ff -46.11%, #5257ff 151.97%);
  color: #fff;
  text-decoration: none !important;
  height: 44px;
  min-width: 200px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
}

/* Header */
.header {
  background: rgba(0, 14, 66, .95);
  color: #fff;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

@media (max-width: 767px) {
  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 20px 0px rgba(0 0 0 / 30%);
    text-align: center;
    z-index: 999;
  }

  .navbar-menu {
    margin-bottom: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
  }
}

.navbar-menu .menu-link {
  display: block;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.navbar-brand a {
  display: block;
  width: 200px;
}

.btn-menu {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

@media (min-width: 768px) {
  .navbar {
    height: 90px;
  }
  .navbar-brand a {
    width: 250px;
  }
  .navbar-nav {
    display: flex !important;
  }
  .navbar-menu .menu-item {
    display: inline-block;
    margin-right: 30px;
    vertical-align: middle;
  }
  .navbar-menu .menu-link {
    color: #fff;
  }
}

/* Footer */
.footer {
  padding: 20px 0;
  background: #121131;
  color: #fff;
  font-size: 15px;
}

footer a {
  color: inherit;
}

.footer__logo {
  margin-bottom: 10px;
}

.contact-info p + p {
  margin-top: 3px;
}

.contact-info i {
  display: inline-block;
  margin-right: 4px;
}

.footer__logo a {
  display: inline-block;
  width: 230px;
}

.footer .col-6, .footer .col-12 {
  margin-bottom: 20px;
}

.footer__menu .title {
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 3px;
}

.footer__menu li + li {
  margin-top: 10px;
}

.footer__copyright {
  text-align: center;
  color: hsla(0,0%,100%,.5);
  font-size: 15px;
}

.social-icon {
  margin-top: 5px;
}

.social-icon a {
  display: inline-block;
  font-size: 20px;
  margin: 0 5px;
}

@media (min-width: 768px) {
  .footer {
    padding: 40px 0;
  }
  .footer .container-fluid {
    max-width: 1400px;
  }
  .center-mobile a {
    display: block;
  }
  .footer__copyright {
    font-size: 1em;
  }
}

/* Title */
.title-section {
  margin-bottom: 20px;
}

.title-section__title {
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
}

.title-section__sub-title {
  margin-bottom: 0;
  text-align: center;
  font-size: 17px;
}

@media (min-width: 768px) {
  .title-section {
    margin-bottom: 30px;
  }
  .title-section__title {
    font-size: 36px;
  }
  .title-section__sub-title {
    font-size: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Pricing */
.pricing {
  padding: 40px 0;
  background: #fff;
}

.billing-circle {
  margin-bottom: 15px;
  text-align: center;
}

.billing-circle__label {
  font-size: 18px;
  font-weight: bold;
}

.billing-circle__value {
  font-weight: 500;
  border: 2px solid #4294ff;
  background: #f4f4f4;
  display: inline-block;
  padding: 10px 20px;
  line-height: 1.2;
  border-radius: 30px;
}

.plan {
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 22px 34px 10px rgba(0, 0, 0, .05);
  border-radius: 24px;
  background: #fff;
  padding: 20px;
  max-width: 350px;
  margin: 0 auto 20px;
}

.plan:last-child {
  margin-bottom: 0;
}

.plan__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.plan__header {
  border-bottom: 1px solid #dfdbdb;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.plan__name {
  font-size: 18px;
  font-weight: bold;
}

.number-learners {
  color: #666;
  font-size: 15px;
}

.plan__price, .plan__price-total {
  font-size: 18px;
}

.plan__price span, .plan__price-total span {
  font-weight: bold;
}

.plan__price span {
  font-size: 1.5em;
  background: linear-gradient(#f62323, #fc5a47, #ff795b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.plan__price-total span {
  background: linear-gradient(180deg, #29f4ff -46.11%, #5257ff 151.97%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.plan__infos li {
  color: #555;
  padding-left: 20px;
  background: url(../img/icons/check.svg) no-repeat left top 4px / 14px auto;
  margin: 5px 0;
  line-height: 1.4;
}

.plan__purchase {
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .billing-circle__label {
    font-size: 20px;
  }
  .billing-circle__value {
    font-size: 18px;
  }
  .plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 30px;
  }
  .plan {
    display: flex;
    flex-direction: column;
    padding: 25px;
    margin: 0;
    max-width: 420px;
  }
  .plan__name, .plan__price, .plan__price-total {
    font-size: 20px;
  }
  .number-learners {
    font-size: 1em;
  }
  .plan__header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    min-height: 140px;
  }
  .plan__infos {
    margin-bottom: 20px;
  }
  .plan__infos li {
    background-size: 16px auto;
    padding-left: 25px;
    font-size: 18px;
  }
  .plan__purchase {
    margin-top: auto;
  }
  .plan__purchase .common-btn {
    height: 54px;
    font-size: 22px;
    min-width: 260px;
  }
}

/* FAQ Section */
.faqs {
  padding: 20px 0 40px;
}

.collapse-item {
  border-bottom: 1px solid #d9d9d9;
  padding: 3px 0;
}

.collapse-item:last-child {
  border-bottom: 0;
}

.collapse-header {
  padding: 10px 25px 10px 0;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.collapse-arrow {
  width: 12px;
  height: 12px;
  position: absolute;
  right: 2px;
  top: 50%;
  margin-top: -10px;
  border-bottom: 2px solid #4294ff;
  border-right: 2px solid #4294ff;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.is-active .collapse-arrow {
  transform: rotate(-135deg);
}

.collapse-content {
  display: none;
  padding-left: 18px;
  padding-bottom: 18px;
  color: #555;
}

.collapse-content p + p {
  margin-top: 1em;
}

@media (min-width: 768px) {
  .faqs {
    padding: 30px 0 60px;
  }
  .faqs__list {
    max-width: 900px;
    margin: 0 auto;
  }
  .collapse-item {
    padding: 5px 0;
  }
  .collapse-header {
    font-size: 22px;
    cursor: pointer;
  }
  .collapse-content {
    padding-left: 22px;
    padding-bottom: 25px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .center-mobile {
    text-align: center;
  }
}
