/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  height: 225px;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 767px) {
  .slick-slider {
    height: 60vh;
  }
}
.slick-dots {
  list-style-type: none;
  width: 150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0;
  position: relative;
  bottom: 50px;
}
.slick-dots button {
  background: #eee;
  font-size: 0px;
  height: 15px;
  width: 15px;
  border-radius: 15px;
  border: none;
}
.slick-dots .slick-active button {
  background: #007f7b;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: "Open Sans", sans-serif;
  min-height: 75rem;
}
.container,
.container-fluid {
  font-family: "Open Sans", sans-serif;
  padding-top: 60px;
  padding-bottom: 30px;
}
.container.grey,
.container-fluid.grey {
  background: #eee;
}
.container.nospace,
.container-fluid.nospace {
  padding-top: 20px;
  padding-bottom: 20px;
  top: -60px;
  position: relative;
}
.container.nav_wrapper,
.container-fluid.nav_wrapper {
  padding-top: 0;
  padding-bottom: 0;
  height: 80px;
  width: 100%;
  z-index: 2;
}
.container h5,
.container-fluid h5 {
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}
.container h2,
.container-fluid h2 {
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  color: #009c98;
  font-weight: bold;
  padding-bottom: 40px;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1200px) {
  .container h2,
  .container-fluid h2 {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .container h2,
  .container-fluid h2 {
    font-size: 4.5vw;
  }
}
.container h2:after,
.container-fluid h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  height: 1px;
  width: 100px;
  border-top: 1px solid #c9cacc;
  left: 50%;
  margin-left: -50px;
}
.container h3,
.container-fluid h3 {
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  color: #000;
  font-weight: bold;
  padding-bottom: 40px;
  margin-bottom: 40px;
  position: relative;
}
.container h3:after,
.container-fluid h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  height: 1px;
  width: 100px;
  border-top: 1px solid #000;
  left: 0;
}
.container p.intro,
.container-fluid p.intro {
  font-style: italic;
  font-size: 1.2em;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}
