@charset "UTF-8";
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open:after {
  transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

html {
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
}
@media (max-width: 1199px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 359px) {
  html {
    font-size: 15px;
  }
}

@font-face {
  font-family: "Avenir";
  src: url("http://3.29.189.168/pluginfile.php/1/theme_mb2nl/cfontfiles1/0/0078f486-8e52-42c0-ad81-3c8d3d43f48e.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "Avenir";
  src: url("http://3.29.189.168/pluginfile.php/1/theme_mb2nl/cfontfiles1/0/065a6b14-b2cc-446e-9428-271c570df0d9.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Avenir";
  src: url("http://3.29.189.168/pluginfile.php/1/theme_mb2nl/cfontfiles1/0/b290e775-e0f9-4980-914b-a4c32a5e3e36.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Avenir";
  src: url("http://3.29.189.168/pluginfile.php/1/theme_mb2nl/cfontfiles1/0/17b90ef5-b63f-457b-a981-503bb7afe3c0.woff2") format("woff2");
  font-weight: 600;
}
@font-face {
  font-family: "Avenir";
  src: url("http://3.29.189.168/pluginfile.php/1/theme_mb2nl/cfontfiles1/0/d513e15e-8f35-4129-ad05-481815e52625.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Fraunces";
  src: url("http://3.29.189.168/pluginfile.php/1/theme_mb2nl/cfontfiles3/0/Fraunces9pt-Bold.woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Fraunces";
  src: url("http://3.29.189.168/pluginfile.php/1/theme_mb2nl/cfontfiles2/0/Fraunces9pt-Regular.woff2");
  font-weight: 400;
}
h1 {
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

:root {
  --nav-height: 6.25rem;
  --body-padding-x: 1.875rem;
}

@media (max-width: 991px) {
  :root {
    --body-padding-x: 1.5rem;
  }
}
body {
  margin: 0;
  font-family: "Avenir";
}
body.open {
  overflow: hidden;
}

strong {
  font-family: "Fraunces";
  font-weight: 700;
}

.container {
  max-width: 67.1875rem;
  margin: auto;
  padding: 0 var(--body-padding-x);
}

.header-logo img {
  width: 187px;
}
@media (max-width: 767px) {
  .header-logo img {
    width: 130px;
  }
}

.header-flex {
  padding-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  height: var(--nav-height);
  align-items: center;
}

.close {
  display: none;
}

@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    z-index: 100;
    align-items: center;
    justify-content: start;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
}
@media (max-width: 991px) and (max-height: 700px) {
  .header-nav {
    align-items: start;
    padding-top: 50px;
    overflow: auto;
    padding-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .header-nav > ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: start;
    padding-left: 32px;
  }
  .header-nav > ul > li {
    border-left: 0;
    border-bottom: solid 1px #fff;
  }
  .header-nav > ul > li::before {
    display: none;
  }
  .header-nav .dropdown {
    display: block;
    border-bottom: 0;
  }
  .header-nav .dropdown::after,
  .header-nav .dropdown > a {
    display: none;
  }
  .header-nav .close {
    position: fixed;
    right: 24px;
    top: 38px;
    background: transparent;
    border: 0;
    display: block;
  }
  .header-nav .dropdown-menu {
    opacity: 1;
    visibility: visible;
    background: transparent;
    width: 100%;
    border: 0;
    margin: 0;
    transition: 0s !important;
    transition-delay: 0s !important;
    position: relative;
    gap: 32px;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .header-nav .dropdown-menu > li {
    padding: 0;
    border-bottom: solid 1px #fff;
    width: auto;
  }
  .header-nav a {
    color: #fff;
    font-size: 32px;
  }
  .open .header-nav {
    display: flex;
  }
}
header {
  border-bottom: solid 1px #000;
}
@media (max-width: 767px) {
  header {
    border: 0;
  }
}
header .nav-trigger {
  display: none;
}
header .nav-trigger button {
  background: transparent;
  border: 0;
}
@media (max-width: 991px) {
  header .nav-trigger {
    display: block;
  }
}
@media (max-width: 991px) {
  header nav {
    display: none;
  }
}
header nav > ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 1.25rem;
  align-items: center;
}
header nav > ul > li {
  display: flex;
  align-items: center;
}
header nav > ul > li::before {
  content: "";
  width: 1px;
  height: 1.1875rem;
  background: #000;
  display: inline-block;
  margin-right: 1.25rem;
}
header nav > ul > li:first-child::before {
  display: none;
}
header nav > ul > li.dropdown::after {
  content: "";
  width: 0.4375rem;
  display: inline-block;
  height: 0.4375rem;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  margin-left: 0.625rem;
}
header nav > ul > li a {
  text-decoration: none;
  color: #000;
  font-size: 1.0625rem;
  font-weight: bold;
}

.btn {
  background: #000;
  color: #fff;
  border-radius: 0;
  padding: 0.375rem 0.8125rem;
  cursor: pointer;
  border: solid 1px #000;
  text-decoration: none;
}

.hero {
  display: flex;
  align-items: stretch;
  border-bottom: solid 1px #000;
}
@media (max-width: 767px) {
  .hero {
    flex-wrap: wrap;
    border-bottom: 0;
  }
}

.hero-image {
  position: relative;
  max-height: 700px;
  width: 50%;
}
@media (max-width: 1400px) {
  .hero-image {
    width: 65%;
  }
}
@media (max-width: 991px) {
  .hero-image {
    width: 50%;
  }
  .hero-image img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .hero-image {
    width: 100%;
    padding: 0 var(--body-padding-x) 0;
    height: 102vw;
  }
}
.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-text {
  margin-top: 1rem;
  width: 20.625rem;
}
@media (max-width: 767px) {
  .hero-text {
    width: 100%;
    margin-top: 0;
  }
}
.hero-text p {
  font-size: 1rem;
  margin-top: 0.875rem;
  line-height: 1.2;
  font-weight: 600;
}

.hero-btns {
  display: flex;
  flex-direction: column;
}

.hero-btn {
  text-decoration: none;
}

@media (max-width: 767px) {
  .btn {
    font-size: 18px;
    height: 41px;
    width: 180px;
  }
}
.hero-texts {
  width: 50%;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding: 1.875rem 3.625rem;
}
@media (max-width: 1400px) {
  .hero-texts {
    width: 35%;
  }
}
@media (max-width: 991px) {
  .hero-texts {
    width: 50%;
    padding: var(--body-padding-x) var(--body-padding-x);
  }
}
@media (max-width: 767px) {
  .hero-texts {
    width: 100%;
  }
}

.hero-source {
  position: absolute;
  bottom: 1.375rem;
  color: #fff;
  padding-left: 6.25rem;
  font-style: italic;
}
.hero-source::after {
  content: "";
  width: 100%;
  display: block;
  border-bottom: solid 1px #fff;
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  .hero-source {
    font-size: 10px;
    padding-left: 0.9375rem;
    bottom: 1.375rem;
  }
}

.hero-title {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  margin: 0;
  padding-bottom: 0.875rem;
  font-size: 2.0625rem;
  line-height: 1;
  letter-spacing: -0.5px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-sertificate {
  align-self: flex-end;
  display: flex;
  width: 100%;
  margin-top: 0.625rem;
}
.hero-sertificate p {
  width: 100%;
  margin-right: 1.1875rem;
  border-bottom: 1px #000 solid;
  margin-bottom: 1.0625rem;
  font-size: 0.75rem;
  max-width: 16.875rem;
}
@media (max-width: 767px) {
  .hero-sertificate p {
    margin-bottom: 8px;
    padding-bottom: 8px;
    width: auto;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 767px) {
  .hero-sertificate {
    margin-top: 48px;
    align-items: end;
  }
}
@media (max-width: 575px) {
  .hero-sertificate {
    width: 100%;
    justify-content: space-between;
  }
}

.hero-btn-lg {
  width: 12.1875rem;
  height: 2.625rem;
  font-size: 1.3125rem;
  text-align: left;
  margin-top: 0.6875rem;
  text-decoration: none;
  white-space: nowarp;
}
@media (max-width: 767px) {
  .hero-btn-lg {
    font-size: 1.125rem;
  }
}

.courses {
  padding-top: 2.25rem;
}

.courses-filters {
  display: flex;
  margin-bottom: 3.75rem;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .courses-filters {
    flex-direction: column;
    gap: 0.9375rem;
    margin-bottom: 38px;
  }
}

.courses-title {
  font-size: 2.0625rem;
  font-weight: 400;
  margin-top: 1.3125rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .courses-title {
    font-size: 24px;
    margin-top: 0;
  }
  .courses-title br {
    display: none;
  }
}
.courses-title strong {
  font-weight: 600;
}

.courses-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: normal;
}
@media (max-width: 767px) {
  .courses-subtitle {
    margin-top: 40px;
    font-size: 20px;
  }
}

.courses-items {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.courses-filter {
  width: 100%;
}
.courses-filter label {
  font-size: 1.3125rem;
  display: block;
  margin-top: 0.75rem;
  letter-spacing: -0.4px;
  margin-bottom: 0.4375rem;
}
@media (max-width: 767px) {
  .courses-filter label {
    font-size: 16px;
  }
}
.courses-filter select {
  width: 100%;
  height: 3rem;
}

.coursesItem a {
  text-decoration: none;
  color: inherit;
}

.coursesItem-text {
  height: 105px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .coursesItem-text {
    height: auto;
  }
}

.coursesItem-title {
  font-size: 1.3125rem;
  line-height: 1;
  margin-top: 0.1875rem;
  font-weight: 600;
}

.coursesItem-positon {
  font-size: 1.25rem;
  font-family: "Fraunces";
  font-weight: 700;
  line-height: 1;
}

.coursesItem-description {
  margin-top: 0.5625rem;
  font-size: 0.625rem;
  line-height: 1.4;
}

.coursesItem {
  width: 33.3333333%;
  padding: 0.6875rem 0.75rem 0.625rem 0.75rem;
}
@media (max-width: 991px) {
  .coursesItem {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .coursesItem {
    width: 100%;
  }
}

.coursesItem-box {
  border: solid 1px #000;
}

.coursesItem-body {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1rem 1rem 1rem;
}

.coursesItem-image {
  min-width: 100px;
}
.coursesItem-image img {
  display: block;
  max-width: 100%;
}

.coursesItem-footer {
  height: 2.6875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #57698e;
  color: #fff;
  font-size: 1.25rem;
}
.disable .coursesItem-footer {
  background: #67706a;
}
@media (max-width: 767px) {
  .coursesItem-footer {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.property {
  background: #e6e7e8;
  padding: 2.375rem 0;
  margin-top: 4.625rem;
  padding-bottom: 3.625rem;
}
@media (max-width: 767px) {
  .property {
    padding-bottom: 24px;
  }
}

.property-item {
  position: relative;
  padding: 0 2.5rem;
  font-size: 1.625rem;
  line-height: 1.3;
  padding-top: 1.125rem;
  padding-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .property-item {
    width: 100% !important;
    padding: 1rem 0 !important;
    font-size: 24px;
  }
}
.property-item:nth-child(1) {
  width: 32.5%;
}
.property-item:nth-child(2) {
  letter-spacing: -0.5px;
  padding: 0 2.125rem;
  width: 32.5%;
}
@media (max-width: 767px) {
  .property-item:nth-child(2) {
    width: 100%;
  }
}
.property-item:nth-child(3) {
  padding-right: 0rem;
  width: 35%;
}
.property-item:last-child::after {
  display: none;
}
.property-item::after {
  right: 0;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
}
@media (max-width: 767px) {
  .property-item::after {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
  }
}

.property-flex {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .property-flex {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.property-item {
  display: flex;
  align-items: center;
}

.problem {
  padding: 1.5rem 0;
}

.problem-flex {
  display: flex;
}
@media (max-width: 767px) {
  .problem-flex {
    flex-wrap: wrap;
  }
}

.problem-image {
  width: 50%;
}
@media (max-width: 767px) {
  .problem-image {
    width: 100%;
  }
}
.problem-image img {
  width: 100%;
  display: block;
}

.problem-text {
  width: 50%;
}

.problemItem {
  display: flex;
  width: 50%;
}
@media (max-width: 767px) {
  .problemItem {
    width: 100%;
  }
}

.problem-text {
  width: 50%;
}
@media (max-width: 767px) {
  .problem-text {
    width: 100%;
  }
}

.problemItem-icon img {
  width: 2.75rem;
}

.problemItem-description {
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: -0.3px;
}
@media (max-width: 767px) {
  .problemItem-description {
    font-size: 16px;
    margin-top: 16px;
    line-height: 1.3;
  }
}
.problemItem-description strong {
  font-size: 1.1125rem;
  margin-top: 0.875rem;
  display: block;
}
@media (max-width: 767px) {
  .problemItem-description strong {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .problemItem-description {
    margin-left: -3.125rem;
  }
}

.problemItem-text-problem .problemItem-icon {
  padding-right: 1.25rem;
}
@media (max-width: 767px) {
  .problemItem-text-problem .problemItem-icon {
    padding-right: 0.75rem;
  }
}
@media (max-width: 767px) {
  .problemItem-text-problem .problemItem-icon img {
    width: 38px;
  }
}

.problemItem-text {
  display: flex;
  padding: 1.1875rem 1.3125rem;
}
@media (max-width: 767px) {
  .problemItem-text {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 24px;
  }
}

.problemItem-title {
  margin-bottom: 1.875rem;
  font-size: 2.0625rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .problemItem-title {
    font-size: 24px;
    margin-bottom: 0;
    margin-top: 6px;
  }
}

.problem-flex {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  padding: 3.25rem 0 3.125rem 0;
}
@media (max-width: 767px) {
  .problem-flex {
    padding: 2.75rem 0 1.5rem 0;
  }
}

.problemItem-icon-part {
  margin-left: 0;
}
.problemItem-icon-part img {
  margin-left: 1.875rem;
  margin-right: 0.625rem;
}
@media (max-width: 767px) {
  .problemItem-icon-part img {
    margin-left: 0;
    margin-right: 0.75rem;
    width: 2.375rem;
  }
}

.problemItem-text-mission .problemItem-description {
  padding-right: 0.625rem;
}
.problemItem-text-mission img {
  margin-right: 1.5625rem;
  margin-left: -0.6875rem;
  width: 2.375rem;
}
@media (max-width: 767px) {
  .problemItem-text-mission img {
    margin-left: 0;
    margin-right: 0.75rem;
    width: 2.375rem;
  }
}

.mission-flex {
  display: flex;
  padding: 3.5625rem 0;
  flex-wrap: wrap;
}
.mission-flex .problemItem-text {
  padding-top: 2.0625rem;
}
@media (max-width: 767px) {
  .mission-flex .problemItem-text {
    padding-top: 24px;
  }
}
@media (max-width: 767px) {
  .mission-flex {
    padding: 0;
  }
}
.mission-flex .problemItem {
  position: relative;
}
.mission-flex .problemItem::after {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .mission-flex .problemItem::after {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
  }
}
.mission-flex .problemItem:last-child::after {
  display: none;
}

.why {
  background: #e6e7e8;
  padding: 3.125rem 0 2.5rem;
  margin-top: 0.625rem;
}
@media (max-width: 767px) {
  .why {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.why-source {
  font-size: 0.7625rem;
  font-style: italic;
  margin-left: 0.4375rem;
  margin-top: 0.6875rem;
  color: #000;
}

.why-flex {
  display: flex;
}
@media (max-width: 767px) {
  .why-flex {
    flex-wrap: wrap;
  }
}

.why-image {
  width: 50%;
}
.why-image img {
  width: 100%;
}
@media (max-width: 767px) {
  .why-image {
    width: 100%;
  }
  .why-image img {
    width: 100%;
  }
}

.why-text {
  width: 50%;
  padding-left: 6.5625rem;
}
@media (max-width: 767px) {
  .why-text {
    width: 100%;
    padding-left: 0;
  }
}

.why-title {
  font-size: 3.5rem;
  line-height: 1;
  margin-top: 2.4375rem;
  position: relative;
}
@media (max-width: 767px) {
  .why-title {
    line-height: 0;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .why-title {
    padding-left: 40px;
    font-size: 2.5rem;
  }
}
.why-title small {
  font-size: 1.9375rem;
  display: block;
  margin-top: -0.1875rem;
  line-height: 1.1;
  font-weight: 400;
  font-family: "Avenir";
}
@media (max-width: 767px) {
  .why-title small {
    display: inline;
  }
}
.why-title::after {
  content: "[";
  position: absolute;
  top: 50%;
  font-size: 12.125rem;
  font-weight: 600;
  right: 100%;
  transform: translateY(-50%);
  margin-top: -0.25rem;
  margin-right: -0.75rem;
}
@media (max-width: 767px) {
  .why-title::after {
    content: "";
    width: 50px;
    height: 118px;
    background-image: url("data:image/svg+xml,%3Csvg width='50' height='118' viewBox='0 0 50 118' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 118H50V101.491H19.3989V16.5088H50V0H0V118Z' fill='black'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    left: 0;
  }
}

.why-description {
  margin-top: 2.5rem;
  max-width: 18.4375rem;
  line-height: 1.55;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .why-description {
    max-width: -moz-fit-content;
    max-width: fit-content;
    font-size: 16px;
  }
}

.why-sub-description {
  font-size: 1.09375rem;
  margin-top: 1.25rem;
  max-width: 15.625rem;
  letter-spacing: 0rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .why-sub-description {
    max-width: -moz-fit-content;
    max-width: fit-content;
    font-size: 16px;
  }
}

.testimonials {
  overflow: hidden;
  position: relative;
  padding: 5.625rem 0 3.125rem 0;
  margin-top: 5.4375rem;
}
@media (max-width: 767px) {
  .testimonials {
    padding-top: 0;
    margin-top: 80px;
    padding-bottom: 20px;
  }
}

.testimonials-overflow {
  overflow: hidden;
  padding-bottom: 1.75rem;
}

.testimonials-carousel {
  width: 21.5625rem;
  margin-right: 60%;
  margin-left: 40%;
  padding-left: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .testimonials-carousel {
    margin-left: 0;
  }
}
.testimonials-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.testimonials-carousel .owl-dots {
  display: none;
}
.testimonials-carousel .owl-item {
  float: none;
}
.testimonials-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonials-name {
  display: block;
  font-style: italic;
  margin-top: 0.9375rem;
}

.testimonials-title {
  display: block;
  margin-top: 0.125rem;
  font-size: 12px;
}

.testimonials-company {
  display: block;
  margin-top: 0.125rem;
  font-size: 12px;
}

.testimonials-course {
  display: block;
  margin-top: 0.75rem;
  font-size: 12px;
  color: #aaaaaa;
  letter-spacing: -0.5px;
  word-spacing: -0.5px;
}

.owl-nav {
  gap: 15px;
  display: flex;
}
.owl-nav img {
  width: 10px;
  height: 16px;
}
.owl-nav img.left {
  transform: rotate(-180deg);
}
.owl-nav .disabled img {
  opacity: 0.5;
}

.testimonials-item {
  margin: auto;
  background: #fff;
  height: 100%;
  padding: 1rem 2.375rem;
  font-size: 0.875rem;
  border: solid 1px #000;
  display: flex;
  align-items: center;
  height: 235px;
}
.testimonials-item p {
  margin: 0;
}
@media (max-width: 767px) {
  .testimonials-item {
    height: 100% !important;
    padding: 1.5rem;
  }
  .testimonials-item p {
    width: calc(100vw - 100px) !important;
  }
}

.testimonialsBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
@media (max-width: 767px) {
  .testimonialsBg {
    position: static;
    z-index: -4;
  }
}
.testimonialsBg-icon {
  width: 13.1875rem;
}
@media (max-width: 767px) {
  .testimonialsBg-icon {
    width: 2.5rem;
  }
}

.owl-nav {
  position: absolute;
  left: -16.5rem;
  font-size: 3.4375rem;
  bottom: -2.625rem;
}
@media (max-width: 767px) {
  .owl-nav {
    display: none;
  }
}

.testimonialsBg-title {
  font-size: 2.1875rem;
  margin-top: 3.1875rem;
  letter-spacing: -0.3px;
}
@media (max-width: 767px) {
  .testimonialsBg-title {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 32px;
  }
}

.testimonialsBg-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .testimonialsBg-img {
    left: 0;
    transform: none;
    width: 100%;
    bottom: 0;
    top: auto;
  }
}

.testimonialsBg-text {
  font-size: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -21.75rem;
  z-index: 10;
}
@media (max-width: 767px) {
  .testimonialsBg-text {
    position: relative;
    left: auto;
    transform: none;
    margin: 0;
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 5rem;
    width: 100%;
    justify-content: space-between;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    margin-top: 0rem;
  }
}

.from-sea-to-shoe {
  padding-top: 5.625rem;
  padding-bottom: 4.3125rem;
}
.from-sea-to-shoe img {
  width: 100%;
}
@media (max-width: 767px) {
  .from-sea-to-shoe img {
    aspect-ratio: 1.2214285714;
  }
}

.from-sea-to-shoe_source {
  font-size: 0.7625rem;
  font-style: italic;
  margin-left: 0.4375rem;
  margin-top: 0.6875rem;
  color: #000;
}

#FAQs {
  padding-top: 50px;
  margin-top: -50px;
}

.questions-flex {
  display: flex;
  margin-bottom: 1.5625rem;
}
@media (max-width: 767px) {
  .questions-flex {
    flex-wrap: wrap;
  }
}

.questions-text {
  width: 40%;
  border-right: solid 1px #000;
  margin-top: -0.875rem;
  line-height: 1.1;
  letter-spacing: 0.2px;
  padding-left: 0.1875rem;
}
@media (max-width: 767px) {
  .questions-text {
    justify-content: space-between;
    width: 100%;
    border-right: 0;
    display: flex;
  }
}
.questions-text img {
  width: 20.625rem;
  margin-top: 3.75rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  .questions-text img {
    padding-right: 1.875rem;
  }
}
@media (max-width: 767px) {
  .questions-text img {
    width: 3rem;
    margin-top: 0;
  }
}

.questions-title {
  font-size: 2.0625rem;
  max-width: 18.75rem;
}
@media (max-width: 767px) {
  .questions-title {
    font-size: 24px;
  }
}

.questions-items {
  width: 60%;
  padding-left: 2.375rem;
}
@media (max-width: 767px) {
  .questions-items {
    padding-top: 40px;
    width: 100%;
    padding-left: 0;
  }
}

.questions-header {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  padding-bottom: 0.9375rem;
}
@media (max-width: 767px) {
  .questions-header {
    font-size: 16px;
  }
}

.questions-trigger {
  min-width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: solid 1px #000;
  margin-left: 1.5rem;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-size: 30px;
  font-weight: 300;
  line-height: 0;
}
@media (max-width: 767px) {
  .questions-trigger {
    min-width: 2rem;
    height: 32px;
    min-height: 32px;
    max-height: 32px;
    font-size: 24px;
    margin-left: 4px;
    margin-top: 8px;
  }
}
.questions-trigger::after {
  content: "+";
}
.open .questions-trigger {
  background: #000;
  color: #fff;
}
.open .questions-trigger::after {
  content: "-";
}

.questions-body {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .questions-body {
    margin-right: -36px;
  }
}

.questions-item {
  padding: 0 0 1.375rem 0;
  margin-bottom: 2.5rem;
  border-bottom: solid 1px #000;
  display: flex;
  justify-content: space-between;
}
.questions-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.ways {
  background: #e6e7e8;
  padding: 1rem 0 4rem 0;
}

.ways-items {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto;
  -moz-column-gap: 4.75rem;
       column-gap: 4.75rem;
  row-gap: 0;
  position: relative;
}
@media (max-width: 992px) {
  .ways-items {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto auto;
  }
}
@media (max-width: 767px) {
  .ways-items {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto;
  }
}

.waysItem:nth-child(3)::before {
  display: none;
}
@media (max-width: 991px) and (min-width: 768px) {
  .waysItem:nth-child(3)::before {
    display: block;
  }
}
.waysItem:nth-child(3)::before, .waysItem:first-child::before {
  content: "";
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 1015px;
  bottom: -30px;
  left: 0;
  top: auto;
  transform: translateY(0.9375rem);
}
@media (max-width: 1199px) {
  .waysItem:nth-child(3)::before, .waysItem:first-child::before {
    width: 950px;
  }
}
@media (max-width: 991px) {
  .waysItem:nth-child(3)::before, .waysItem:first-child::before {
    width: calc(100vw - 48px);
  }
}
@media (max-width: 767px) {
  .waysItem:nth-child(3)::before, .waysItem:first-child::before {
    display: none;
  }
}

.ways-title {
  padding-left: 0rem;
}

.ways-title-h3 {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.1;
  margin-top: 1.125rem;
  letter-spacing: 0.7px;
  margin-left: 0.25rem;
}
.ways-title-h3 span {
  font-weight: normal;
}
.ways-title-h3 strong {
  display: block;
}

.waysItem {
  position: relative;
  margin: 2.8125rem 0;
  display: flex;
  padding-top: 0.625rem;
}
@media (max-width: 767px) {
  .waysItem {
    margin: 1.5rem 0;
    padding-top: 0;
  }
}
.waysItem::after {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.waysItem::after {
  width: 1px;
  height: 100%;
  right: -2.375rem;
  top: 0;
}
@media (max-width: 767px) {
  .waysItem::after {
    right: 0;
    top: auto;
    bottom: -1.5rem;
    width: 100%;
    height: 1px;
  }
}
@media (min-width: 768px) {
  .waysItem:nth-child(3n+3)::after {
    display: none;
  }
}
@media (min-width: 768px) {
  .waysItem:nth-last-child(-n+3)::before {
    display: none;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .waysItem:nth-child(3)::after {
    display: block;
  }
  .waysItem:nth-child(2)::after {
    display: none;
  }
  .waysItem:nth-child(4)::after {
    display: none;
  }
}

.waysItem-title {
  margin-bottom: 14px;
  margin-top: 0;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
}

.waysItem-description {
  padding-left: 58px;
  font-size: 14px;
}
@media (max-width: 991px) {
  .waysItem-description {
    padding-left: 50px;
  }
}

.waysItem-icon {
  margin-right: 1rem;
}
.waysItem-icon img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .waysItem-icon img {
    width: 32px;
  }
}

.letsTalk {
  padding-bottom: 2.875rem;
  padding-top: 2.375rem;
}
@media (max-width: 767px) {
  .letsTalk {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.letsTalk-description {
  font-size: 14px;
  padding-left: 10px;
}
@media (max-width: 767px) {
  .letsTalk-description {
    margin-top: 16px;
    padding-left: 2px;
  }
}

.thinkYou a,
.letsTalk a {
  color: #000;
  text-decoration: none;
}

.letsTalk-title {
  font-size: 8.125rem;
  display: flex;
  justify-content: space-between;
  line-height: 1.15;
}
@media (max-width: 767px) {
  .letsTalk-title {
    font-size: 43px;
  }
}
.letsTalk-title img {
  width: 5.9375rem;
}
@media (max-width: 767px) {
  .letsTalk-title img {
    width: 2.8125rem;
  }
}

.courseDetails .form-submit {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .courseDetails .hero-image {
    height: 78vw;
  }
}
.courseDetails .team {
  margin-top: 80px;
  margin-bottom: 10px;
}
.courseDetails .team-items {
  border: 0;
}

.CourseDescirption {
  padding-top: 3.75rem;
}
.CourseDescirption .container .custom-border {
  position: relative;
  padding: 1.875rem 3.125rem;
  max-width: 54.375rem;
  margin: auto;
  font-size: 1.1875rem;
}
@media (max-width: 767px) {
  .CourseDescirption .container .custom-border {
    padding: 21px 28px;
    margin-right: -15px;
    margin-left: -15px;
  }
}
.CourseDescirption .container .custom-border p {
  margin: 0;
}
.CourseDescirption .container .custom-border:before, .CourseDescirption .container .custom-border:after {
  content: "";
  position: absolute;
  width: 0.9375rem;
  height: 100%;
  background: #000;
  top: 0;
}
.CourseDescirption .container .custom-border:before {
  left: 0;
}
.CourseDescirption .container .custom-border:after {
  right: 0;
}

.CourseDescirption-content {
  font-weight: 600;
}
@media (max-width: 767px) {
  .CourseDescirption-content {
    font-size: 16px;
  }
}
.CourseDescirption-content:before, .CourseDescirption-content:after {
  content: "";
  width: 2.0625rem;
  height: 0.8125rem;
  background: #000;
  right: 0;
  position: absolute;
}
.CourseDescirption-content:before {
  top: 0;
}
.CourseDescirption-content::after {
  bottom: 0;
}

.badges {
  display: flex;
  gap: 8px;
  justify-content: start;
  margin-top: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.badges .badge {
  width: 48px;
}
@media (max-width: 767px) {
  .badges .badge {
    width: 42px;
  }
}
.badges .badge img {
  width: 100%;
}

.learn {
  background: #e6e7e8;
  padding-top: 2.9375rem;
  margin-top: 3.8125rem;
  padding-bottom: 2.5rem;
}

.learn-title {
  font-size: 2.0625rem;
  font-weight: normal;
  margin-top: 0;
  line-height: 1;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .learn-title {
    font-size: 24px;
  }
}

.learn-items {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .learn-items {
    flex-direction: column;
  }
}
.learn-items .learn-item {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
  position: relative;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .learn-items .learn-item {
    width: 100%;
    font-size: 18px;
  }
}
.learn-items .learn-item img {
  width: 2.8125rem;
  height: 2.8125rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .learn-items .learn-item img {
    width: 2rem;
    height: 2rem;
  }
}
.learn-items .learn-item::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 1px;
  background: #000;
  bottom: 0;
  left: 0;
}
.learn-items .learn-item:last-child::after {
  display: none;
}

.courseFaq {
  padding-top: 4.375rem;
  padding-bottom: 2.6875rem;
}

.courseFaq-trigger {
  min-width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: solid 1px #000;
  margin-left: 1.5rem;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-size: 24px;
}
@media (max-width: 767px) {
  .courseFaq-trigger {
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    margin-left: 4px;
    margin-top: 8px;
  }
}
.courseFaq-trigger::after {
  content: "+";
}
.open .courseFaq-trigger {
  background: #000;
  color: #fff;
}
.open .courseFaq-trigger::after {
  content: "-";
}

.courseFaq-flex {
  display: flex;
}
@media (max-width: 767px) {
  .courseFaq-flex {
    flex-wrap: wrap;
  }
}

.courseFaq-flex {
  display: flex;
  justify-content: space-between;
}

.courseFaq-title {
  width: 40%;
}
.courseFaq-title img {
  width: 10.25rem;
}
@media (max-width: 991px) {
  .courseFaq-title {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .courseFaq-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  .courseFaq-title h3 {
    font-size: 28px;
  }
  .courseFaq-title img {
    width: 35px;
  }
}
.courseFaq-title h3 {
  font-size: 2.0625rem;
  font-weight: normal;
  line-height: 0.3;
  margin: 0;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .courseFaq-title h3 {
    line-height: 1;
    margin-bottom: 0;
  }
}

.courseFaq-items {
  width: 60%;
  padding-left: 1.375rem;
  border-left: solid 0.125rem #b4b4b4;
}
@media (max-width: 991px) {
  .courseFaq-items {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .courseFaq-items {
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }
}

.courseFaq-item {
  border-bottom: 1px #888888 solid;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.courseFaq-item:first-child {
  padding-top: 0rem;
  margin-top: -0.625rem;
}
.courseFaq-item:last-child {
  border-bottom: 0;
}

.courseFaq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.courseFaq-header h4 {
  margin: 0;
}

.courseFaq-body {
  padding-right: 5rem;
  font-size: 0.78125rem;
  line-height: 1.3;
  padding: 0.625rem 0;
  padding-right: 3.125rem;
}
@media (max-width: 767px) {
  .courseFaq-body {
    padding-right: 0;
    font-size: 14px;
  }
}

.form {
  background: #e6e7e8;
  padding-top: 3.5rem;
  padding-bottom: 5.625rem;
}

.form-title {
  font-size: 2.0625rem;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .form-title {
    font-size: 28px;
  }
}

.form-description {
  margin-bottom: 3.1875rem;
  margin-top: 1.3125rem;
  font-size: 0.96875rem;
}

.form-flex {
  display: flex;
  gap: 3.375rem;
}
@media (max-width: 767px) {
  .form-flex {
    flex-direction: column;
    gap: 16px;
  }
}

.form-group {
  width: 100%;
}

.form-controller {
  width: 100%;
  height: 3.25rem;
  padding-left: 1.625rem;
  border: 0;
  background: #fff;
}

.form-radio {
  margin-top: 3.875rem;
  margin-bottom: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media (max-width: 767px) {
  .form-radio {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .form-radio {
    gap: 0.625rem;
  }
}

.form-submit {
  text-align: center;
}
.form-submit .btn {
  width: 11.875rem;
  height: 2.5625rem;
  font-size: 1.3125rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .form-submit .btn {
    width: 100%;
    height: 48px;
    font-size: 18px;
  }
}

[type=radio] {
  opacity: 0;
  position: absolute;
}

[type=radio] + label {
  margin-left: 2.8125rem;
  position: relative;
  /* font-weight: 500; */
  cursor: pointer;
  font-size: 1rem;
  padding-left: 1.4375rem;
}
@media (max-width: 767px) {
  [type=radio] + label {
    padding-left: 0.5rem;
    margin-left: 1.375rem;
    font-size: 1rem;
  }
}

[type=radio] + label::after {
  margin-left: -2.8125rem;
  content: "";
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: block;
  position: absolute;
  width: 2.5625rem;
  height: 2.5625rem;
  border-radius: 50%;
  background: #fff;
}
@media (max-width: 767px) {
  [type=radio] + label::after {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: -1.375rem;
  }
}

[type=radio] + label::before {
  content: "";
  margin-left: -2.75rem;
  left: 0.625rem;
  top: 50%;
  transform: translate(0, -50%);
  display: block;
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #000000;
  opacity: 0;
  transition: 0.3s ease-in-out;
  z-index: 1;
}
@media (max-width: 767px) {
  [type=radio] + label::before {
    width: 1rem;
    height: 1rem;
    left: 0.3125rem;
    margin-left: -1.4375rem;
  }
}

[type=radio]:checked + label::before {
  opacity: 1;
}

[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: bottom;
  cursor: pointer;
}

.footer {
  background: #000;
  color: #fff;
}

.footer .left-list a {
  color: #fff;
  text-decoration: none;
}

.footer .left-list {
  width: calc(50% - 2.625rem);
}

@media (max-width: 74.9375rem) {
  .footer .left-list {
    width: auto;
  }
}
.footer .left-list img {
  width: 1.75rem;
}

.footer .right-list a {
  color: #fff;
  text-decoration: none;
}

.footer .right-list img {
  width: 5.625rem;
}

.footer .right-list {
  width: calc(50% - 2.625rem);
}

@media (max-width: 74.9375rem) {
  .footer .right-list {
    width: auto;
  }
}
.footer .center-list {
  width: 5.25rem;
}

@media (max-width: 74.9375rem) {
  .footer .center-list {
    width: auto;
  }
}
.footer .center-list img {
  width: 2.3125rem;
}

.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 70rem;
  padding: 0.875rem 0rem;
  margin-right: auto;
  margin-left: auto;
  gap: 2.375rem;
}

@media (max-width: 1199px) {
  .footer__wrapper {
    max-width: 36.875rem;
    font-size: 0.6875rem;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .footer__wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 16px;
  }
  .footer__wrapper .center-list {
    order: 1;
    width: 50%;
    align-self: flex-start;
    display: flex;
    justify-content: end;
  }
  .footer__wrapper .center-list img {
    width: 24px;
  }
  .footer__wrapper .left-list {
    order: 3;
    width: 100%;
  }
  .footer__wrapper .left-list a {
    font-size: 9px;
  }
  .footer__wrapper .left-list img {
    width: 20px;
  }
  .footer__wrapper .right-list {
    order: 2;
    gap: 25px;
    width: 100%;
  }
  .footer__wrapper .right-list a {
    font-size: 12px;
  }
  .footer__wrapper .cpd {
    position: absolute;
    top: 25px;
    left: 50%;
  }
  .footer__wrapper .cpd img {
    width: 60px;
  }
}
.footer .cpd img {
  width: 80px;
}

@media (max-width: 35.9375rem) {
  .footer__wrapper {
    padding: 1.5625rem 0rem;
  }
}
.footer ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 74.9375rem) {
  .footer ul {
    gap: 2.5rem;
  }
}
@media (max-width: 35.9375rem) {
  .footer ul {
    padding: 0.3125rem 0.625rem;
    gap: 0.3125rem;
    justify-content: space-around;
  }
}
@media (max-width: 35.9375rem) {
  .footer ul li a {
    font-size: 0.75rem;
  }
}
.footer ul li a {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
}

.footer ul li a img {
  margin-right: 0.25rem;
}

.copyright {
  text-align: center;
  padding-bottom: 1.875rem;
}

@media (max-width: 767px) {
  .copyright {
    text-align: center;
    margin-top: 0px;
    font-size: 12px;
  }
}
.dropdown {
  position: relative;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transition: 0;
  transition-delay: 0s;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transition-delay: 0.5s;
  position: absolute;
  top: 100%;
  right: 0;
  width: 160px;
  background: #fff;
  border-radius: 5px;
  border: solid 1px #000;
  text-align: left;
  list-style: none;
  padding: 5px 0;
  margin: 0;
  margin-top: 18px;
  z-index: 100;
}
.dropdown-menu li {
  padding: 10px;
}

.about .heroFull {
  text-align: right;
}
.about .heroFull .heroFull-image {
  background: #000;
}
@media (max-width: 767px) {
  .about .heroFull {
    padding-right: var(--body-padding-x);
    padding-left: var(--body-padding-x);
  }
  .about .heroFull .heroFull-image {
    height: 130vw;
  }
  .about .heroFull .heroFull-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about .hero-title {
  line-height: 1.2;
  border: 0;
  margin-bottom: 25px;
}
.about .hero-image img {
  -o-object-position: right;
     object-position: right;
}

.team-item {
  display: flex;
}
@media (max-width: 767px) {
  .team-item {
    flex-direction: column;
  }
}

.team-items {
  display: flex;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  padding-top: 22px;
  padding-bottom: 26px;
}
@media (max-width: 767px) {
  .team-items {
    padding-top: 80px;
    flex-direction: column;
    border: 0;
  }
}

.team-mainItem {
  flex-grow: 1;
}
.team-mainItem p {
  width: 550px;
}
@media (max-width: 767px) {
  .team-mainItem p {
    width: 100%;
  }
}

.team-mainItem-title {
  font-size: 33px;
}

.team-text {
  display: flex;
  gap: 39px;
  align-items: center;
  padding: 30px 40px;
}
@media (max-width: 767px) {
  .team-text {
    flex-direction: column;
    padding: 30px 0;
  }
}

.team-header {
  cursor: pointer;
  writing-mode: tb-rl;
  transform: rotate(-180deg);
  width: 74px;
  display: flex;
  height: 400px;
  position: relative;
  border-right: solid 1px #000;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  padding-top: 10px;
  min-width: 76px;
}
@media (max-width: 767px) {
  .team-header {
    transform: none;
    writing-mode: inherit;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-bottom: solid 1px #000;
    height: 77px;
  }
}
.team-header img {
  width: 21px;
  position: absolute;
  bottom: 10px;
}
@media (max-width: 767px) {
  .team-header img {
    transform: rotate(-90deg);
    position: relative;
    transition: 0.3s;
    margin-top: 15px;
  }
}

.team-item-3 .team-header {
  border-bottom: 0;
}

.open-1 .team-item-1 .team-header img {
  transform: rotate(90deg);
}
.open-1 .team-item-1 .team-body {
  display: block !important;
}

.open-2 .team-item-2 .team-header img {
  transform: rotate(90deg);
}
.open-2 .team-item-2 .team-body {
  display: block !important;
}

.open-3 .team-item-3 .team-header img {
  transform: rotate(90deg);
}
.open-3 .team-item-3 .team-body {
  display: block !important;
}

@media (min-width: 992px) {
  .open-1 .team-mainItem {
    display: none;
  }
  .open-1 .team-item-1 .team-header img {
    transform: rotate(180deg);
  }
  .open-1 .team-item-1 .team-body {
    display: block !important;
  }
  .open-2 .team-mainItem {
    display: none;
  }
  .open-2 .team-item-1 {
    display: none;
  }
  .open-2 .team-item-1 .team-header img {
    transform: rotate(180deg);
  }
  .open-2 .team-item-2 .team-header img {
    transform: rotate(180deg);
  }
  .open-2 .team-item-2 .team-body {
    display: block !important;
  }
  .open-3 .team-mainItem {
    display: none;
  }
  .open-3 .team-item-1 {
    display: none;
  }
  .open-3 .team-item-1 .team-header img {
    transform: rotate(180deg);
  }
  .open-3 .team-item-2 {
    display: none;
  }
  .open-3 .team-item-2 .team-header img {
    transform: rotate(180deg);
  }
  .open-3 .team-item-3 .team-header img {
    transform: rotate(180deg);
  }
  .open-3 .team-item-3 .team-body {
    display: block !important;
  }
}
.aboutSection {
  padding-top: 53px;
}
@media (max-width: 767px) {
  .aboutSection {
    padding-top: 0;
  }
}

.aboutSection-flex {
  display: flex;
  flex-direction: column;
}
.aboutSection-flex hr {
  margin-right: 55px;
  margin-left: 55px;
}
@media (max-width: 767px) {
  .aboutSection-flex hr {
    display: none;
  }
}

.aboutSection-item {
  padding-bottom: 30px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .aboutSection-item {
    padding-top: 24px;
    margin-bottom: 50px;
  }
}

.heroFull-image {
  position: relative;
}

.aboutSection-title {
  font-size: 33px;
  margin-bottom: 40px;
  align-items: center;
}
@media (max-width: 767px) {
  .aboutSection-title {
    font-size: 32px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
  }
}
.aboutSection-title img {
  width: 21px;
  height: 21px;
}

.sustainable .hero-image img {
  background: #000;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
.sustainable .hero-text {
  width: 21.875rem;
}
.sustainable .hero-title {
  font-size: 24px;
  line-height: 1.4;
}
.sustainable .hero-title strong {
  font-size: 32px;
  display: block;
}

.sustainableSection {
  background: #e6e7e8;
  padding-top: 58px;
  padding-bottom: 54px;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .sustainableSection {
    padding-top: 10px;
    padding-bottom: 0;
  }
}

.sustainableSection-item {
  padding-bottom: 28px;
  padding-top: 32px;
  border-bottom: solid 1px #000;
  padding-left: 15px;
  padding-right: 15px;
  align-items: center;
  display: flex;
  gap: 58px;
}
@media (max-width: 767px) {
  .sustainableSection-item {
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
  }
}
.sustainableSection-item:last-child {
  border-bottom: 0;
}
.sustainableSection-item img {
  width: 95px;
  height: 95px;
}
@media (max-width: 767px) {
  .sustainableSection-item img {
    width: 72px;
    height: 72px;
  }
}

.sustainableSection-title {
  font-size: 33px;
}
@media (max-width: 767px) {
  .sustainableSection-title {
    font-size: 24px;
  }
}

.contact .hero-image img {
  -o-object-position: right;
     object-position: right;
}
.contact .hero-source {
  background: #fff;
  padding-right: 15px;
  padding-left: 30px;
}
.contact .hero-source::after {
  background: #000;
}

@media (min-width: 768px) {
  .sustainable .learn-item:nth-last-child(-n+2)::after {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .partnerships .learn-item:nth-last-child(-n+2)::after {
    display: none !important;
  }
}
.partnerships .learn {
  background: transparent !important;
}
.partnerships .hero-image img {
  background: #000;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}
.whyPartner {
  background: #e6e7e8;
  padding-top: 65px;
  margin-top: 58px;
  padding-bottom: 77px;
}

.whyPartner-header {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  padding-bottom: 0rem;
}
@media (max-width: 767px) {
  .whyPartner-header {
    font-size: 16px;
  }
}

.whyPartner-items {
  width: 60%;
  padding-left: 2.375rem;
}
@media (max-width: 767px) {
  .whyPartner-items {
    width: 100%;
    padding-left: 0;
  }
}

.whyPartner-flex {
  display: flex;
  margin-bottom: 1.5625rem;
}
@media (max-width: 767px) {
  .whyPartner-flex {
    flex-direction: column;
  }
}

.partnerWithِUs {
  margin-top: 40px;
}

.partnerWithِUs-title {
  font-size: 2.0625rem;
  font-weight: normal;
  margin-top: 0;
  line-height: 1;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .partnerWithِUs-title {
    font-size: 24px;
  }
}

.partnerWithِUs-itme .learn-title {
  margin-top: 38px;
  font-size: 1.5rem;
}

.whyPartner-title {
  font-size: 2.0625rem;
}
@media (max-width: 767px) {
  .whyPartner-title {
    max-width: 11.25rem;
    font-size: 24px;
  }
}

.whyPartner-text {
  width: 40%;
  border-right: solid 1px #000;
  margin-top: -0.875rem;
  line-height: 1.1;
  letter-spacing: 0.2px;
  padding-left: 0.1875rem;
}
@media (max-width: 767px) {
  .whyPartner-text {
    border: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
}
.whyPartner-text img {
  width: 20.625rem;
  margin-top: 3.75rem;
}
@media (max-width: 767px) {
  .whyPartner-text img {
    width: 48px;
    margin-top: 0;
  }
}

.whyPartner-item {
  padding: 0 0 1.75rem 0;
  margin-bottom: 1.75rem;
  border-bottom: solid 1px #000;
  display: flex;
}
.whyPartner-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.thinkYou {
  padding-bottom: 2.875rem;
  padding-top: 2.375rem;
}

.thinkYou-description {
  font-size: 14px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .thinkYou-description {
    margin-top: 16px;
  }
}

.thinkYou-title {
  font-size: 5rem;
  display: flex;
  justify-content: space-between;
  line-height: 1.15;
}
@media (max-width: 767px) {
  .thinkYou-title {
    font-size: 1.875rem;
  }
}
.thinkYou-title img {
  width: 5.9375rem;
}
@media (max-width: 767px) {
  .thinkYou-title img {
    width: 4rem;
  }
}

@media (max-width: 1199px) {
  .sticky .lines {
    top: 50%;
    transform: translateY(-50%);
  }
  .lines .line {
    width: 45px;
    height: 4px;
    background-color: #000;
    margin: 10px 0;
    transition: all 0.6s ease;
  }
  .sticky .lines .line {
    width: 45px;
    height: 4px;
    margin: 8 0;
  }
}
.open .lines .line-1 {
  transform: translatey(14px) rotate(45deg);
}

.open .lines .line-2 {
  transform: scale(0);
}

.open .lines .line-3 {
  transform: translatey(-14px) rotate(-45deg);
}

.lines .only-lg {
  display: none;
}

@media (min-width: 1200px) {
  .lines .only-lg {
    display: block;
  }
}
.contactForm {
  padding-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .contactForm {
    margin-bottom: 0;
  }
}
.contactForm .btn {
  width: 100%;
  height: 48px;
  font-size: 18px;
}
.contactForm .form-group {
  margin-bottom: 16px;
}

.contactForm-bg {
  background: #e6e7e8;
  max-width: 800px;
  margin: auto;
  padding-top: 48px;
  padding-bottom: 48px;
}

.contactForm-title {
  font-size: 40px;
  margin: 0;
  text-align: left;
}

.contactForm-subtitle {
  font-size: 16px;
  margin-bottom: 42px;
  text-align: left;
}

.nice-select {
  width: 100%;
  float: none;
  padding-left: 1.625rem;
  height: 56px;
  display: flex;
  align-items: center;
}
.nice-select:after {
  right: 20px;
  width: 8px;
  height: 8px;
  margin-top: -8px;
  border-radius: 0px 0px 3px 0px;
}
.nice-select .list {
  width: 100%;
}
.nice-select .disabled {
  display: none !important;
}

textarea.form-controller {
  min-height: 96px;
  font-family: "Avenir";
  padding-top: 18px;
  min-width: 100%;
  max-width: 100%;
}

.partnerships-items {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .partnerships-items {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .partnerships-items {
    margin-top: 40px;
  }
}
.partnerships-items li {
  margin-bottom: 10px;
  border-bottom: solid 1px #000;
}

.partnerships-item {
  width: 33.33333%;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
  position: relative;
}
.partnerships-item h3 {
  margin-bottom: 8px;
}
.partnerships-item p {
  margin-top: 0;
}
@media (max-width: 991px) {
  .partnerships-item {
    width: 100%;
    max-width: 703px;
    margin: auto;
  }
}
.partnerships-item::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  right: 0px;
}
@media (max-width: 991px) {
  .partnerships-item::after {
    display: none;
  }
}
.partnerships-item:last-child::after {
  display: none;
}

.canNotFind-flex {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .canNotFind-flex {
    flex-direction: column;
  }
}

.canNotFind-title {
  font-size: 33px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .canNotFind-title {
    font-size: 28px;
  }
}

.canNotFind-desc {
  max-width: 700px;
}
@media (max-width: 767px) {
  .canNotFind-desc {
    font-size: 14px;
  }
}

.canNotFind-content {
  font-size: 20px;
  font-weight: 500;
  flex-grow: 1;
  text-align: center;
}
@media (max-width: 991px) {
  .canNotFind-content .text-center {
    text-align: left;
  }
}
.canNotFind-content a {
  color: #000000;
  display: inline-block;
  color: #fff;
}

.property-title {
  margin-top: 0;
  font-size: 33px;
}
@media (min-width: 768px) {
  .property-title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .property-title {
    font-size: 28px;
    margin-bottom: 8px;
  }
}

.GetInTouch-title {
  font-size: 60px;
}
.GetInTouch-title img {
  width: 50px;
}
@media (max-width: 767px) {
  .GetInTouch-title {
    font-size: 48px;
  }
}

.contact .hero-source {
  color: #000;
}

.modal {
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  padding: var(--body-padding-x);
  height: 100%;
  display: none;
}

.modal-body {
  background: #fff;
  border: #000 solid 1px;
  width: 100%;
  max-width: 887px;
  text-align: center;
  padding: var(--body-padding-x);
  position: relative;
}
.modal-body .modal-title {
  font-size: 40px;
  font-weight: normal;
  line-height: 1;
}
.modal-body p {
  margin-bottom: 40px;
}
.modal-body input {
  height: 35px;
  margin-bottom: 16px;
  border: solid 1px #000;
  text-align: center;
  padding: 0;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}
.modal-body .btn {
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}

.modal-close {
  position: absolute;
  top: 5px;
}

.hero-icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.courses-items {
  display: flex;
}

.mb2-pb-column.col-lg-12.noempty.light.align-none.aligncnone.mobcenter0.moborder0 {
  padding: 0 !important;
}/*# sourceMappingURL=main.css.map */


.modal.open{
  display: flex;
  z-index: 100;
}

.modal-bg{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  cursor: pointer;
}