@charset "UTF-8";
html, body {
  height: 100%;
}

/* Default Colors */
body {
  color: #000;
  background: white;
  background-size: 50%;
}
@media (min-width: 768px) {
  body {
    background-size: 25%;
  }
}
@media (min-width: 1600px) {
  body {
    background-size: 12.5%;
  }
}

/* Default Font */
* {
  font-family: "Readex Pro", Helvetica Neue, Helvetica, Arial, sans-serif;
  /*text-rendering: optimizeLegibility !important;*/
  /*-webkit-font-smoothing: antialiased !important;*/
  /*-moz-osx-font-smoothing: grayscale !important;*/
  /*text-shadow:1px 1px 1px 1px rgba(0,0,0,0.005);*/
}

/* Default Font Size */
html, body {
  font-size: 16px;
  font-weight: 100;
  line-height: 1.5;
}
@media (min-width: 992px) {
  html, body {
    font-size: 18px;
  }
}
/* Headlines */
h1, h2, h3, h4, h5, h6 {
  font-family: "Readex Pro", Helvetica Neue, Helvetica, Arial, sans-serif;
  margin-bottom: 0.85em;
}
h1 *, h2 *, h3 *, h4 *, h5 *, h6 * {
  font-family: inherit;
}

h1 {
  font-size: 28px;
  line-height: 1.3;
  font-family: "Bowlby One", Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #000;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  h1 {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 44px;
  }
}

