@charset "UTF-8";
:root {
  --blue: #007bff;
  --darkBlue:#014296;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --tealSecondary:#31C1AD;
  --darkGreen:#279889;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --textBlack:#0c0c0c;
}

body {
  font-family: "Nunito Sans", sans-serif;
}

.container {
  max-width: 1140px;
  padding: 1rem;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 100%;
  }
}

a {
  color: var(--textBlack);
}

img {
  display: block;
  width: 100%;
}

.primaryText {
  color: var(--darkBlue);
}

h1, h2, h3, h4, h5, h6, p {
  color: var(--textBlack);
}

input, select {
  background: transparent;
  color: var(--darkBlue);
  padding: 0.7rem;
  border-radius: 7px;
  transition: 0.3s ease border-color;
  outline: none;
  border-style: solid;
  border-width: 2px;
  border-color: var(--darkBlue);
  font-size: 20px;
}
input:focus, select:focus {
  border-color: var(--cyan);
}
input::placeholder, select::placeholder {
  color: var(--darkBlue);
  opacity: 1; /* Firefox */
}
input::-ms-input-placeholder, select::-ms-input-placeholder { /* Edge 12 -18 */
  color: var(--darkBlue);
}

.icons {
  display: flex;
  gap: 0.5rem;
}
.icons svg {
  fill: var(--darkBlue);
  width: 32px;
  height: 32px;
}

.sectionTitle {
  font-size: 45px;
  width: max-content;
  max-width: 100%;
  margin-top: 2rem;
}
.sectionTitle.small {
  font-size: 35px;
}
@media (max-width: 1199px) {
  .sectionTitle {
    font-size: 25px;
  }
  .sectionTitle.small {
    font-size: 25px;
  }
}
.sectionTitle::after {
  content: "";
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: block;
  background: linear-gradient(to left, #ffedab, #ffbfd4);
  background-size: 100% 6px;
  background-position: bottom 0 left 0, bottom 5px left 0;
  background-repeat: no-repeat;
  height: 6px;
  width: 100%;
}
.sectionTitle.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: Center;
}

.subTitle {
  font-size: 45px;
  font-weight: normal;
  margin: 2rem 0;
}
@media (max-width: 1199px) {
  .subTitle {
    font-size: 20px;
  }
}
.subTitle.centered {
  text-align: center;
}

.subTitleText {
  font-size: 20px;
}
.subTitleText.centered {
  text-align: center;
}

.imageSeparator img {
  width: 90px;
  margin: 2rem auto;
}

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

@media (min-width: 768px) {
  .desktopImage {
    display: block;
  }
  .mobileImage {
    display: none;
  }
}
@media (max-width: 767px) {
  .desktopImage {
    display: none;
  }
  .mobileImage {
    display: block;
  }
}
.messagesContainer {
  max-width: 1140px;
  padding: 1rem;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .messagesContainer {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .messagesContainer {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .messagesContainer {
    width: 100%;
  }
}

.alert {
  padding: 0.5rem;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.formFieldNotice {
  display: block;
  color: #e74a3b;
  position: absolute;
}

.invalidFormField {
  border: 1px solid #e74a3b;
}
.invalidFormField:focus {
  border-color: #e74a3b;
}

#visitorNotification {
  background-color: #FFE112;
  padding: 1rem 0;
  font-size: 1.2rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 99;
}
@media (max-width: 768px) {
  #visitorNotification {
    font-size: 1rem;
  }
}
#visitorNotification a {
  color: #2529ff;
  font-weight: bold;
}

.centeredText {
  text-align: center;
  margin-bottom: 4rem;
}
.centeredText.bold {
  font-weight: bold;
}

.big {
  font-size: 2rem;
}

.iti--allow-dropdown {
  width: 100%;
}

.static {
  font-family: "Nunito Sans", sans-serif;
}
.static.noDecor h1, .static.noDecor h2, .static.noDecor h3, .static.noDecor h4, .static.noDecor h5, .static.noDecor h6 {
  color: var(--textBlack);
}
.static.noDecor h1:after, .static.noDecor h2:after, .static.noDecor h3:after, .static.noDecor h4:after, .static.noDecor h5:after, .static.noDecor h6:after {
  content: unset;
}
.static ul, .static ol {
  line-height: 32px;
}
.static ul ul, .static ul ol, .static ol ul, .static ol ol {
  padding-left: 1rem;
}
.static p {
  margin: 0.5rem 0;
}
.static a {
  color: var(--darkBlue);
  font-weight: bold;
}

#payment1 {
  display: none;
}
#payment1.show {
  display: block;
}

input:disabled {
  background: gray !important;
  cursor: not-allowed;
}

.gfLoader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
  z-index: 999;
  opacity: 1;
}
@media (max-width: 550px) {
  .gfLoader {
    left: -125px;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.centeredTextOnly {
  text-align: center;
}

.buttonLearnMore {
  width: max-content;
  margin: 3rem auto 0rem auto;
  padding: 0.7rem 1rem;
  background: var(--blue);
  color: white;
  display: block;
  border-radius: 14px;
}

.pricingHighlightMessage {
  width: max-content;
  background: #FFE112;
  padding: 1rem;
  font-weight: bold;
  margin: 2rem auto 1rem auto;
  border-radius: 7px;
}

.checkoutMessageContainer {
  height: 55vh;
  padding: 1rem;
}
.checkoutMessageContainer .checkoutMessage {
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  background: #FFE112;
  padding: 1rem;
  font-weight: bold;
  margin: 2rem auto 1rem auto;
  border-radius: 7px;
}
.checkoutMessageContainer .checkoutMessage a {
  color: var(--darkBlue);
}

.price {
  flex-basis: 100%;
  color: #014296;
  font-weight: bold;
}

.priceSingle {
  font-size: 2rem;
  text-align: center;
  display: block;
  margin-top: 2rem;
}

.buyCourse {
  border-radius: 7px !important;
  padding: 0.5rem 1rem !important;
  background: #014296;
  color: white;
}

.buyCourseSubtitle {
  text-align: center;
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.buyCourseSubtitle b {
  color: #014296;
}

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

* {
  margin: 0;
  padding: 0;
}

ul, li {
  font: inherit;
}

a {
  text-decoration: none;
}

html, body {
  margin: 0;
  padding: 0;
}

svg {
  pointer-events: none;
}

.button {
  display: block;
  padding: 0.5rem 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.2s ease all;
  font-size: 20px;
  border: none;
  outline: none;
  cursor: pointer;
}
.button.large {
  padding: 0.7rem 1rem;
}
@media (max-width: 991px) {
  .button {
    font-size: 14px;
  }
}
.button.green {
  background: var(--tealSecondary);
  color: var(--white);
}
@media (hover: hover) {
  .button.green:hover {
    background: var(--darkGreen);
  }
}
.button.green.active {
  background: var(--darkGreen);
}
.button.transparent {
  background: transparent;
  color: var(--darkBlue);
  border: 1px solid var(--darkBlue);
}
@media (hover: hover) {
  .button.transparent:hover {
    background: var(--darkBlue);
    color: var(--white);
  }
}
.button.transparent.active {
  background: var(--darkBlue);
}
.button.white {
  background: white;
  color: var(--darkBlue);
  border: 1px solid var(--darkBlue);
}
@media (hover: hover) {
  .button.white:hover {
    background: var(--darkBlue);
    color: var(--white);
  }
}
.button.white.active {
  background: var(--darkBlue);
  color: var(--white);
}
.button.blue {
  background: var(--blue);
  color: var(--white);
}
@media (hover: hover) {
  .button.blue:hover {
    background: var(--darkBlue);
    color: var(--white);
  }
}
.button.blue.active {
  background: var(--darkBlue);
}
.button.square {
  border-radius: 7px;
}
.button.round {
  border-radius: 14px;
}
.button.extraRound {
  border-radius: 18px;
}
.button.thick {
  border-width: 2px;
}
.button.normalizeText {
  text-transform: unset;
  font-size: 18px;
}

#primaryNav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #primaryNav.loggedOut {
    flex-direction: column;
    gap: 1rem;
  }
}
#primaryNav #primaryNavLeft #logo img {
  height: 45px;
}
@media (max-width: 767px) {
  #primaryNav #primaryNavLeft #logo img {
    height: 32px;
  }
}
#primaryNav #hamburger {
  display: none;
  background: var(--darkBlue);
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
@media (max-width: 768px) {
  #primaryNav #hamburger {
    display: flex;
  }
}
#primaryNav #hamburger svg {
  pointer-events: none;
  fill: white;
  width: 22px;
  height: 22px;
}
#primaryNav #primaryNavRight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #primaryNav #primaryNavRight.loggedIn {
    display: none;
  }
}
#primaryNav #primaryNavRight .allCourses {
  text-transform: uppercase;
  font-weight: bold;
}
#primaryNav #primaryNavRight #userActionContainer {
  display: flex;
  gap: 0.5rem;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}
