@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

@font-face {
  font-family: "Segoe";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Segoe/Segoe-UI-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/Montserrat/Montserrat-Italic.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-ExtraBold.ttf") format("truetype");
  font-display: swap;
}
html {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #424243;
}

body {
  position: relative;
}

h1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 2.5em;
  line-height: 1.3;
  color: #000;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2em;
  color: #000;
}

section h2 {
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 2.7em;
  letter-spacing: 2px;
  color: #000;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 3px;
  color: #000;
}

h5 {
  font-size: 1em;
}

p {
  font-size: 14px;
}

a {
  text-decoration: none;
}

a:hover:not(.button), a:visited:not(.button) {
  color: #008dd5;
}

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

.mb-30 {
  margin-bottom: 30px !important;
}

.d-block {
  display: block;
}

.modal {
  display: none;
}

.d-none {
  display: none;
}

.modal.is-open {
  display: block;
}

.container {
  width: 71vw;
  margin: auto;
}

input[type=text], input[type=email], input[type=password], select {
  border: 1px solid #424243;
  color: #424243;
  height: 40px;
  display: block;
  margin: 10px auto;
  font-size: 18px;
  padding: 0 10px;
  line-height: 40px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, select:focus {
  outline: none;
  border: 2px solid #0f94cf;
}

textarea {
  border: 1px solid #424243;
  color: #424243;
  width: 90%;
  display: block;
  margin: 10px auto;
  font-size: 18px;
  padding: 0 10px;
  line-height: 40px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
textarea:focus {
  outline: none;
  border: 2px solid #0f94cf;
}

input[type=file]:focus {
  outline: none;
}

.alert-text {
  font-weight: 700;
  color: #ff0054;
}

.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown .dropdown-content {
  display: none;
  background-color: transparent;
  position: absolute;
  width: auto;
  min-width: 100%;
  left: -5px;
  top: 100%;
}
.dropdown .dropdown-content ul {
  margin-top: 5px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 30px 1px rgba(71, 71, 71, 0.2);
  -moz-box-shadow: 0px 0px 30px 1px rgba(71, 71, 71, 0.2);
  box-shadow: 0px 0px 30px 1px rgba(71, 71, 71, 0.2);
}
.dropdown .dropdown-content ul a li {
  background-color: #fff;
  color: #424243;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  width: 100%;
  padding: 25px 5px !important;
  position: relative;
}
.dropdown .dropdown-content ul a li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 90%;
  left: 5%;
  border-bottom: 1px solid #a3a7aa;
}
.dropdown .dropdown-content ul a li:hover, .dropdown .dropdown-content ul a li.active, .dropdown .dropdown-content ul a li.opened {
  color: #008dd5;
  background: #fff !important;
}
.dropdown .dropdown-content ul a:first-child li {
  border-radius: 10px 10px 0 0;
}
.dropdown .dropdown-content ul a:last-child li {
  border-radius: 0 0 10px 10px;
}
.dropdown .dropdown-content ul a:last-of-type li:before {
  content: unset;
}

@media (max-width: 1000px) {
  .container {
    width: 90vw;
    margin: auto;
  }
}
.ball-loader {
  width: 100px;
  height: 23.3333333333px;
  position: relative;
  top: 200px;
  margin: auto;
}

.ball-loader-ball {
  will-change: transform;
  height: 23.3333333333px;
  width: 23.3333333333px;
  border-radius: 50%;
  position: absolute;
  animation: grow 0.8s ease-in-out infinite alternate;
}
.ball-loader-ball.ball1 {
  left: 0;
  transform-origin: 100% 50%;
  background-color: #ff0054;
}
.ball-loader-ball.ball2 {
  left: 50%;
  transform: translateX(-50%) scale(1);
  animation-delay: 0.2s;
  background-color: #0f94cf;
}
.ball-loader-ball.ball3 {
  right: 0;
  animation-delay: 0.35s;
  background-color: #eeb72e;
}

@keyframes grow {
  to {
    transform: translateX(-50%) scale(0);
  }
}
.modal#modal-welcome p {
  margin-bottom: 10px;
}
.modal#modal-welcome span {
  font-weight: 700;
}
.modal#modal-welcome a {
  margin-top: 30px;
}
.modal .modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1500;
}
.modal .modal_overlay .modal_container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  height: auto;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
.modal .modal_overlay .modal_container div {
  display: flex;
  flex-direction: column;
}
.modal .modal_overlay .modal_container div .modal_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #0f94cf;
}
.modal .modal_overlay .modal_container div .modal_header h2.modal_title {
  margin-top: 0;
  margin-bottom: 0;
  color: #424243;
  box-sizing: border-box;
  font-size: 24px;
  font-weight: 200;
}
.modal .modal_overlay .modal_container div .modal_header h2.modal_title span {
  color: #0f94cf;
}
.modal .modal_overlay .modal_container div .modal_header .modal_close {
  background: transparent;
  border: 0;
  font-size: 16px;
  margin-left: 30px;
}
.modal .modal_overlay .modal_container div .modal_header .modal_close:focus {
  outline: none;
}
.modal .modal_overlay .modal_container div .modal_header .modal_close:hover {
  cursor: pointer;
}
.modal .modal_overlay .modal_container div .modal_header .modal_close:before {
  content: "✕";
}
.modal .modal_overlay .modal_container div .modal_content {
  margin: 50px auto;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
}
.modal .modal_overlay .modal_container div .modal_content p.errors {
  color: #ff0054;
  font-size: 16px;
  font-weight: 600;
  display: none;
  margin-top: -20px;
  margin-bottom: 30px;
}
.modal .modal_overlay .modal_container div .modal_content .ball-loader {
  position: relative;
  top: 0;
  display: none;
  margin: 38px auto;
}
.modal .modal_overlay .modal_container div .modal_content p {
  font-size: 20px;
  margin-bottom: 0;
}
.modal .modal_overlay .modal_container div .modal_content a:not(.button) {
  color: #ff0054;
  font-size: 20px;
  cursor: pointer;
}
.modal .modal_overlay .modal_container div .modal_content a:not(.button).forgot {
  font-size: 14px;
  margin-top: 0px;
}
.modal .modal_overlay .modal_container div .modal_content form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.modal .modal_overlay .modal_container div .modal_content form input:not(.login), .modal .modal_overlay .modal_container div .modal_content form select {
  width: 300px;
}
.modal .modal_overlay .modal_container div .modal_content form a {
  margin-top: -10px;
  color: #0f94cf;
}
.modal .modal_overlay .modal_container div .modal_content form input.login {
  width: auto;
  margin: 30px auto;
}
.modal .modal_overlay .modal_container #register {
  display: none;
}
.modal .modal_overlay .modal_container #recover {
  display: none;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal_overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal_container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal_overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal_container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal_container,