h2 {
  font-size: 24px;
  line-height: 1.3;
  color: #000;
}
@media (min-width: 768px) {
  h2 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 20px;
  color: #000;
}
@media (min-width: 768px) {
  h3 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  h3 {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 18px;
  color: #000;
}
@media (min-width: 768px) {
  h4 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  h4 {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  h4 {
    font-size: 23px;
  }
}

h5 {
  font-size: 16px;
  color: #000;
}
@media (min-width: 992px) {
  h5 {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  h5 {
    font-size: 19px;
  }
}

h6 {
  font-size: 14px;
  color: #000;
}
@media (min-width: 992px) {
  h6 {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  h6 {
    font-size: 16px;
  }
}

/* Text */
p {
  margin-bottom: 1em;
  font-weight: 100;
  color: #000;
}

p + ul {
  margin-bottom: 0.75em;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

strong, b {
  font-weight: 400;
}

small, .small {
  font-size: 75%;
  font-weight: 300;
}

/* Links */
a {
  color: #000;
  text-decoration: underline;
  text-decoration-color: #1597CC;
}

a:hover {
  color: #1597CC;
  text-decoration: underline;
  text-decoration-color: rgb(18.62, 133.8866666667, 180.88);
}

a.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}
@media (min-width: 768px) {
  a.anchor {
    top: -120px;
  }
}
@media (min-width: 992px) {
  a.anchor {
    top: -130px;
  }
}
@media (min-width: 1200px) {
  a.anchor {
    top: -150px;
  }
}

/* HR */
hr {
  /*max-width: 90%;*/
  border-width: 3px;
  border-color: #1597CC;
}

/* Lists */
ul {
  list-style-type: disc;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
}

ul.errors {
  list-style-type: none;
  padding: 3px 20px;
}
ul.errors li::before {
  content: "■";
  color: #1597CC;
  display: inline-block;
  width: 1em;
  margin-top: -2px;
  margin-left: -1em;
  vertical-align: top;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

.page-wrapper {
  background-color: #111;
}

.page {
  margin: 0 auto;
  max-width: 1600px;
  background-color: #fff;
  box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.3);
}

/* Section */
.section {
  position: relative;
  padding: 50px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 75px 0;
  }
}
@media (min-width: 1200px) {
  .section {
    padding: 100px 0;
  }
}
.section.section-first {
  padding: 10px 0;
}
@media (min-width: 768px) {
  .section.section-first {
    padding: 25px 0;
  }
}
@media (min-width: 1200px) {
  .section.section-first {
    padding: 50px 0;
  }
}
.section .intro {
  margin-bottom: 2.5em;
}
.section .intro h2 {
  font-size: 1.25em;
  font-family: "Bowlby One", Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  border-bottom: 5px solid rgba(0, 0, 0, 0.15);
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #1597CC;
}
@media (min-width: 992px) {
  .section .intro h2 {
    font-size: 1.75em;
  }
}
.section .intro h2 span {
  display: inline-block;
  padding: 15px 30px 5px;
  border-bottom: 5px solid black;
  color: #1597CC;
  margin-top: -20px;
  margin-bottom: -5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.section .intro p {
  font-size: 125%;
}
.section .intro p strong, .section .intro p b {
  font-weight: 500;
  color: #000;
}
.section.section-primary {
  background-color: rgba(21, 151, 204, 0.1);
}
.section.section-primary .intro h2 {
  border-bottom: 5px solid rgba(21, 151, 204, 0.15);
  color: #1597CC;
}
.section.section-primary .intro h2 span {
  background-color: transparent;
  border-bottom: 5px solid #1597cc;
  color: #1597CC;
}
.section.section-primary .intro p strong, .section.section-primary .intro p b {
  color: #1597CC;
}
.section.section-secondary {
  background-color: rgba(201, 147, 44, 0.3);
}
.section.section-secondary .intro h2 {
  border-bottom: 5px solid rgba(201, 147, 44, 0.2);
  color: #000;
}
.section.section-secondary .intro h2 span {
  background-color: transparent;
  border-bottom: 5px solid #1597cc;
  color: inherit;
}
.section.section-secondary .intro p strong, .section.section-secondary .intro p b {
  color: #c9932c;
}
.section.section-tertiary {
  background-color: rgba(6, 82, 128, 0.1);
}
.section.section-tertiary .intro h2 {
  border-bottom: 5px solid rgba(6, 82, 128, 0.15);
  color: #065280;
}
.section.section-tertiary .intro h2 span {
  background-color: transparent;
  border-bottom: 5px solid #065280;
  color: #065280;
}
.section.section-tertiary .intro p strong, .section.section-tertiary .intro p b {
  color: #065280;
}

.bg-primary {
  background-color: #1597CC !important;
}
.bg-primary * {
  color: #fff;
}

.bg-secondary {
  background-color: #c9932c !important;
}

.bg-tertiary {
  background-color: #065280 !important;
}
.bg-tertiary * {
  color: #fff;
}

.bg-quaternary {
  background-color: #121c32 !important;
}
.bg-quaternary * {
  color: #fff;
}

.bg-quinary {
  background-color: #E6E6E6 !important;
}

.bg-light-grey {
  background-color: #E6E6E6 !important;
}

.text-primary {
  color: #1597CC !important;
}

.table th, .table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.table-no-lines th, .table-no-lines td {
  padding-left: 0;
  padding-right: 0;
  border-top: 0;
}

.card {
  border: 0;
  transition: all 0.2s ease;
}
.card:hover {
  transform: scale(1.025);
}
.card.bg-white * {
  color: #000;
}
.card ul {
  padding: 0;
}
.card ul li {
  padding-left: 30px;
  list-style-type: none;
}
.card ul li::before {
  content: "▪";
  color: #1597CC;
  display: inline-block;
  width: 20px;
  margin-left: -20px;
  font-size: 2em;
  line-height: 0;
  vertical-align: top;
  margin-top: 13px;
}

.horizontal-line {
  border-bottom: 1px solid transparent;
}
.horizontal-line.light {
  border-color: rgba(255, 255, 255, 0.35);
}
.horizontal-line.dark {
  border-color: rgba(0, 0, 0, 0.35);
}

.customer-reviews .intro img {
  max-height: 100px;
}
.customer-reviews .intro h2 {
  color: #000;
  font-size: 1.25em;
  border-bottom: 0;
}
@media (min-width: 992px) {
  .customer-reviews .intro h2 {
    font-size: 1.5em;
  }
}
.customer-reviews .intro h2 strong {
  display: block;
  color: #1597CC;
  font-size: 1.75em;
}
@media (min-width: 992px) {
  .customer-reviews .intro h2 strong {
    font-size: 2.25em;
  }
}
.customer-reviews .star-rating {
  font-size: 1.75em;
}
.customer-reviews .star-rating .star {
  display: inline-block;
  position: relative;
}
.customer-reviews .star-rating .star .half {
  position: absolute;
  top: 8px;
  left: 0;
  color: rgb(233.25, 233.25, 233.25);
  z-index: 2;
  display: none;
}
.customer-reviews .star-rating .star .full {
  color: rgb(233.25, 233.25, 233.25);
  z-index: 1;
  display: inline-block;
}
.customer-reviews .star-rating .star.checked .full {
  color: #F0BA41;
}
.customer-reviews .star-rating .star.half-checked .half {
  color: #F0BA41;
  display: inline-block;
}
.customer-reviews .star-rating .label {
  display: inline-block;
  margin-left: 10px;
  font-size: 80%;
  font-weight: 500;
}
.customer-reviews .quote {
  margin: 0.75em 4em 1.25em;
  font-size: 120%;
}
.customer-reviews .quote p:before {
  content: open-quote;
}
.customer-reviews .quote p:after {
  content: close-quote;
}
.customer-reviews .name {
  font-weight: 500;
}

.alert {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 90%;
}
.alert p {
  font-size: 75%;
}
.alert p:last-child {
  margin-bottom: 0;
}
.alert.alert-info {
  color: #000;
  background-color: #e0e0e0;
  border: 0;
}

.featured-courses .slider {
  margin: 0 35px;
}
.featured-courses .featured-course {
  margin: 0 15px;
  position: relative;
  border: 5px solid transparent;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.featured-courses .featured-course .img {
  overflow: hidden;
}
.featured-courses .featured-course .img img {
  transition: all 0.3s ease;
}
.featured-courses .featured-course .text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 125px;
  padding: 15px 5px;
  background-color: #fff;
  transition: all 0.3s ease-out;
  color: #1597CC;
}
.featured-courses .featured-course h4 {
  margin: 0;
  color: inherit;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
}
.featured-courses .featured-course h4 a {
  text-decoration: none;
  color: inherit !important;
}
.featured-courses .featured-course h4 a:hover {
  text-decoration: none;
  color: inherit !important;
}
.featured-courses .featured-course:hover {
  border-color: #1597CC;
}
.featured-courses .featured-course:hover img {
  transform: scale(1.1);
}
.featured-courses .featured-course:hover .text {
  background-color: #1597CC;
  color: #fff;
  min-height: 33%;
}

.onsite-service {
  padding: 60px 0;
  text-align: left !important;
}
.onsite-service.bg-primary {
  background-color: #000 !important;
}
.onsite-service h1, .onsite-service h2, .onsite-service h3, .onsite-service h4, .onsite-service h5, .onsite-service h6, .onsite-service p, .onsite-service ul, .onsite-service a, .onsite-service th, .onsite-service td {
  color: #fff;
}
.onsite-service a {
  text-decoration-color: #fff;
}
.onsite-service .icon {
  text-align: center;
  margin-top: 0.5em;
}
.onsite-service .icon img {
  max-width: 100px;
}
.onsite-service .text {
  margin-top: 1em;
}
.onsite-service h2 {
  font-size: 1.75em;
  margin-bottom: 0;
  font-family: "Bowlby One", Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .onsite-service h2 {
    font-size: 2.5em;
  }
}
.onsite-service ul {
  margin: 0 0 1.5em;
  list-style-type: none;
  padding: 0;
}
.onsite-service ul li {
  position: relative;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  padding-left: 65px;
  font-size: 1.25em;
  color: #fff;
  cursor: default;
}
.onsite-service ul li::before {
  content: "✓";
  color: #1597CC;
  font-size: 1.75em;
  display: inline-block;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-radius: 48px;
  width: 48px;
  height: 48px;
  line-height: 44px;
  text-align: center;
  vertical-align: top;
  position: absolute;
  top: -7px;
  left: 0;
  transition: all 0.2s ease-in;
}
.onsite-service ul li:last-child {
  margin-bottom: 0;
}
.onsite-service ul li:hover::before {
  transform: scale(1.25);
}

html#ecwid_html body#ecwid_body .ec-minicart .ec-minicart__counter {
  font-weight: 500;
}
html#ecwid_html body#ecwid_body .ec-minicart .ec-minicart__counter:after {
  color: #fff !important;
  background-color: #1597CC !important;
}

button {
  outline: none;
}

.btn {
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0.75rem 1.25rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  outline: none;
  text-transform: uppercase;
  border-radius: 8px;
  font-weight: 500;
  font-size: 80%;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}
.btn:first-child {
  margin-left: 0;
}
.btn:last-child {
  margin-right: 0;
}
.btn:focus, .btn.focus {
  box-shadow: none !important;
}
.btn:hover {
  color: inherit;
  z-index: 1;
}
.btn:hover:after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.btn:hover:before {
  opacity: 0;
  transform: translateY(50%) rotateX(90deg);
}
@media (min-width: 992px) {
  .btn:hover {
    -webkit-animation-name: popup-animation;
    animation-name: popup-animation;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
}
.btn.disabled {
  color: #777 !important;
  background-color: #ddd !important;
  border-color: #ddd !important;
  cursor: not-allowed;
}

@-webkit-keyframes popup-animation {
  40% {
    -webkit-transform: scaleX(1.1);
    transform: scaleX(1.1);
  }
}
@keyframes popup-animation {
  40% {
    -webkit-transform: scaleX(1.1);
    transform: scaleX(1.1);
  }
}
.btn-default {
  color: #fff;
  background-color: #909090;
  border-color: #909090;
}
.btn-default:hover {
  color: #fff;
  background-color: rgb(131.25, 131.25, 131.25);
  border-color: rgb(131.25, 131.25, 131.25);
}
.btn-default:focus, .btn-default:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled).active, .show > .btn-default.dropdown-toggle {
  color: #fff;
  background-color: rgb(131.25, 131.25, 131.25);
  border-color: rgb(131.25, 131.25, 131.25);
}

.btn-primary {
  color: #fff;
  background-color: #1597CC;
  border-color: #1597CC;
}
.btn-primary:hover {
  color: #fff;
  background-color: rgb(18.62, 133.8866666667, 180.88);
  border-color: rgb(18.62, 133.8866666667, 180.88);
}
.btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(18.62, 133.8866666667, 180.88);
  border-color: rgb(18.62, 133.8866666667, 180.88);
}

.btn-secondary {
  color: #fff;
  background-color: #c9932c;
  border-color: #c9932c;
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgb(180.0795918367, 131.7, 39.4204081633);
  border-color: rgb(180.0795918367, 131.7, 39.4204081633);
}
.btn-secondary:focus, .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(180.0795918367, 131.7, 39.4204081633);
  border-color: rgb(180.0795918367, 131.7, 39.4204081633);
}

.btn-tertiary {
  color: #fff;
  background-color: #065280;
  border-color: #065280;
}
.btn-tertiary:hover {
  color: #fff;
  background-color: rgb(4.8582089552, 66.3955223881, 103.6417910448);
  border-color: rgb(4.8582089552, 66.3955223881, 103.6417910448);
}
.btn-tertiary:focus, .btn-tertiary:not(:disabled):not(.disabled):active, .btn-tertiary:not(:disabled):not(.disabled).active, .show > .btn-tertiary.dropdown-toggle {
  color: #fff;
  background-color: rgb(4.8582089552, 66.3955223881, 103.6417910448);
  border-color: rgb(4.8582089552, 66.3955223881, 103.6417910448);
}

.btn-white {
  color: #000;
  background-color: white;
  border-color: white;
}
.btn-white:hover {
  color: #000;
  background-color: rgb(242.25, 242.25, 242.25);
  border-color: rgb(242.25, 242.25, 242.25);
}
.btn-white:focus, .btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active, .show > .btn-white.dropdown-toggle {
  color: #000;
  background-color: rgb(242.25, 242.25, 242.25);
  border-color: rgb(242.25, 242.25, 242.25);
}

