/* spacers added because the body background color is set to gray in global styling
 easier to add spacers for now, but if more pages require it, the global background
 styling will have to be refactored */
 @import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");

body {
  margin: 0;
  line-height: 1.5;
}

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

/* bootstrap */

img, svg {
  vertical-align: middle;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled) {
  cursor: pointer;
}

button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 14px 14px 20px;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  background-color: transparent;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.container-fluid, .container-xxl {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

@media(min-width: 576px) {
    .container-sm,.container {
        max-width:540px
    }
}

@media(min-width: 768px) {
    .container-md,.container-sm,.container {
        max-width:720px
    }
}

@media(min-width: 992px) {
    .container-lg,.container-md,.container-sm,.container {
        max-width:960px
    }
}

@media(min-width: 1200px) {
    .container-xl,.container-lg,.container-md,.container-sm,.container {
        max-width:1140px
    }
}

@media(min-width: 1400px) {
    .container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container {
        max-width:1320px
    }
}

.d-flex {
  display: flex;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-top: 0;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between !important;
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: left !important;
}

.text-nowrap {
  white-space: nowrap;
}

.flex-grow-1 {
  flex-grow: 1;
}

.position-relative {
  position: relative;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.w-100 {
  width: 100%;
}

.pe-3 {
  padding-right: 1rem;
}

.ps-2 {
  padding-left: 0.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.p-0 {
  padding: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-5 {
  margin-top: 3rem;
}

.my-4 {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.me-3 {
  margin-right: 1rem;
}

.mt-2 {
  margin-top: 0.5rem!important;
}

.ms-2 {
  margin-left: 0.5rem!important;
}

.me-1 {
  margin-right: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0;
}

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

@media screen and (min-width: 576px) {
  .justify-content-sm-between {
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .align-items-md-start {
    align-items: flex-start;
  }

  .align-items-md-end {
    align-items: flex-end;
  }

  .flex-md-row {
    flex-direction: row;
  }

  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .mt-md-0 {
    margin-top: 0;
  }

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

@media screen and (min-width: 992px) {
  .align-items-lg-end {
    align-items: flex-end;
  }

  .flex-lg-grow-0 {
    flex-grow: 0;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .flex-lg-row {
    flex-direction: row!important;
  }

  .navbar {
    padding: 30px 28px;
  }
}

@media screen and (min-width: 992px) {
  .d-lg-none {
   display: none;
  }
}

@media screen and (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }

  .d-xl-none {
    display: none !important;
  }
}

/* landing page style */

.landing-container {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  overflow: hidden;
}

.general-sections-title {
  color: #30384D;
  font-size: 40px;
  font-weight: 800;
  line-height: 116.1%;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
}

.general-sections-title span {
  color: #354FA9;
}

@media screen and (max-width: 1400px) {
  .general-sections-title {
    font-size: 30px;
  }
}

@media screen and (max-width: 767.98px) {
  .general-sections-title {
    font-size: 22px;
  }
}

.general-sections-description {
  color: #30384D;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  margin-top: 12px;
}

.security-license .item-row {
  padding: 64px 48px 90px 48px;
}

@media screen and (max-width: 1400px) {
  .general-sections-description {
    font-size: 20px;
  }
}

@media screen and (max-width: 767.98px) {
  .general-sections-description {
    font-size: 16px;
    line-height: 20px;
  }
}

.primary-container {
  margin: 0 10px 32px 10px;
}

@media screen and (min-width: 992px) {
  .primary-container {
    margin: 0 30px 30px 30px;
  }
}

.top-menu-container {
  padding: 0 70px;
}

@media screen and (max-width: 1500px) {
  .top-menu-container {
    padding: 0 30px;
  }
}

@media screen and (max-width: 767.98px) {
  .top-menu-container {
    padding: 0 10px;
  }
}

.security-license {
  margin-top: 90px;
  padding: 0 140px;
  margin-bottom: 0;
}

@media screen and (max-width: 991.98px) {
  .security-license {
    padding: 0;
  }

  .security-license .item-row {
    padding: 0 0 75px 0;
  }

  .security-license .license-item {
    width: 100%;
    margin-top: 70px;
  }
}

@media screen and (max-width: 767.98px) {
  .security-license {
    padding: 0;
    margin-top: 50px;
  }

  .security-license .item-row {
    flex-direction: column;
    padding: 0 0 35px 0;
  }

  .security-license .license-item {
    width: 100%;
    margin-top: 35px;
  }
}

@media screen and (max-width: 575.98px) {
  .security-license .license-item {
    margin-top: 35px;
  }
}

.security-license .license-item {
  flex: 1;
}

.security-license .license-item .step-number {
  font-size: 96px;
  font-weight: 800;
  line-height: 116.1%;
  margin: 0;
  width: 140px;
  height: 140px;
  border: 10px solid #354FA9;
  color: #354FA9;
  border-radius: 100%;
}

@media screen and (max-width: 1400px) {
  .security-license .license-item .step-number {
    width: 110px;
    height: 110px;
    font-size: 60px;
  }
}

@media screen and (max-width: 767.98px) {
  .security-license .license-item .step-number {
    width: 90px;
    height: 90px;
    font-size: 40px;
  }
}

.security-license .license-item .step-description {
  color: #30384D;
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  line-height: 116.1%;
  margin-top: 20px;
  max-width: 316px;
}

@media screen and (max-width: 1400px) {
  .security-license .license-item .step-description {
    font-size: 26px;
  }
}

@media screen and (max-width: 767.98px) {
  .security-license .license-item .step-description {
    font-size: 20px;
    max-width: 248px;
  }
}

.trusted-transparent {
  margin-top: 162px;
  padding: 0 13px;
  color: #31374D;
}

.trusted-transparent img {
  width: 100%;
  max-width: 713px;
}

@media screen and (max-width: 767.98px) {
  .trusted-transparent {
    margin-top: 76px;
  }

  .trusted-transparent .title {
    margin-bottom: 84px;
    font-size: 20px;
    line-height: 27px;
  }
}

.licensed-section {
  margin-top: 114px;
  font-size: 20px;
  line-height: 32px;
  padding: 0 150px;
  width: 100%;
}

.licensed-section .hiring-partners-card {
  border-radius: 32px;
  background: #F3F4F9;
  box-shadow: 9px 9px 12px 0px rgba(0, 0, 0, 0.15);
  padding: 60px 48px;
  width: 100%;
  max-width: 1471px;
}

@media screen and (max-width: 991.98px) {
  .licensed-section {
    padding: 0 100px;
  }
}

@media screen and (max-width: 767.98px) {
  .licensed-section {
    padding: 0 20px;
    margin-top: 60px;
  }

  .licensed-section .hiring-partners-card {
    padding: 50px 20px;
  }
}

.course-description {
  padding: 0 200px;
}

@media screen and (max-width: 1400px) {
  .course-description {
    padding: 0 100px;
  }
}

@media screen and (max-width: 767.98px) {
  .course-description {
    padding: 0 20px;
  }
}

.career-opportunities {
  padding: 0 30px;
  width: 100%;
  max-width: 1290px;
  margin-top: 112px;
  color: #30384D;
  margin: 112px auto 0 auto;
}

.career-opportunities .general-sections-title {
  text-align: start;
}

.career-opportunities>div {
  margin-left: 37px;
}

.career-opportunities img {
  border-radius: 30px;
}

.career-opportunities li {
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
  list-style: none;
  white-space: nowrap;
}

.career-opportunities svg {
  min-width: 29px;
}

@media screen and (max-width: 1550px) {
  .career-opportunities .general-sections-title {
    font-size: 35px;
  }

  .career-opportunities img {
    max-width: 600px;
    height: auto;
  }

  .career-opportunities li {
    font-size: 24px;
  }
}

@media screen and (max-width: 1250px) {
  .career-opportunities .general-sections-title {
    font-size: 30px;
  }

  .career-opportunities img {
    max-width: 450px;
    height: auto;
  }

  .career-opportunities li {
    font-size: 20px;
  }
}

@media screen and (max-width: 991.98px) {
  .career-opportunities {
    flex-direction: column-reverse;
  }

  .career-opportunities img {
    margin-top: 30px;
  }

  .career-opportunities .general-sections-title {
    font-size: 22px;
    text-align: center;
  }
}

@media screen and (max-width: 767.98px) {
  .career-opportunities {
    padding: 0 20px;
    margin-top: 50px;
  }

  .career-opportunities img {
    width: 100%;
    margin-top: 0;
  }

  .career-opportunities ul {
    margin-top: 20px !important;
    margin-right: auto;
  }

  .career-opportunities li {
    font-size: 17px;
    padding: 0 20px;
  }

  .career-opportunities>div {
    margin-left: 0;
  }
}

.gray-bg-container {
  background: #f3f4fa;
  border-radius: 24px;
  overflow: hidden;
  margin-top: 30px;
}

@media screen and (max-width: 991.98px) {
  .gray-bg-container {
    margin-top: 10px;
  }
}

.container-exact {
  max-width: 1800px;
}

@media screen and (max-width: 767.98px) {
  .container-exact {
    padding: 0 10px !important;
  }
}

.hero {
  width: 100%;
  padding-top: 90px;
  padding-left: 0;
  margin-left: 70px;
  gap: 20px;
  position: relative;
}

.hero .hero-text {
  z-index: 2;
}

.hero .customer-reviews {
  margin-top: 27px;
  margin-bottom: 50px;
}

@media screen and (max-width: 1250px) {
  .hero .customer-reviews {
    margin-top: 10px;
  }

  .hero .customer-reviews img {
    width: 80px;
  }
}

@media screen and (max-width: 1500px) {
  .hero .customer-reviews {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 991.98px) {
  .hero .customer-reviews {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767.98px) {
  .hero .customer-reviews {
    margin-right: auto;
  }
}

.hero .hero-cover-img {
  height: auto;
  position: absolute;
  right: -10px;
  bottom: 0;
  max-width: 850px;
}

@media screen and (max-width: 1500px) {
  .hero .hero-cover-img {
    max-width: 700px;
  }
}

@media screen and (max-width: 1250px) {
  .hero .hero-cover-img {
    max-width: 560px;
  }
}

@media screen and (max-width: 1070px) {
  .hero .hero-cover-img {
    max-width: 415px;
  }
}

@media screen and (max-width: 850px) {
  .hero .hero-cover-img {
    width: 100%;
    max-width: none;
    position: initial;
  }
}

.hero .headline {
  margin-bottom: 8px;
  max-width: 959px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
}

.hero .headline h1 {
  margin: 0 0 8px 0;
  font-weight: 800;
  font-size: 45px;
  line-height: 116.1%;
}

.hero .headline h1 span {
  color: #354EA9;
}

@media screen and (max-width: 1500px) {
  .hero .headline h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 1250px) {
  .hero .headline h1 {
    font-size: 25px;
  }
}

@media screen and (max-width: 1500px) {
  .hero .headline {
    max-width: 695px;
  }
}

@media screen and (max-width: 575.98px) {
  .hero .headline {
    font-size: 24px;
    line-height: 140%;
  }
}

@media screen and (min-width: 768px) {
  .text-md-start {
    text-align: left;
  }
}

.hero .description {
  margin-top: 10px;
  margin-bottom: 30px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #31374d;
}

.hero .description > p {
  margin: 0;
}

.hero .description > p > svg {
  margin-right: 16px;
}

@media screen and (max-width: 1500px) {
  .hero .description {
    font-size: 18px;
  }
}

@media screen and (max-width: 1250px) {
  .hero .description {
    margin-top: 25px;
    margin-bottom: 31px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767.98px) {
  .hero .description {
    margin-bottom: 0;
    margin-right: auto;
    font-size: 15px;
  }

  .hero .description>p>svg {
    margin-right: 5px;
    width: 13px;
  }
}

@media screen and (max-width: 767.98px) {
  .hero {
    margin-left: 18px;
    padding-top: 30px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1500px) {
  .hero {
    margin-left: 30px;
  }
}

@media screen and (max-width: 991.98px) {
  .hero {
    flex-direction: column;
    margin-left: 0;
  }
}

.ready-button {
  border: 0;
  color: white;
  background-color: #39c582;
  text-decoration: none;
  padding: 18px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  text-transform: capitalize;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 24px;
  box-shadow: 5px 5px 5px #999999;
  position: relative;
  max-width: 470px;
}

.ready-button > svg {
  transform: scale(0.8);
  transition: all 300ms ease;
}

.ready-button:hover > svg {
  transform: scale(1.0) translateX(3px);
}

@media screen and (max-width: 1250px) {
  .ready-button {
    padding: 18px 40px;
  }
}

@media screen and (max-width: 1500px) {
  .ready-button {
    font-size: 20px;
    padding: 18px 50px;
  }
}

@media screen and (max-width: 767.98px) {
  .ready-button {
    padding: 24px 0;
    font-size: 16px;
    width: 100%;
  }

  .ready-button > svg {
    transform: 0;
    margin-left: 5px;
  }
}

.helpline {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #787d8e;
}

.head-sub-description {
  color: #30384D;
  font-size: 24px;
  font-weight: 400;
  max-width: 560px;
  margin: 0;
}

@media screen and (max-width: 1500px) {
  .head-sub-description {
    font-size: 20px;
  }
}

@media screen and (max-width: 1250px) {
  .head-sub-description {
    font-size: 16px;
    line-height: 24px;
  }
}

/* p.description {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  margin-top: 26px;
  color: #31374d;
}

p.description .strong {
  font-weight: 700;
  color: #354fa9;
} */

.partners {
  padding: 0;
}

.faq-v2 {
  margin-top: 95px;
}

@media screen and (max-width: 767.98px) {
  .faq-v2 {
    margin-top: 112px;
  }
}

.toggle-icon-minus, #toggle-description {
  display: none;
}

.students-section {
  margin-top: 80px;
  padding: 0 30px;
}

.students-section .students-footer {
  margin-top: 32px;
}

.students-section .footer-text {
  font-size: 16px;
  line-height: 22px;
  color: #595E71;
  align-items: flex-start;
}

.students-section .footer-text span {
  white-space: nowrap;
}

.students-section .students-row {
  gap: 32px;
  margin-top: 30px;
  justify-content: center;
}

.students-section .students-row video {
  border-radius: 16px;
}

.students-section .students-row .video-wrapper {
  position: relative;
  max-height: 240px;
  overflow: hidden;
  border-radius: 16px;
}

.students-section .students-row .video-wrapper video {
  cursor: pointer;
}

.students-section .students-row .video-wrapper video {
  width: auto;
  max-width: 170px;
}

.students-section .students-row .video-wrapper img {
  position: absolute;
  width: 50px;
  height: 50px;
  cursor: pointer;
  margin-bottom: 30px;
}

.students-section .students-row .video-wrapper p {
  color: #30384D;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 767.98px) {
  .students-section .students-row {
    gap: 16px;
  }

  .students-section .students-row .arrow-left {
    position: absolute;
    left: 20px;
    z-index: 10;
  }

  .students-section .students-row .arrow-right {
    position: absolute;
    right: 20px;
    z-index: 10;
  }

  .students-section .students-row .video-wrapper {
    max-height: 350px;
  }
}

@media screen and (max-width: 767.98px) {
  .students-section {
    margin-top: 50px;
  }
}

.video-js {
  width: 100%;
  height: 100%;
}

.quinn-smith {
  padding: 0 250px;
  margin-top: 120px;
  gap: 20px;
}

.quinn-smith .description {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
  margin-top: 40px;
  max-width: 525px;
}

@media screen and (max-width: 1600px) {
  .quinn-smith {
    padding: 0 180px;
  }

  .quinn-smith img {
    max-width: 500px;
    height: auto;
  }
}

@media screen and (max-width: 1200px) {
  .quinn-smith {
    padding: 0 100px;
  }

  .quinn-smith .description {
    font-size: 18px;
    max-width: none;
  }

  .quinn-smith img {
    max-width: 400px;
  }
}

@media screen and (max-width: 767.98px) {
  .quinn-smith {
    margin-top: 50px;
    padding: 0 20px;
  }

  .quinn-smith img {
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
  }

  .quinn-smith .general-sections-title {
    white-space: nowrap;
  }

  .quinn-smith .description {
    margin-top: 10px;
  }
}

.why-license {
  margin-top: 98px;
  padding: 0 100px;
  text-align: center;
}

.why-license .security-license-card {
  width: 100%;
  border-radius: 32px;
  padding: 45px 60px;
  gap: 30px;
  background: #F3F4F9;
  box-shadow: 9px 9px 12px 0px rgba(0, 0, 0, 0.15);
  color: #30384D;
  max-width: 1451px;
  margin: 60px auto 0 auto;
}

.why-license .security-license-card div {
  max-width: 32%;
}

.why-license .security-license-card .general-sections-title {
  font-size: 30px;
}

.why-license .security-license-card .description {
  color: #000;
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
  margin-top: 10px;
}

@media screen and (max-width: 767.98px) {
  .why-license .security-license-card div {
    max-width: none;
  }

  .why-license .security-license-card .general-sections-title {
    font-size: 22px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .why-license {
    padding: 0 30px;
  }

  .why-license .security-license-card {
    padding: 30px 50px;
    gap: 20px;
  }

  .why-license .security-license-card .description {
    font-size: 17px;
  }
}

@media screen and (max-width: 767.98px) {
  .why-license {
    margin-top: 50px;
  }

  .why-license .security-license-card {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }
}

.testimonial-video {
  width: 100%;
  max-width: 1491px;
  border-radius: 32px;
  margin-top: 25px;
}

@media screen and (max-width: 767.98px) {
  .testimonial-video {
    width: 95%;
    border-radius: 8px;
  }
}

.testimonial-video-wrapper {
  position: relative;
}

.testimonial-video-wrapper img {
  position: absolute;
  width: 70px;
  height: 70px;
  cursor: pointer;
}

.how-compare {
  margin-top: 130px;
}

.how-compare .how-compare-column-grid {
  display: grid;
  grid-template-columns: 350px 350px 350px;
  margin-top: 50px;
}

.how-compare .how-compare-row-grid {
  display: grid;
  grid-auto-rows: 75px;
}

.how-compare .how-compare-row-grid .grid-row-items:not(:last-child) {
  border-bottom: 1px solid #000;
}

.how-compare .compare-title {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
}

.how-compare .highlighed {
  background-color: #354FA9;
  border-radius: 4px;
}

@media screen and (max-width: 1200px) {
  .how-compare {
    padding: 0 50px;
  }

  .how-compare .how-compare-column-grid {
    width: 100%;
    grid-template-columns: 33.33% 33.33% 33.33%;
  }
}

@media screen and (max-width: 767.98px) {
  .how-compare {
    padding: 0 20px;
    margin-top: 80px;
  }

  .how-compare .how-compare-row-grid {
    grid-auto-rows: 50px;
  }

  .how-compare .compare-title {
    font-size: 12px;
  }

  .how-compare .circle-check-white {
    width: 20px;
    height: 20px;
  }

  .how-compare .times {
    width: 20px;
    height: 20px;
  }

  .how-compare .osl-logo {
    width: 90%;
    height: auto;
  }
}

.bottom-license {
  margin-top: 50px;
  margin-bottom: 90px;
}

@media screen and (max-width: 767.98px) {
  .bottom-license {
    padding: 0 30px;
    margin-top: 20px;
    margin-bottom: 50px;
  }
}

.dots {
  justify-content: center;
}

.dot {
  border: none;
  width: 10px;
  height: 10px;
  background: #c5c5c5;
  border-radius: 50%;
  margin: 0 5px;
  padding: 5px;
  cursor: pointer;
}

.dot:focus {
  outline: none;
}

.dot.active {
  background: #000;
}

nav {
  padding: 14px 14px 20px 14px;
}

@media screen and (min-width: 992px) {
  nav {
    padding: 29px 27px;
  }
}

nav .navbar-nav .nav-item {
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #787D8E;
  margin-right: 20px;
}

nav .navbar-text {
  padding: 0;
}

nav .navbar-text .btn-secondary-action {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #787D8E;
}

nav .navbar-text .btn-primary-action {
  padding: 12px 60px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #354FA9;
  border: 2px solid #354FA9;
  border-radius: 8px;
}

nav .navbar-text .btn-primary-action:hover {
  background-color: #354FA9;
  color: #F3F4FA;
}

nav .navbar-text > span {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: #787D8E;
  margin-right: 35px;
}

nav .navbar-nav {
  font-family: 'Manrope', sans-serif;
  flex: 1;
  margin-left: 46px;
  padding-left: 0;
  list-style: none;
}

nav .navbar-nav .nav-item .nav-link {
  display: block;
  text-decoration: none;
  padding: 0.5rem 0;
  color: #787D8E !important;
}

nav .navbar-nav .nav-item .nav-link:visited {
  color: #787D8E;
}

nav .navbar-nav .active-link {
  font-weight: 700;
  color: #31374D;
}

#menuToggle {
  /* display: block; */
  position: relative;
  z-index: 10;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 1000;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin-bottom: 4px;
  position: relative;
  background: #354FA9;
  border-radius: 3px;
  z-index: 999;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: white;
}

#menuToggle input:checked~span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
  transform: rotate(-45deg) translate(2px, -1px);
}

#menu {
  position: fixed;
  z-index: 990;
  left: 0;
  top: 0;
  width: 100vw;
  min-height: 100vh;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(0, -120%);
  touch-action: none;
  -ms-touch-action: none;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  background-color: #354FA9;
  padding: 23px;
  display: flex;
  flex-direction: column;
}

#menu > svg {
  margin: 10px;
}

#menu ul {
  list-style: none;
  margin-top: 60px;
}

#menu li {
  padding: 16px 0;
  font-size: 20px;
  color: white;
}

#menu li a {
  color: white !important;
  text-decoration: none;
}

#menu li:hover {
  font-weight: 600;
}

#menu li > .active-link {
  font-weight: 700;
}

#menu > p {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: #F3F4FA;
  margin-top: 75px;
  margin-bottom: 20px;
}

#menu > a.log-in {
  width: 100%;
  border: 2px solid white;
  padding: 14px;
  background: transparent;
  color: white;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
}