#primaryNav #primaryNavRight #userActionContainer button {
  background: var(--darkBlue);
  color: white;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  margin-left: 2rem;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}
#primaryNav #primaryNavRight #userActionContainer button svg {
  fill: white;
  height: 12px;
  margin-left: 0.5rem;
}
#primaryNav #primaryNavRight #userActionContainer #userActions {
  display: none;
  background: white;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  padding: 1rem;
  width: 105%;
}
#primaryNav #primaryNavRight #userActionContainer #userActions.show {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 110%;
  right: 0;
}
@media (max-width: 767px) {
  #primaryNav #primaryNavRight {
    justify-content: center;
  }
}
#primaryNav #primaryNavRight #navPhone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 20px;
}
@media (max-width: 991px) {
  #primaryNav #primaryNavRight #navPhone {
    font-size: 14px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  #primaryNav #primaryNavRight #navPhone {
    flex-basis: 100%;
  }
}
#primaryNav #primaryNavRight #navPhone svg {
  width: 15px;
}

#mobileMenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms;
}
#mobileMenu.show {
  grid-template-rows: 1fr;
}
#mobileMenu #mobileMenuContent {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0 0.5rem;
}
#mobileMenu #mobileMenuContent li:last-of-type {
  margin-bottom: 1rem;
}
#mobileMenu #mobileMenuContent li a {
  padding: 0 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
}

#footerMain {
  background: #014296;
  padding: 2rem 0;
}
#footerMain #footerTop {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
#footerMain #footerTop ul {
  list-style: none;
}
#footerMain #footerTop ul li {
  margin-bottom: 3px;
}
#footerMain #footerTop .footerColumn {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#footerMain #footerTop .footerColumn .social {
  margin-top: 1rem;
}
#footerMain #footerTop .footerColumn .social svg {
  fill: white;
}
#footerMain #footerTop span, #footerMain #footerTop li, #footerMain #footerTop a, #footerMain #footerTop h4 {
  color: var(--white);
}
#footerMain #footerTop span, #footerMain #footerTop a {
  font-size: 14px;
}
#footerMain #footerTop h4 {
  font-size: 20px;
  margin-bottom: 1rem;
}
#footerMain #footerBottom #footerPayment #paymentRight {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 991px) {
  #footerMain #footerBottom #footerPayment #paymentRight {
    align-items: center;
  }
}
#footerMain #footerBottom #footerPayment #paymentRight #paymentLogos {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
@media (max-width: 991px) {
  #footerMain #footerBottom #footerPayment #paymentRight #paymentLogos {
    flex-wrap: wrap;
  }
}
#footerMain #footerBottom #footerPayment #paymentRight #paymentLogos .mcid {
  width: 45px;
  background: white;
  padding: 0.5rem;
  box-sizing: border-box;
}
#footerMain #footerBottom #footerPayment #paymentRight #paymentLogos .visaSecure {
  width: 45px;
}
#footerMain #footerBottom #footerPayment #paymentRight #paymentLogos .allsecure {
  width: 111px;
  margin-right: 1rem;
}
#footerMain #footerBottom #footerPayment #paymentRight #paymentLogos .unicredit {
  width: 200px;
}
#footerMain #footerBottom #footerPayment #paymentRight #paymentLogos .visa {
  width: 65px;
}
#footerMain #footerBottom #footerPayment #paymentRight #paymentLogos .mc {
  width: 48px;
  background: white;
  padding: 0.5rem;
  box-sizing: border-box;
}
#footerMain #footerBottom #footerPayment #paymentRight #paymentLogos .maestro {
  width: 43px;
  background: white;
  padding: 0.3rem;
  box-sizing: border-box;
}
#footerMain #footerBottom #footerPayment #paymentRight p {
  font-size: 10px;
  text-align: right;
  color: var(--white);
  max-width: 50%;
  margin-left: auto;
}
@media (max-width: 991px) {
  #footerMain #footerBottom #footerPayment #paymentRight p {
    max-width: 100%;
    text-align: center;
  }
}
#footerMain #footerBottom #footerPayment #paymentRight p a {
  color: var(--white);
  text-decoration: underline;
}

#welcomeContainer {
  background: #f5f6ff;
}
#welcomeContainer #welcomeInnerContainer {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 2rem 0;
}
#welcomeContainer #welcomeInnerContainer.hasLesson * {
  word-break: break-all;
}
@media (max-width: 991px) {
  #welcomeContainer #welcomeInnerContainer.hasLesson {
    flex-direction: column;
  }
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeLeft {
  width: 50%;
}
@media (max-width: 991px) {
  #welcomeContainer #welcomeInnerContainer.hasLesson .welcomeLeft {
    width: 100%;
  }
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeLeft h1 {
  margin-bottom: 1rem;
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeLeft h1 span {
  word-break: break-word;
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeLeft img {
  border-radius: 10px;
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeRight {
  width: 50%;
  margin-top: 5rem;
}
@media (max-width: 991px) {
  #welcomeContainer #welcomeInnerContainer.hasLesson .welcomeRight {
    width: 100%;
    margin-top: 0;
  }
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeRight .lessonInfo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeRight .lessonInfo .lessonLink {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeRight .lessonInfo .left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeRight .lessonInfo .left > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: #777777;
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeRight .lessonInfo .left svg {
  fill: #777777;
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeRight .lessonInfo .play {
  border: 1px solid var(--darkBlue);
  border-radius: 50%;
  padding: 5px 7px 0 8px;
  height: max-content;
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeRight .lessonInfo .play svg {
  fill: var(--darkBlue);
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeRight .lessonInfo .mainProgressContainer {
  margin: 0;
  background: white;
  border-radius: 10px;
  padding: 2rem;
}
#welcomeContainer #welcomeInnerContainer.hasLesson .welcomeRight .lessonInfo .mainProgressContainer .progressContainer {
  margin: 2rem 0;
}
@media (max-width: 768px) {
  #welcomeContainer #welcomeInnerContainer {
    padding: 2rem 1rem;
  }
}
#welcomeContainer #welcomeInnerContainer .welcomeLeft h1 {
  font-size: 3rem;
}
@media (max-width: 991px) {
  #welcomeContainer #welcomeInnerContainer .welcomeLeft h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  #welcomeContainer #welcomeInnerContainer .welcomeLeft h1 {
    font-size: 1.5rem;
  }
}
#welcomeContainer #welcomeInnerContainer .welcomeLeft h1 span {
  color: #6e6e6e;
  word-break: break-word;
}
#welcomeContainer #welcomeInnerContainer .welcomeLeft h2 {
  font-size: 2rem;
}
@media (max-width: 991px) {
  #welcomeContainer #welcomeInnerContainer .welcomeLeft h2 {
    font-size: 1.5rem;
  }
}
#welcomeContainer #welcomeInnerContainer .welcomeLeft p {
  max-width: 60%;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  #welcomeContainer #welcomeInnerContainer .welcomeLeft p {
    max-width: 100%;
  }
}
#welcomeContainer #welcomeInnerContainer .welcomeRight img {
  width: 300px;
}
@media (max-width: 991px) {
  #welcomeContainer #welcomeInnerContainer .welcomeRight img {
    display: none;
  }
}