.btn-outline {
  color: #1597CC;
  border: 1px solid #1597CC;
  background-color: transparent;
}
.btn-outline:hover {
  color: rgb(18.62, 133.8866666667, 180.88);
  background-color: transparent;
  border-color: rgb(18.62, 133.8866666667, 180.88);
}
.btn-outline:focus, .btn-outline:not(:disabled):not(.disabled):active, .btn-outline:not(:disabled):not(.disabled).active, .show > .btn-outline.dropdown-toggle {
  color: rgb(18.62, 133.8866666667, 180.88);
  background-color: transparent;
  border-color: rgb(18.62, 133.8866666667, 180.88);
}

.bg-primary .btn-outline {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}
.bg-primary .btn-outline:hover, .bg-primary .btn-outline:focus, .bg-primary .btn-outline:not(:disabled):not(.disabled):active, .bg-primary .btn-outline:not(:disabled):not(.disabled).active, .show > .bg-primary .btn-outline.dropdown-toggle {
  color: #1597CC;
  background-color: #fff;
  border-color: #1597CC;
}

.bg-secondary .btn-outline {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}
.bg-secondary .btn-outline:hover, .bg-secondary .btn-outline:focus, .bg-secondary .btn-outline:not(:disabled):not(.disabled):active, .bg-secondary .btn-outline:not(:disabled):not(.disabled).active, .show > .bg-secondary .btn-outline.dropdown-toggle {
  color: #c9932c;
  background-color: #fff;
  border-color: #c9932c;
}

.bg-tertiary .btn-outline {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}
.bg-tertiary .btn-outline:hover, .bg-tertiary .btn-outline:focus, .bg-tertiary .btn-outline:not(:disabled):not(.disabled):active, .bg-tertiary .btn-outline:not(:disabled):not(.disabled).active, .show > .bg-tertiary .btn-outline.dropdown-toggle {
  color: #065280;
  background-color: #fff;
  border-color: #065280;
}

.bg-quinary .btn-outline {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}
.bg-quinary .btn-outline:hover, .bg-quinary .btn-outline:focus, .bg-quinary .btn-outline:not(:disabled):not(.disabled):active, .bg-quinary .btn-outline:not(:disabled):not(.disabled).active, .show > .bg-quinary .btn-outline.dropdown-toggle {
  color: #E6E6E6;
  background-color: #fff;
  border-color: #E6E6E6;
}

.btn-uppercase {
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  font-size: 80%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}