#menu .footer {
  background-color: #31374D;
  padding: 50px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: auto -23px -23px;
}

#menu .footer > p {
  color: white;
  font-size: 12px;
  font-family: 'Manrope', sans-serif;
  margin: 0;
}

#menuToggle input:checked ~ #menu {
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.training-title-wrapper {
  margin-bottom: 28px;
}

@media screen and (max-width: 575.98px) {
  .training-title-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
  }
}

.training-title {
  color: #354FA9;
  font-size: 36px;
  font-weight: 800;
  line-height: 116.1%;
}

@media screen and (max-width: 1080px) {
  .training-title {
    font-size: 24px;
  }
}

@media screen and (max-width: 767.98px) {
  .training-title {
    font-size: 20px;
  }
}

.rounded-bg-container {
  border-radius: 16px;
  background: #F3F4F9;
  box-shadow: 9px 9px 12px 0px rgba(0, 0, 0, 0.15);
  padding: 50px;
  margin-top: 35px;
}

@media screen and (max-width: 1080px) {
  .rounded-bg-container {
    padding: 30px;
  }
}

.course-logo {
  margin-bottom: 30px;
}

.course-logo .img-fluid {
  border-radius: 19px;
  overflow: hidden;
  width: 100%;
}

.features {
  margin-bottom: 80px;
}