#hero, #specialHeroSmall, #specialHeroGray {
  background-image: url("/assets/frontend/images/homepage-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media (max-width: 767px) {
  #hero, #specialHeroSmall, #specialHeroGray {
    background-image: url("/assets/frontend/images/hero-bg-mobile.png");
  }
}
#hero.special, #specialHeroSmall.special, #specialHeroGray.special {
  background-image: url("/assets/frontend/images/ss-hero-bg-desktop.svg");
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 0 50px 0;
  background-color: #3C6396;
}
#hero.special .mainTitle, #specialHeroSmall.special .mainTitle, #specialHeroGray.special .mainTitle {
  font-size: 1.6rem;
}
#hero.special #signUpFormSocial p, #specialHeroSmall.special #signUpFormSocial p, #specialHeroGray.special #signUpFormSocial p {
  font-size: 1.2rem;
}
#hero.special #signUpFormSocial span, #specialHeroSmall.special #signUpFormSocial span, #specialHeroGray.special #signUpFormSocial span {
  font-weight: bold;
  font-size: 1.2rem;
}
#hero.special.specialSmall .signUpForm, #specialHeroSmall.special.specialSmall .signUpForm, #specialHeroGray.special.specialSmall .signUpForm {
  padding: 2rem 1rem;
  background-color: rgba(255, 255, 255, 0.6);
}
#hero.special.specialSmall .signUpForm input, #specialHeroSmall.special.specialSmall .signUpForm input, #specialHeroGray.special.specialSmall .signUpForm input {
  background: white;
}
#hero.special.specialSmall .signUpForm input[type=submit], #specialHeroSmall.special.specialSmall .signUpForm input[type=submit], #specialHeroGray.special.specialSmall .signUpForm input[type=submit] {
  background: var(--darkBlue);
}
#hero.special.specialSmall .titleLeft, #specialHeroSmall.special.specialSmall .titleLeft, #specialHeroGray.special.specialSmall .titleLeft {
  color: black;
  font-size: 2rem !important;
}
#hero.special.specialSmall h3, #specialHeroSmall.special.specialSmall h3, #specialHeroGray.special.specialSmall h3 {
  font-size: 2rem !important;
}
#hero.special.specialSmall p, #specialHeroSmall.special.specialSmall p, #specialHeroGray.special.specialSmall p {
  font-size: 1.2rem;
}
#hero.special .titleLeft, #specialHeroSmall.special .titleLeft, #specialHeroGray.special .titleLeft {
  color: white;
}
#hero.special .logo, #specialHeroSmall.special .logo, #specialHeroGray.special .logo {
  width: 205px;
}
#hero.specialGray, #specialHeroSmall.specialGray, #specialHeroGray.specialGray {
  background-image: none;
  background: #EFEFEF;
}
#hero #heroContent, #hero .heroContent, #specialHeroSmall #heroContent, #specialHeroSmall .heroContent, #specialHeroGray #heroContent, #specialHeroGray .heroContent {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0 3rem 0;
}
@media (max-width: 991px) {
  #hero #heroContent, #hero .heroContent, #specialHeroSmall #heroContent, #specialHeroSmall .heroContent, #specialHeroGray #heroContent, #specialHeroGray .heroContent {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
}
#hero #heroContent .mobileImage, #hero .heroContent .mobileImage, #specialHeroSmall #heroContent .mobileImage, #specialHeroSmall .heroContent .mobileImage, #specialHeroGray #heroContent .mobileImage, #specialHeroGray .heroContent .mobileImage {
  display: none;
}
@media (max-width: 767px) {
  #hero #heroContent .mobileImage, #hero .heroContent .mobileImage, #specialHeroSmall #heroContent .mobileImage, #specialHeroSmall .heroContent .mobileImage, #specialHeroGray #heroContent .mobileImage, #specialHeroGray .heroContent .mobileImage {
    display: block;
    width: 41px;
    height: auto;
    margin: 0 auto;
  }
}
#hero #heroContent #heroContentLeft, #hero #heroContent .heroContentLeft, #hero .heroContent #heroContentLeft, #hero .heroContent .heroContentLeft, #specialHeroSmall #heroContent #heroContentLeft, #specialHeroSmall #heroContent .heroContentLeft, #specialHeroSmall .heroContent #heroContentLeft, #specialHeroSmall .heroContent .heroContentLeft, #specialHeroGray #heroContent #heroContentLeft, #specialHeroGray #heroContent .heroContentLeft, #specialHeroGray .heroContent #heroContentLeft, #specialHeroGray .heroContent .heroContentLeft {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 991px) {
  #hero #heroContent #heroContentLeft, #hero #heroContent .heroContentLeft, #hero .heroContent #heroContentLeft, #hero .heroContent .heroContentLeft, #specialHeroSmall #heroContent #heroContentLeft, #specialHeroSmall #heroContent .heroContentLeft, #specialHeroSmall .heroContent #heroContentLeft, #specialHeroSmall .heroContent .heroContentLeft, #specialHeroGray #heroContent #heroContentLeft, #specialHeroGray #heroContent .heroContentLeft, #specialHeroGray .heroContent #heroContentLeft, #specialHeroGray .heroContent .heroContentLeft {
    width: 100%;
  }
}
#hero #heroContent #heroContentLeft h2, #hero #heroContent .heroContentLeft h2, #hero .heroContent #heroContentLeft h2, #hero .heroContent .heroContentLeft h2, #specialHeroSmall #heroContent #heroContentLeft h2, #specialHeroSmall #heroContent .heroContentLeft h2, #specialHeroSmall .heroContent #heroContentLeft h2, #specialHeroSmall .heroContent .heroContentLeft h2, #specialHeroGray #heroContent #heroContentLeft h2, #specialHeroGray #heroContent .heroContentLeft h2, #specialHeroGray .heroContent #heroContentLeft h2, #specialHeroGray .heroContent .heroContentLeft h2 {
  font-size: 67px;
  line-height: 1.2;
  word-break: break-word;
}
@media (max-width: 1199px) {
  #hero #heroContent #heroContentLeft h2, #hero #heroContent .heroContentLeft h2, #hero .heroContent #heroContentLeft h2, #hero .heroContent .heroContentLeft h2, #specialHeroSmall #heroContent #heroContentLeft h2, #specialHeroSmall #heroContent .heroContentLeft h2, #specialHeroSmall .heroContent #heroContentLeft h2, #specialHeroSmall .heroContent .heroContentLeft h2, #specialHeroGray #heroContent #heroContentLeft h2, #specialHeroGray #heroContent .heroContentLeft h2, #specialHeroGray .heroContent #heroContentLeft h2, #specialHeroGray .heroContent .heroContentLeft h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  #hero #heroContent #heroContentLeft h2, #hero #heroContent .heroContentLeft h2, #hero .heroContent #heroContentLeft h2, #hero .heroContent .heroContentLeft h2, #specialHeroSmall #heroContent #heroContentLeft h2, #specialHeroSmall #heroContent .heroContentLeft h2, #specialHeroSmall .heroContent #heroContentLeft h2, #specialHeroSmall .heroContent .heroContentLeft h2, #specialHeroGray #heroContent #heroContentLeft h2, #specialHeroGray #heroContent .heroContentLeft h2, #specialHeroGray .heroContent #heroContentLeft h2, #specialHeroGray .heroContent .heroContentLeft h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  #hero #heroContent #heroContentLeft h2, #hero #heroContent .heroContentLeft h2, #hero .heroContent #heroContentLeft h2, #hero .heroContent .heroContentLeft h2, #specialHeroSmall #heroContent #heroContentLeft h2, #specialHeroSmall #heroContent .heroContentLeft h2, #specialHeroSmall .heroContent #heroContentLeft h2, #specialHeroSmall .heroContent .heroContentLeft h2, #specialHeroGray #heroContent #heroContentLeft h2, #specialHeroGray #heroContent .heroContentLeft h2, #specialHeroGray .heroContent #heroContentLeft h2, #specialHeroGray .heroContent .heroContentLeft h2 {
    font-size: 32px;
  }
}
#hero #heroContent #heroContentLeft h3, #hero #heroContent .heroContentLeft h3, #hero .heroContent #heroContentLeft h3, #hero .heroContent .heroContentLeft h3, #specialHeroSmall #heroContent #heroContentLeft h3, #specialHeroSmall #heroContent .heroContentLeft h3, #specialHeroSmall .heroContent #heroContentLeft h3, #specialHeroSmall .heroContent .heroContentLeft h3, #specialHeroGray #heroContent #heroContentLeft h3, #specialHeroGray #heroContent .heroContentLeft h3, #specialHeroGray .heroContent #heroContentLeft h3, #specialHeroGray .heroContent .heroContentLeft h3 {
  font-size: 28px;
  word-break: break-word;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  #hero #heroContent #heroContentLeft h3, #hero #heroContent .heroContentLeft h3, #hero .heroContent #heroContentLeft h3, #hero .heroContent .heroContentLeft h3, #specialHeroSmall #heroContent #heroContentLeft h3, #specialHeroSmall #heroContent .heroContentLeft h3, #specialHeroSmall .heroContent #heroContentLeft h3, #specialHeroSmall .heroContent .heroContentLeft h3, #specialHeroGray #heroContent #heroContentLeft h3, #specialHeroGray #heroContent .heroContentLeft h3, #specialHeroGray .heroContent #heroContentLeft h3, #specialHeroGray .heroContent .heroContentLeft h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  #hero #heroContent #heroContentLeft h3, #hero #heroContent .heroContentLeft h3, #hero .heroContent #heroContentLeft h3, #hero .heroContent .heroContentLeft h3, #specialHeroSmall #heroContent #heroContentLeft h3, #specialHeroSmall #heroContent .heroContentLeft h3, #specialHeroSmall .heroContent #heroContentLeft h3, #specialHeroSmall .heroContent .heroContentLeft h3, #specialHeroGray #heroContent #heroContentLeft h3, #specialHeroGray #heroContent .heroContentLeft h3, #specialHeroGray .heroContent #heroContentLeft h3, #specialHeroGray .heroContent .heroContentLeft h3 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  #hero #heroContent #heroContentLeft h3, #hero #heroContent .heroContentLeft h3, #hero .heroContent #heroContentLeft h3, #hero .heroContent .heroContentLeft h3, #specialHeroSmall #heroContent #heroContentLeft h3, #specialHeroSmall #heroContent .heroContentLeft h3, #specialHeroSmall .heroContent #heroContentLeft h3, #specialHeroSmall .heroContent .heroContentLeft h3, #specialHeroGray #heroContent #heroContentLeft h3, #specialHeroGray #heroContent .heroContentLeft h3, #specialHeroGray .heroContent #heroContentLeft h3, #specialHeroGray .heroContent .heroContentLeft h3 {
    font-size: 18px;
  }
}
#hero #heroContent #heroContentRight, #hero #heroContent .heroContentRight, #hero .heroContent #heroContentRight, #hero .heroContent .heroContentRight, #specialHeroSmall #heroContent #heroContentRight, #specialHeroSmall #heroContent .heroContentRight, #specialHeroSmall .heroContent #heroContentRight, #specialHeroSmall .heroContent .heroContentRight, #specialHeroGray #heroContent #heroContentRight, #specialHeroGray #heroContent .heroContentRight, #specialHeroGray .heroContent #heroContentRight, #specialHeroGray .heroContent .heroContentRight {
  width: 30%;
}
@media (max-width: 991px) {
  #hero #heroContent #heroContentRight, #hero #heroContent .heroContentRight, #hero .heroContent #heroContentRight, #hero .heroContent .heroContentRight, #specialHeroSmall #heroContent #heroContentRight, #specialHeroSmall #heroContent .heroContentRight, #specialHeroSmall .heroContent #heroContentRight, #specialHeroSmall .heroContent .heroContentRight, #specialHeroGray #heroContent #heroContentRight, #specialHeroGray #heroContent .heroContentRight, #specialHeroGray .heroContent #heroContentRight, #specialHeroGray .heroContent .heroContentRight {
    width: 100%;
    margin: 0 auto;
  }
}