.container p.intro:after,
.container-fluid p.intro:after {
  content: '';
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  height: 1px;
  width: 100px;
  border-top: 1px solid #c9cacc;
  left: 0;
}
.navbar .navbar-brand {
  display: inline-block;
  height: 80px;
  width: 250px;
  background: url(../../assets/images/c-weigl.svg) no-repeat;
  background-size: 150px;
  background-position: center;
}
@media (max-width: 991px) {
  .navbar .navbar-brand {
    width: 175px;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-brand {
    background-size: 140px;
    height: 75px;
    width: 150px;
  }
}
.navbar h1 {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
@media (max-width: 767px) {
  .navbar .navbar-toggler {
    position: relative;
    top: 15px;
  }
}
.about_wrapper {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  display: -webkit-flex;
  display: flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
}
.about_wrapper .bullet {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  margin-bottom: 10px;
  background: #009c98;
}
.about_wrapper .aboutus_item {
  text-align: center;
  width: 33.333333%;
  height: auto;
  margin-bottom: 50px;
  font-size: 1em;
}
@media (max-width: 991px) {
  .about_wrapper .aboutus_item {
    width: 50%;
  }
}
@media (max-width: 641px) {
  .about_wrapper .aboutus_item {
    width: 100%;
  }
}
.about_wrapper .aboutus_item:nth-child(odd) .bullet {
  border: 5px solid #009c98;
  background: #fff;
}
.about_wrapper .aboutus_item .inner {
  background: #fff;
  padding: 20px;
  margin: 20px;
  height: 100%;
}
.about_wrapper .aboutus_item .inner p {
  margin: 0;
}
.quote_wrapper {
  background: rgba(255, 255, 255, 0.4);
  padding: 20px 0 0 0;
}
.quote_wrapper hr {
  width: 100px;
  margin: 40px auto;
}
.quote_wrapper p {
  font-size: 1.4em;
  max-width: 60%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .quote_wrapper p {
    max-width: 100%;
  }
}
.quote_wrapper p.small {
  margin-top: 15px;
  font-size: 1em;
}
.container-fluid.bg_green .container {
  padding-top: 0;
}
@media (max-width: 767px) {
  .container-fluid.bg_green {
    padding: 0 15px;
  }
  .container-fluid.bg_green .container {
    padding-bottom: 0;
    padding-top: 20px;
  }
}
.static-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1030;
}
#navcol {
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767px) {
  #navcol {
    height: 100vh;
    width: 100vw;
    background: #fff;
  }
}
#main_nav {
  height: 80px;
}
@media (max-width: 767px) {
  #main_nav {
    height: 100%;
  }
}
#main_nav ul {
  list-style: none;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  display: -webkit-flex;
  display: flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
}
@media (max-width: 767px) {
  #main_nav ul {
    justify-content: center;
    flex-wrap: wrap;
    height: 40%;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
#main_nav ul li {
  display: inline;
  position: relative;
  line-height: 80px;
}
@media (max-width: 767px) {
  #main_nav ul li {
    display: block;
    line-height: 9vh;
    width: 100%;
    text-align: center;
  }
  #main_nav ul li a:after {
    display: none;
  }
}
#main_nav ul li a {
  color: #000;
  text-decoration: none;
}
#main_nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 20px;
  margin: 0 auto;
  height: 1px;
  width: 0;
  border-top: 1px solid #8c8c8c;
  left: 50%;
  margin-left: -50px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#main_nav ul li:hover a:after {
  border-top: 1px solid #8c8c8c;
}
#main_nav ul li.active a:after {
  border-top: 1px solid #000;
}
#main_nav ul li.active a:after,
#main_nav ul li:hover a:after {
  width: 100px;
}
#main_nav ul li.activeShowOffer {
  width: 250px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.4);
}
a.clean {
  text-decoration: none;
  color: #373a3c;
}
#header {
  height: 62%;
  height: 62vh;
  max-height: 550px;
}
@media (max-width: 767px) {
  #header {
    max-height: 50vh;
  }
}
#header video {
  top: 0;
  position: absolute;
}
#header .header_img {
  background-size: cover;
  height: 100%;
  position: relative;
  padding-top: 100px;
}
#header .header_img .slogan_wrapper {
  position: absolute;
  overflow: hidden;
  left: 40px;
  top: 140px;
  width: auto;
  padding-right: 40px;
}
@media (max-width: 991px) {
  #header .header_img .slogan_wrapper {
    max-width: 80%;
    overflow: hidden;
  }
}
#header .header_img .slogan_wrapper .author {
  font-size: 12px;
  padding-top: 0;
  width: auto;
  font-style: italic;
}
@media (max-width: 767px) {
  #header .header_img .slogan_wrapper .author {
    font-size: 1.9vw;
    font-style: italic;
  }
}
#header .header_img .slogan {
  position: relative;
}
@media (max-width: 991px) {
  #header .header_img .slogan {
    padding-right: 15px;
  }
}
#header .header_img .slogan::before {
  content: '';
  position: absolute;
  left: -5vw;
  top: 10%;
  height: 80%;
  background: #009c98;
  -webkit-border-radius: 80%;
  -moz-border-radius: 80%;
  border-radius: 80%;
  width: 100px;
  width: 9vw;
  z-index: 2;
}
@media (max-width: 767px) {
  #header .header_img .slogan::before {
    display: none;
  }
}
#header .header_img .slogan span {
  display: block;
  background: rgba(255, 255, 255, 0.7);
  font-size: 2vw;
  padding: 5px 5px 10px 40px;
  position: relative;
  left: 1vw;
  text-transform: uppercase;
  max-width: 100%;
}
@media (min-width: 1200px) {
  #header .header_img .slogan span {
    padding: 5px 5px 10px 60px;
  }
}
@media (max-width: 767px) {
  #header .header_img .slogan span {
    font-size: 3vw;
    padding-left: 5px;
  }
}
#header .header_img .slogan span.first {
  color: #009c98;
  width: auto;
  font-weight: bold;
  padding-bottom: 0;
  padding-right: 30px;
}
#header .header_img .slogan span.second {
  padding-top: 0;
  padding-right: 30px;
}
#map {
  display: block;
  height: 80%;
  height: 80vh;
  width: 100%;
  max-width: 100%;
  position: relative;
  left: 0;
  top: -75px;
}
@media (max-width: 991px) {
  #map {
    top: -100px;
    height: 40vh;
    margin-bottom: 50px;
  }
}
.address_wrapper {
  position: absolute;
  padding: 40px;
  left: 10%;
  top: 10%;
  width: 50%;
  z-index: 2;
  background: #fff;
}
.address_wrapper span {
  width: 25px;
  display: block;
  float: left;
}
@media (max-width: 991px) {
  .address_wrapper {
    top: 0;
    position: relative;
    width: 100%;
    left: 15px;
    padding: 15px;
  }
}
.address_wrapper a {
  text-decoration: none;
  color: #373a3c;
}
.circle_wrapper {
  padding-left: 60px;
  margin-top: 15px;
}
.circle_wrapper p {
  line-height: 40px;
  margin: 0;
}
.circle_wrapper .circle {
  position: absolute;
  left: 15px;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  color: #fff;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  background: #009c98;
}
#paypayl_form,
#form {
  height: auto;
  background: #fff;
  z-index: 50;
  position: relative;
  overflow: hidden;
}
#paypayl_form .alert,
#form .alert {
  margin: 20px 0;
  position: relative;
}
#paypayl_form .alert i,
#form .alert i {
  font-weight: 700;
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 15px;
  font-style: normal;
  cursor: pointer;
  padding: 10px 20px;
}
#paypayl_form .alert p,
#form .alert p {
  margin: 0;
}
#paypayl_form .form-sent,
#form .form-sent {
  opacity: 0.25;
  filter: blur(4px);
  position: relative;
  z-index: 1;
}
#paypayl_form .thanks_wrapper,
#form .thanks_wrapper {
  position: absolute;
  top: 0;
  left: 200%;
  -webkit-transition: left 1s;
  -moz-transition: left 1s;
  -ms-transition: left 1s;
  -o-transition: left 1s;
  transition: left 1s;
}
#paypayl_form .thanks_wrapper.success-form,
#form .thanks_wrapper.success-form {
  text-align: center;
  padding: 60px 0 40px 0;
  left: 50%;
  width: 100%;
  z-index: 50;
}
#paypayl_form .thanks_wrapper.success-form.paypal-success-wrapper,
#form .thanks_wrapper.success-form.paypal-success-wrapper {
  left: 0;
}
#paypayl_form .custom-control-input:checked ~ .custom-control-indicator,
#form .custom-control-input:checked ~ .custom-control-indicator {
  background-color: #009c98;
}
#paypayl_form button,
#form button {
  color: #fff;
  background: #009c98;
  border: none;
  font-weight: bold;
  padding: 5px 10px;
  margin: 40px 0;
}
#paypayl_form button.disabled,
#form button.disabled {
  opacity: 0.5;
}
#paypayl_form form .form-group,
#form form .form-group {
  position: relative;
}
#paypayl_form form .form-group input,
#form form .form-group input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#paypayl_form form .form-group input.error,
#form form .form-group input.error {
  border: 1px solid rgba(255, 44, 58, 0.75);
}
#paypayl_form form .form-group.floating-label-form-group,
#form form .form-group.floating-label-form-group {
  margin-top: 25px;
}
#paypayl_form form .form-group.floating-label-form-group input,
#form form .form-group.floating-label-form-group input,
#paypayl_form form .form-group.floating-label-form-group textarea,
#form form .form-group.floating-label-form-group textarea {
  position: relative;
}
#paypayl_form form .form-group.floating-label-form-group label,
#form form .form-group.floating-label-form-group label {
  display: block;
  position: absolute;
  top: 2em;
  opacity: 0;
  z-index: 0;
  font-size: 11px;
  line-height: 1.76470588em;
  vertical-align: middle;
  vertical-align: baseline;
  margin: 0;
  -webkit-transition: top 0.5s ease;
  -moz-transition: top 0.5s ease;
  -ms-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  color: #a8a8a8;
}
#paypayl_form form .form-group.floating-label-form-group-with-value label,
#form form .form-group.floating-label-form-group-with-value label {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  position: absolute;
  padding-left: 12px;
}
#paypayl_form form .form-group.floating-label-form-group-with-value label.left,
#form form .form-group.floating-label-form-group-with-value label.left {
  top: 0;
  left: -25px;
}
#paypayl_form form .form-group.floating-label-form-group-with-value label.right,
#form form .form-group.floating-label-form-group-with-value label.right {
  top: 0;
  right: -25px;
}
#paypayl_form form .form-group.floating-label-form-group-with-value label.top,
#form form .form-group.floating-label-form-group-with-value label.top {
  top: -20px;
}
#paypayl_form form .form-group.floating-label-form-group-with-value label.bottom,
#form form .form-group.floating-label-form-group-with-value label.bottom {
  bottom: -25px;
}
#form {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#paypayl_form {
  margin-bottom: 120px;
}
#paypayl_form .paypal-button-container {
  transition-duration: 1s;
  max-width: 320px;
  opacity: 0;
  position: relative;
  z-index: 0;
  transform: translateX(-50%) translateY(-60%);
  top: 65%;
  left: 50%;
}
#paypayl_form .paypal-button-container.pp-form-sent {
  opacity: 1;
  z-index: 100;
}
#paypayl_form .paypal-button-container .paypal-info {
  font-size: 10px;
  margin: 0;
  padding: 0;
}
#paypayl_form .paypal-button-container .payment-info-wrapper {
  margin: 20px 0 40px 0;
}
#paypayl_form .paypal-button-container .payment-info-wrapper p {
  margin: 0;
}
#paypayl_form .paypal-button-container h5 {
  display: block;
  margin: 0 0 15px 0;
}
#paypayl_form h5 {
  display: block;
  margin: 100px 0 0 0;
}
#paypayl_form .thanks_wrapper {
  transform: translateX(-50%) translateY(-50%);
  top: 65%;
}
.disabled-overlay {
  position: relative;
  pointer-events: none;
}
.disabled-overlay:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  opacity: 0.3;
  z-index: 100;
  pointer-events: none;
}
.error-wrapper {
  position: absolute;
  top: 460px;
  width: 100%;
  justify-content: center;
  display: flex;
  left: 200%;
  -webkit-transition: left 1s;
  -moz-transition: left 1s;
  -ms-transition: left 1s;
  -o-transition: left 1s;
  transition: left 1s;
}
.error-form {
  left: 0;
  z-index: 10;
}
.switch_wrapper {
  position: relative;
  margin: 40px 0;
  padding-bottom: 40px;
  height: 355px;
}
@media (max-width: 991px) {
  .switch_wrapper {
    height: auto;
  }
}
.switch_wrapper .select_wrapper {
  height: 0;
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  -webkit-transition: height 0.2s;
  -moz-transition: height 0.2s;
  -ms-transition: height 0.2s;
  -o-transition: height 0.2s;
  transition: height 0.2s;
}
@media (max-width: 991px) {
  .switch_wrapper .select_wrapper {
    position: relative;
    left: 0;
    height: auto;
    width: 100%;
  }
}
.switch_wrapper .select_wrapper.active {
  height: auto;
  min-height: 275px;
}
.switch_wrapper .select_wrapper .selected {
  color: #fff;
  background: #009c98;
  height: auto;
  width: 100%;
  padding: 15px;
}
.switch_wrapper .select_wrapper .selected a {
  color: inherit;
  font-weight: 700;
}