.features .feature-item {
  margin-bottom: 15px;
  gap: 10px;
}

.features .feature-item .feature-item-icon {
  margin-right: 14px;
}

.features .feature-item .feature-item-name {
  width: 88px;
  min-width: 140px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  color: #31374D;
}

@media screen and (max-width: 1080px) {
  .features .feature-item .feature-item-name {
    font-size: 18px;
    min-width: 102px;
  }
}

.features .feature-item .feature-item-value {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  color: #595E71;
}

@media screen and (max-width: 1080px) {
  .features .feature-item .feature-item-value {
    font-size: 18px;
  }
}

@media screen and (max-width: 767.98px) {
  .features {
    margin-bottom: 52px;
  }
}

.languages-list {
  margin-top: 24px;
}

.languages-list .languages-list-item {
  margin-right: 10px;
  cursor: pointer;
  padding: 5px 30px;
  background: #FFFFFF;
  border-radius: 30px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #31374D;
}

@media screen and (max-width: 1080px) {
  .languages-list .languages-list-item {
    font-size: 14px;
    padding: 5px 20px;
  }
}

@media screen and (max-width: 1080px) {
  .languages-list {
    margin-top: 18px;
  }
}

.languages-list .languages-list-item.active {
  background-color: #354FA9;
  color: white;
}