.signUpForm {
  background: white;
  padding: 1rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.signUpForm h3 {
  font-weight: normal;
  font-size: 18px;
  text-align: center;
}
.signUpForm input {
  font-size: 16px;
  padding: 0.5rem;
}
.signUpForm .signUpFormSocial {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .signUpForm .signUpFormSocial {
    display: none;
  }
}
.signUpForm .signUpFormSocial p {
  font-size: 20px;
}
.signUpForm #terms {
  color: var(--darkBlue);
}
.signUpForm #terms a {
  color: var(--darkBlue);
  text-decoration: underline;
}
.signUpForm input[type=submit] {
  font-size: 18px;
}
@media (max-width: 991px) {
  .signUpForm input[type=submit] {
    font-size: 16px;
  }
}

.bannerHome {
  background: rgb(189, 221, 255);
}
.bannerHome .bannerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .bannerHome .bannerInner {
    flex-direction: column;
  }
}
.bannerHome .bannerInner .bannerHomeLeft h2 {
  font-size: 42px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .bannerHome .bannerInner .bannerHomeLeft h2 {
    text-align: center;
  }
}
.bannerHome .bannerInner .bannerHomeLeft h3 {
  font-size: 24px;
}
@media (max-width: 768px) {
  .bannerHome .bannerInner .bannerHomeLeft h3 {
    text-align: center;
  }
}
.bannerHome .bannerInner .bannerHomeLeft .button {
  width: max-content;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .bannerHome .bannerInner .bannerHomeLeft .button {
    margin: 2rem auto;
  }
}
.bannerHome .bannerInner .bannerHomeRight img {
  width: 350px;
}
@media (max-width: 550px) {
  .bannerHome .bannerInner .bannerHomeRight img {
    width: 100%;
  }
}

.features {
  background: rgb(254, 239, 236);
  background: linear-gradient(180deg, rgb(254, 239, 236) 0%, rgb(173, 229, 255) 100%);
  margin: 3rem auto;
}

.sections {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.sections.features {
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .sections {
    flex-direction: column;
  }
}
.sections .innerSection {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sections .innerSection.third {
  width: 30%;
}
@media (max-width: 767px) {
  .sections .innerSection.third {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sections .innerSection {
    width: 100%;
  }
}
.sections .innerSection img {
  width: 155px;
  margin-top: -80px;
}
.sections .innerSection img.mobileImage {
  display: none;
}
@media (max-width: 767px) {
  .sections .innerSection img {
    margin-top: 0;
  }
  .sections .innerSection img.mobileImage {
    display: block;
  }
}
.sections .innerSection h4 {
  font-size: 22px;
  color: var(--darkBlue);
}
.sections .innerSection ul {
  margin: 2rem 0;
}
.sections .innerSection > span {
  font-size: 23px;
  text-align: center;
}
.sections .innerSection > span .primaryText {
  font-weight: bold;
}
.sections .innerSection ul {
  padding-left: 2rem;
}
.sections .innerSection ul li {
  font-size: 20px;
}

#howItWorks img {
  width: 90px;
  margin: 2rem auto;
}
#howItWorks #howItWorksContent > img {
  width: 100%;
}
@media (max-width: 767px) {
  #howItWorks #howItWorksContent > img {
    display: none;
  }
}
@media (max-width: 767px) {
  #howItWorks #howItWorksContent .innerSection img {
    width: 155px;
  }
}

#inNumbers {
  background: #014296;
  padding: 2rem 0;
}
@media (max-width: 767px) {
  #inNumbers .sections {
    gap: 2rem;
  }
}
#inNumbers .sections .innerSection {
  align-items: flex-start;
}
@media (max-width: 767px) {
  #inNumbers .sections .innerSection {
    align-items: center;
  }
}
#inNumbers .sections .innerSection span {
  color: var(--white);
  text-align: left;
  font-size: 20px;
}
@media (max-width: 767px) {
  #inNumbers .sections .innerSection span {
    text-align: center;
  }
}
#inNumbers .sections .innerSection span:first-child {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 0.5rem;
}

#weOfferFirst {
  border: 2px solid #CFCFCF;
  border-radius: 20px;
  padding: 3rem;
  margin-top: 4rem;
}
#weOfferFirst ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style-type: none;
  padding: 0 2rem;
}
@media (max-width: 991px) {
  #weOfferFirst ul {
    grid-template-columns: 1fr;
  }
}
#weOfferFirst ul li {
  margin-bottom: 1rem;
  position: relative;
}
#weOfferFirst ul li:nth-of-type(2n) {
  margin-left: 7rem;
}
@media (max-width: 1200px) {
  #weOfferFirst ul li:nth-of-type(2n) {
    margin-left: 6rem;
  }
}
@media (max-width: 991px) {
  #weOfferFirst ul li:nth-of-type(2n) {
    margin-left: 0;
  }
}
#weOfferFirst ul li::before {
  content: "";
  background-image: url("/assets/frontend/images/icon-checkmark.svg");
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -35px;
}
#weOfferFirst h3 {
  font-size: 28px;
  margin-top: 2rem;
  text-align: center;
}
#weOfferFirst .button {
  margin: 4rem auto 2rem auto;
  width: max-content;
}

#weOfferOptions {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  flex-wrap: wrap;
  gap: 1rem;
}
#weOfferOptions .weOfferOption {
  cursor: pointer;
}
#weOfferOptions .weOfferOption:only-child {
  margin-left: auto;
  margin-right: auto;
}
#weOfferOptions input[type=radio] {
  width: 24px;
  height: 24px;
  display: block;
  margin: 1rem auto;
}
@media (max-width: 767px) {
  #weOfferOptions {
    flex-direction: column;
    gap: 1rem;
  }
}
#weOfferOptions .button {
  width: 100px;
  text-align: center;
  margin: 1rem auto;
  background: var(--darkBlue);
}
#weOfferOptions .weOfferOption {
  position: relative;
  width: 43%;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  background: #ffffff;
  border: 2px solid #CFCFCF;
}
@media (max-width: 767px) {
  #weOfferOptions .weOfferOption {
    width: 100%;
  }
}
#weOfferOptions .weOfferOption.featured {
  border: 2px solid #FA8085;
  background: #ffffff;
}
#weOfferOptions .weOfferOption.featured .topBar {
  background-image: linear-gradient(180deg, #ff7e81 0%, #78c9ff 100%);
  color: #ffffff;
  background-color: #EBEBEB;
  padding: 20px 15px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
#weOfferOptions .weOfferOption.featured::before {
  content: "";
  width: 100px;
  height: 100px;
  background: url("/assets/frontend/images/best-buy.png") no-repeat;
  background-size: contain;
  display: block;
  left: 94%;
  top: -40px;
  transform: translate(-50%, 0);
  position: absolute;
}
#weOfferOptions .weOfferOption .topBar {
  background-color: #EBEBEB;
  padding: 20px 15px;
  font-weight: bold;
  text-align: center;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