@media (max-width: 991px) {
  .switch_wrapper .select_wrapper .selected {
    background: #fff;
    color: #373a3c;
  }
}
.switch_wrapper .options span {
  cursor: pointer;
}
.switch_wrapper .options span.active.selector {
  color: #000;
}
.switch_wrapper .options span.active .circle {
  background: #009c98;
}
.switch_wrapper .options span.selector {
  line-height: 60px;
  padding-left: 15px;
  font-size: 1.5em;
  color: #8c8c8c;
}
@media (max-width: 991px) {
  .switch_wrapper .options span.selector {
    padding-left: 0;
  }
}
.switch_wrapper .options span.circle {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  color: #fff;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  background: #8c8c8c;
}
@media (max-width: 991px) {
  #courses-home .courses_wrapper {
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  #courses-home .courses_wrapper .row {
    display: flex;
    justify-content: center;
  }
}
#courses-home .courses_wrapper .row .course_item_home {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 270px;
  background-size: cover;
}
@media (max-width: 767px) {
  #courses-home .courses_wrapper .row .course_item_home {
    height: 175px;
  }
}
#courses-home .courses_wrapper .row .course_item_home a {
  display: flex;
  justify-content: center;
  position: absolute;
  padding: 15px;
  line-height: 12px;
  height: 50%;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.4);
  font-size: 1.3em;
  font-weight: bold;
  width: 100%;
}
#courses-home .courses_wrapper .row .course_item_home a span {
  display: block;
  line-height: 2em;
}
@media (max-width: 767px) {
  #courses-home .courses_wrapper .row .course_item_home a span {
    font-size: 2.6vw;
  }
}
@media (max-width: 640px) {
  #courses-home .courses_wrapper .row .course_item_home a span {
    font-size: 3.5vw;
  }
}
.courses_wrapper {
  padding-bottom: 125px;
  padding-top: 90px;
}
.courses_wrapper .course_item {
  position: relative;
  height: 270px;
  background-size: cover;
}
@media (max-width: 767px) {
  .courses_wrapper .course_item {
    height: 175px;
  }
}
.courses_wrapper .course_item a {
  position: absolute;
  padding: 15px;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 12px;
  height: 50%;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.4);
  font-size: 1.3em;
  font-weight: bold;
}
.courses_wrapper .course_item a span {
  display: block;
  line-height: 2em;
}
@media (max-width: 767px) {
  .courses_wrapper .course_item a span {
    font-size: 2.6vw;
  }
}
@media (max-width: 640px) {
  .courses_wrapper .course_item a span {
    font-size: 3.5vw;
  }
}
.schedule_wrapper {
  overflow-x: hidden;
  padding: 30px 30px 0 30px;
  background: #fff;
}
.schedule_wrapper.big {
  background: #eee;
  padding-top: 40px;
}
.schedule_wrapper.big .course_title {
  padding-top: 10px;
  background: #fff;
}
.schedule_wrapper.big .course_item {
  background: #fff;
}
.schedule_wrapper.big .course_item:nth-child(even) {
  background: #ddd;
}
.schedule_wrapper.big h4 {
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  color: #007f7b;
  font-weight: bold;
  padding-bottom: 15px;
  margin-bottom: 40px;
  position: relative;
  margin-top: 40px;
}
.schedule_wrapper.big h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100px;
  border-top: 1px solid #c9cacc;
  left: 0;
}
.schedule_wrapper .course_title {
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #c9cacc;
}
.schedule_wrapper .course_item {
  position: relative;
  padding-top: 15px;
  border-bottom: 1px solid #c9cacc;
  padding-bottom: 10px;
}
.schedule_wrapper .course_item a.button {
  color: #fff;
  margin: 0;
}
@media (max-width: 767px) {
  .schedule_wrapper .course_item a.button {
    margin-top: 15px;
  }
}
.schedule_wrapper .course_item:nth-child(even) {
  background: #ddd;
}
@media (max-width: 767px) {
  .schedule_wrapper .course_item {
    padding-bottom: 40px;
  }
}
.schedule_wrapper .course_item a {
  text-decoration: none;
  color: #373a3c;
}
a.button {
  color: #fff;
  background: #009c98;
  border: none;
  display: inline-block;
  font-weight: bold;
  padding: 5px 10px;
  margin: 40px 0;
}
button.button {
  color: #fff;
  background: #009c98;
  border: none;
  font-weight: bold;
  padding: 5px 10px;
  margin: 40px 0;
}
button.button.disabled {
  opacity: 0.5;
}
.content_wrapper h5 {
  font-family: "Open Sans Extrabold", sans-serif;
  font-weight: 800;
  color: #009c98;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 40px;
}
.content_wrapper h6 {
  font-family: "Open Sans Extrabold", sans-serif;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #009c98;
}
@media (max-width: 991px) {
  .content_wrapper img {
    max-width: 100%;
    height: auto;
  }
}
.course_detail {
  font-weight: bold;
  margin-bottom: 40px;
}
.course_detail .row {
  margin-bottom: 15px;
}
.refs_wrapper {
  padding-bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}