.micromodal-slide .modal_overlay {
  will-change: transform;
}

.button {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 0 35px;
  margin: 10px 0;
  display: inline-block;
  line-height: 40px;
  border: unset;
}
.button:hover {
  cursor: pointer;
}
.button.red {
  background-color: #ff0054;
}
.button.red:hover {
  background-color: #dc3674;
  color: #fff;
}
.button.yellow {
  background-color: #eeb72e;
}
.button.yellow:hover {
  background-color: #f0c54a;
  color: #fff;
}
.button.outline {
  background-color: none;
  border: 2px solid #fff;
  line-height: 36px;
}
.button.small {
  font-size: 12px;
  line-height: 24px;
  padding: 0 35px;
  font-weight: 700;
}
.button:focus {
  outline: none;
}

.cookie-consent {
  display: flex;
  justify-content: space-evenly;
  padding: 20px;
  align-items: center;
  position: sticky;
  bottom: 0;
  width: 100%;
  height: auto;
  background-color: #ff0054;
  color: #fff;
  z-index: 999;
}
.cookie-consent .button {
  padding: 10px;
  width: auto;
  line-height: 1.2;
  margin-left: 10px;
  justify-self: flex-end;
  align-self: flex-start;
}

@media (max-width: 1300px) {
  .cookie-consent span {
    width: 85%;
  }
  .cookie-consent .button {
    display: block;
    width: 15%;
  }
}
@media (max-width: 700px) {
  .cookie-consent span {
    width: 70%;
  }
  .cookie-consent .button {
    display: block;
    width: 30%;
  }
}
.sticky .item {
  position: fixed;
  color: #fff;
  top: 50%;
  right: 0;
  z-index: 950;
  cursor: pointer;
  height: 70px;
  width: 330px;
  border-radius: 15px 0 0 15px;
  margin: 15px 0;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  transform: translateX(270px);
  -webkit-transform: translateX(270px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 0px 30px 1px rgba(71, 71, 71, 0.2);
  -moz-box-shadow: 0px 0px 30px 1px rgba(71, 71, 71, 0.2);
  box-shadow: 0px 0px 30px 1px rgba(71, 71, 71, 0.2);
  z-index: 999;
}
.sticky .item:nth-of-type(1) {
  top: calc(50vh - 115px + 112px);
}
.sticky .item:nth-of-type(1) .icon:after {
  color: #0f94cf;
}
.sticky .item:nth-of-type(2) {
  top: calc(50vh - 35px + 112px);
}
.sticky .item:nth-of-type(2) .icon:after {
  color: #ff0054;
}
.sticky .item:nth-of-type(3) {
  top: calc(50vh + 45px + 112px);
}
.sticky .item:nth-of-type(3) .icon:after {
  color: #eeb72e;
}
.sticky .item:hover {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.sticky .item .icon {
  height: 100%;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sticky .item .icon:after {
  position: absolute;
  content: "▶";
  top: 0;
  transform: translateY(-6%) scale(1, 1.5);
  font-size: 60px;
  left: 70%;
}
.sticky .item i {
  font-size: 35px;
}
.sticky .item.message {
  border: 2px solid #0f94cf;
  border-right: unset;
}
.sticky .item.message .icon {
  background-color: #0f94cf;
}
.sticky .item.message .text, .sticky .item.message .text a {
  color: #0f94cf;
}
.sticky .item.book {
  border: 2px solid #ff0054;
  border-right: unset;
}
.sticky .item.book .icon {
  background-color: #ff0054;
}
.sticky .item.book .text, .sticky .item.book .text a {
  color: #ff0054;
}
.sticky .item.contact {
  border: 2px solid #eeb72e;
  border-right: unset;
}
.sticky .item.contact .icon {
  background-color: #eeb72e;
}
.sticky .item.contact .text, .sticky .item.contact .text a {
  color: #eeb72e;
}
.sticky .text {
  display: flex;
  height: 100%;
  width: 100%;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .sticky .item {
    height: 60px;
    transform: translateX(280px);
    -webkit-transform: translateX(280px);
    margin: 10px 0;
  }
  .sticky .item:nth-of-type(1) {
    top: calc(60vh - 105px + 112px);
  }
  .sticky .item:nth-of-type(2) {
    top: calc(60vh - 35px + 112px);
  }
  .sticky .item:nth-of-type(3) {
    top: calc(60vh + 35px + 112px);
  }
  .sticky .item .icon {
    width: 60px;
  }
  .sticky .item .icon i {
    font-size: 30px;
  }
  .sticky .item .icon:after {
    transform: translateY(-14%) scale(1, 1.5);
    font-size: 60px;
    left: 60%;
  }
}
header {
  position: sticky;
  width: 100vw;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  top: 0;
  z-index: 999;
  background-color: #414142;
  color: #fff;
}

.header-top {
  background-color: #0f94cf;
  font-weight: 600;
  font-size: 16px;
  padding: 0 5em;
  height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: max-height 0.3s ease;
}
.header-top a:hover {
  color: #fff;
}
.header-top .dropdown {
  text-transform: uppercase;
}
.header-top .dropdown.lang a {
  color: #fff;
}
.header-top .social-container {
  display: flex;
  flex-direction: row;
}
.header-top .social-container li {
  margin: 0 7px;
}
.header-top .social-container li a {
  color: #ffffff;
}

.header-content {
  height: 80px;
  padding: 0 5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}
.header-content .header-logo img {
  height: 60px;
  width: auto;
}
.header-content .header-menu {
  height: 100%;
}
.header-content .header-menu ul {
  height: 100%;
}
.header-content .header-menu ul .logout {
  font-size: 20px;
  margin-left: 20px;
  margin-bottom: -10px;
}
.header-content .header-menu ul div:not(.dropdown-content) {
  height: 100%;
}
.header-content .header-menu ul a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}
.header-content .header-menu ul a li {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  list-style-type: none;
}
.header-content .header-menu ul a li:hover {
  background-color: #0f94cf;
}
.header-content .header-menu ul a li.active {
  background-color: #0f94cf;
}
.header-content .header-menu ul .login-button {
  align-items: center;
  display: inline-flex;
  vertical-align: top;
  margin-left: 30px;
}
.header-content .header-menu ul .login-button a li:not(.login-menu) {
  background-color: #ff0054;
  padding: 3px 20px;
  border-radius: 30px;
  height: 30px;
}
.header-content .header-menu ul .login-button a li:not(.login-menu):hover {
  background-color: #dc3674;
}
.header-content .header-menu ul .login-button.profile a li:not(.login-menu) {
  background-color: #eeb72e;
}
.header-content .header-menu ul .login-button.profile a li:not(.login-menu):hover {
  background-color: #f0c54a;
}
.header-content #hamb {
  display: none;
  z-index: 5;
  cursor: pointer;
  -webkit-transition: left 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  transition: left 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  flex-direction: column;
  justify-content: center;
}
.header-content #hamb div {
  width: 25px;
  height: 3px;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: opacity 500ms;
  -webkit-transform: 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  transition: opacity 500ms;
  -webkit-transform: 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  transition: transform 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91), opacity 500ms;
  transition: transform 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91), opacity 500ms;
  -webkit-transform: 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
}
.header-content #hamb #bottom {
  margin-bottom: 0;
}
.header-content .active {
  left: 230px;
}
.header-content .active #top {
  -webkit-transform: translateY(6px) rotate(-135deg);
  transform: translateY(6px) rotate(-135deg);
}
.header-content .active #middle {
  opacity: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header-content .active #bottom {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}