#weOfferOptions .weOfferContent {
  margin-top: 2rem;
  padding: 0 1rem;
}
#weOfferOptions .weOfferContent * {
  word-break: break-word;
}
#weOfferOptions .weOfferContent h4 {
  font-size: 26px;
  text-align: center;
  min-height: 54px;
}
#weOfferOptions .weOfferContent .line {
  width: 90%;
  height: 5px;
  background: #0004D9;
  margin: 0.5rem auto;
}
#weOfferOptions .weOfferContent p {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}
#weOfferOptions .weOfferContent p > span {
  font-size: 32px;
}
#weOfferOptions .weOfferContent > span {
  font-size: 14px;
  text-align: center;
  display: block;
  margin-bottom: 2rem;
}
#weOfferOptions .weOfferContent > span > .primaryText {
  font-weight: bold;
}

#weOfferSecond {
  border: 2px solid #CFCFCF;
  border-radius: 20px;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#weOfferSecond #weOfferSecondHeading {
  background: linear-gradient(180deg, rgb(254, 239, 236) 0%, rgb(173, 229, 255) 100%);
  text-align: center;
  padding: 30px 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
#weOfferSecond #weOfferSecondHeading h3, #weOfferSecond #weOfferSecondHeading span {
  font-size: 42px;
}
#weOfferSecond p, #weOfferSecond span {
  text-align: center;
  font-size: 20px;
}
#weOfferSecond .button {
  width: max-content;
  margin: 0 auto 1rem auto;
}

#guaranteeHeading {
  background-image: linear-gradient(270deg, #ff7e81 0%, #78c9ff 100%);
  padding: 30px;
  border-radius: 20px;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  width: max-content;
  margin: 2rem auto;
}
@media (max-width: 450px) {
  #guaranteeHeading {
    font-size: 32px;
    width: 100%;
  }
}
#guaranteeHeading p {
  color: var(--white);
  text-align: center;
}

#testimonials img,
#testimonialsSpecialFirst img,
#numbers img {
  object-fit: contain;
}
@media (max-width: 767px) {
  #testimonials img.mobileImage,
  #testimonialsSpecialFirst img.mobileImage,
  #numbers img.mobileImage {
    width: 300px;
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
}

#signupForm {
  background-image: url("/assets/frontend/images/footer-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 5rem 0;
}
#signupForm form .button {
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

#signUpFormBottom input,
#introSignupForm input {
  width: 100%;
}
#signUpFormBottom input[type=checkbox],
#introSignupForm input[type=checkbox] {
  width: auto;
}

#support {
  background: #f5f6ff;
  padding: 2rem 0;
}
#support #supportInner {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 991px) {
  #support #supportInner {
    flex-direction: column;
  }
}
#support #supportInner img {
  width: 500px;
}
@media (max-width: 991px) {
  #support #supportInner img {
    order: 2;
    width: 100%;
  }
}
@media (max-width: 991px) {
  #support #supportInner p {
    text-align: center;
  }
}
#support #supportInner .topParagraph {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
#support #supportInner h2 {
  font-size: 2rem;
}
@media (max-width: 991px) {
  #support #supportInner h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
#support #supportInner h2 span {
  font-weight: normal;
}
#support #supportInner .button {
  width: max-content;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  #support #supportInner .button {
    margin-left: auto;
    margin-right: auto;
  }
}

#specialDescriptionContainer {
  background: #E3EFFF;
}

#specialDescription > h2,
#talkToUsBottomContainer > h2 {
  font-size: 2.5rem;
  margin: 2rem 0;
}
#specialDescription > p,
#talkToUsBottomContainer > p {
  font-weight: bold;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  #specialDescription > h2 {
    font-size: 1.5rem;
  }
}

#specialDescriptionSection,
#talkToUsBottom {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  #specialDescriptionSection,
  #talkToUsBottom {
    flex-direction: column;
  }
}
#specialDescriptionSection .descriptionRight,
#talkToUsBottom .descriptionRight {
  align-self: end;
}
#specialDescriptionSection .descriptionRight img,
#talkToUsBottom .descriptionRight img {
  margin-bottom: 2rem;
}

ul.specialList {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
ul.specialList.dot li {
  align-items: baseline;
}
ul.specialList.dot li:before {
  content: "•";
}
ul.specialList li {
  font-size: 1.4rem;
  display: flex;
  gap: 1rem;
}
ul.specialList li .primaryText {
  font-weight: bold;
}

#titleSeparatedCentered {
  margin-top: 6rem;
  text-align: center;
}

#wePresentSpecial > h2, #allYouLearnSpecial > h2 {
  font-size: 2.5rem;
}
#wePresentSpecial h3, #allYouLearnSpecial h3 {
  margin: 2rem 0;
  font-size: 2rem;
}
#wePresentSpecial > p, #allYouLearnSpecial > p {
  font-size: 2rem;
  font-weight: bold;
  margin: 2rem 0;
}
#wePresentSpecial > span, #allYouLearnSpecial > span {
  font-size: 1.5rem;
  margin: 2rem 0;
  display: block;
}
#wePresentSpecial .list, #allYouLearnSpecial .list {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  #wePresentSpecial .list, #allYouLearnSpecial .list {
    flex-direction: column;
    gap: 0;
  }
}
#wePresentSpecial .coursesContainer, #allYouLearnSpecial .coursesContainer {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  #wePresentSpecial > h2, #wePresentSpecial h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  #wePresentSpecial > p {
    font-size: 1.5rem;
  }
}

#specialFAQ {
  background: #EFEFEF;
  font-size: 1.4rem;
  padding: 3rem 0;
}
#specialFAQ .faqContainer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#specialFAQ .faqContainer .question {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  cursor: pointer;
  font-weight: bold;
}
#specialFAQ .faqContainer .question .answerContainer {
  display: grid;
  font-weight: normal;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}
#specialFAQ .faqContainer .question .answerContainer p {
  margin: 1rem 0;
}
#specialFAQ .faqContainer .question .answerContainer.active {
  grid-template-rows: 1fr;
}
#specialFAQ .faqContainer .question .answerContainer .answer {
  overflow: hidden;
}

.testimonialsSpecial {
  margin: 4rem auto;
}

#tutors {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #tutors {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
#tutors h2 {
  font-size: 3rem;
}
@media (max-width: 991px) {
  #tutors h2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  #tutors h2 {
    font-size: 1.5rem;
    text-align: center;
  }
}
#tutors a {
  width: max-content;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  #tutors a {
    margin-left: auto;
    margin-right: auto;
  }
}
#tutors .left {
  flex: 1;
}
#tutors .right img {
  width: 500px;
}
@media (max-width: 1200px) {
  #tutors .right img {
    width: 300px;
  }
}
@media (max-width: 768px) {
  #tutors .right img {
    width: 100%;
  }
}

#talkToUsBottom {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  #talkToUsBottom {
    padding-top: 2rem;
  }
}
@media (max-width: 768px) {
  #talkToUsBottom .descriptionRight {
    align-self: center;
  }
  #talkToUsBottom .descriptionRight img {
    width: 100%;
  }
}

#talkToUsBottomContainer {
  background: #E3EFFF;
}
#talkToUsBottomContainer a {
  width: max-content;
  background: var(--darkBlue);
}
@media (max-width: 768px) {
  #talkToUsBottomContainer a {
    margin: 2rem auto;
  }
}
#talkToUsBottomContainer img {
  width: 372px;
}

#signUpFormGray input {
  width: 100%;
}
#signUpFormGray input[type=checkbox] {
  width: auto;
}

#allYouLearnSpecial {
  background: var(--darkBlue);
  padding: 4rem 0;
  color: white;
  margin-bottom: 3rem;
}
#allYouLearnSpecial h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #allYouLearnSpecial h2 {
    font-size: 1.5rem;
  }
}
#allYouLearnSpecial p {
  color: white;
}
#allYouLearnSpecial .specialList li:before {
  color: white;
  content: "✓";
  font-weight: bold;
  display: inline-block;
  font-size: 22px;
  width: max-content;
}
#allYouLearnSpecial .specialList:nth-of-type(2) li:last-child:before {
  content: none;
}

.specialList li:before {
  color: var(--darkBlue);
  content: "✓";
  font-weight: bold;
  display: inline-block;
  font-size: 22px;
  width: max-content;
}