.refs_wrapper .refs {
  height: 175px;
}
.refs_wrapper .slick-dots {
  width: 40%;
  display: flex;
  justify-content: space-around;
}
.refs_wrapper .slick-dots li {
  opacity: 0.5;
}
.refs_wrapper .slick-dots li.slick-active {
  opacity: 1;
}
.refs_wrapper .slick-dots img {
  height: auto;
  width: 100px;
}
.refs_wrapper .ref_item img {
  height: auto;
  width: 100px;
}
.refs_wrapper .ref_item p {
  width: 75%;
  margin: 0 auto;
  font-style: italic;
  text-align: center;
}
@media (max-width: 991px) {
  .refs_wrapper .ref_item p {
    width: 100%;
  }
}
.refs_wrapper .ref_item p.small {
  margin-top: 15px;
}
.refs_wrapper hr {
  border-top: #fff;
}
.statement_wrapper .statement {
  margin-bottom: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .statement_wrapper .statement {
    padding-left: 50px;
  }
}
.statement_wrapper .statement:before {
  content: '«';
  position: absolute;
  top: -75px;
  left: -56px;
  font-size: 100px;
  font-family: "Open Sans", sans-serif;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .statement_wrapper .statement:before {
    left: -5px;
  }
}
.statement_wrapper .statement i {
  color: #a8a8a8;
  display: block;
}
.further_links {
  margin-top: 40px;
}
.further_links a.button {
  margin-left: 10px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .further_links a.button {
    margin: 15px 0;
  }
}
@media (max-width: 991px) {
  .ps-scrollbar-x-rail {
    display: none;
  }
}
.logo_wrapper {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.logo_wrapper.big {
  background: #aaa;
  padding: 45px 0;
  margin-top: -100px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .logo_wrapper.big {
    position: relative;
    width: 100vw;
    justify-content: flex-start;
  }
  .logo_wrapper.big a {
    width: 120px;
    height: 40px;
  }
  .logo_wrapper.big a div {
    width: auto;
    height: auto;
  }
}
.logo_wrapper.big .img_wrapper {
  position: relative;
}
@media (max-width: 991px) {
  .logo_wrapper.big .img_wrapper.active {
    opacity: 1;
  }
}
.logo_wrapper.big .img_wrapper img {
  cursor: pointer;
}
.logo_wrapper.big .img_wrapper.active:after {
  content: '';
  position: absolute;
  bottom: -70px;
  height: 40px;
  width: 43px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  left: 50%;
  margin-left: -21.5px;
  background: #eee;
}
@media (max-width: 991px) {
  .logo_wrapper.big .img_wrapper.active:after {
    bottom: -50px;
  }
}
.logo_wrapper img {
  max-height: 60px;
  margin: 0 10px;
}
#footer {
  text-align: center;
  padding-bottom: 40px;
  padding-top: 40px;
  background: url(../../assets/images/c-weigl.svg) no-repeat;
  background-size: 150px;
  background-position: center 30px;
}
#footer .navbar-nav:nth-child(odd) {
  margin-right: 1rem;
}
#footer ul {
  list-style: none;
  text-align: center;
  display: inline-block;
}
#footer ul:nth-child(odd) {
  padding-top: 75px;
}
@media (max-width: 767px) {
  #footer ul {
    display: block;
  }
}
#footer ul li {
  display: inline-block;
}
@media (max-width: 767px) {
  #footer ul li {
    display: block;
    text-align: center;
    padding: 0;
    margin: 0 0 15px 0;
    float: none;
  }
}
#footer ul li a {
  color: #373a3c;
}
@media (max-width: 767px) {
  #footer {
    margin-top: 40px;
  }
}
.links_wrapper .link_item {
  position: relative;
  height: 590px;
  padding: 0;
}
.links_wrapper .link_item .circle {
  position: absolute;
  top: 50%;
  margin-top: -50px;
  height: 100px;
  width: 100px;
  background: #009c98;
  left: 50%;
  margin-left: -50px;
  z-index: 2;
  border: 5px solid #fff;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  font-size: 2.5em;
  line-height: 90px;
  font-weight: bold;
  -webkit-transition: font-size 0.25s;
  -moz-transition: font-size 0.25s;
  -ms-transition: font-size 0.25s;
  -o-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.links_wrapper .link_item .circle:hover {
  font-size: 3em;
}
.links_wrapper .link_item img {
  width: 100%;
  height: 50%;
  max-height: 50%;
}
.links_wrapper .link_item a.link {
  text-align: center;
  bottom: 0;
  width: 100%;
  height: 50%;
  color: #000;
  text-decoration: none;
  background: #eee;
  padding: 20px;
  display: table;
  font-size: 1.1rem;
  font-weight: bold;
}
.links_wrapper .link_item a.link span {
  display: table-cell;
  vertical-align: middle;
}
.links_wrapper .link_item a.link span.small {
  display: block;
  margin-top: 15px;
}
.links_wrapper .link_item:nth-child(even) a {
  background: #fef7e9;
}
span.green {
  color: #009c98;
  cursor: pointer;
  margin-bottom: 25px;
  display: inline-block;
}
.bg_green span.green {
  color: #fff;
  cursor: pointer;
  margin-bottom: 25px;
  display: inline-block;
}
.spacer {
  height: 60px;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  h3 {
    margin-top: 25px;
  }
}
.bg_green {
  background: #009c98;
  color: #fff;
}
.bg_green h3 {
  color: #fff;
}
.bg_green h3:after {
  border-top: 1px solid #fff;
}
.xing {
  background: url(../../assets/images/xing.png) no-repeat;
  background-size: contain;
}
.linkedin {
  background: url(../../assets/images/linkedin.png) no-repeat;
  background-size: contain;
}
.xing,
.linkedin {
  border: none;
  display: inline-block;
  padding: 30px;
  margin: 20px 0;
  width: 40px;
  line-height: 40px;
}
.reflink ul {
  margin: 0;
  padding: 0;
}
.reflink ul li {
  display: inline-block;
}
.reflink ul li a {
  color: #fff;
  background: #009c98;
  border: none;
  display: inline-block;
  font-weight: bold;
  padding: 5px 10px;
  margin: 40px 10px;
}
.reflink ul li a.active {
  background: #b1b1b1;
}
.ng-cloak {
  display: none;
}
.row.list {
  margin-bottom: 25px;
}
video {
  width: 100% !important;
  height: auto !important;
  max-height: 100% !important;
  object-fit: fill;
}
.statement_wrapper {
  position: relative;
  top: -50px;
}
.cookie_info {
  padding: 35px 25px 35px 15px;
  border: 1px solid #ccc;
  border-bottom: none;
  position: fixed;
  bottom: 0;
  opacity: 0;
  z-index: 99;
  animation: fadeInRight 1.5s normal forwards ease-out;
  color: #777;
  background: #fff;
}
.cookie_info .cookie_info_inner {
  display: flex;
  justify-content: space-between;
  justify-items: flex-start;
}
.cookie_info .cookie_info_inner p {
  margin: 0;
  text-align: left;
  padding-right: 25px;
}
@media (max-width: 767px) {
  .cookie_info .cookie_info_inner {
    flex-wrap: wrap;
  }
}
.cookie_info .close_wrapper {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
  color: #777;
  width: 25px;
  height: 25px;
}
.cookie_info .close_wrapper .icon-bar {
  height: 2px;
  width: 25px;
  background: #fff;
  display: block;
  margin: 8px 0 0 0;
  border-radius: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.cookie_info .close_wrapper .icon-bar.cross_1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px;
  position: relative;
}
.cookie_info .close_wrapper .icon-bar.cross_2 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
  .cookie_info .close_wrapper .icon-bar {
    width: 30px;
  }
}
.cookie_info.short {
  left: auto;
  right: -300px;
  overflow: hidden;
  width: 330px;
}
.cookie_info.wide {
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  animation: fadeInBottom 1.5s normal forwards ease-in-out;
  bottom: 0;
}
.cookie_info.wide .inner {
  max-width: 970px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .cookie_info.wide .inner {
    max-width: 1170px;
  }
}
@media (max-width: 991px) {
  .cookie_info.wide .inner {
    max-width: 750px;
  }
}
@media (max-width: 767px) {
  .cookie_info.wide .inner {
    justify-content: start;
  }
}
.cookie_info.wide .inner button {
  margin: 0;
  position: relative;
  font-weight: 700;
}
.cookie_info.wide p,
.cookie_info.wide p.small {
  color: #FFF;
}
@media (max-width: 767px) {
  .cookie_info.wide p,
  .cookie_info.wide p.small {
    max-width: none;
    margin-bottom: 25px;
  }
}
.cookie_info.wide .close_wrapper {
  color: #FFFFFF;
}
.cookie_info.wide .close_wrapper .icon-bar {
  background: #FFFFFF;
}
.cookie_info.wide a,
.cookie_info.wide a:visited,
.cookie_info.wide a:focus,
.cookie_info.wide a:active {
  color: #FFFFFF;
  text-decoration: underline;
}
.cookie_info.wide .button {
  margin-top: 15px;
  margin-bottom: 15px;
  background: #fff;
  color: #009c98;
  height: 45px;
  font: normal 900 16px "Open Sans", sans-serif;
}
.cookie_info.wide .button:hover {
  background: #009c98;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cookie_info {
    border-left: none;
    border-right: none;
  }
}
@media (max-width: 767px) {
  .cookie_info {
    width: 100%;
    left: 0;
    padding: 20px 40px 20px 20px;
  }
}
.cookie_info.active {
  margin-top: 0;
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    bottom: -300px;
  }
  55% {
    opacity: 0;
    bottom: -50px;
  }
  to {
    opacity: 1;
    bottom: 0px;
  }
}
@-webkit-keyframes fadeInBottom {
  from {
    opacity: 0;
    bottom: -300px;
  }
  55% {
    opacity: 0;
    bottom: -50px;
  }
  to {
    opacity: 1;
    bottom: 0px;
  }
}
@keyframes fadeOutBottom {
  from {
    opacity: 1;
    bottom: 0px;
  }
  55% {
    opacity: 0;
    bottom: -50px;
  }
  to {
    opacity: 0;
    bottom: -300px;
  }
}
@-webkit-keyframes fadeOutBottom {
  from {
    opacity: 1;
    bottom: 0px;
  }
  55% {
    opacity: 0;
    bottom: -50px;
  }
  to {
    opacity: 0;
    bottom: -300px;
  }
}
.hide-cookie-box .cookie_info {
  animation: fadeOutBottom 1s normal forwards ease-in-out;
}
#main_nav ul.subnav {
  display: none;
  position: absolute;
  top: 80px;
  width: 300px;
  background: rgba(255, 255, 255, 0.6);
  height: 100px;
  padding: 10px 0 0 0;
  left: -36px;
  justify-content: left;
}
#main_nav ul.subnav li {
  line-height: 1.25;
  margin-left: 35px;
}
#main_nav .nav-item:hover ul.subnav {
  display: flex;
}
#main_nav .nav-item:hover .subnav-toggle {
  transform: scale(1);
}
#main_nav ul li.subnav-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
}
.subnav-toggle {
  display: block;
  height: 7px;
  width: 10px;
  background-size: 10px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0IiB2aWV3Qm94PSIwIDAgNTYwIDMyMCIgd2lkdGg9IjU2MCIgaGVpZ2h0PSIzMjAiPjxkZWZzPjxwYXRoIGQ9Ik02OC44NyAxMS44OUM1My4xMSAtMy45NiAyNy41NyAtMy45NiAxMS44MiAxMS44OUMtMy45NCAyNy43NSAtMy45NCA1My40NiAxMS44MiA2OS4zMkMzNS41OCA5My4yMiAyMjUuNjggMjg0LjM2IDI0OS40NSAzMDguMjVDMjU3Ljg0IDMxNi43IDI2OS4wMSAzMjAuNSAyODAgMzE5Ljk1QzI5MC45OSAzMjAuNSAzMDIuMTYgMzE2LjcgMzEwLjU1IDMwOC4yNUMzMzQuMzIgMjg0LjM2IDUyNC40MiA5My4yMiA1NDguMTggNjkuMzJDNTYzLjk0IDUzLjQ2IDU2My45NCAyNy43NSA1NDguMTggMTEuODlDNTMyLjQzIC0zLjk3IDUwNi44OCAtMy45NiA0OTEuMTMgMTEuODlDNDc3LjA2IDI2LjA1IDQwNi42OCA5Ni44MSAyODAgMjI0LjE4QzE1My4zMiA5Ni44MSA4Mi45NCAyNi4wNSA2OC44NyAxMS44OVoiIGlkPSJiamNmMkl4TEgiPjwvcGF0aD48L2RlZnM+PGc+PGc+PGc+PGc+PGZpbHRlciBpZD0ic2hhZG93MTExNzk4MzYiIHg9Ii05IiB5PSItOSIgd2lkdGg9IjU3OSIgaGVpZ2h0PSIzMzkiIGZpbHRlclVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcHJpbWl0aXZlVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48ZmVGbG9vZD48L2ZlRmxvb2Q+PGZlQ29tcG9zaXRlIGluMj0iU291cmNlQWxwaGEiIG9wZXJhdG9yPSJpbiI+PC9mZUNvbXBvc2l0ZT48ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIxIj48L2ZlR2F1c3NpYW5CbHVyPjxmZU9mZnNldCBkeD0iMSIgZHk9IjEiIHJlc3VsdD0iYWZ0ZXJPZmZzZXQiPjwvZmVPZmZzZXQ+PGZlRmxvb2QgZmxvb2QtY29sb3I9IiMwMDAwMDAiIGZsb29kLW9wYWNpdHk9IjAuNSI+PC9mZUZsb29kPjxmZUNvbXBvc2l0ZSBpbjI9ImFmdGVyT2Zmc2V0IiBvcGVyYXRvcj0iaW4iPjwvZmVDb21wb3NpdGU+PGZlTW9ycGhvbG9neSBvcGVyYXRvcj0iZGlsYXRlIiByYWRpdXM9IjEiPjwvZmVNb3JwaG9sb2d5PjxmZUNvbXBvc2l0ZSBpbjI9IlNvdXJjZUFscGhhIiBvcGVyYXRvcj0ib3V0Ij48L2ZlQ29tcG9zaXRlPjwvZmlsdGVyPjxwYXRoIGQ9Ik02OC44NyAxMS44OUM1My4xMSAtMy45NiAyNy41NyAtMy45NiAxMS44MiAxMS44OUMtMy45NCAyNy43NSAtMy45NCA1My40NiAxMS44MiA2OS4zMkMzNS41OCA5My4yMiAyMjUuNjggMjg0LjM2IDI0OS40NSAzMDguMjVDMjU3Ljg0IDMxNi43IDI2OS4wMSAzMjAuNSAyODAgMzE5Ljk1QzI5MC45OSAzMjAuNSAzMDIuMTYgMzE2LjcgMzEwLjU1IDMwOC4yNUMzMzQuMzIgMjg0LjM2IDUyNC40MiA5My4yMiA1NDguMTggNjkuMzJDNTYzLjk0IDUzLjQ2IDU2My45NCAyNy43NSA1NDguMTggMTEuODlDNTMyLjQzIC0zLjk3IDUwNi44OCAtMy45NiA0OTEuMTMgMTEuODlDNDc3LjA2IDI2LjA1IDQwNi42OCA5Ni44MSAyODAgMjI0LjE4QzE1My4zMiA5Ni44MSA4Mi45NCAyNi4wNSA2OC44NyAxMS44OVoiIGlkPSJjMjlsZ1FVbjlEIiBmaWxsPSJ3aGl0ZSIgZmlsbC1vcGFjaXR5PSIxIiBmaWx0ZXI9InVybCgjc2hhZG93MTExNzk4MzYpIj48L3BhdGg+PC9nPjx1c2UgeGxpbms6aHJlZj0iI2JqY2YySXhMSCIgb3BhY2l0eT0iMSIgZmlsbD0iIzAwMDAwMCIgZmlsbC1vcGFjaXR5PSIxIj48L3VzZT48Zz48dXNlIHhsaW5rOmhyZWY9IiNiamNmMkl4TEgiIG9wYWNpdHk9IjEiIGZpbGwtb3BhY2l0eT0iMCIgc3Ryb2tlPSIjMDAwMDAwIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1vcGFjaXR5PSIwIj48L3VzZT48L2c+PGc+PGZpbHRlciBpZD0ic2hhZG93OTEzNjg1NCIgeD0iLTkiIHk9Ii05IiB3aWR0aD0iNTc5IiBoZWlnaHQ9IjMzOSIgZmlsdGVyVW5pdHM9InVzZXJTcGFjZU9uVXNlIiBwcmltaXRpdmVVbml0cz0idXNlclNwYWNlT25Vc2UiPjxmZUZsb29kPjwvZmVGbG9vZD48ZmVDb21wb3NpdGUgaW4yPSJTb3VyY2VBbHBoYSIgb3BlcmF0b3I9Im91dCI+PC9mZUNvbXBvc2l0ZT48ZmVHYXVzc2lhbkJsdXIgc3RkRGV2aWF0aW9uPSIxIj48L2ZlR2F1c3NpYW5CbHVyPjxmZU9mZnNldCBkeD0iMSIgZHk9IjEiIHJlc3VsdD0iYWZ0ZXJPZmZzZXQiPjwvZmVPZmZzZXQ+PGZlRmxvb2QgZmxvb2QtY29sb3I9IiMwMDAwMDAiIGZsb29kLW9wYWNpdHk9IjAuNSI+PC9mZUZsb29kPjxmZUNvbXBvc2l0ZSBpbjI9ImFmdGVyT2Zmc2V0IiBvcGVyYXRvcj0iaW4iPjwvZmVDb21wb3NpdGU+PGZlTW9ycGhvbG9neSBvcGVyYXRvcj0iZGlsYXRlIiByYWRpdXM9IjEiPjwvZmVNb3JwaG9sb2d5PjxmZUNvbXBvc2l0ZSBpbjI9IlNvdXJjZUFscGhhIiBvcGVyYXRvcj0iaW4iPjwvZmVDb21wb3NpdGU+PC9maWx0ZXI+PHBhdGggZD0iTTY4Ljg3IDExLjg5QzUzLjExIC0zLjk2IDI3LjU3IC0zLjk2IDExLjgyIDExLjg5Qy0zLjk0IDI3Ljc1IC0zLjk0IDUzLjQ2IDExLjgyIDY5LjMyQzM1LjU4IDkzLjIyIDIyNS42OCAyODQuMzYgMjQ5LjQ1IDMwOC4yNUMyNTcuODQgMzE2LjcgMjY5LjAxIDMyMC41IDI4MCAzMTkuOTVDMjkwLjk5IDMyMC41IDMwMi4xNiAzMTYuNyAzMTAuNTUgMzA4LjI1QzMzNC4zMiAyODQuMzYgNTI0LjQyIDkzLjIyIDU0OC4xOCA2OS4zMkM1NjMuOTQgNTMuNDYgNTYzLjk0IDI3Ljc1IDU0OC4xOCAxMS44OUM1MzIuNDMgLTMuOTcgNTA2Ljg4IC0zLjk2IDQ5MS4xMyAxMS44OUM0NzcuMDYgMjYuMDUgNDA2LjY4IDk2LjgxIDI4MCAyMjQuMThDMTUzLjMyIDk2LjgxIDgyLjk0IDI2LjA1IDY4Ljg3IDExLjg5WiIgaWQ9ImMySTVlU2dGMXkiIGZpbGw9IndoaXRlIiBmaWxsLW9wYWNpdHk9IjEiIGZpbHRlcj0idXJsKCNzaGFkb3c5MTM2ODU0KSI+PC9wYXRoPjwvZz48L2c+PC9nPjwvZz48L3N2Zz4=");
  margin-left: 15px;
  transform-origin: center;
  transform: scale(-1);
}
@media (max-width: 767px) {
  .subnav-toggle {
    display: none;
  }
  #main_nav ul.subnav {
    display: flex;
    padding-top: 0;
    top: 65%;
    font-size: 14px;
    width: 100%;
  }
  #main_nav ul.subnav li {
    line-height: 2.1;
    margin-left: 75px;
  }
  #main_nav ul li.subnav-wrapper {
    bottom: 40px;
    height: 165px;
  }
  #main_nav ul li a {
    height: 90px;
  }
}
#main_nav ul li ul li a:after {
  border-top: none !important;
}
#main_nav ul li ul li:hover a:after {
  border-top: 1px solid #000000 !important;
}



/*# sourceMappingURL=styles.css.map */
@import url('styles_extra.css');

.rel169 {
  margin: 1rem 0 !important;
  aspect-ratio: 1.7778;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.w-100 {
  width: 100% !important;
}