.btn-icon-left i {
  margin-right: 0.8em;
  padding-right: 0.8em;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-icon-right i {
  margin-left: 0.8em;
  padding-left: 0.8em;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.btn-highlight {
  color: white;
  background-color: #00aef2;
  border-color: #00aef2;
}

.about-us .portrait {
  margin-top: 75px;
}
.about-us .portrait img {
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
}
.about-us .portrait .text {
  font-size: 85%;
}
.about-us .portrait blockquote {
  margin: 1em auto 0.75em auto;
  max-width: 600px;
  font-size: 150%;
}
.about-us .portrait p {
  margin-bottom: 0.5em;
}
.about-us .portrait strong {
  font-size: 115%;
}
.about-us .advantages .card * {
  color: #000 !important;
}
.about-us .partners .intro h2 {
  border: 0;
}
.about-us .partners .partner {
  background-color: #fff;
  padding: 35px 15px;
  font-size: 75%;
}
.about-us .partners .partner .logo {
  margin-bottom: 1em;
}
.about-us .partners .partner .logo img {
  width: auto;
  max-width: 100% !important;
  height: 70px;
}
.about-us .partners .partner .links {
  margin-top: 1em;
}

.company .intro {
  padding-top: 100px;
  padding-bottom: 100px;
}
.company .intro h1 {
  color: #000;
}
/* Contact Form */
.contact .contact-infos .logo {
  margin-bottom: 15px;
  width: 300px;
  max-width: 75%;
}
.contact .contact-infos a {
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: none;
}
.contact .contact-infos a:hover {
  text-decoration: underline;
}
.contact .contact-infos i {
  width: 20px;
  margin-right: 15px;
  color: #1597CC;
  text-align: center;
}
.contact .contact-form {
  padding-top: 0;
}
.contact .contact-form .form-group label {
  text-transform: uppercase;
  font-size: 0.6rem;
  font-weight: normal;
  margin-bottom: 0.1rem;
}
.contact .contact-form .form-group textarea {
  min-height: 100px;
}
@media (min-width: 768px) {
  .contact .contact-form .form-group textarea {
    min-height: 194px;
  }
}
@media (min-width: 992px) {
  .contact .contact-form .form-group textarea {
    min-height: 217px;
  }
}
@media (min-width: 1200px) {
  .contact .contact-form .form-group textarea {
    min-height: 241px;
  }
}
.contact .contact-form .form-check {
  font-size: 1em;
  line-height: 26px;
}
.contact .contact-form .form-check .form-check-label {
  text-transform: none;
}
.contact .contact-form .form-button {
  margin: 25px 0 0;
}
.contact .contact-form .form-button .btn {
  margin: 0;
}

.calendar {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 100px;
}
.calendar .calendar-table {
  margin-bottom: 2em;
  border: 1px solid #1597CC;
}
.calendar .calendar-table .calendar-header {
  background-color: #1597CC;
  color: #fff;
  font-weight: 500;
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
}
.calendar .calendar-table .calendar-body {
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
  border-bottom: 1px solid rgba(21, 151, 204, 0.15);
}
.calendar .calendar-table .calendar-body:nth-child(even) {
  background-color: transparent;
}
.calendar .calendar-table .calendar-body:nth-child(odd) {
  background-color: #f0f0f0;
}
.calendar .calendar-table .calendar-body:last-child {
  border-bottom: 0;
}
.calendar .calendar-table .calendar-body label {
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.75em;
}
.calendar .calendar-table .calendar-body a {
  text-decoration-color: #1597CC;
}
.calendar .calendar-table .calendar-body a:hover {
  color: #1597CC;
}
.calendar .calendar-table .calendar-body .datetime .day {
  display: inline-block;
  min-width: 30px;
}
.calendar .calendar-table .calendar-body .datetime .date {
  display: inline-block;
  min-width: 72px;
  text-align: right;
  font-weight: 500;
}
.calendar .calendar-table .calendar-body .datetime .time {
  display: inline-block;
  min-width: 146px;
  text-align: right;
}
.calendar .calendar-table .calendar-body .price .total {
  font-size: 1.5em;
  color: #1597CC;
  font-weight: 500;
  line-height: 1.1;
}
.calendar .calendar-table .calendar-body .price .note {
  font-size: 65%;
  white-space: nowrap;
  text-wrap: nowrap;
  position: relative;
  z-index: 1;
}
.calendar .calendar-table .calendar-body .price .note .tooltip-icon {
  font-size: 15px;
  vertical-align: top;
  margin-top: -2px;
  display: inline-block;
}
.calendar .calendar-table .calendar-body .price .special {
  font-size: smaller;
  color: #000;
  font-weight: 400;
  line-height: 1.25;
}
.calendar .calendar-table .calendar-body .price .special .tooltip-icon {
  font-size: 20px;
  vertical-align: top;
  margin-top: 3px;
  display: inline-block;
}
.calendar .calendar-table .calendar-body .add-to-cart {
  margin-bottom: 10px;
}
.calendar .calendar-table .calendar-body .add-to-cart .special-price {
  margin-bottom: 10px;
}
.calendar .calendar-table .calendar-body .add-to-cart .special-price .special-price-checkbox {
  display: inline-block;
  text-align: left;
}
.calendar .calendar-table .calendar-body .add-to-cart .special-price .special-price-checkbox .form-check-input {
  margin-top: 0.45rem;
}
.calendar .calendar-table .calendar-body .add-to-cart .special-price .special-price-checkbox .form-check-label {
  text-transform: none;
}
.calendar .calendar-table .calendar-body .add-to-cart .special-price .special-price-checkbox .tooltip-icon {
  font-size: 15px;
  vertical-align: top;
  margin-top: -1px;
  display: inline-block;
}
.calendar .calendar-table .calendar-body .add-to-cart .special-price .special-price-checkbox .special-price-hint {
  font-size: 0.75em;
}
.calendar .calendar-table .calendar-body .add-to-cart .special-price .special-price-input {
  display: none;
  margin: 5px 0;
  font-size: 0.75em;
  padding: 2px 8px;
  max-width: 180px;
  max-height: 30px;
  border-radius: 0;
}
.calendar .calendar-table .calendar-body .add-to-cart .special-price.checked .special-price-input {
  display: inline-block;
}
.calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 {
  box-sizing: content-box !important;
  min-width: unset !important;
  max-width: unset !important;
  color: #000 !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  vertical-align: top !important;
}
.calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form > div[customprop=qty],
.calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form > div[customprop=addtobag] {
  display: inline-block !important;
  margin: 0 !important;
  vertical-align: top !important;
}
.calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-SingleProduct-qty {
  margin: 0 8px 0 0 !important;
}
.calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-SingleProduct-qty .gwt-InlineLabel {
  display: none !important;
}
.calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-SingleProduct-qty .gwt-TextBox {
  margin: 0 !important;
  display: inline-block !important;
  width: 50px !important;
  height: 28px !important;
  padding: 2px 2px 2px 8px !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  vertical-align: top !important;
  text-align: left !important;
  color: #000 !important;
}
.calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-btn--addToBag {
  margin: 0 !important;
  display: inline-block !important;
  padding: 2px 8px !important;
  height: 34px !important;
  min-width: auto !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  border-radius: 3px !important;
  color: #fff !important;
  background-color: #1597CC !important;
  border-color: #1597CC !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-size: 80% !important;
  letter-spacing: 0.05em !important;
}
.calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-btn--addToBag:hover {
  color: #fff !important;
  background-color: rgb(18.62, 133.8866666667, 180.88) !important;
  border-color: rgb(18.62, 133.8866666667, 180.88) !important;
  z-index: 1 !important;
}
.calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-btn--addToBag:hover:after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-btn--addToBag:hover:before {
  opacity: 0;
  transform: translateY(50%) rotateX(90deg);
}
@media (min-width: 992px) {
  .calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-btn--addToBag:hover {
    -webkit-animation-name: popup-animation;
    animation-name: popup-animation;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
}
.calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-btn--addToBag:focus, .calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-btn--addToBag:not(:disabled):not(.disabled):active, .calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-btn--addToBag:not(:disabled):not(.disabled).active, .show > .calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-btn--addToBag.dropdown-toggle {
  color: #fff;
  background-color: rgb(18.62, 133.8866666667, 180.88);
  border-color: rgb(18.62, 133.8866666667, 180.88);
}
.calendar .calendar-table .calendar-body .add-to-cart > .ecsp-SingleProduct-v2 form .ecwid-btn--addToBag span:before {
  content: "\f07a";
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  color: inherit;
  font-weight: 900;
  margin-right: 0.5em;
  padding-right: 0.5em;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.calendar .calendar-table .calendar-body .add-to-cart .amount {
  margin: 0;
  display: inline-block;
  width: 60px !important;
  height: 34px;
  padding: 2px 2px 2px 8px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  vertical-align: top;
}
.calendar .calendar-table .calendar-body .add-to-cart .btn {
  margin: 0;
  display: inline-block;
  padding: 2px 8px;
  height: 34px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.calendar .calendar-table .calendar-body .add-to-cart .btn i {
  margin-right: 0.5em;
  padding-right: 0.5em;
}
.calendar .calendar-table .calendar-body .places {
  font-size: 0.8em;
}

/* Footer */
.footer .footer-top {
  padding: 100px 0;
  background-color: #000;
  color: #fff;
}
.footer .footer-top .contact-infos .logo {
  margin-bottom: 15px;
  width: 300px;
  max-width: 75%;
}
.footer .footer-top .contact-infos p {
  color: #fff;
}
.footer .footer-top .contact-infos a {
  display: inline-block;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
}
.footer .footer-top .contact-infos a:hover {
  text-decoration: underline;
}
.footer .footer-top .contact-infos i {
  width: 20px;
  margin-right: 15px;
  color: #1597CC;
  text-align: center;
}
.footer .footer-top .footer-nav h4 {
  margin-bottom: 1em;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #1597CC;
  border-top: 1px solid rgba(195, 195, 195, 0.25);
  border-bottom: 1px solid rgba(195, 195, 195, 0.25);
  padding: 15px 0 17px;
  font-family: "Bowlby One", Helvetica Neue, Helvetica, Arial, sans-serif;
}
@media (min-width: 992px) {
  .footer .footer-top .footer-nav h4 {
    padding: 0;
    border: 0;
  }
}
.footer .footer-top .footer-nav h4 a {
  color: #1597CC;
  text-decoration: none;
}
.footer .footer-top .footer-nav h4 a:hover {
  text-decoration: underline;
}
.footer .footer-top .footer-nav .navbar-toggler {
  font-size: 0.75rem;
  color: #999;
}
.footer .footer-top .footer-nav .footer-nav-collapse {
  margin-bottom: 1em;
}
.footer .footer-top .footer-nav ul {
  margin: 0;
  padding-left: 20px;
}
.footer .footer-top .footer-nav ul li {
  margin: 0;
  list-style-type: disc;
  padding: 2px 0;
  color: #1597CC;
}
.footer .footer-top .footer-nav ul li a {
  text-decoration: none;
  color: #fff;
}
.footer .footer-top .footer-nav ul li a:hover {
  text-decoration: underline;
}
.footer .footer-payment {
  padding: 25px 0;
  background-color: #fff;
  color: #fff;
  text-align: center;
  border-top: 5px solid #1597CC;
  border-bottom: 5px solid #1597CC;
}
.footer .footer-payment ul.payment-logos {
  margin: 0;
  padding: 0;
}
.footer .footer-payment ul.payment-logos li {
  list-style-type: none;
  display: inline-block;
  margin: 5px 3px;
}
.footer .footer-payment ul.payment-logos li img {
  display: inline-block;
  height: 48px;
}
.footer .footer-bottom {
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 1rem;
  color: #fff;
  background-color: #000;
}
@media (min-width: 992px) {
  .footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.footer .footer-bottom .social-media {
  margin-bottom: 25px;
  padding: 0;
  font-size: 50px;
}
.footer .footer-bottom .social-media a {
  margin: 0 10px;
  color: white;
}
.footer .footer-bottom .social-media img {
  height: 80px;
}
.footer .footer-bottom .copyright {
  font-size: 0.9rem;
  font-weight: 300;
  color: #fff;
}

.form label, form label {
  text-transform: uppercase;
  font-size: 75%;
  margin-bottom: 0.15rem;
  font-weight: 500;
}
.form textarea, form textarea {
  height: auto !important;
}
.form .form-control, form .form-control {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 1px solid #C3C3C3;
  background-color: rgba(0, 0, 0, 0.05);
  height: calc(3.25rem + 2px);
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
.form .form-control:focus, form .form-control:focus {
  color: #495057;
  background-color: white;
  border-color: #333;
  outline: 0;
  box-shadow: none;
}
.form button, .form .btn, form button, form .btn {
  margin-bottom: 0;
  padding: 1rem 1.5rem !important;
  font-size: 0.8rem;
  line-height: 1.5;
}
.form .input-group-prepend,
.form .input-group-append, form .input-group-prepend,
form .input-group-append {
  z-index: 5;
}
.form .input-group-prepend > button, .form .input-group-prepend > .btn,
.form .input-group-append > button,
.form .input-group-append > .btn, form .input-group-prepend > button, form .input-group-prepend > .btn,
form .input-group-append > button,
form .input-group-append > .btn {
  margin-bottom: 0;
  padding: 0.75rem 1rem !important;
  height: calc(3.25rem + 2px);
}
.form .input-group-prepend > button i, .form .input-group-prepend > .btn i,
.form .input-group-append > button i,
.form .input-group-append > .btn i, form .input-group-prepend > button i, form .input-group-prepend > .btn i,
form .input-group-append > button i,
form .input-group-append > .btn i {
  font-size: 2em;
}
.form .InputfieldForm table .Inputfield, form .InputfieldForm table .Inputfield {
  margin: 0;
}

.faq {
  background-color: rgba(6, 82, 128, 0.1);
}
.faq h2 {
  text-align: center;
}
.faq .faq-group {
  margin: 15px 0;
}
.faq .faq-group .faq-question {
  position: relative;
}
.faq .faq-group .faq-question a {
  display: block;
  margin-left: 15px;
  padding: 5px 0;
  font-size: 125%;
  text-decoration: none;
  color: #065280;
  font-weight: 500;
}
.faq .faq-group .faq-question a i {
  display: inline-block;
  position: absolute;
  top: 12px;
  left: -15px;
  width: 24px;
  height: 24px;
  font-size: 75%;
  background-color: rgba(6, 82, 128, 0.3);
  color: #065280;
  margin-top: -2px;
  margin-right: 10px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.faq .faq-group .faq-question a i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq .faq-group .faq-question a:hover i {
  background-color: #065280;
  color: white;
}
.faq .faq-group .faq-answer {
  display: none;
  margin-left: 15px;
  font-size: 85%;
}
.faq .faq-group .faq-answer p:last-child {
  margin-bottom: 0;
}
.faq .faq-group.open .faq-question a i {
  background-color: #065280;
  color: white;
  transform: rotate(0deg);
}
.faq .faq-group.open .faq-answer {
  display: block;
}

.gallery .img {
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  z-index: 0;
}
.gallery .img:hover {
  border: 3px solid #c9932c;
}
.gallery .img img {
  width: 100%;
  object-fit: cover;
  object-position: 50%;
  transition: all 1s;
}
.gallery .img img:hover {
  transition: all 0.3s ease-out;
  transform: scale(1.1);
  z-index: 1;
}

.page-header > .container {
  padding-left: 0;
  padding-right: 0;
}
.page-header .top-header {
  height: 24px;
  background: #000;
  color: #fff;
  font-size: 12px;
  line-height: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-header .top-header {
    height: 30px;
    font-size: 13px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  .page-header .top-header {
    height: 38px;
    font-size: 14px;
    line-height: 38px;
  }
}
.page-header .top-header ul {
  margin: 0;
  padding: 0;
}
.page-header .top-header ul li {
  display: inline;
  list-style-type: none;
  padding: 0 5px;
}
@media (min-width: 567px) {
  .page-header .top-header ul li {
    padding: 0 15px;
  }
}
.page-header .top-header ul li.social-media-icon {
  padding: 0;
}
.page-header .top-header ul li:first-child {
  padding-left: 0;
}
.page-header .top-header ul li:last-child {
  padding-right: 0;
}
.page-header .top-header strong {
  color: #1597CC;
  text-transform: uppercase;
  font-weight: 500;
}
.page-header .top-header i {
  color: #1597CC;
  margin-right: 5px;
}
@media (min-width: 768px) {
  .page-header .top-header i {
    margin-right: 10px;
  }
}
.page-header .top-header a {
  color: #fff;
  text-decoration: none;
}
.page-header .top-header a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #1597CC;
}
.page-header .nav-header .navbar {
  padding: 0;
}
.page-header .nav-header .navbar .navbar-brand {
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (min-width: 567px) {
  .page-header .nav-header .navbar .navbar-brand {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .page-header .nav-header .navbar .navbar-brand {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .page-header .nav-header .navbar .navbar-brand {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
@media (min-width: 1200px) {
  .page-header .nav-header .navbar .navbar-brand {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.page-header .nav-header .navbar .navbar-brand a {
  display: inline-block;
  text-decoration: none !important;
}
.page-header .nav-header .navbar .navbar-brand .navbar-logo {
  display: inline-block;
}
.page-header .nav-header .navbar .navbar-brand .navbar-logo img {
  height: 36px;
  width: auto;
}
@media (min-width: 567px) {
  .page-header .nav-header .navbar .navbar-brand .navbar-logo img {
    height: 36px;
  }
}
@media (min-width: 768px) {
  .page-header .nav-header .navbar .navbar-brand .navbar-logo img {
    height: 40px;
  }
}
@media (min-width: 992px) {
  .page-header .nav-header .navbar .navbar-brand .navbar-logo img {
    height: 46px;
  }
}
@media (min-width: 1200px) {
  .page-header .nav-header .navbar .navbar-brand .navbar-logo img {
    height: 55px;
  }
}
.page-header .nav-header .navbar .navbar-toggler {
  position: absolute;
  top: 17px;
  right: 0;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
  border: none;
  background: transparent !important;
}
@media (min-width: 567px) {
  .page-header .nav-header .navbar .navbar-toggler {
    top: 22px;
  }
}
@media (min-width: 768px) {
  .page-header .nav-header .navbar .navbar-toggler {
    top: 26px;
  }
}
.page-header .nav-header .navbar .navbar-toggler .icon-bar {
  width: 22px;
  height: 3px;
  background-color: #1597CC;
  display: block;
  transition: all 0.2s;
  margin-top: 4px;
}
.page-header .nav-header .navbar .navbar-toggler .icon-bar .top-bar {
  transform: rotate(-45deg);
  transform-origin: 95%;
}
.page-header .nav-header .navbar .navbar-toggler .icon-bar .middle-bar {
  opacity: 0;
}
.page-header .nav-header .navbar .navbar-toggler .icon-bar .bottom-bar {
  transform: rotate(45deg);
  transform-origin: 95%;
}
.page-header .nav-header .navbar .navbar-toggler .icon-bar.collapsed .top-bar {
  transform: rotate(0);
}
.page-header .nav-header .navbar .navbar-toggler .icon-bar.collapsed .middle-bar {
  opacity: 1;
}
.page-header .nav-header .navbar .navbar-toggler .icon-bar.collapsed .bottom-bar {
  transform: rotate(0);
}
.page-header .nav-header .navbar .ec-cart-widget {
  position: absolute;
  top: 9px;
  right: 50px;
}
@media (min-width: 567px) {
  .page-header .nav-header .navbar .ec-cart-widget {
    top: 13px;
  }
}
@media (min-width: 768px) {
  .page-header .nav-header .navbar .ec-cart-widget {
    top: 17px;
  }
}
@media (min-width: 992px) {
  .page-header .nav-header .navbar .ec-cart-widget {
    position: relative;
    top: unset;
    right: unset;
  }
}
.page-header .nav-header .navbar .ec-cart-widget .ec-minicart__icon {
  width: 36px !important;
  height: 36px !important;
}
.page-header .nav-header .navbar .navbar-collapse .navbar-nav {
  margin-top: 0;
  margin-bottom: 0;
}
.page-header .nav-header .navbar .navbar-collapse .navbar-nav .nav-item {
  text-align: center;
  padding: 0;
}
.page-header .nav-header .navbar .navbar-collapse .navbar-nav .nav-item:last-child {
  padding-right: 0;
}
.page-header .nav-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  display: inline-block;
  padding: 15px;
  vertical-align: middle;
  font-size: 1rem;
  font-weight: normal;
  color: #000;
  text-decoration: none;
}
@media (min-width: 567px) {
  .page-header .nav-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .page-header .nav-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .page-header .nav-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0 15px;
    font-size: 0.8rem;
    line-height: 102px;
  }
}
@media (min-width: 1200px) {
  .page-header .nav-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0 18px;
    font-size: 0.9rem;
    line-height: 119px;
  }
}
@media (min-width: 1600px) {
  .page-header .nav-header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0 22px;
    font-size: 1rem;
    line-height: 119px;
  }
}
.page-header .nav-header .navbar .navbar-collapse .navbar-nav .nav-item:hover .nav-link {
  color: #1597CC;
}
.page-header .nav-header .navbar .navbar-collapse .navbar-nav .nav-item.active .nav-link {
  background-color: #1597CC;
  color: #fff !important;
}
.page-header .nav-header .navbar .navbar-collapse .navbar-nav .nav-item.dropdown ul {
  display: none;
}
.page-header .nav-header .ec-minicart:hover .ec-minicart__icon svg,
.page-header .nav-header .ec-minicart:hover .ec-minicart__icon svg path,
.page-header .nav-header .ec-minicart:hover .ec-minicart__icon svg circle {
  stroke: #1597CC !important;
}

.jumbotron {
  background-color: transparent;
  padding: 0;
}
.jumbotron.full-height {
  height: 100vh;
}

/* Map */
.map iframe {
  /* remove space under google maps iframe */
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: 360px;
}

.modal-backdrop {
  z-index: 10000;
}

.modal {
  z-index: 10001;
}
.modal .modal-content {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.modal .modal-header {
  padding: 1.25rem 1.5rem;
}
.modal .modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: normal;
  color: #666;
}
.modal .modal-header .close {
  opacity: 0.75;
}
.modal .modal-header .close:hover {
  opacity: 0.85;
}
.modal .modal-body {
  padding: 1.5rem;
}
.modal .ekko-lightbox-container a {
  opacity: 0;
}
.modal .ekko-lightbox-container:hover a {
  opacity: 0.6;
}
.modal .ekko-lightbox-nav-overlay a {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  transition: all 0.5s;
  color: #fff;
  font-size: 75px;
  z-index: 1;
  text-decoration: none;
}
.modal .ekko-lightbox-nav-overlay a:hover {
  opacity: 1;
}
.modal .ekko-lightbox-nav-overlay a span {
  font-weight: 300;
}

/* News */
.news .cards {
  margin-top: 50px;
  text-align: left;
}

.news .card {
  margin-bottom: 25px;
  padding: 30px 15px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0;
}

.news .card h6 {
  font-size: 0.75rem;
}

.news .card h3 {
  font-size: 1.2rem;
}

.news .card p {
  font-size: 0.8rem;
}

.news .card p:last-child {
  margin-bottom: 0;
}

.news-teaser {
  padding-bottom: 25px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-teaser:last-child {
  border-bottom: 0;
}

/* Map */
.prices .category {
  margin-bottom: 2.5em;
  float: left;
}
.prices h2 {
  margin-bottom: 0.3em;
  font-size: 46px;
}
@media (min-width: 1200px) {
  .prices h2 {
    font-size: 60px;
  }
}
.prices p {
  font-size: 80%;
}
.prices .remarks {
  margin-top: 1em;
  font-size: 1em;
}
.prices .remarks h3 {
  font-size: 36px;
  margin-bottom: 0.5em;
}
@media (min-width: 1200px) {
  .prices .remarks h3 {
    font-size: 48px;
  }
}
.prices .remarks strong, .prices .remarks b {
  font-weight: 300;
  font-size: 1.1em;
}
.prices .price-table {
  border-bottom: 1px dotted white;
  text-align: left;
}
.prices .price-table > .row {
  border-top: 1px dotted white;
}
.prices .price-table > .row.even {
  background-color: rgba(100, 100, 100, 0.05);
}
.prices .price-table > .row .num {
  padding: 15px 12px 5px;
}
@media (min-width: 567px) {
  .prices .price-table > .row .num {
    padding: 15px 12px;
  }
}
.prices .price-table > .row .text {
  padding: 15px 12px;
}
.prices .price-table > .row .text.col-12 {
  padding: 15px 12px 5px;
}
.prices .price-table > .row .prices {
  padding: 15px 12px;
}
.prices .price-table > .row .prices.col-12 {
  padding: 5px 12px 15px;
}
.prices .price-table .number {
  font-weight: 300;
}
.prices .price-table .name {
  font-weight: 400;
}
.prices .price-table .size {
  white-space: nowrap;
  font-weight: 300;
  font-size: 70%;
}
.prices .price-table .price {
  white-space: nowrap;
  font-weight: 300;
}
.prices .price-table .description {
  font-size: 70%;
}

.header-images {
  position: relative;
  min-height: 125px;
  margin-bottom: 75px;
}
.header-images .header-slider {
  overflow: hidden;
}
.header-images .header-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.header-images .header-slider .slick-slide .header-image {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header-images .header-slider .slick-slide .header-image .caption {
  bottom: 5%;
  transition: all 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
  opacity: 0;
}
.header-images .header-slider .slick-slide .header-image .caption .text {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}
.header-images .header-slider .slick-slide .header-image .img {
  position: relative;
  overflow: hidden;
}
.header-images .header-slider .slick-slide .header-image .img img {
  transition: all 1s cubic-bezier(0.65, 0.05, 0.36, 1) !important;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  object-fit: cover;
  object-position: 50%;
}
.header-images .header-slider .slick-slide.slick-active .header-image .img img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.header-images .header-slider .slick-slide.slick-active .caption {
  bottom: 12.5%;
  opacity: 1;
}
.header-images .header-slider .slick-slide.slick-active .caption .text {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.header-images .slick-arrows {
  display: block;
  position: absolute;
  top: auto;
  bottom: -5px;
  z-index: 3;
  width: 100%;
  padding: 0;
  margin: 0;
}
.header-images .slick-arrow {
  display: block;
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  z-index: 2;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  color: #bdbdbd;
  transition: all 0.2s ease;
}
.header-images .slick-arrow:before {
  display: block;
  width: 30px;
  pointer-events: none;
  font-size: 28px;
  opacity: 1;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  color: #bdbdbd;
  transition: all 0.2s ease;
}
.header-images .slick-arrow:hover {
  color: #1597CC;
}
.header-images .slick-arrow:hover:before {
  color: #1597CC;
}
.header-images .slick-arrow.slick-prev {
  left: 0;
}
.header-images .slick-arrow.slick-prev:before {
  content: "\f0d9";
  text-align: left;
  padding-left: 7px;
}
.header-images .slick-arrow.slick-next {
  right: 0;
}
.header-images .slick-arrow.slick-next:before {
  content: "\f0da";
  text-align: right;
  padding-right: 10px;
}
.header-images .slick-dots {
  bottom: -15px;
  z-index: 2;
}
.header-images .slick-dots li {
  margin: 0 3px;
  width: auto;
  height: auto;
}
@media (min-width: 768px) {
  .header-images .slick-dots li {
    margin: 0 5px;
  }
}
.header-images .slick-dots button {
  padding: 0;
  text-indent: -9999px;
  width: 9px;
  height: 15px;
  background: #bdbdbd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.header-images .slick-dots button:before {
  display: none;
}
.header-images .slick-dots button:hover {
  background: #1597CC;
}
.header-images .slick-dots .slick-active button {
  background: #1597CC;
}

/* Header Images */
.header-image {
  position: relative;
  overflow: hidden;
}
.header-image .img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50%;
}
.header-image .caption {
  position: absolute;
  bottom: 12.5%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 1%, rgba(0, 0, 0, 0.5) 99%, rgba(0, 0, 0, 0) 100%);
  padding: 50px 0;
}
.header-image .caption .center {
  margin: auto;
  text-align: center;
}
.header-image .caption .left {
  margin-left: 6vw;
  margin-right: auto;
  text-align: left;
}
.header-image .caption .right {
  margin-right: 6vw;
  margin-left: auto;
  text-align: right;
}
.header-image .caption .text {
  display: inline-block;
  color: #fff;
  font-size: 3.5vw;
  font-weight: 300;
  line-height: 1;
  text-align: center;
}
@media (min-width: 567px) {
  .header-image .caption .text {
    font-size: 2.75vw;
  }
}
@media (min-width: 768px) {
  .header-image .caption .text {
    font-size: 2vw;
  }
}
@media (min-width: 992px) {
  .header-image .caption .text {
    font-size: 1.6vw;
  }
}
@media (min-width: 1200px) {
  .header-image .caption .text {
    font-size: 1.4vw;
  }
}
@media (min-width: 1600px) {
  .header-image .caption .text {
    font-size: 1.2vw;
  }
}
.header-image .caption .text strong, .header-image .caption .text b {
  font-weight: 400;
  line-height: 0.95;
  margin-right: 3.5vw;
  font-size: 11vw;
}
@media (min-width: 567px) {
  .header-image .caption .text strong, .header-image .caption .text b {
    font-size: 10vw;
  }
}
@media (min-width: 768px) {
  .header-image .caption .text strong, .header-image .caption .text b {
    font-size: 7vw;
  }
}
@media (min-width: 992px) {
  .header-image .caption .text strong, .header-image .caption .text b {
    font-size: 6vw;
  }
}
@media (min-width: 1200px) {
  .header-image .caption .text strong, .header-image .caption .text b {
    font-size: 5vw;
  }
}
@media (min-width: 1600px) {
  .header-image .caption .text strong, .header-image .caption .text b {
    font-size: 4vw;
  }
}

.slick-arrow {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  z-index: 2;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  color: #bdbdbd;
  transition: all 0.2s ease;
}
.slick-arrow:before {
  display: block;
  pointer-events: none;
  font-size: 28px;
  opacity: 1;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  color: #bdbdbd;
  transition: all 0.2s ease;
}
.slick-arrow:hover {
  color: #1597CC;
}
.slick-arrow:hover:before {
  color: #1597CC;
}
.slick-arrow.slick-prev:before {
  content: "\f0d9";
}
.slick-arrow.slick-next:before {
  content: "\f0da";
}

/* Courses */
.courses .section.intro {
  padding-bottom: 25px !important;
}
.courses .section.intro h1 {
  font-family: "Bowlby One", Helvetica Neue, Helvetica, Arial, sans-serif;
}
.courses .calendar h2 {
  font-family: "Bowlby One", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 1.5em;
}
.courses .courses-teasers {
  padding-top: 0;
  padding-bottom: 0;
}
.courses .courses-teasers .course-teaser {
  margin-bottom: 100px;
}
.courses .courses-teasers .course-teaser h2 {
  font-family: "Bowlby One", Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #000;
  border-bottom: 5px solid rgba(195, 195, 195, 0.15);
}
.courses .courses-teasers .course-teaser h2 a {
  color: inherit;
}
.courses .courses-teasers .course-teaser h2 a:hover {
  color: #1597CC !important;
}
.courses .courses-teasers .course-teaser h2 span {
  display: inline-block;
  margin-bottom: -5px;
  padding: 0 10px 5px 0;
  border-bottom: 5px solid #1597CC;
  max-width: 95%;
  color: inherit;
}
.courses .courses-teasers .course-teaser .img {
  overflow: hidden;
}
.courses .courses-teasers .course-teaser .img img {
  transition: all 0.3s ease-out;
}
.courses .courses-teasers .course-teaser .img img:hover {
  transform: scale(1.1);
}
.courses .courses-teasers .course-teaser .text ul {
  margin: 0 0 1em;
}
.courses .courses-teasers .course-teaser .text ul li {
  position: relative;
  color: #000;
  font-size: 1.25em;
  margin-top: 0.5em;
  margin-bottom: 1em;
  list-style-type: none;
  padding: 0 0 0 25px;
}
.courses .courses-teasers .course-teaser .text ul li:last-child {
  margin-bottom: 0;
}
.courses .courses-teasers .course-teaser .text ul li::before {
  position: absolute;
  content: "✓";
  color: #1597CC;
  border: 3px solid rgba(0, 0, 0, 0.15);
  font-size: 1.5em;
  display: inline-block;
  margin-right: 15px;
  border-radius: 44px;
  width: 44px;
  height: 44px;
  line-height: 1;
  text-align: center;
  vertical-align: top;
  margin-top: -3px;
  margin-left: -60px;
  background-color: #fff;
}
.courses .courses-teasers .course-teaser .text strong, .courses .courses-teasers .course-teaser .text b {
  font-weight: 500;
  color: #1597CC;
}
.courses .courses-teasers .course-teaser .text p:last-child {
  margin-bottom: 0;
}
.courses .courses-teasers .course-teaser .price {
  margin-bottom: 2em;
}
.courses .courses-teasers .course-teaser .price .total {
  color: #1597CC;
  font-weight: bold;
  font-size: 3em;
  line-height: 1.1;
}
.courses .courses-teasers .course-teaser .price .special {
  font-size: 0.6em;
  color: #000;
  font-weight: 400;
  line-height: 1.25;
}
.courses .courses-teasers .course-teaser .price .special .tooltip-icon {
  font-size: 20px;
  vertical-align: top;
  margin-top: 11px;
  display: inline-block;
}
.courses .courses-teasers .course-teaser .price .note {
  font-size: 85%;
}
.courses .courses-teasers .course-teaser .price .note .tooltip-icon {
  font-size: 20px;
  vertical-align: top;
  margin-top: -4px;
  display: inline-block;
}

/* Course */
.course .course-info {
  padding-top: 50px;
  padding-bottom: 50px;
}
.course .course-info h1 {
  font-family: "Bowlby One", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1.75em;
  margin-bottom: 0.15em;
}
@media (min-width: 768px) {
  .course .course-info h1 {
    font-size: 2.8em;
  }
}
.course .course-info .tags {
  margin-bottom: 1.5em;
}
.course .course-info .tags .tag {
  margin-right: 10px;
  font-size: 75%;
  padding: 3px 6px;
  background-color: rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-weight: 400;
  color: #000;
}
.course .course-info .short-description {
  margin-bottom: 2em;
}
.course .course-info .short-description ul {
  margin: 0 0 2.5em;
}
.course .course-info .short-description ul li {
  color: #000;
  font-size: 1.25em;
  margin-top: 0.5em;
  margin-bottom: 1em;
  list-style-type: none;
  padding: 0 0 0 25px;
}
.course .course-info .short-description ul li:last-child {
  margin-bottom: 0;
}
.course .course-info .short-description ul li::before {
  content: "✓";
  color: #1597CC;
  border: 3px solid rgba(0, 0, 0, 0.15);
  font-size: 1.5em;
  display: inline-block;
  margin-right: 15px;
  border-radius: 44px;
  width: 44px;
  height: 44px;
  line-height: 1;
  text-align: center;
  vertical-align: top;
  margin-top: -3px;
  margin-left: -60px;
  background-color: #fff;
}
.course .course-info .short-description strong, .course .course-info .short-description b {
  font-weight: 500;
  color: #000;
}
.course .course-info .short-description p:last-child {
  margin-bottom: 0;
}
.course .course-info .short-description .more {
  margin-top: 2em;
  margin-bottom: 0;
}
.course .course-info .short-description .more a {
  font-size: 85%;
  text-transform: uppercase;
  color: #1597CC;
  font-weight: 600;
  text-decoration: none;
}
.course .course-info .short-description .more a:hover {
  text-decoration: underline;
  text-decoration-color: #000;
}
.course .course-info .price {
  margin-bottom: 3em;
}
.course .course-info .price .total {
  color: #1597CC;
  font-weight: bold;
  font-size: 3em;
  line-height: 1.1;
}
.course .course-info .price .special {
  font-size: 0.6em;
  color: #000;
  font-weight: 400;
  line-height: 1.25;
}
.course .course-info .price .note {
  font-size: 85%;
}
.course .course-info .price .note .tooltip-icon {
  font-size: 20px;
  vertical-align: top;
  margin-top: -4px;
  display: inline-block;
}
.course .course-info .btn-buy {
  margin: 0;
}
.course .course-info .places {
  margin-top: 1.5em !important;
  margin-bottom: 1.5em !important;
}
.course .course-info .places .available strong {
  margin-left: 1em;
  padding: 11px 0;
  text-align: center;
  display: inline-block;
  width: 44px;
  height: 44px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  background-color: #1597CC;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  vertical-align: middle;
}
.course .course-info .places .max strong {
  margin-left: 1em;
  padding: 11px 0;
  text-align: center;
  display: inline-block;
  width: 44px;
  height: 44px;
  font-weight: 500;
  color: #1597CC;
  line-height: 1;
  background-color: rgba(21, 151, 204, 0.25);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  vertical-align: middle;
}
.course .course-info .course-block {
  margin-bottom: 1em;
  height: 100%;
}
.course .course-info .course-block > h2 {
  font-size: 1.5em;
  font-family: "Bowlby One", Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  color: #000;
  border-bottom: 5px solid rgba(195, 195, 195, 0.15);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .course .course-info .course-block > h2 {
    font-size: 2em;
  }
}
.course .course-info .course-block > h2 span {
  display: inline-block;
  margin-bottom: -5px;
  padding: 0 10px 5px 0;
  border-bottom: 5px solid #1597CC;
  max-width: 95%;
  color: inherit;
}
.course .course-info .course-block ul {
  margin: 0 0 2.5em;
}
.course .course-info .course-block ul li {
  color: #000;
  font-size: 1.25em;
  margin-top: 0.5em;
  margin-bottom: 1em;
  list-style-type: none;
  padding: 0 0 0 25px;
}
.course .course-info .course-block ul li:last-child {
  margin-bottom: 0;
}
.course .course-info .course-block ul li::before {
  content: "✓";
  color: #1597CC;
  border: 3px solid rgba(0, 0, 0, 0.15);
  font-size: 1.5em;
  display: inline-block;
  margin-right: 15px;
  border-radius: 44px;
  width: 44px;
  height: 44px;
  line-height: 1;
  text-align: center;
  vertical-align: top;
  margin-top: -3px;
  margin-left: -60px;
  background-color: #fff;
}
.course .course-info .course-block strong, .course .course-info .course-block b {
  font-weight: 500;
}
.course .course-info .course-block p:last-child {
  margin-bottom: 0;
}
.course .course-info .requirements .alert-danger {
  margin-bottom: 3em;
  border: 3px solid #1597CC;
  color: #1597CC;
  font-size: 75%;
  background: #fff;
  font-weight: 400;
  border-radius: 3px;
}
.course .course-info .requirements .alert-danger strong {
  font-weight: 600;
}
.course .course-info .requirements ul {
  margin: 0 0 2.5em;
}
.course .course-info .requirements ul li {
  color: #1597CC;
  font-size: 1.25em;
  margin-top: 0.5em;
  margin-bottom: 1em;
  list-style-type: none;
  padding: 0 0 0 25px;
}
.course .course-info .requirements ul li:last-child {
  margin-bottom: 0;
}
.course .course-info .requirements ul li::before {
  content: "✓";
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.4);
  font-size: 1.5em;
  display: inline-block;
  margin-right: 15px;
  border-radius: 44px;
  width: 44px;
  height: 44px;
  line-height: 1;
  text-align: center;
  vertical-align: top;
  margin-top: -3px;
  margin-left: -60px;
  background-color: #1597CC;
}
.course .calendar h2 {
  font-size: 1.5em;
  font-family: "Bowlby One", Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  color: #000;
  border-bottom: 5px solid rgba(195, 195, 195, 0.15);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .course .calendar h2 {
    font-size: 2em;
  }
}
.course .calendar h2 span {
  display: inline-block;
  margin-bottom: -5px;
  padding: 0 10px 5px 0;
  border-bottom: 5px solid #1597CC;
  max-width: 95%;
  color: inherit;
}

/* Services */
.services .services-list {
  /*ul {
    margin: 0 0 1.5em;
    list-style-type: none;
    padding: 0;

    li {
      position: relative;
      margin-top: 1.5em;
      margin-bottom: 1.5em;
      padding-left: 65px;
      font-size: 1.25em;
      color: #fff;
      cursor: default;

      &::before {
        content: "✓";
        color: $primary-color;
        font-size: 1.75em;
        display: inline-block;
        border: 3px solid rgba(255, 255, 255, 0.25);
        border-radius: 48px;
        width: 48px;
        height: 48px;
        line-height: 44px;
        text-align: center;
        vertical-align: top;
        position: absolute;
        top: -7px;
        left: 0;
        transition: all .2s ease-in;
      }

      &:last-child {
        margin-bottom: 0;
      }

      &:hover {
        &::before {
          transform: scale(1.25);
        }
      }
    }
  }*/
}
.services .services-list ul {
  padding: 0;
}
.services .services-list ul li {
  padding-left: 30px;
  list-style-type: none;
}
.services .services-list ul li::before {
  content: "▪";
  color: #1597CC;
  display: inline-block;
  width: 20px;
  margin-left: -20px;
  font-size: 2em;
  line-height: 0;
  vertical-align: top;
  margin-top: 13px;
}

/* Certifications */
.certifications {
  padding: 75px 0;
  background-color: #1597CC;
}
.certifications .headline {
  margin-bottom: 2em;
}
.certifications .headline img {
  width: 100%;
  max-width: unset;
}
.certifications .text {
  color: #fff;
}
.certifications .text p {
  color: inherit !important;
}
.certifications .text p:last-child {
  margin-bottom: 0;
}
.certifications .certificates {
  background-color: #fff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  padding: 25px 50px;
}
.certifications .certificate {
  margin: 1em auto;
}
.certifications .certificate img {
  max-height: 120px;
  max-width: 100%;
}
@media (min-width: 992px) {
  .certifications .certificate img {
    max-height: 120px;
    max-width: 200px;
  }
}
.certifications .certificate a {
  display: block;
}

/* Quick Contact */
.quick-contact {
  position: relative;
  padding: 100px 0 80px;
  z-index: 5;
}
.quick-contact .callback-icon {
  max-height: 150px;
}
.quick-contact h3 {
  font-family: "Bowlby One", Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin: 0 0 0.3em;
  font-size: 1.8rem;
  font-weight: bold;
  color: inherit;
}
@media (min-width: 768px) {
  .quick-contact h3 {
    font-size: 2.4rem;
  }
}
.quick-contact h3 strong {
  display: block;
  font-size: 1.5em;
  color: #00aef2;
}
.quick-contact p {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: #ddd;
}
.quick-contact p.small {
  font-size: 85%;
}
.quick-contact a {
  text-decoration: underline;
  color: #ddd;
}
.quick-contact a:hover {
  text-decoration: underline;
  text-decoration-color: #00aef2;
}
.quick-contact .form-control {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.15);
}
.quick-contact .form-control:focus {
  background-color: #fff;
  border-color: #fff;
}
.quick-contact .form-check {
  font-size: 1em;
  line-height: 26px;
}
.quick-contact .form-check .form-check-label {
  text-transform: none;
}
.quick-contact .btn {
  margin-left: 0;
  margin-right: 0;
}
.quick-contact .btn.btn-outline {
  border-color: white;
}
.quick-contact .btn.btn-icon-left i {
  border-right: 1px solid white;
}
.quick-contact .more-options a {
  display: block;
  font-size: 75%;
  text-decoration: none;
}
.quick-contact .more-options a i {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: 12px;
  padding: 3px 0 0 1px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  margin-top: 0;
  margin-right: 5px;
  line-height: 0;
  vertical-align: top;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 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;
}
.quick-contact .more-options a i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: inherit;
}
.quick-contact .more-options a:hover {
  color: #fff;
}
.quick-contact .more-options a:hover i {
  background-color: #fff;
  color: #00aef2;
}

/* Home */
.home .section.welcome {
  background-image: url("../img/icon-pistole.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 90%;
}
.home .section.welcome h1 {
  margin-bottom: 1em;
  font-family: "Bowlby One", Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.home .section p:last-child {
  margin-bottom: 0;
}
.home .important-infos {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #1597CC;
}
.home .important-infos h3 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 1em;
}
.home .important-infos p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.home .important-infos p b, .home .important-infos p strong {
  color: #fff;
}
@media (min-width: 992px) {
  .home .important-infos p {
    margin-left: 25%;
    margin-right: 25%;
  }
}
.home .teasers {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #efefef;
}
.home .teasers .teaser {
  margin-bottom: 30px;
}
.home .teasers .teaser img {
  text-align: center;
  margin: 0 auto 2em;
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
}
.home .teasers .teaser h2 {
  font-size: 2.8rem;
  text-align: center;
}
.home .teasers .teaser p {
  text-align: center;
}

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