#talkToUsSpecial {
  background: var(--darkBlue);
  padding: 2rem 0;
}
#talkToUsSpecial h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}
#talkToUsSpecial p {
  color: white;
  font-size: 1.4rem;
  margin-top: 2rem;
}
#talkToUsSpecial .illustration img {
  width: 730px;
  margin-bottom: -8rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  #talkToUsSpecial .illustration img {
    width: 300px;
    margin-bottom: 0;
  }
}
@media (max-width: 500px) {
  #talkToUsSpecial .illustration img {
    width: 100%;
  }
}
#talkToUsSpecial .illustration .mobile {
  display: none;
}
@media (max-width: 768px) {
  #talkToUsSpecial .illustration .desktop {
    display: none;
  }
  #talkToUsSpecial .illustration .mobile {
    display: block;
  }
}

.sectionsHowItWorks {
  justify-content: flex-start !important;
  gap: 72px;
}
@media (max-width: 1199px) {
  .sectionsHowItWorks {
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .sectionsHowItWorks {
    gap: 22px;
  }
}
@media (max-width: 991px) {
  .sectionsHowItWorks h4 {
    font-size: 15px !important;
  }
}
@media (max-width: 767px) {
  .sectionsHowItWorks h4 {
    font-size: 20px !important;
  }
}
.sectionsHowItWorks .innerThird h4 {
  margin-left: 1rem;
}
@media (max-width: 991px) {
  .sectionsHowItWorks .innerThird h4 {
    margin-left: 1.4rem;
  }
}
@media (max-width: 767px) {
  .sectionsHowItWorks .innerThird h4 {
    margin-left: 0;
  }
}
.sectionsHowItWorks .innerLast h4 {
  margin-left: 2.6rem;
}
@media (max-width: 991px) {
  .sectionsHowItWorks .innerLast h4 {
    margin-left: 2.2rem;
  }
}
@media (max-width: 767px) {
  .sectionsHowItWorks .innerLast h4 {
    margin-left: 0;
  }
}

.tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.tabContentContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 767px) {
  .tabContentContainer {
    justify-content: center;
  }
}
.tabContentContainer .course {
  max-width: 31%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 2px 2px 3px 0px rgba(0, 4, 216, 0.28);
  overflow-wrap: break-word;
  border-radius: 20px;
  overflow: hidden;
  height: auto;
}
.tabContentContainer .course.hidden {
  display: none;
}
@media (max-width: 991px) {
  .tabContentContainer .course {
    max-width: 45%;
  }
}
@media (max-width: 767px) {
  .tabContentContainer .course {
    max-width: 70%;
  }
}
@media (max-width: 550px) {
  .tabContentContainer .course {
    max-width: 100%;
  }
}
.tabContentContainer .course img {
  object-fit: contain;
  margin-bottom: 0.5rem;
  transition: 0.3s ease opacity;
}
@media (hover: hover) {
  .tabContentContainer .course img:hover {
    opacity: 0.7;
  }
}
.tabContentContainer .course h2 {
  margin-bottom: 0.5rem;
  padding: 0 1rem;
  font-size: 20px;
}
.tabContentContainer .course .authors {
  margin-bottom: 3px;
  padding: 0 1rem;
}
.tabContentContainer .course .authorTitles {
  padding: 0 1rem;
}
.tabContentContainer .course .description {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.tabContentContainer .course .courseBottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem 1rem 1rem;
  margin-top: auto;
}
.tabContentContainer .course .courseBottom .duration {
  color: var(--darkBlue);
}
.tabContentContainer .course .courseBottom a {
  padding: 0.4rem 0.5rem 0.05rem 0.6rem;
  border: 1px solid var(--darkBlue);
  border-radius: 50%;
  transition: 0.3s ease opacity;
}
.tabContentContainer .course .courseBottom a svg {
  fill: var(--darkBlue);
}
@media (hover: hover) {
  .tabContentContainer .course .courseBottom a:hover {
    opacity: 0.7;
  }
}

.progressContainer {
  width: 100%;
}
.progressContainer.big {
  margin: 4rem 0;
}
.progressContainer.small {
  margin: 1rem 0;
}
.progressContainer .progress {
  background-color: #e9ecef;
  border-radius: 0.25rem;
  width: 100%;
  height: 4px;
}
.progressContainer .progress.big {
  height: 8px;
  position: relative;
}
.progressContainer .progress.big .percentageNumber {
  position: absolute;
  top: -36px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--darkBlue);
}
.progressContainer .progress.big .labelLeft, .progressContainer .progress.big .labelRight {
  position: absolute;
  top: 30px;
  text-transform: uppercase;
  font-size: 1rem;
  color: #b3b3b3;
}
.progressContainer .progress.big .labelLeft {
  left: 0;
}
.progressContainer .progress.big .labelRight {
  right: 0;
}
.progressContainer .progress .progressBar {
  background-color: #0004D9;
  height: 4px;
  max-width: 100%;
}
.progressContainer .progress .progressBar.big {
  height: 8px;
}
.progressContainer .progress .progressBar.big:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  background-color: #0004D9;
  left: -3px;
  top: -4px;
  border-radius: 50px;
}
.progressContainer .progress .progressBar.big:after {
  content: "";
  position: absolute;
  height: 40px;
  width: 40px;
  background-color: #e9ecef;
  right: -4px;
  top: -16px;
  border-radius: 50px;
  background-image: url(/assets/frontend/images/icon-trophy.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

#theCourse {
  background: #f5f6ff;
  margin-bottom: 2rem;
}
#theCourse > .container {
  display: flex;
  justify-content: space-between;
}
#theCourse > .container iframe {
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}
@media (max-width: 405px) and (min-width: 365px) {
  #theCourse > .container iframe {
    left: 0 !important;
    right: 0 !important;
    max-width: 100% !important;
    width: auto !important;
  }
}
@media (max-width: 1199px) {
  #theCourse > .container {
    flex-direction: column;
  }
}
#theCourse > .container .info {
  color: #808080;
  display: flex;
  gap: 5px;
  font-size: 18px;
  flex-wrap: wrap;
}
#theCourse > .container .info .author {
  font-weight: bold;
}
#theCourse > .container .info h2 {
  color: #808080;
  word-break: break-word;
}
#theCourse > .container #theCourseLeft {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1199px) {
  #theCourse > .container #theCourseLeft {
    width: 100%;
  }
}
#theCourse > .container #theCourseLeft h1 {
  font-size: 32px;
  word-break: break-word;
}
#theCourse > .container #theCourseRight {
  overflow: hidden;
  width: 40%;
  background: var(--white);
  border-radius: 20px;
  padding: 1rem;
  height: 495px;
}
@media (max-width: 1199px) {
  #theCourse > .container #theCourseRight {
    width: 100%;
  }
}
#theCourse > .container #theCourseRight .innerCourseRight {
  padding-right: 1rem;
  /* width */
  /* Track */
  /* Handle */
  overflow-y: auto;
  height: 100%;
}
#theCourse > .container #theCourseRight .innerCourseRight::-webkit-scrollbar {
  width: 5px;
}
#theCourse > .container #theCourseRight .innerCourseRight::-webkit-scrollbar-track {
  background: #e9ecef;
  border-radius: 20px;
}
#theCourse > .container #theCourseRight .innerCourseRight::-webkit-scrollbar-thumb {
  background: #0004d9;
  border-radius: 20px;
}
#theCourse > .container #theCourseRight .info {
  background: #f5f6ff;
  padding: 1rem;
  border-radius: 20px;
  flex-wrap: wrap;
  margin: 1rem 0;
}
#theCourse > .container #theCourseRight .info:first-of-type {
  margin-top: 0 !important;
}
#theCourse > .container #theCourseRight .info h3 {
  flex-basis: 100%;
  margin-bottom: 0.5rem;
}
#theCourse > .container #theCourseRight .lessons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 1rem;
  margin-top: 1rem;
}
#theCourse > .container #theCourseRight .lessons .lesson {
  padding: 0 1rem;
}
#theCourse > .container #theCourseRight .lessons .lesson > span {
  margin: 1rem 0;
}
#theCourse > .container #theCourseRight .lessons .lesson h2 {
  padding-right: 5px;
}
#theCourse > .container #theCourseRight a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: 0.3s ease opacity;
}
@media (hover: hover) {
  #theCourse > .container #theCourseRight a:hover {
    opacity: 0.7;
  }
}
#theCourse > .container #theCourseRight a h2 {
  color: #0004D9;
  font-size: 18px;
}
#theCourse > .container #theCourseRight a .play {
  border: 1px solid var(--darkBlue);
  border-radius: 50%;
  padding: 0.3rem;
}
#theCourse > .container #theCourseRight a .play svg {
  width: 12px;
  height: 12px;
  fill: #0004D9;
}
#theCourse > .container #theCourseRight span {
  display: flex;
  align-items: center;
  color: #777777;
  gap: 0.3rem;
  font-size: 12px;
  font-weight: bold;
}
#theCourse > .container #theCourseRight span svg {
  fill: #777777;
  width: 10px;
}