.job-items {
  color: #30384D;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 5px;
}

.job-items.job-value {
  color: #354FA9;
}

.job-items svg {
  width: 29px;
  min-width: 29px;
}

@media screen and (max-width: 1080px) {
  .job-items {
    font-size: 18px;
  }
}

@media screen and (max-width: 767.98px) {
  .job-items svg {
    width: 20px;
    min-width: 20px;
  }
}

.modules-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1080px) {
  .modules-list {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.modules-list .module-item-main {
  cursor: pointer;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 12px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  background-color: #D9D9D9;
}

@media screen and (max-width: 1080px) {
  .modules-list .module-item-main {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }
}

@media screen and (max-width: 767.98px) {
  .modules-list .module-item-main {
    height: 65px;
  }
}

.modules-list .module-item .module-item-number {
  background: #354FA9;
  border-radius: 50%;
  padding: 5px;
  border: 5px solid #ffffff;
  width: 50px;
  height: 50px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  color: #FFFFFF;
  margin-right: 13px;
}

@media screen and (max-width: 1080px) {
  .modules-list .module-item .module-item-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-left: -15px;
  }
}

.modules-list .module-item .module-item-name {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  color: #595E71;
  flex: 100%;
}

@media screen and (max-width: 1080px) {
  .modules-list .module-item .module-item-name {
    font-size: 16px;
  }
}

.modules-list .module-item .module-item-description {
  margin-top: 0;
  margin-bottom: 22px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #595E71;
  padding: 0 48px;
}

.description {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 27px;
  color: #595E71;
}

@media screen and (max-width: 767.98px) {
  .description {
    font-size: 16px;
    line-height: 22px;
  }
}

.description .strong {
  font-weight: 700;
  color: #354FA9;
}

.course-col {
  padding: 0 32px;
}

@media screen and (max-width: 767.98px) {
  .course-col {
    padding: 0;
  }
}

/* hiring partners */
.partner-logos-container {
  width: 100%;
  padding: 28px 42px;
  margin-top: 60px;
  background-color: #ffffff;
  border-radius: 32px;
}

.partner-logos-container .title {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 16px;
  color: #31374D;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .partner-logos-container {
    padding: 25px;
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .logos-wrapper {
    display: flex;
      flex-direction: row;
      justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .partner-logos-container .partner-logos {
    flex-direction: column;
  }
}

.partner-logos-container .partner-logos .partner-logo {
  margin-left: 10px;
  height: auto;
  width: 111px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo .img-fluid {
  max-width: 100%;
  height: auto;
}

/* testimonials */

.mobile-header {
  color: #30384D;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  margin: 50px 0 30px 0;
  padding: 0 30px;
}

.students-testimonial-section {
  width: 100%;
  gap: 32px;
  margin-top: 86px;
  color: #30384D;
}

.students-testimonial {
  width: 100%;
  background-color: #F3F4FA;
  padding: 44px 150px 60px 150px;
}

@media screen and (max-width: 1500px) {
  .students-testimonial {
    padding: 44px 100px 60px 100px;
  }
}

@media screen and (max-width: 991.98px) {
  .students-testimonial {
    flex-direction: column;
    padding: 44px 20px 60px 20px;
  }
}

.testimonials-row {
  gap: 40px;
  width: 100%;
  margin-top: 80px;
}

@media screen and (max-width: 1200px) {
  .testimonials-row {
    margin-top: 40px;
  }
}

.quote-start {
  position: absolute;
  left: 30px;
  top: 150px;
}

.quote-end {
  position: absolute;
  right: 30px;
  bottom: 15px;
}

.testimonial-item {
  flex: 1;
}

.testimonial-item .title {
  font-size: 24px;
  font-weight: 700;
  color: #30384D;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .testimonial-item .title {
    font-size: 20px;
  }
}

@media screen and (max-width: 767.98px) {
  .testimonial-item .title {
    font-size: 18px;
  }
}

.testimonial-item .description {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 30px;
}

@media screen and (max-width: 1200px) {
  .testimonial-item .description {
    font-size: 18px;
    line-height: 28px;
  }
}

@media screen and (max-width: 767.98px) {
  .testimonial-item .description {
    font-size: 17px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767.98px) {
  .testimonial-item {
    align-self: center;
    height: 100%;
  }
}

.user-card {
  padding: 15px;
  border-radius: 90px;
  background-color: #ffffff;
  margin-top: auto;
}

.user-card img {
  border-radius: 100%;
  width: 75px;
  height: 75px;
}

.user-card .name {
  font-weight: 700;
  font-size: 18px;
}

@media screen and (max-width: 1200px) {
  .user-card {
    padding: 10px;
  }

  .user-card img {
    width: 55px;
    height: 55px;
  }

  .user-card .name {
    font-size: 16px;
  }
}

.user-card .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  margin-top: 5px;
  padding-right: 10px;
}

@media screen and (max-width: 1200px) {
  .user-card .description {
    font-size: 14px;
  }
}

@media screen and (max-width: 767.98px) {
  .user-card {
    margin-top: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .students-testimonial-section {
    padding: 0 20px;
    margin-top: 0;
  }

  .students-testimonial {
    border-radius: 32px;
    background: #F3F4F9;
    box-shadow: 9px 9px 12px 0px rgba(0, 0, 0, 0.15);
    padding: 40px 30px;
    position: relative;
  }

  .students-testimonial .mobile-quote {
    position: absolute;
    left: 15px;
    top: 20px;
  }

  .students-testimonial .arrow-left {
    position: absolute;
    left: 10px;
    z-index: 10;
  }

  .students-testimonial .arrow-right {
    position: absolute;
    right: 10px;
    z-index: 10;
  }
}

/* faq section */

.header {
  color: #354FA9;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: 116.1%;
}

@media (max-width: 1400px) {
  .header {
    font-size: 30px;
  }
}

@media screen and (max-width: 992px) {
  .header {
    font-size: 22px;
  }
}

.questions-list {
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 1086px;
  width: 100%;
}

.questions-list .question-item-main {
  cursor: pointer;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 12px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  background-color: #D9D9D9;
}

@media (max-width: 1080px) {
  .questions-list .question-item-main {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    height: 65px;
  }
}

.questions-list .question-item .question-item-number {
  background: #354FA9;
  border-radius: 50%;
  padding: 5px;
  border: 5px solid #ffffff;
  width: 50px;
  height: 50px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  color: #FFFFFF;
  margin-right: 13px;
}

@media (max-width: 1080px) {
  .questions-list .question-item .question-item-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-left: -15px;
  }
}

.questions-list .question-item .question-item-name {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  color: #595E71;
  flex: 100%;
}

@media (max-width: 1080px) {
  .questions-list .question-item .question-item-name {
    font-size: 16px;
  }
}

.questions-list .question-item .question-item-description {
  margin-top: 0;
  margin-bottom: 22px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #595E71;
  padding: 0 48px;
  display: none;
}

@media (max-width: 1080px) {
  .questions-list {
    padding-left: 10px;
  }
}

/* footer */
footer {
  background: #31374D;
  padding: 26px 80px;
}

.link {
  text-decoration: none;
  color: #FFFFFF;
}

.link:hover {
  color: #F4F4F4;
}

.copyright {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  color: #FFFFFF;
}

@media screen and (max-width: 575.98px) {
  .copyright {
    font-size: 12px;
  }
}


.trustpilot-widget {
  margin-top: 40px;

  @media screen and (min-width: 767.98px) {
    position: relative;
    left: -15px;
  }
}