.header-content #side-menu {
  display: none;
  position: fixed;
  z-index: 4;
  overflow: auto;
  top: 0px;
  left: -275px;
  width: 275px;
  opacity: 0;
  padding: 20px 0px;
  height: 100%;
  background-color: #0f94cf;
  color: #fff;
  -webkit-transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  transition: all 350ms cubic-bezier(0.6, 0.05, 0.28, 0.91);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.header-content #side-menu #side-menu-items a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.header-content #side-menu #side-menu-items .item {
  position: relative;
  cursor: pointer;
  font-size: 1.4em;
  padding: 15px 30px;
  -webkit-transition: all 250ms;
  transition: all 250ms;
}
.header-content #side-menu .side-menu-footer {
  text-align: center;
}
.header-content #side-menu .side-menu-footer .login-button {
  background-color: #ff0054;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 30px;
  border-radius: 30px;
  height: 30px;
  font-size: 20px;
}
.header-content #side-menu .side-menu-footer .login-button:hover {
  background-color: #dc3674;
}
.header-content #side-menu .side-menu-footer .login-button.profile {
  background-color: #eeb72e;
}
.header-content #side-menu .side-menu-footer .login-button.profile:hover {
  background-color: #f0c54a;
}
.header-content #side-menu .side-menu-footer .logout-button {
  color: #ffffff;
  display: block;
  margin: 40px auto 0;
  font-size: 16px;
}
.header-content #side-menu.active {
  left: 0px;
  opacity: 1;
  display: none;
}

@media (max-width: 1180px) {
  .header-content, .header-top {
    padding: 0 2em;
  }
  .header-content .header-menu, .header-top .header-menu {
    display: none;
  }
  .header-content #hamb, .header-top #hamb {
    display: flex;
    align-items: center;
    z-index: 1;
    font-size: 1.2em;
  }
  .header-content #side-menu,