#courseInfo {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  #courseInfo {
    flex-direction: column;
  }
}
#courseInfo #learn {
  border: 4px #cdceda solid;
  border-radius: 20px;
}
#courseInfo #forWho {
  background-color: #f5f6ff;
  border-radius: 20px;
}
#courseInfo #forWho p {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  #courseInfo #forWho {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #courseInfo #forWho {
    width: 100%;
  }
}
#courseInfo #learn, #courseInfo #forWho {
  width: 50%;
  padding: 1.5rem;
}
@media (max-width: 991px) {
  #courseInfo #learn, #courseInfo #forWho {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #courseInfo #learn, #courseInfo #forWho {
    width: 100%;
  }
}
#courseInfo #learn h2, #courseInfo #forWho h2 {
  font-size: 28px;
  margin: 0 0 1rem 0;
}
#courseInfo #learn ul, #courseInfo #forWho ul {
  padding-left: 1rem;
}

#whatCanYouDo {
  background: #004296;
  position: relative;
  padding: 2rem 0;
  margin-top: 2rem;
  color: var(--white);
  font-size: 24px;
  text-align: center;
}
#whatCanYouDo img {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: -40px;
  width: 60px;
}
#whatCanYouDo p {
  color: var(--white);
  font-size: 24px;
  text-align: center;
}

#aboutCourse {
  margin-bottom: 3rem;
  font-size: 18px;
}
#aboutCourse h2 {
  margin-bottom: 2rem;
}
#aboutCourse p {
  margin-bottom: 3rem;
  font-size: 18px;
}

#aboutAuthor {
  background: #f5f6ff;
  margin: 1rem 0;
}
#aboutAuthor > .container {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  #aboutAuthor > .container {
    flex-direction: column;
    justify-content: center;
  }
}
#aboutAuthor > .container h2 {
  margin-top: 0;
  font-size: 32px;
}
@media (max-width: 767px) {
  #aboutAuthor > .container h2 {
    text-align: center;
  }
}
#aboutAuthor > .container p {
  margin-top: 1rem;
  line-height: 1.5;
}
#aboutAuthor img {
  width: 240px;
  object-fit: contain;
  border-radius: 20px;
}
@media (max-width: 767px) {
  #aboutAuthor img {
    border-radius: 50%;
    object-fit: cover;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

#aboutContentInCourse .sectionTitle {
  margin-bottom: 2rem;
}
#aboutContentInCourse .subTitleText {
  margin: 10px 0;
}

#notesForm textarea {
  width: 100%;
  height: 300px;
  padding: 1rem;
  font-size: 1.2rem;
  color: var(--darkBlue);
  border-radius: 10px;
  outline: none;
  border: 2px solid var(--darkBlue);
  font-family: inherit;
}
#notesForm textarea:focus {
  border: 2px solid var(--darkBlue);
}
#notesForm #submitNotes {
  background: var(--darkBlue);
  text-transform: uppercase;
  margin: 1rem 0;
}

.materials {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2rem;
}
.materials .material img {
  width: 22px;
}
.materials .material a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #0004D9;
  font-weight: bold;
  font-size: 1.2rem;
}

.getCert {
  background: var(--darkBlue) !important;
  text-align: center;
  width: max-content;
  margin: 1rem auto;
}

.buyCourseBottom {
  margin: 2rem auto;
  width: max-content;
}

#notFound {
  padding: 0 1rem;
}
#notFound h1 {
  text-align: center;
  margin: 2rem auto;
}
#notFound img {
  width: 200px;
  display: block;
  margin: 6rem auto;
}
#notFound p {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 1rem;
}

.loginTitle {
  text-align: center;
  margin-bottom: 4rem;
}

#instructionsSent {
  padding: 1rem;
  font-weight: bold;
  margin: 5rem 0 25rem 0;
  text-align: center;
}

#loginForm {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin: 2rem 0;
}
#loginForm img {
  width: 400px;
}
@media (max-width: 991px) {
  #loginForm img {
    display: none;
  }
}
#loginForm > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#loginForm > div label {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  gap: 0.5rem;
}
#loginForm > div span {
  font-weight: bold;
}
#loginForm > div input {
  width: 300px;
}
#loginForm > div input[type=submit] {
  width: max-content;
  margin-top: 1rem;
}
#loginForm > div input[type=checkbox] {
  width: auto;
}
#loginForm a {
  color: #2526fe;
}
#loginForm .loginBottom {
  display: flex;
  justify-content: space-between;
}

#paymentTypeContainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
#paymentTypeContainer .paymentType {
  display: flex;
  align-items: center;
  background-position: center;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  border-radius: 5px;
  padding: 1rem;
  width: 30%;
}
@media (max-width: 768px) {
  #paymentTypeContainer .paymentType {
    width: 100%;
  }
}
#paymentTypeContainer .paymentType img {
  height: 30px;
  width: auto;
  margin-left: auto;
}
#paymentTypeContainer .paymentType span {
  text-transform: uppercase;
  font-weight: bold;
  margin-left: 1rem;
}

#invoiceContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
#invoiceContainer input {
  max-width: 300px;
}

.paymentTitle {
  text-align: center;
  margin: 6rem auto 4rem auto;
}

#submitCheckout {
  padding: 1rem;
  text-transform: uppercase;
  font-size: 1rem;
  margin: 4rem auto;
}

.paymentContent {
  display: none;
}
.paymentContent.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.paymentContent p {
  text-align: center;
  margin: 2rem auto;
}

#checkoutMessageContainer {
  background: #e74a3b;
  color: white;
  margin: 1rem auto;
  text-align: center;
  width: max-content;
  padding: 0 1rem;
}

#cardInfo {
  display: none;
}
#cardInfo.show {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
#cardInfo select, #cardInfo input {
  width: 300px;
}
#cardInfo #countrySelect {
  color: #014296;
  border: 2px solid #014296;
  border-radius: 10px;
  padding: 4px 15px;
  height: auto;
  outline: 0;
  font-size: 1.4rem;
  margin: 2rem auto 1rem auto;
  display: block;
}
#cardInfo #termsCardLabel {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  flex-wrap: wrap;
}
#cardInfo #termsCardLabel input {
  width: auto;
}
#cardInfo #termsCardLabel a {
  color: var(--darkBlue);
  text-decoration: underline;
}