.header-content #side-menu.active, .header-top #side-menu,
.header-top #side-menu.active {
    display: flex;
  }
}
.hero {
  color: #fff;
  width: 100%;
  min-height: 500px;
  height: 80vh;
  background-color: #23395b;
  position: relative;
  overflow: hidden;
  padding: 0 17.5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero.section-hero {
  min-height: 500px;
  height: 63vh;
}
.hero.section-hero .hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 6em;
  color: #fff;
  margin-bottom: 0;
}
.hero.section-hero .hero-content h3 {
  color: #fff;
  font-size: 3em;
  opacity: 1;
  font-weight: 700;
  margin-bottom: 0;
}
.hero.section-hero .hero-content h5 {
  color: #fff;
  font-size: 1.5em;
  opacity: 1;
  font-weight: 400;
  line-height: 1.5;
  margin-top: -10px;
  margin-bottom: 0;
}
.hero > svg.wave {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
}
.hero > img.circle {
  display: block;
  position: absolute;
  right: 0px;
  bottom: -100px;
  width: 660px;
  height: 660px;
}
.hero > img.phones {
  display: block;
  position: absolute;
  right: 200px;
  bottom: -70px;
  overflow: visible;
  width: 750px;
  z-index: 990;
}
.hero .hero-content {
  width: 70%;
}
.hero .hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-size: 3em;
  color: #fff;
}
.hero .hero-content h3 {
  color: #fff;
  font-size: 1em;
  opacity: 0.4;
  margin-bottom: 1.8em;
  font-weight: 600;
}
.hero .hero-content .button:first-of-type {
  margin-right: 15px;
}

@media (max-width: 1600px) {
  .hero {
    padding: 0 10vw;
  }
  .hero > img.circle {
    right: -45px;
    bottom: 50px;
    width: 550px;
    height: 500px;
  }
  .hero > img.phones {
    right: 0px;
    bottom: -40px;
    width: 700px;
  }
}
@media (max-width: 1280px) {
  .hero > img.circle {
    right: -45px;
    bottom: 50px;
    width: 460px;
    height: 460px;
  }
  .hero > img.phones {
    right: -70px;
    bottom: -50px;
    width: 650px;
  }
}
@media (max-width: 1200px) {
  .hero {
    align-items: center;
    text-align: center;
  }
  .hero > img.circle, .hero > img.phones {
    display: none;
  }
  .hero > img.circle .button:first-of-type, .hero > img.phones .button:first-of-type {
    margin-right: 0;
  }
  .hero.section-hero .hero-content {
    width: 90%;
  }
  .hero.section-hero .hero-content h1 {
    font-size: 9vw;
  }
}
@media (max-width: 730px) {
  .hero {
    height: 60vh;
    min-height: 400px;
    padding: 0;
    align-items: center;
    text-align: center;
  }
  .hero .hero-content h1 {
    font-size: 2em;
  }
  .hero.section-hero {
    height: 350px;
    min-height: 350px;
  }
  .hero.section-hero .hero-content h1 {
    font-size: 9vw;
  }
  .hero.section-hero .hero-content h3 {
    font-size: 5vw;
  }
  .hero.section-hero .hero-content h5 {
    margin-top: 10px;
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .hero {
    height: 80vh;
    padding: 0;
    align-items: center;
    text-align: center;
  }
  .hero .hero-content h1 {
    font-size: 2em;
  }
}
section.benefits {
  margin-top: 70px;
  text-align: center;
  padding-bottom: 70px;
}
section.benefits h2 {
  margin-bottom: 25px;
}
section.benefits #benefit-slider {
  width: 90vw;
  margin: auto;
  padding-top: 60px;
  display: flex;
  align-items: center;
}
section.benefits .owl-carousel {
  position: relative;
  overflow: hidden;
}
section.benefits .owl-carousel .owl-nav {
  z-index: 970;
}
section.benefits .owl-carousel .owl-nav button {
  cursor: pointer;
  background: 0 0 !important;
  outline: 0 !important;
  border: none;
}
section.benefits .owl-carousel .owl-nav .owl-prev i,
section.benefits .owl-carousel .owl-nav .owl-next i {
  color: #eeb72e;
  font-size: 3em;
}
section.benefits .owl-carousel .owl-nav .owl-prev,
section.benefits .owl-carousel .owl-nav .owl-next {
  width: 35px;
  height: 100px;
  position: absolute;
  display: block !important;
  border: 0px solid black;
}
section.benefits .owl-carousel .owl-nav .owl-prev:focus,
section.benefits .owl-carousel .owl-nav .owl-next:focus {
  background: none !important;
  outline: none !important;
}
section.benefits .owl-carousel .owl-nav .owl-prev:hover,
section.benefits .owl-carousel .owl-nav .owl-next:hover {
  background: none !important;
  outline: none !important;
}
section.benefits .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 0px;
  transform: translateY(-50%);
}
section.benefits .owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: 0px;
  transform: translateY(-50%);
}
section.benefits .owl-carousel .owl-stage-outer .owl-stage {
  display: flex;
}
section.benefits .owl-carousel .owl-stage-outer .owl-stage .owl-item .benefit-item {
  width: 300px;
  margin: auto;
}
section.benefits .owl-carousel .owl-stage-outer .owl-stage .owl-item .benefit-item h5 {
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  font-size: 1em;
  margin-bottom: 18px;
}
section.benefits .owl-carousel .owl-stage-outer .owl-stage .owl-item .benefit-item p {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  line-height: 1.8;
}
section.benefits .owl-carousel .owl-stage-outer .owl-stage .owl-item .benefit-item p:not(:first-of-type) {
  margin-bottom: 25px;
}
section.benefits .owl-carousel .owl-stage-outer .owl-stage .owl-item .benefit-item p i {
  font-size: 3em;
  color: #fff;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 30px 1px rgba(71, 71, 71, 0.2);
  -moz-box-shadow: 0px 0px 30px 1px rgba(71, 71, 71, 0.2);
  box-shadow: 0px 0px 30px 1px rgba(71, 71, 71, 0.2);
}
section.benefits .owl-carousel .owl-stage-outer .owl-stage .owl-item:nth-of-type(3n+1) p > i, section.benefits .owl-carousel .owl-stage-outer .owl-stage .owl-item:nth-of-type(3n+1) .benefit-button {
  background-color: #ff0054;
}
section.benefits .owl-carousel .owl-stage-outer .owl-stage .owl-item:nth-of-type(3n+2) p > i, section.benefits .owl-carousel .owl-stage-outer .owl-stage .owl-item:nth-of-type(3n+2) .benefit-button {
  background-color: #eeb72e;
}
section.benefits .owl-carousel .owl-stage-outer .owl-stage .owl-item:nth-of-type(3n+3) p > i, section.benefits .owl-carousel .owl-stage-outer .owl-stage .owl-item:nth-of-type(3n+3) .benefit-button {
  background-color: #0f94cf;
}
section.benefits .owl-carousel .owl-stage-outer .owl-stage .owl-item .benefit-button {
  color: #fff;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 5px 30px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  section.benefits {
    padding-bottom: 0;
  }
  section.benefits #benefit-slider {
    width: 100vw;
    padding: 50px;
    padding-bottom: 0;
  }
  section.benefits .owl-carousel .owl-nav .owl-prev {
    left: 20px;
  }
  section.benefits .owl-carousel .owl-nav .owl-next {
    right: 20px;
  }
}
@media (max-width: 1000px) {
  section.benefits .owl-carousel .owl-nav .owl-prev {
    left: 40px;
  }
  section.benefits .owl-carousel .owl-nav .owl-next {
    right: 40px;
  }
}
@media (max-width: 600px) {
  section.benefits {
    padding-bottom: 0;
  }
  section.benefits h2 {
    margin-bottom: 0;
  }
  section.benefits .owl-carousel .owl-nav .owl-prev {
    left: 20px;
  }
  section.benefits .owl-carousel .owl-nav .owl-next {
    right: 20px;
  }
}
section.services {
  background-color: #fafafa;
  position: relative;
  padding-bottom: 100px;
}
section.services > svg.wave {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
}
section.services h2 {
  text-align: center;
  margin-top: 200px;
  margin-bottom: 70px;
  padding-top: 40px;
}
section.services .services-container {
  display: flex;
  flex-direction: row;
}
section.services .services-container .img-container {
  width: 47%;
  overflow: hidden;
  border-radius: 0 50px 0 50px;
}
section.services .services-container .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
section.services .services-container .services-data {
  width: 53%;
  display: flex;
  flex-direction: column;
}
section.services .services-container .services-data .service {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}
section.services .services-container .services-data .service .service-number {
  width: 30%;
}
section.services .services-container .services-data .service .service-number h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 43px;
  opacity: 0.5;
  text-align: right;
  margin-right: 30px;
}
section.services .services-container .services-data .service .service-data {
  width: 70%;
}
section.services .services-container .services-data .service .service-data h5 {
  text-transform: uppercase;
  font-weight: 600;
  margin: 7px 0 15px 0;
  font-size: 15px;
}
section.services .services-container .services-data .service .service-data p {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.8;
}
section.services .services-container .services-data .service:nth-of-type(3n+1) .service-number h4 {
  color: #ff0054;
}
section.services .services-container .services-data .service:nth-of-type(3n+2) .service-number h4 {
  color: #eeb72e;
}
section.services .services-container .services-data .service:nth-of-type(3n+3) .service-number h4 {
  color: #0f94cf;
}

@media (max-width: 1000px) {
  section.services .services-container {
    display: flex;
    flex-direction: column;
  }
  section.services .services-container .img-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
  }
  section.services .services-container .services-data {
    width: 90%;
    margin: auto;
  }
  section.services .services-container .services-data .service .service-number {
    width: auto;
    margin-right: 20px;
  }
  section.services .services-container .services-data .service .service-number h4 {
    text-align: center;
    margin-right: 0;
  }
  section.services .services-container .services-data .service .service-data {
    width: 100%;
  }
}
section.lesson-packs {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.lesson-packs h2 {
  text-align: center;
  margin-bottom: 20px;
}
section.lesson-packs p {
  text-align: center;
  margin: 20px auto;
  font-size: 20px;
  line-height: 36px;
}
section.lesson-packs p strong {
  font-weight: 700;
}
section.lesson-packs .lesson-packs-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
section.lesson-packs .lesson-packs-container .card {
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0px 0px 40px 1px rgba(71, 71, 71, 0.3);
  -moz-box-shadow: 0px 0px 40px 1px rgba(71, 71, 71, 0.3);
  box-shadow: 0px 0px 40px 1px rgba(71, 71, 71, 0.3);
  margin: 20px;
  height: auto;
  width: 300px;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}
section.lesson-packs .lesson-packs-container .card:nth-of-type(3n+1) .content h6 {
  color: #ff0054;
}
section.lesson-packs .lesson-packs-container .card:nth-of-type(3n+1) .footer .button {
  background-color: #ff0054;
}
section.lesson-packs .lesson-packs-container .card:nth-of-type(3n+2) .content h6 {
  color: #eeb72e;
}
section.lesson-packs .lesson-packs-container .card:nth-of-type(3n+2) .footer .button {
  background-color: #eeb72e;
}
section.lesson-packs .lesson-packs-container .card:nth-of-type(3n+3) .content h6 {
  color: #0f94cf;
}
section.lesson-packs .lesson-packs-container .card:nth-of-type(3n+3) .footer .button {
  background-color: #0f94cf;
}
section.lesson-packs .lesson-packs-container .card .content h6 {
  font-size: 24px;
  font-weight: 600;
  color: #ff0054;
  margin-bottom: 10px;
}
section.lesson-packs .lesson-packs-container .card .content span.badge {
  background-color: #ff0054;
  color: #ffffff;
  padding: 7px 10px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
section.lesson-packs .lesson-packs-container .card .content p, section.lesson-packs .lesson-packs-container .card .content ul li {
  font-size: 16px;
  margin: 20px auto;
}
section.lesson-packs .lesson-packs-container .card .footer {
  margin-top: auto;
}
section.lesson-packs .lesson-packs-container .card .footer p {
  margin-bottom: 20px;
}
section.lesson-packs .lesson-packs-container .card .footer p.price {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 30px;
}
section.lesson-packs .lesson-packs-container .card .footer a.lessons-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 20px;
  color: #0f94cf;
  font-weight: 400;
}
section.lesson-packs .lesson-packs-container .card .footer .dropdown {
  font-size: 18px;
}
section.lesson-packs .lesson-packs-container .card .footer .dropdown a.button {
  color: #fff !important;
}
section.lesson-packs .lesson-packs-container .card .footer .dropdown a:visited {
  color: #0f94cf;
}
section.lesson-packs .lesson-packs-container .card .footer .dropdown .dropdown-content ul a {
  z-index: 500;
}
section.lesson-packs .lesson-packs-container .card .footer .dropdown .dropdown-content ul a li {
  font-size: 16px;
  line-height: 18px;
  padding: 15px 10px !important;
}

section.group-lessons {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.group-lessons h2 {
  text-align: center;
  margin-bottom: 50px;
}
section.group-lessons .group-lessons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
section.group-lessons .group-lessons .card {
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0px 0px 40px 1px rgba(71, 71, 71, 0.3);
  -moz-box-shadow: 0px 0px 40px 1px rgba(71, 71, 71, 0.3);
  box-shadow: 0px 0px 40px 1px rgba(71, 71, 71, 0.3);
  margin: 20px;
  height: auto;
  width: 300px;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}
section.group-lessons .group-lessons .card:nth-of-type(3n+1) .content h6 {
  color: #ff0054;
}
section.group-lessons .group-lessons .card:nth-of-type(3n+1) .footer .button {
  background-color: #ff0054;
}
section.group-lessons .group-lessons .card:nth-of-type(3n+2) .content h6 {
  color: #eeb72e;
}
section.group-lessons .group-lessons .card:nth-of-type(3n+2) .footer .button {
  background-color: #eeb72e;
}
section.group-lessons .group-lessons .card:nth-of-type(3n+3) .content h6 {
  color: #0f94cf;
}
section.group-lessons .group-lessons .card:nth-of-type(3n+3) .footer .button {
  background-color: #0f94cf;
}
section.group-lessons .group-lessons .card .content h6 {
  font-size: 24px;
  font-weight: 600;
  color: #ff0054;
  margin-bottom: 20px;
}
section.group-lessons .group-lessons .card .content p {
  font-size: 16px;
  margin-bottom: 10px;
}
section.group-lessons .group-lessons .card .content p.time {
  font-size: 20px;
}
section.group-lessons .group-lessons .card .content p.tz {
  font-style: italic;
  font-size: 14px;
}
section.group-lessons .group-lessons .card .footer {
  margin-top: auto;
}
section.group-lessons .group-lessons .card .footer p.av-dates {
  margin-bottom: 100px;
}
section.group-lessons .group-lessons .card .footer p.seats {
  font-size: 14px;
  margin: 20px auto 10px auto;
}
section.group-lessons .group-lessons .card .footer a.lessons-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 20px;
  color: #0f94cf;
  font-weight: 400;
}
section.group-lessons .group-lessons .card .footer .dropdown {
  font-size: 18px;
}
section.group-lessons .group-lessons .card .footer .dropdown a.button {
  color: #fff !important;
}
section.group-lessons .group-lessons .card .footer .dropdown a:visited {
  color: #0f94cf;
}
section.group-lessons .group-lessons .card .footer .dropdown .dropdown-content ul a {
  z-index: 500;
}
section.group-lessons .group-lessons .card .footer .dropdown .dropdown-content ul a li {
  font-size: 16px;
  line-height: 18px;
  padding: 15px 10px !important;
}
section.group-lessons p {
  text-align: center;
  margin: 20px auto;
  font-size: 20px;
}
section.group-lessons .container {
  display: flex;
  justify-content: center;
}

@media (max-width: 1400px) {
  section.group-lessons .group-lessons .card {
    width: 250px;
  }
}
@media (max-width: 596px) {
  section.group-lessons .group-lessons .card {
    width: 70%;
  }
  section.group-lessons .group-lessons .card .content .dropdown {
    margin: 30px auto;
  }
}
section.book {
  background-color: #fff;
  margin-top: 180px;
  overflow: hidden;
  width: 100%;
}
section.book h2 {
  text-align: center;
  margin-bottom: 50px;
}
section.book .book-instruction {
  width: 100%;
  display: flex;
  flex-direction: row;
}
section.book .book-instruction .book-instruction-text {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}
section.book .book-instruction .book-instruction-text h5 {
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
section.book .book-instruction .book-instruction-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
section.book .book-instruction .book-instruction-image {
  width: 50%;
  overflow: visible;
  order: 2;
}
section.book .book-instruction .book-instruction-image img {
  width: 160%;
  max-width: 900px;
  height: auto;
}
section.book .book-instruction:nth-of-type(even) .book-instruction-text {
  order: 2;
  width: 53%;
}
section.book .book-instruction:nth-of-type(even) .book-instruction-image {
  order: 1;
  width: 47%;
  margin: auto;
}
section.book .book-instruction .inner-step {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
section.book .book-instruction .inner-step:first-of-type {
  margin-top: 20px;
}
section.book .book-instruction .inner-step h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 43px;
  color: #0f94cf;
  opacity: 0.6;
  text-align: right;
  margin-right: 15px;
}
section.book .book-instruction:nth-of-type(2) .book-instruction-image img {
  width: 133%;
  max-width: 560px;
  height: auto;
  margin-left: -100px;
}
section.book .book-instruction:nth-of-type(3) .book-instruction-image {
  z-index: 5;
  padding-bottom: 50px;
}
section.book .book-instruction:nth-of-type(3) .book-instruction-image img {
  width: 115%;
  height: 250px;
  margin-left: 35px;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 50px 0 50px 0;
  -webkit-box-shadow: 0px 0px 50px 1px rgba(71, 71, 71, 0.4);
  -moz-box-shadow: 0px 0px 50px 1px rgba(71, 71, 71, 0.4);
  box-shadow: 0px 0px 50px 1px rgba(71, 71, 71, 0.4);
}

@media (max-width: 1000px) {
  section.book .book-instruction, section.book .book-instruction:nth-of-type(even) {
    flex-direction: column;
  }
  section.book .book-instruction .book-instruction-text, section.book .book-instruction:nth-of-type(even) .book-instruction-text {
    width: 80%;
    margin: auto;
    margin-bottom: 50px;
    order: 2;
  }
  section.book .book-instruction .book-instruction-text h5, section.book .book-instruction:nth-of-type(even) .book-instruction-text h5 {
    text-align: center;
  }
  section.book .book-instruction .book-instruction-image, section.book .book-instruction:nth-of-type(even) .book-instruction-image {
    width: 100%;
    order: 1;
    margin-bottom: 10px;
  }
  section.book .book-instruction .book-instruction-image img, section.book .book-instruction:nth-of-type(even) .book-instruction-image img {
    display: block;
    max-width: 80% !important;
    height: auto !important;
    margin: auto !important;
    margin-bottom: 2¿40px !important;
  }
  section.book .book-instruction:nth-of-type(even) .book-instruction-image {
    width: auto;
    margin-bottom: 20px;
  }
  section.book .book-instruction:nth-of-type(even) .book-instruction-image img {
    margin-botom: 20px;
  }
  section.book .book-instruction:nth-of-type(3) .book-instruction-image {
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  section.book .book-instruction:nth-of-type(3) .book-instruction-image img {
    height: 450px !important;
  }
}
section.teachers {
  background-color: #fafafa;
  background: linear-gradient(#fafafa 0%, #fafafa 37%, #0f94cf 37%, #0f94cf 100%);
  margin-top: 80px;
  position: relative;
  padding-bottom: 100px;
}
section.teachers > svg.wave {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
}
section.teachers h2 {
  text-align: center;
  padding-top: 50px;
  margin-bottom: 15px;
}
section.teachers .teachers-subtitle {
  margin-bottom: 70px;
}
section.teachers .teachers-subtitle p {
  text-align: center;
  font-size: 20px;
}
section.teachers .teachers-subtitle p em {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
}
section.teachers .teachers-slider {
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #fff;
  width: 90vw;
  margin: auto;
}
section.teachers .teachers-slider .owl-stage-outer .owl-stage {
  display: flex;
  width: 90vw !important;
}
section.teachers .teachers-slider .owl-stage-outer .owl-stage .owl-item .teacher-item {
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto;
}
section.teachers .teachers-slider .owl-stage-outer .owl-stage .owl-item .teacher-item img {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 30px;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: height 0.5s ease;
}
section.teachers .teachers-slider .owl-stage-outer .owl-stage .owl-item .teacher-item h5 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.2;
}
section.teachers .teachers-slider .owl-stage-outer .owl-stage .owl-item .teacher-item .teacher-text {
  width: 100%;
}
section.teachers .teachers-slider .owl-stage-outer .owl-stage .owl-item .teacher-item .teacher-text p {
  line-height: 2.2;
}
section.teachers .teachers-slider .owl-stage-outer .owl-stage .owl-item .teacher-item .teacher-text a.teacher-button {
  color: #fff;
  display: inline-block;
  border: 2px solid #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
  padding: 7px 15px;
  margin-top: 20px;
}
section.teachers .teachers-slider .owl-carousel {
  position: relative;
  overflow: hidden;
}
section.teachers .teachers-slider .owl-carousel .owl-nav {
  z-index: 970;
}
section.teachers .teachers-slider .owl-carousel .owl-nav button {
  cursor: pointer;
  background: 0 0 !important;
  outline: 0 !important;
  border: none;
}
section.teachers .teachers-slider .owl-carousel .owl-nav .owl-prev i,
section.teachers .teachers-slider .owl-carousel .owl-nav .owl-next i {
  color: #eeb72e;
  font-size: 3em;
}
section.teachers .teachers-slider .owl-carousel .owl-nav .owl-prev,
section.teachers .teachers-slider .owl-carousel .owl-nav .owl-next {
  width: 35px;
  height: 100px;
  position: absolute;
  display: block !important;
  border: 0px solid black;
}
section.teachers .teachers-slider .owl-carousel .owl-nav .owl-prev:focus,
section.teachers .teachers-slider .owl-carousel .owl-nav .owl-next:focus {
  background: none !important;
  outline: none !important;
}
section.teachers .teachers-slider .owl-carousel .owl-nav .owl-prev:hover,
section.teachers .teachers-slider .owl-carousel .owl-nav .owl-next:hover {
  background: none !important;
  outline: none !important;
}
section.teachers .teachers-slider .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 10px;
  transform: translateY(-260%);
}
section.teachers .teachers-slider .owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: 10px;
  transform: translateY(-260%);
}

@media (min-width: 1400px) {
  section.teachers .teachers-slider {
    width: 75vw;
  }
  section.teachers .teachers-slider .owl-carousel .owl-stage {
    width: 75vw;
  }
  section.teachers .teachers-slider .owl-carousel .owl-nav .owl-prev {
    left: 0px;
  }
  section.teachers .teachers-slider .owl-carousel .owl-nav .owl-next {
    right: 0px;
  }
}
@media (min-width: 1200px) {
  section.teachers .teachers-slider .owl-carousel .owl-stage-outer .owl-stage .owl-item.active-item .teacher-item img {
    width: 260px;
    height: 260px;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: height 0.5s ease;
  }
}
@media (max-width: 1000px) {
  section.teachers {
    margin-top: 100px;
  }
}
@media (max-width: 445px) {
  section.teachers {
    background: linear-gradient(#fafafa 0%, #fafafa 39%, #0f94cf 39%, #0f94cf 100%);
  }
}
section.success {
  position: relative;
  padding-bottom: 100px;
}
section.success h2 {
  text-align: center;
  color: #fff;
  padding-top: 115px;
  margin-bottom: 20px;
}
section.success .success-subtitle {
  margin-bottom: 50px;
}
section.success .success-subtitle p {
  color: #fff;
  text-align: center;
  font-size: 20px;
}
section.success .success-subtitle p em {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
}
section.success .testimonials-slider {
  display: flex;
  overflow: hidden;
  justify-content: center;
  width: 100%;
  margin: auto;
}
section.success .testimonials-slider .owl-stage-outer .owl-stage {
  display: flex;
}
section.success .testimonials-slider .owl-stage-outer .owl-stage .owl-item .testimonial-item {
  flex-direction: column;
  width: 52vw;
  padding: 32px;
  border-radius: 25px;
  background-color: rgba(0, 141, 213, 0.8);
  color: #fff;
  text-align: center;
  margin: auto;
}
section.success .testimonials-slider .owl-stage-outer .owl-stage .owl-item .testimonial-item p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}
section.success .testimonials-slider .owl-stage-outer .owl-stage .owl-item .testimonial-item p.name {
  padding-top: 10px;
  font-style: italic;
  font-size: 16px;
}
section.success .testimonials-slider .owl-carousel {
  position: relative;
  overflow: hidden;
}
section.success .testimonials-slider .owl-carousel .owl-nav {
  display: none;
}
section.success .testimonials-slider .owl-carousel .owl-dots {
  text-align: center;
  margin-top: 60px;
}
section.success .testimonials-slider .owl-carousel .owl-dots button {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #fff;
  border: unset;
  margin: 0 10px;
}
section.success .testimonials-slider .owl-carousel .owl-dots button.owl-dot.active {
  background-color: #0f94cf;
}
section.success .testimonials-slider .owl-carousel .owl-dots button:focus {
  outline: unset;
}

@media (max-width: 800px) {
  section.success .testimonials-slider .owl-stage-outer .owl-stage .owl-item .testimonial-item {
    width: 80vw;
  }
}
footer {
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
}
footer .main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #414142;
  padding: 70px 90px;
}
footer .main .col {
  width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}