#profileContainer {
  background: #f5f6ff;
}
#profileContainer span, #profileContainer h2, #profileContainer h3, #profileContainer h4, #profileContainer p {
  word-break: break-word;
}
#profileContainer #profile .profileImage {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 1rem auto;
}
#profileContainer #profile h2 {
  font-size: 2rem;
}
#profileContainer #profile .checkPackages {
  margin: 1rem auto;
}
#profileContainer #profile .twoBoxes {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
#profileContainer #profile .twoBoxes .activeSub .title {
  font-size: 1.5rem;
  color: black;
}
#profileContainer #profile .twoBoxes .activeSub .expires {
  color: green;
  font-size: 1rem;
}
#profileContainer #profile .twoBoxes.payment p {
  text-align: left !important;
  margin: 1rem 0;
}
#profileContainer #profile .twoBoxes.payment .paymentAction a {
  color: var(--darkBlue);
  font-weight: bold;
  font-size: 14px;
}
#profileContainer #profile .twoBoxes.payment .paymentAction a.slip {
  background: var(--darkBlue);
  color: white;
  border-radius: 10px;
  padding: 5px;
  margin-left: 1rem;
}
#profileContainer #profile .twoBoxes.payment .box:first-of-type {
  overflow-x: auto;
}
#profileContainer #profile .twoBoxes.payment .box {
  width: 100%;
}
#profileContainer #profile .twoBoxes .box {
  width: 48%;
  box-sizing: border-box;
  background: white;
  padding: 1rem;
  border-radius: 10px;
}
@media (max-width: 768px) {
  #profileContainer #profile .twoBoxes .box {
    width: 100%;
  }
}
#profileContainer #profile .twoBoxes .box .button {
  background: var(--darkBlue);
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
#profileContainer #profile .twoBoxes .box img {
  width: 52px;
  height: 52px;
  margin: 1rem auto;
}
#profileContainer #profile .twoBoxes .box p {
  text-align: center;
  font-size: 1.2rem;
}
#profileContainer #profile .twoBoxes .box.coupon p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
#profileContainer #profile .twoBoxes .box span {
  color: var(--darkBlue);
  font-weight: bold;
  font-size: 2rem;
  display: block;
  margin: 1rem auto;
  text-align: center;
}
#profileContainer #profile .twoBoxes .box h3 {
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
}
#profileContainer #profile .twoBoxes .box .code {
  background: rgb(255, 192, 212);
  background: linear-gradient(90deg, rgb(255, 192, 212) 0%, rgb(255, 237, 171) 100%);
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 10px;
  width: max-content;
}
#profileContainer #profile .twoBoxes #paymentInfo {
  display: grid;
  grid-template-columns: 0.55fr 0.6fr 0.4fr 2.45fr;
  min-width: 1076px;
}
#profileContainer #profile .twoBoxes #paymentInfo .statusWithAction {
  display: flex;
  gap: 1rem;
}
#profileContainer #profile .twoBoxes #paymentInfo span {
  color: unset;
  font-size: 1rem;
  font-weight: normal;
  text-align: left;
  margin: 0.5rem 0;
  padding: 5px;
}
#profileContainer #profile .twoBoxes #paymentInfo span.status {
  width: max-content;
  border-radius: 10px;
  height: max-content;
}
#profileContainer #profile .twoBoxes #paymentInfo span.status.pending {
  background: gray;
  color: white;
}
#profileContainer #profile .twoBoxes #paymentInfo span.status.paid {
  background: linear-gradient(90deg, #ffc0d4 0%, #ffedab 100%);
}
#profileContainer #profile .twoBoxes #paymentInfo span.status.cancelled {
  background: var(--red);
  color: white;
}
#profileContainer #profile .twoBoxes #certificates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
#profileContainer #profile .twoBoxes #certificates h4:nth-of-type(2) {
  justify-self: end;
}
#profileContainer #profile .twoBoxes #certificates span {
  color: unset;
  font-size: 1rem;
  font-weight: normal;
  text-align: left;
  margin: 0.5rem 0;
  padding: 5px;
}
#profileContainer #profile .twoBoxes #certificates a {
  padding: 5px;
  color: white;
  background: var(--darkBlue);
  width: max-content;
  height: max-content;
  border-radius: 5px;
  font-size: 0.8rem;
  justify-self: end;
}
#profileContainer #profile .oneBox {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  background: white;
  border-radius: 10px;
  padding: 1rem;
  justify-content: space-between;
  margin: 2rem 0;
}
#profileContainer #profile .oneBox h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
#profileContainer #profile .oneBox .box {
  width: 48%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 991px) {
  #profileContainer #profile .oneBox .box {
    width: 100%;
  }
}
#profileContainer #profile .oneBox label {
  font-weight: bold;
}
#profileContainer #profile .oneBox input[type=submit] {
  width: max-content;
  background: var(--darkBlue);
}

#authorContainer {
  background: #f5f6ff;
}
#authorContainer #authorHeader {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  gap: 1rem;
}
#authorContainer #authorHeader img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}
#authorContainer #payoutInformation,
#authorContainer .payoutInformation {
  position: relative;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#authorContainer #payoutInformation.loading,
#authorContainer .payoutInformation.loading {
  opacity: 0.4;
}
#authorContainer #payoutInformation .info,
#authorContainer #payoutInformation .status,
#authorContainer .payoutInformation .info,
#authorContainer .payoutInformation .status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  #authorContainer #payoutInformation .info,
  #authorContainer #payoutInformation .status,
  #authorContainer .payoutInformation .info,
  #authorContainer .payoutInformation .status {
    flex-direction: column;
    align-items: flex-start;
  }
}
#authorContainer #payoutInformation .info h2,
#authorContainer #payoutInformation .status h2,
#authorContainer .payoutInformation .info h2,
#authorContainer .payoutInformation .status h2 {
  color: #777777;
  font-weight: bold;
  font-size: 1.2rem;
}
#authorContainer #payoutInformation .info span,
#authorContainer #payoutInformation .status span,
#authorContainer .payoutInformation .info span,
#authorContainer .payoutInformation .status span {
  color: black;
  font-size: 1.5rem;
}
#authorContainer #payoutInformation .status,
#authorContainer .payoutInformation .status {
  background: var(--darkBlue);
  padding: 0.5rem;
  border-radius: 10px;
}
#authorContainer #payoutInformation .status h2, #authorContainer #payoutInformation .status span,
#authorContainer .payoutInformation .status h2,
#authorContainer .payoutInformation .status span {
  color: white;
  text-transform: uppercase;
}

.authorTabs {
  display: flex;
  flex-wrap: wrap;
}
.authorTabs .tab {
  background: white;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  margin: 0.5rem;
  cursor: pointer;
  transition: 0.3s;
  color: var(--darkBlue);
  border: 1px solid var(--darkBlue);
}
.authorTabs .tab.active {
  background: var(--darkBlue);
  color: white;
}

.authorTabContent {
  display: none;
}
.authorTabContent.active {
  display: block;
}

#orderDetails {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px dashed black;
  border-bottom: 1px dashed black;
  margin: 2rem auto 2rem auto;
  width: max-content;
  padding: 1rem 0;
  max-width: 90%;
  justify-content: center;
}
#orderDetails.custom {
  width: 100%;
}
#orderDetails span {
  text-transform: uppercase;
  font-size: 2rem;
  color: var(--darkBlue);
}
@media (max-width: 768px) {
  #orderDetails span {
    font-size: 1rem;
  }
}
#orderDetails span b {
  color: black;
}

.thankYouSlip {
  background: #FFE112;
  color: var(--darkBlue);
  margin: 2rem auto 10rem auto;
  width: max-content;
  padding: 0.5rem 1rem;
  display: block;
  font-weight: bold;
  border-radius: 10px;
  font-size: 1.2rem;
}

.thankYouInvoice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 10rem;
}
.thankYouInvoice > a {
  background: #FFE112;
  color: var(--darkBlue);
  width: max-content;
  padding: 0.5rem 1rem;
  display: block;
  font-weight: bold;
  border-radius: 10px;
  font-size: 1.2rem;
}

.checkCourses {
  width: max-content;
  margin: 6rem auto;
}

.cardDetails {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.2rem;
}

#thankYouCustom h1 {
  margin-top: 12rem;
}
#thankYouCustom p {
  font-size: 1.2rem;
  margin: 2rem auto 12rem auto;
  text-align: center;
}

.enrollHeading {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
@media (max-width: 768px) {
  .enrollHeading {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
  }
}
.enrollHeading img {
  width: 128px;
}
.enrollHeading .enrollTitle {
  font-weight: 900;
  font-size: 1.8rem;
  text-align: center;
}
@media (max-width: 1200px) {
  .enrollHeading .enrollTitle {
    font-size: 1.7rem;
  }
}
@media (max-width: 990px) {
  .enrollHeading .enrollTitle {
    font-size: 1.4rem;
  }
}
@media (max-width: 500px) {
  .enrollHeading .enrollTitle {
    font-size: 1.2rem;
  }
}

.enrollRight {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 1000px) {
  .enrollRight img {
    width: 200px;
    display: block;
    margin: 0 auto;
  }
}
.enrollRight a {
  text-align: center;
}

.enrollDescription {
  padding-bottom: 3rem;
}
.enrollDescription h2 {
  font-size: 1.5rem !important;
  text-align: center;
}
.enrollDescription p {
  text-align: center;
  font-size: 2rem !important;
}

.videosContainer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
}
@media (max-width: 700px) {
  .videosContainer {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .videosContainer video {
    max-width: 300px;
  }
}
.videosContainer video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.wePresentEnroll {
  padding-bottom: 3rem;
}

.enrollSpecialList li {
  display: block !important;
}

.enrollBottomDescription p {
  font-size: 2.2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .enrollBottomDescription p {
    font-size: 1.5rem;
  }
}
.enrollBottomDescription .notice {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}
@media (max-width: 768px) {
  .enrollBottomDescription .notice {
    font-size: 1rem;
  }
}
.enrollBottomDescription a {
  margin: 2rem auto;
}

.enrollGray {
  background: white !important;
}
.enrollGray a {
  width: max-content;
  background: var(--darkBlue) !important;
}

.enrollSpecialContainer {
  background: white !important;
}

.enrollContentHero {
  padding-bottom: 0 !important;
}
.enrollContentHero a {
  width: max-content;
}
@media (max-width: 991px) {
  .enrollContentHero a {
    margin: 1rem auto;
  }
}

@media (max-width: 768px) {
  .enrollTalkToUsBottom {
    padding-bottom: 2rem !important;
  }
}

.enrollTestimonials {
  margin-top: 0 !important;
}

.enrollSpecialHero {
  padding-bottom: 0 !important;
}

#tutors .showMobile {
  display: none;
}
@media (max-width: 768px) {
  #tutors .showDesktop {
    display: none;
  }
  #tutors .showMobile {
    display: block;
  }
}

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