footer .main .col:nth-of-type(2) {
  padding-left: 50px;
}
footer .main .col h6 {
  color: #0f94cf;
  font-size: 20px;
  font-family: "Segoe UI", sans-serif;
  font-weight: 500;
  margin: 20px 0;
}
footer .main .col p {
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 16px;
}
footer .main .col a:not(.social) {
  color: #fff;
  display: flex;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}
footer .main .col a:not(.social):last-of-type {
  margin-bottom: 20px;
}
footer .main .col ul {
  margin-bottom: 50px;
}
footer .main .col ul li {
  background-color: #fff;
  width: 31px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
footer .main .col ul li a {
  color: #414142;
}
footer .copy {
  background-color: #0f94cf;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 20px;
}
footer .copy em {
  font-style: italic;
}

@media (min-width: 1400px) {
  footer .main {
    padding: 70px 300px;
  }
}
@media (max-width: 800px) {
  footer .main {
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  footer .main .col {
    justify-content: center;
    align-items: center;
    margin-right: 0 !important;
    margin-bottom: 40px;
    padding-left: 0;
    width: 85vw;
    text-align: center;
  }
  footer .main .col:nth-of-type(2) {
    padding-left: 0;
  }
  footer .main .col a {
    justify-content: center;
  }
  footer .main .col ul {
    flex-grow: 1;
    text-align: center;
  }
}

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