/* Generated using nucleoapp.com */

/* --------------------------------

General

-------------------------------- */

.icon {
  display: inline-block;
  color: inherit; /* icon primary color */
  height: 1em;
  width: 1em;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.icon use {
  /* icon secondary color */
  fill: currentColor;
  stroke: currentColor;
}

/* --------------------------------

Themes

-------------------------------- */

.icon-theme-1 {
  color: #4a5568;
}

.icon-theme-1 use {
  fill: inherit;
  stroke: inherit;
}

/* --------------------------------

Sizes

-------------------------------- */

/* relative units */
.icon-sm {
  font-size: 0.8em;
}

.icon-lg {
  font-size: 1.2em;
}

/* absolute units */
.icon-16 {
  font-size: 16px;
}

.icon-32 {
  font-size: 32px;
}

/* --------------------------------

Stroke

-------------------------------- */

.stroke-1 {
  stroke-width: 1px;
}

.stroke-2 {
  stroke-width: 2px;
}

.stroke-3 {
  stroke-width: 3px;
}

.stroke-4 {
  stroke-width: 4px;
}

/* --------------------------------

Transformations/Animations

-------------------------------- */

.icon-rotate-90 {
  transform: rotate(90deg);
}

.icon-rotate-180 {
  transform: rotate(180deg);
}

.icon-rotate-270 {
  transform: rotate(270deg);
}

.icon-flip-y {
  transform: scaleY(-1);
}

.icon-flip-x {
  transform: scaleX(-1);
}

.icon-is-spinning {
  animation: icon-spin 1s infinite linear;
}

@keyframes icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@charset "UTF-8";
/*
// Add your own theme-colors.
$theme-colors: (
    "primary": $primary,
    "secondary": $secondary,
    "light": $white-smoke-light
    //"highlight": $white,
);

$theme-colors: map-remove($theme-colors, "dark", "light");
*/
/**
 * Helper function for downsize mixin.
 */
/**
 * Downsize a CSS property using the viewport to affect calc().
 *
 * @param {string} $property: The property to be affected.
 * @param {string|list} $min: The min value / values.
 * @param {string|list} $max: The max value / values.
 * @param {string} $viewport: The biggest viewport, which the property must be calculated. NOTE: we use media-breakpoint-down here!
 * @param {boolean} $default: True if the default property must be set, regardless of the viewport size.
 * @param {list} $min-limit: A list containing the min viewport and the min value.
 */
.container .container {
  padding-left: 0px;
  padding-right: 0px;
}

figure {
  margin: 0;
}
figure > picture {
  display: block;
}
figure.image-zoom {
  cursor: pointer;
}
figure picture ~ figcaption, figure picture ~ .figure-caption, figure picture ~ span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: inherit;
}
@media (max-width: 575.98px) {
  figure picture ~ figcaption, figure picture ~ .figure-caption, figure picture ~ span {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .hidden-xs {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .hidden-sm {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hidden-md {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hidden-lg {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hidden-xl {
    display: none;
  }
}
@media (min-width: 1400px) {
  .hidden-xxl {
    display: none;
  }
}
.list-inline > li {
  display: inline-block;
}

@media (min-width: 768px) {
  .media-col-1 {
    width: 8.3333333333%;
  }

  .media-col-2 {
    width: 16.6666666667%;
  }

  .media-col-3 {
    width: 25%;
  }

  .media-col-4 {
    width: 33.3333333333%;
  }

  .media-col-5 {
    width: 41.6666666667%;
  }

  .media-col-6 {
    width: 50%;
  }

  .media-col-7 {
    width: 58.3333333333%;
  }

  .media-col-8 {
    width: 66.6666666667%;
  }

  .media-col-9 {
    width: 75%;
  }

  .media-col-10 {
    width: 83.3333333333%;
  }

  .media-col-11 {
    width: 91.6666666667%;
  }

  .media-col-12 {
    width: 100%;
  }

  [class*=" media-col-"].pull-left,
[class^=media-col-].pull-left {
    margin-right: 30px;
  }
  [class*=" media-col-"].pull-right,
[class^=media-col-].pull-right {
    margin-left: 30px;
  }
}
[class*=" media-col-"],
[class^=media-col-] {
  margin-bottom: 15px;
}
[class*=" media-col-"] img,
[class^=media-col-] img {
  width: 100%;
}

.mt-xxs {
  margin-top: 0.5rem;
}

.mb-xxs {
  margin-bottom: 0.5rem;
}

.sp-xxs {
  margin-bottom: 8px;
}
@media (max-width: 1199.98px) {
  .sp-xxs {
    margin-bottom: calc(4.4px + 0.3vw);
  }
}
@media (max-width: 575.98px) {
  .sp-xxs {
    margin-bottom: 6px;
  }
}

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

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

.sp-xs {
  margin-bottom: 16px;
}
@media (max-width: 1199.98px) {
  .sp-xs {
    margin-bottom: calc(8.8px + 0.6vw);
  }
}
@media (max-width: 575.98px) {
  .sp-xs {
    margin-bottom: 12px;
  }
}

.mt-sm {
  margin-top: 2rem;
}

.mb-sm {
  margin-bottom: 2rem;
}

.sp-sm {
  margin-bottom: 32px;
}
@media (max-width: 1199.98px) {
  .sp-sm {
    margin-bottom: calc(16.8px + 1.2666666667vw);
  }
}
@media (max-width: 575.98px) {
  .sp-sm {
    margin-bottom: 24px;
  }
}

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

.mb-md {
  margin-bottom: 4rem;
}

.sp-md {
  margin-bottom: 64px;
}
@media (max-width: 1199.98px) {
  .sp-md {
    margin-bottom: calc(3.2px + 5.0666666667vw);
  }
}
@media (max-width: 575.98px) {
  .sp-md {
    margin-bottom: 32px;
  }
}

.mt-lg {
  margin-top: 6rem;
}

.mb-lg {
  margin-bottom: 6rem;
}

.sp-lg {
  margin-bottom: 96px;
}
@media (max-width: 1199.98px) {
  .sp-lg {
    margin-bottom: calc(3.36px + 7.72vw);
  }
}
@media (max-width: 575.98px) {
  .sp-lg {
    margin-bottom: 48px;
  }
}

.mt-xl {
  margin-top: 8rem;
}

.mb-xl {
  margin-bottom: 8rem;
}

.sp-xl {
  margin-bottom: 128px;
}
@media (max-width: 1199.98px) {
  .sp-xl {
    margin-bottom: calc(4.8px + 10.2666666667vw);
  }
}
@media (max-width: 575.98px) {
  .sp-xl {
    margin-bottom: 64px;
  }
}

.mt-xxl {
  margin-top: 10rem;
}

.mb-xxl {
  margin-bottom: 10rem;
}

.sp-xxl {
  margin-bottom: 160px;
}
@media (max-width: 1199.98px) {
  .sp-xxl {
    margin-bottom: calc(6.4px + 12.8vw);
  }
}
@media (max-width: 575.98px) {
  .sp-xxl {
    margin-bottom: 80px;
  }
}

.mt-xxxl {
  margin-top: 12rem;
}

.mb-xxxl {
  margin-bottom: 12rem;
}

.sp-xxxl {
  margin-bottom: 192px;
}
@media (max-width: 1199.98px) {
  .sp-xxxl {
    margin-bottom: calc(8px + 15.3333333333vw);
  }
}
@media (max-width: 575.98px) {
  .sp-xxxl {
    margin-bottom: 96px;
  }
}

.space {
  overflow: hidden;
}

@media (min-width: 1400px) {
  .mr-160 {
    margin-right: 160px;
  }
}

@media (min-width: 1400px) {
  .ml-160 {
    margin-left: 160px;
  }
}

.top-minus-50 {
  top: -50%;
}

@media (min-width: 768px) {
  .two-colums {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }

  .column-span-all {
    -moz-column-span: all;
         column-span: all;
  }
}
video {
  max-width: 100%;
}

.p-bg {
  padding: 15px;
}

.bg-oracle {
  background-color: #425253;
}

.bg-eastern-blue {
  background-color: #0098A1;
}

.bg-gainsboro {
  background-color: #dfdfdf;
  opacity: 1;
}

.bg-light-cyan {
  background-color: #E0F2F3;
}

.bg-white-smoke {
  background-color: #F2F2F2;
}

.bg-white-smoke-light {
  background-color: #F6F6F6;
}

.bg-cyprus {
  background-color: #003A3E;
}

.bg-dark-green {
  background-color: #001F21;
}

.bg-mosque {
  background-color: #00595F;
}

.bg-rio-grande-dark {
  background-color: #AFC910;
}

.bg-gradient-mosque-white {
  background-color: #00595F;
  background: linear-gradient(0deg, transparent 50%, #00595F 50%);
}
.bg-gradient-mosque-white.special {
  position: relative;
}
.bg-gradient-mosque-white.special::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(90deg, #00595F 50%, transparent 50%);
  z-index: -1;
}

.bg-gradient-white-smoke-light {
  background: #F6F6F6;
  background: linear-gradient(0deg, #F6F6F6 50%, transparent 50%);
}

.bg-gradient-smoke-light-white {
  background: #F6F6F6;
  background: linear-gradient(0deg, transparent 50%, #F6F6F6 50%);
}

.bg-gradient-white-oracle {
  background: #425253;
  background: linear-gradient(0deg, #425253 50%, transparent 50%);
}

.bg-gradient-white-smoke-light-oracle {
  background: #425253;
  background: linear-gradient(0deg, #425253 50%, #F6F6F6 50%);
}

.bg-gradient-white-smoke {
  background: #F2F2F2;
  background: linear-gradient(0deg, #F2F2F2 50%, transparent 50%);
  background-size: calc(100% - 130px);
}

[class*=bg-].ms-130, [class*=bg-].me-130 {
  position: relative;
}
@media screen and (min-width: 1600px) {
  [class*=bg-].ms-130::after, [class*=bg-].me-130::after {
    content: "";
    position: absolute;
    width: 130px;
    background-color: #ffffff;
    height: 100%;
    top: 0;
    bottom: 0;
    z-index: 1;
  }
}
@media screen and (min-width: 1600px) {
  [class*=bg-].me-130::after {
    right: 0;
  }
}
@media screen and (min-width: 1600px) {
  [class*=bg-].ms-130::after {
    left: 0;
  }
}

.bg-gradient-smoke-white {
  background: #F2F2F2;
  background: linear-gradient(0deg, transparent 50%, #F2F2F2 50%);
}

.bg-gradient-white-cyprus {
  background: #003A3E;
  background: linear-gradient(0deg, #003A3E 50%, transparent 50%);
}

.bg-gradient-cyprus-white {
  background: #003A3E;
  background: linear-gradient(0deg, transparent 50%, #003A3E 50%);
}
.bg-gradient-cyprus-white.special {
  position: relative;
  z-index: 1;
}
.bg-gradient-cyprus-white.special::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(90deg, #003A3E 50%, #F2F2F2 50%);
  z-index: -1;
}

.bg-gradient-purple {
  background: linear-gradient(252.42deg, #59375C -59.91%, #8C648F 107.83%);
}

.bg-image-special {
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1600px) {
  .bg-image-special {
    background-position: 130px;
  }
}
@media (max-width: 575.98px) {
  .bg-image-special {
    background: none;
  }
}
.bg-image-special::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, rgba(255, 255, 255, 0) 90%), linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}
@media screen and (min-width: 1600px) {
  .bg-image-special::before {
    width: calc(100% - 130px);
  }
}

.btn-block {
  display: block;
  width: 100%;
}

.btn:not([data-bs-toggle=collapse]) {
  position: relative;
  font-weight: 700;
  border-radius: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  outline: none !important;
  transition: all 200ms linear;
  overflow: hidden;
}
.btn:not([data-bs-toggle=collapse]):active:focus, .btn:not([data-bs-toggle=collapse]):focus {
  box-shadow: none;
}
.btn:not([data-bs-toggle=collapse]) .icon {
  transition: all 200ms ease-in-out;
}
.btn:not([data-bs-toggle=collapse]):hover .icon {
  transform: translateX(5px);
}
.btn:not([data-bs-toggle=collapse]):hover::before {
  -webkit-animation: ripple 500ms linear forwards;
          animation: ripple 500ms linear forwards;
}
.btn:not([data-bs-toggle=collapse])::before {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 50%;
}
@media (max-width: 575.98px) {
  .btn:not([data-bs-toggle=collapse]):not(.btn-link) {
    display: block;
  }
}
.btn:not([data-bs-toggle=collapse]) + .btn-block {
  margin-top: 1rem;
}
.btn:not([data-bs-toggle=collapse]) + .btn:not(.btn-block) {
  margin-top: 1rem;
}
@media (min-width: 576px) {
  .btn:not([data-bs-toggle=collapse]) + .btn:not(.btn-block) {
    margin-top: 0;
    margin-left: 1rem;
  }
}
.btn:not([data-bs-toggle=collapse]).btn-link {
  padding: 0;
  color: #0098A1;
  overflow: visible;
}
.btn:not([data-bs-toggle=collapse]).btn-link:hover {
  text-decoration: none;
  color: #66c1c7;
}
.btn:not([data-bs-toggle=collapse]).btn-link:hover::before {
  -webkit-animation: none;
          animation: none;
}
.btn:not([data-bs-toggle=collapse]).btn-lg {
  font-size: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.btn:not([data-bs-toggle=collapse]).btn-primary {
  background-color: #0098A1;
  border-color: #0098A1;
  border-width: 2px;
}
.btn:not([data-bs-toggle=collapse]).btn-primary:hover {
  background-color: #007980;
  border-color: #007980;
  box-shadow: 0px 4px 4px rgba(1, 114, 248, 0.18);
}
.btn:not([data-bs-toggle=collapse]).btn-primary.disabled {
  background-color: rgba(0, 152, 161, 0.5);
  border-color: rgba(0, 152, 161, 0.5);
}
.btn:not([data-bs-toggle=collapse]).btn-secondary {
  background-color: #C5D31B;
  border-color: #C5D31B;
  border-width: 2px;
}
.btn:not([data-bs-toggle=collapse]).btn-secondary:hover {
  background-color: #0CBD9D;
  border-color: #0CBD9D;
  box-shadow: 0px 4px 4px rgba(14, 108, 91, 0.18);
}
.btn:not([data-bs-toggle=collapse]).btn-secondary.disabled {
  background-color: rgba(197, 211, 27, 0.5);
  border-color: rgba(197, 211, 27, 0.5);
}
.btn:not([data-bs-toggle=collapse]).btn-tertiary {
  background-color: #ffffff;
  border-color: #ffffff;
  border-width: 2px;
}
.btn:not([data-bs-toggle=collapse]).btn-tertiary:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.18);
}
.btn:not([data-bs-toggle=collapse]).btn-tertiary.disabled {
  background-color: rgba(197, 211, 27, 0.5);
  border-color: rgba(197, 211, 27, 0.5);
}
.btn:not([data-bs-toggle=collapse]).btn-outline-primary {
  color: #0098A1;
  border-color: #0098A1;
  border-width: 2px;
}
.btn:not([data-bs-toggle=collapse]).btn-outline-primary:hover {
  color: #007980;
  border-color: #007980;
  background-color: transparent;
  filter: drop-shadow(0px 4px 4px rgba(1, 114, 248, 0.18));
}
.btn:not([data-bs-toggle=collapse]).btn-outline-secondary {
  color: #C5D31B;
  border-color: #C5D31B;
  border-width: 2px;
}
.btn:not([data-bs-toggle=collapse]).btn-outline-secondary:hover {
  color: #0CBD9D;
  border-color: #0CBD9D;
  background-color: transparent;
  filter: drop-shadow(0px 4px 4px rgba(14, 108, 91, 0.18));
}
.btn:not([data-bs-toggle=collapse]).btn-outline-tertiary {
  color: #ffffff;
  border-color: #ffffff;
  border-width: 2px;
}
.btn:not([data-bs-toggle=collapse]).btn-outline-tertiary:hover {
  background-color: transparent;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.18));
}

html {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}
@media (min-width: 1400px) {
  body {
    position: relative;
  }
}
@media screen and (min-width: 1600px) {
  body::before, body::after {
    content: "";
    position: absolute;
    width: 1px;
    min-height: 100vh;
    top: 0;
    bottom: 0;
    background-color: #dfdfdf;
    z-index: -1;
  }
}
body::before {
  right: calc(100% - 131px);
}
body::after {
  left: calc(100% - 131px);
}
body,
body #main {
  overflow-x: hidden;
}

#body-container {
  min-height: 100vh;
  position: relative;
  max-width: 2560px;
  margin-left: auto;
  margin-right: auto;
}
@media (-ms-high-contrast: none) {
  #body-container {
    display: block !important;
  }
}

.modal a:not([class]),
.modal a.cookie-settings-link,
.main-container .container:not(#breadcrumb) a:not([class]),
.main-container .container:not(#breadcrumb) a.cookie-settings-link {
  color: #0098A1;
  text-decoration: underline;
}
.modal a:not([class]):hover,
.modal a.cookie-settings-link:hover,
.main-container .container:not(#breadcrumb) a:not([class]):hover,
.main-container .container:not(#breadcrumb) a.cookie-settings-link:hover {
  color: #007980;
}

.main-container .bg-cyprus .container:not(#breadcrumb) a:not([class]) {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}
.main-container .bg-cyprus .container:not(#breadcrumb) a:not([class]):hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1199.98px) {
  :root {
    --bs-gutter-x: 25px;
  }
}

.padding-custom {
  padding: 1rem;
}
@media (min-width: 768px) {
  .padding-custom {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .padding-custom {
    padding: 5rem;
  }
}

/* titillium-web-regular - latin */
@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: local(""), url("../fonts/titillium-web/titillium-web-v15-latin-regular.woff2") format("woff2"), url("../fonts/titillium-web/titillium-web-v15-latin-regular.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* titillium-web-600 - latin */
@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: local(""), url("../fonts/titillium-web/titillium-web-v15-latin-600.woff2") format("woff2"), url("../fonts/titillium-web/titillium-web-v15-latin-600.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* titillium-web-700 - latin */
@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: local(""), url("../fonts/titillium-web/titillium-web-v15-latin-700.woff2") format("woff2"), url("../fonts/titillium-web/titillium-web-v15-latin-700.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
.icon {
  display: inline-block;
  height: 1em;
  width: 1em;
}

.module-download .icon {
  width: 0.75em;
  position: relative;
  top: -0.125em;
}

.icon.top {
  display: inline-block;
  vertical-align: top;
}

.icon-xs {
  height: 0.5em;
  width: 0.5em;
}

.icon-sm {
  height: 0.75em;
  width: 0.75em;
}

.icon-lg {
  height: 1.5em;
  width: 1.5em;
}

.icon-xl {
  height: 2em;
  width: 2em;
}

.h-560,
.h-560 picture,
.h-560 .img {
  width: 100%;
}
.h-560 .img {
  max-height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
}
.h-560.border-bottom-eastern-blue {
  position: relative;
}
.h-560.border-bottom-eastern-blue::after {
  content: "";
  position: absolute;
  height: 35px;
  width: 50%;
  background-color: #0098A1;
  bottom: -35px;
  right: 0;
}
@media (max-width: 767.98px) {
  .h-560.border-bottom-eastern-blue::after {
    height: 15px;
    bottom: -15px;
  }
}

.list.list-icon {
  list-style: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.list.list-icon li {
  position: relative;
  padding-left: 1em;
  line-height: 1.625em;
}
.list.list-icon li:before {
  content: "███";
  position: absolute;
  font-size: 0.8em;
  line-height: 1.5em;
  top: 0.2em;
  left: 0;
  width: 1em;
  height: 1.5em;
  max-height: 1.5em;
  overflow: hidden;
  color: inherit;
  font-family: Arial, sans-serif;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.list.list-icon.list-arrow li:before {
  -webkit-mask-image: url("../icons-svg/chevron-right-bold.svg");
          mask-image: url("../icons-svg/chevron-right-bold.svg");
}
.list.list-icon.list-star li:before {
  -webkit-mask-image: url("../icons-svg/star.svg");
          mask-image: url("../icons-svg/star.svg");
}
.list.list-icon.list-star li {
  font-size: 2rem;
  padding-left: 2rem;
}
.list.list-icon.list-check li {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 65px;
  background-repeat: no-repeat;
  background-position: 26px center;
  background-image: url("../icons-svg/check.svg");
}
@media (max-width: 767.98px) {
  .list.list-icon.list-check li {
    font-size: 16px;
    padding-right: 15px;
  }
}
@media (max-width: 575.98px) {
  .list.list-icon.list-check li {
    padding-left: 50px;
    background-position: 16px center;
  }
}
.list.list-icon.list-check li:nth-child(odd) {
  background-color: #F6FBFC;
}
.list.list-icon.list-check li::before {
  display: none;
}
.list.list-icon.list-listing-symbol li {
  padding-left: 50px;
  padding-right: 50px;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url("../icons-svg/listing-symbol.svg");
  margin-bottom: 16px;
  background-size: 29px;
}
@media (max-width: 575.98px) {
  .list.list-icon.list-listing-symbol li {
    padding-left: 45px;
    padding-right: 0;
  }
}
.list.list-icon.list-listing-symbol li::before {
  display: none;
}

form .form-control {
  border-radius: 0;
}

.pagination {
  justify-content: center;
}
.pagination .page-item {
  margin-left: 4px;
  margin-right: 4px;
}
.pagination .page-item .page-link {
  border-radius: 0;
  height: 40px;
  width: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.pagination .page-item .page-link:hover {
  background-color: #0098A1;
  border-color: #0098A1;
}
.pagination .page-item.active .page-link {
  background-color: #0098A1;
  border-color: #0098A1;
}

.h1-bigger {
  font-size: 68px;
  line-height: 78px;
  font-weight: 700;
}
@media (max-width: 1199.98px) {
  .h1-bigger {
    font-size: calc(18px + 4.1666666667vw);
  }
}
@media (max-width: 1199.98px) {
  .h1-bigger {
    line-height: calc(18px + 5vw);
  }
}

.font-size-26 {
  font-size: 26px;
}
@media (max-width: 767.98px) {
  .font-size-26 {
    font-size: 20px;
  }
}

.font-size-14 {
  font-size: 14px;
}

.text-gray-2 {
  color: #808080;
}

.text-eastern-blue {
  color: #0098A1;
}

.text-fountain-blue {
  color: #60BABF !important;
}

.module-header.subheader-custom-list .subheader {
  color: #808080;
}
@media (max-width: 767.98px) {
  .module-header.subheader-custom-list .subheader {
    display: none;
  }
}
.module-header .preheader {
  display: flex;
  align-items: center;
  color: #0098A1;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
@media (max-width: 575.98px) {
  .module-header .preheader {
    font-size: 18px;
  }
}
.module-header .preheader::before {
  content: "";
  position: relative;
  width: 60px;
  height: 2px;
  background-color: #dfdfdf;
  margin-right: 15px;
}
@media (max-width: 575.98px) {
  .module-header .preheader::before {
    width: 28px;
  }
}
.module-header .subheader {
  font-weight: 600;
}
.module-header h1 + .subheader,
.module-header h2 + .subheader,
.module-header .h1 + .subheader,
.module-header .h2 + .subheader {
  font-size: 24px;
}
.module-header .header {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .module-header .h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
  }
}
.module-header .h1 + .subheader {
  margin-top: 20px;
}
@media (max-width: 575.98px) {
  .module-header .h1 + .subheader {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (max-width: 575.98px) {
  .module-header .h2 {
    font-size: 22px;
  }
}
@media (max-width: 575.98px) {
  p {
    font-size: 16px;
  }
}

.module-accordion .card-header {
  padding: 0;
}
.module-accordion.icons .card {
  border: 0;
  border-radius: 0;
  background-color: transparent;
}
.module-accordion.icons .card .card-header {
  background-color: transparent;
  border: 0;
  margin-bottom: 8px;
  border-radius: 0;
}
.module-accordion.icons .card .card-header.white {
  background-color: #ffffff;
}
.module-accordion.icons .card .card-header.white-smoke {
  background-color: #F2F2F2;
}
@media (max-width: 575.98px) {
  .module-accordion.icons .card .card-header {
    margin-bottom: 4px;
  }
}
.module-accordion.icons .card .card-header .btn {
  position: relative;
  font-size: 24px;
  padding: 18px 50px 18px 25px;
  display: flex;
  align-items: center;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .module-accordion.icons .card .card-header .btn {
    font-size: 16px;
    line-height: 19px;
    padding: 5px 30px 5px 15px;
    height: 72px;
    font-weight: 700;
  }
}
.module-accordion.icons .card .card-header .btn::before, .module-accordion.icons .card .card-header .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  height: 2px;
  width: 16px;
  background-color: #000000;
  transition: all 200ms ease-in-out;
}
@media (max-width: 575.98px) {
  .module-accordion.icons .card .card-header .btn::before, .module-accordion.icons .card .card-header .btn::after {
    right: 15px;
  }
}
.module-accordion.icons .card .card-header .btn::before {
  transform: rotate(90deg);
}
.module-accordion.icons .card .card-header .btn::after {
  opacity: 1;
}
.module-accordion.icons .card .card-header .btn[aria-expanded=true]::before {
  transform: rotate(180deg);
}
.module-accordion.icons .card .card-header .btn[aria-expanded=true]::after {
  transform: rotate(90deg);
  opacity: 0;
}
.module-accordion.icons .card .card-body img {
  max-width: 100%;
  height: auto;
}
.module-accordion.icons .card .icon {
  width: 42px;
  height: 42px;
  margin-right: 25px;
}
@media (max-width: 575.98px) {
  .module-accordion.icons .card .icon {
    width: 28px;
    height: 28px;
    margin-right: 15px;
  }
}

.module-cards .card-title {
  font-weight: bold;
  font-size: 1.5rem;
}
.module-cards .card-subtitle {
  font-weight: bold;
  font-size: 1.2rem;
}
.module-cards > .row > div.col-12:nth-child(1) {
  margin-top: 0;
}
.module-cards > .row > div.col-12:nth-child(n+2) {
  margin-top: 30px;
}
.module-cards > .row > div.col-6:nth-child(1) {
  margin-top: 0;
}
.module-cards > .row > div.col-6:nth-child(2) {
  margin-top: 0;
}
.module-cards > .row > div.col-6:nth-child(n+3) {
  margin-top: 30px;
}
.module-cards > .row > div.col-4:nth-child(1) {
  margin-top: 0;
}
.module-cards > .row > div.col-4:nth-child(2) {
  margin-top: 0;
}
.module-cards > .row > div.col-4:nth-child(3) {
  margin-top: 0;
}
.module-cards > .row > div.col-4:nth-child(n+4) {
  margin-top: 30px;
}
.module-cards > .row > div.col-3:nth-child(1) {
  margin-top: 0;
}
.module-cards > .row > div.col-3:nth-child(2) {
  margin-top: 0;
}
.module-cards > .row > div.col-3:nth-child(3) {
  margin-top: 0;
}
.module-cards > .row > div.col-3:nth-child(4) {
  margin-top: 0;
}
.module-cards > .row > div.col-3:nth-child(n+5) {
  margin-top: 30px;
}
.module-cards > .row > div.col-2:nth-child(1) {
  margin-top: 0;
}
.module-cards > .row > div.col-2:nth-child(2) {
  margin-top: 0;
}
.module-cards > .row > div.col-2:nth-child(3) {
  margin-top: 0;
}
.module-cards > .row > div.col-2:nth-child(4) {
  margin-top: 0;
}
.module-cards > .row > div.col-2:nth-child(5) {
  margin-top: 0;
}
.module-cards > .row > div.col-2:nth-child(6) {
  margin-top: 0;
}
.module-cards > .row > div.col-2:nth-child(n+7) {
  margin-top: 30px;
}
@media (min-width: 576px) {
  .module-cards > .row > div.col-sm-12:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-12:nth-child(n+2) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-sm-6:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-6:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-6:nth-child(n+3) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-sm-4:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-4:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-4:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-4:nth-child(n+4) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-sm-3:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-3:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-3:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-3:nth-child(4) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-3:nth-child(n+5) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-sm-2:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-2:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-2:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-2:nth-child(4) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-2:nth-child(5) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-2:nth-child(6) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-sm-2:nth-child(n+7) {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .module-cards > .row > div.col-md-12:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-12:nth-child(n+2) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-md-6:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-6:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-6:nth-child(n+3) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-md-4:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-4:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-4:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-4:nth-child(n+4) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-md-3:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-3:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-3:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-3:nth-child(4) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-3:nth-child(n+5) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-md-2:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-2:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-2:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-2:nth-child(4) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-2:nth-child(5) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-2:nth-child(6) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-md-2:nth-child(n+7) {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .module-cards > .row > div.col-lg-12:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-12:nth-child(n+2) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-lg-6:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-6:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-6:nth-child(n+3) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-lg-4:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-4:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-4:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-4:nth-child(n+4) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-lg-3:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-3:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-3:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-3:nth-child(4) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-3:nth-child(n+5) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-lg-2:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-2:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-2:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-2:nth-child(4) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-2:nth-child(5) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-2:nth-child(6) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-lg-2:nth-child(n+7) {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .module-cards > .row > div.col-xl-12:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-12:nth-child(n+2) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-xl-6:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-6:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-6:nth-child(n+3) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-xl-4:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-4:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-4:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-4:nth-child(n+4) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-xl-3:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-3:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-3:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-3:nth-child(4) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-3:nth-child(n+5) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-xl-2:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-2:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-2:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-2:nth-child(4) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-2:nth-child(5) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-2:nth-child(6) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xl-2:nth-child(n+7) {
    margin-top: 30px;
  }
}
@media (min-width: 1400px) {
  .module-cards > .row > div.col-xxl-12:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-12:nth-child(n+2) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-xxl-6:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-6:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-6:nth-child(n+3) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-xxl-4:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-4:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-4:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-4:nth-child(n+4) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-xxl-3:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-3:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-3:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-3:nth-child(4) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-3:nth-child(n+5) {
    margin-top: 30px;
  }
  .module-cards > .row > div.col-xxl-2:nth-child(1) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-2:nth-child(2) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-2:nth-child(3) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-2:nth-child(4) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-2:nth-child(5) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-2:nth-child(6) {
    margin-top: 0;
  }
  .module-cards > .row > div.col-xxl-2:nth-child(n+7) {
    margin-top: 30px;
  }
}

.module-card-info {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  padding-top: 38px;
  background-color: #003A3E;
  padding: 60px 40px;
  color: #ffffff;
}
@media (max-width: 1199.98px) {
  .module-card-info {
    display: none;
  }
}
.module-card-info .text-btn-wrapper {
  text-align: center;
  margin-bottom: 20px;
}
.module-card-info .text-btn-wrapper p {
  margin-bottom: 0;
  font-size: 20px;
  margin-bottom: 20px;
}
.module-card-info .text-btn-wrapper .btn {
  font-size: 14px;
  background-color: #0098A1;
  border-color: #0098A1;
}
.module-card-info .text-btn-wrapper .btn:hover {
  background-color: #007980;
  border-color: #007980;
}
.module-card-info .social-links {
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  padding-left: 0;
}
.module-card-info .social-links li:not(:last-child) {
  margin-right: 20px;
}
.module-card-info .social-links li a {
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .module-cards.activities.special .cards-wrapper .card {
    background-color: #E0F2F3;
    border-radius: 0;
    padding-top: 16px;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 8px;
  }
}
@media (max-width: 767.98px) {
  .module-cards.activities.special .cards-wrapper .card .card-header {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .card.card-activity {
    flex-direction: row;
    align-items: center;
  }
}
.card.card-activity,
.card.card-activity .card-header,
.card.card-activity .card-body {
  border: 0;
  background-color: transparent;
  padding: 0;
}
@media (max-width: 767.98px) {
  .card.card-activity .card-header .card-icon {
    margin-right: 15px;
  }
}
.card.card-activity .card-header .icon {
  width: 60px;
  height: 60px;
  color: #0098A1;
}
@media (max-width: 767.98px) {
  .card.card-activity .card-header .icon {
    width: 40px;
    height: 40px;
  }
}
.card.card-activity .card-body .card-text {
  font-size: 20px;
}

.card.card-benefit {
  background-color: #F6F6F6;
  padding: 40px;
  height: 100%;
}
@media (max-width: 991.98px) {
  .card.card-benefit {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.card.card-benefit,
.card.card-benefit .card-header,
.card.card-benefit .card-body {
  border: 0;
  border-radius: 0;
}
.card.card-benefit .card-header,
.card.card-benefit .card-body {
  padding: 0;
}
.card.card-benefit .card-header {
  display: flex;
  background-color: transparent;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .card.card-benefit .card-header {
    flex-direction: column;
    margin-bottom: 15px;
  }
}
.card.card-benefit .card-header .card-title,
.card.card-benefit .card-header .card-icon {
  margin-bottom: 0;
}
.card.card-benefit .card-header .card-icon {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .card.card-benefit .card-header .card-icon {
    margin-bottom: 15px;
  }
}
.card.card-benefit .card-header .icon {
  width: 44px;
  height: 44px;
  color: #0098A1;
  margin-right: 25px;
}

.card.card-benefit-secondary {
  overflow: hidden;
}
.card.card-benefit-secondary::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
}
.card.card-benefit-secondary::after {
  content: "";
  position: absolute;
  width: 230%;
  height: 230%;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%) scale(0);
  background-color: rgba(0, 152, 161, 0.2);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.card.card-benefit-secondary:hover::after {
  transform: translate(-50%, 50%) scale(1);
}
.card.card-benefit-secondary:hover .img {
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .card.card-benefit-secondary:hover .card-body {
    bottom: 0;
  }
  .card.card-benefit-secondary:hover .card-body .card-text {
    opacity: 1;
  }
}
.card.card-benefit-secondary,
.card.card-benefit-secondary .card-header,
.card.card-benefit-secondary .card-body {
  border: 0;
  background-color: transparent;
  border-radius: 0;
}
.card.card-benefit-secondary .card-header {
  padding: 0;
}
.card.card-benefit-secondary .card-header .figure,
.card.card-benefit-secondary .card-header picture,
.card.card-benefit-secondary .card-header .img {
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 250ms ease-in-out;
}
.card.card-benefit-secondary .card-body {
  position: absolute;
  color: #ffffff;
  z-index: 1;
  padding-left: 32px;
  transition: all 250ms ease-in-out;
  bottom: 0;
}
@media (min-width: 992px) {
  .card.card-benefit-secondary .card-body {
    bottom: -45px;
  }
}
.card.card-benefit-secondary .card-body .card-title {
  position: relative;
  margin-bottom: 25px;
}
.card.card-benefit-secondary .card-body .card-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 28px;
  height: 2px;
  background-color: #0098A1;
}
@media (min-width: 992px) {
  .card.card-benefit-secondary .card-body .card-text {
    transition: all 250ms ease-in-out;
    opacity: 0;
  }
}

.card.card-benefit-tertiary {
  background-color: #E0F2F3;
  padding: 27px 27px 24px;
}
@media (max-width: 575.98px) {
  .card.card-benefit-tertiary {
    padding: 24px;
  }
}
@media (min-width: 768px) {
  .card.card-benefit-tertiary {
    height: 100%;
  }
}
.card.card-benefit-tertiary,
.card.card-benefit-tertiary .card-header,
.card.card-benefit-tertiary .card-body {
  border: 0;
  border-radius: 0;
}
.card.card-benefit-tertiary .card-header,
.card.card-benefit-tertiary .card-body {
  padding: 0;
}
.card.card-benefit-tertiary .card-header {
  background-color: transparent;
}
.card.card-benefit-tertiary .card-header .card-icon .icon {
  width: 58px;
  height: 58px;
}
.card.card-benefit-tertiary .card-body .card-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .card.card-benefit-tertiary .card-body .card-title {
    font-size: 18px;
    line-height: 27px;
  }
}

.card.card-contact {
  height: 100%;
}
.card.card-contact,
.card.card-contact .card-body {
  background-color: transparent;
  border: 0;
}
.card.card-contact .card-body {
  background-color: #ffffff;
  padding: 40px;
  padding-bottom: 90px;
  box-shadow: 0px 2px 52px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .card.card-contact .card-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 575.98px) {
  .card.card-contact .card-body {
    padding: 24px;
  }
}
.card.card-contact .card-body .card-pretitle {
  color: #0098A1;
  font-weight: 700;
}
.card.card-contact .card-body .card-title {
  font-weight: 400;
  font-size: 26px;
  line-height: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 575.98px) {
  .card.card-contact .card-body .card-title {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 15px;
  }
}
.card.card-contact .card-body .card-text p {
  margin-bottom: 0;
  margin-top: 8px;
}
@media (min-width: 576px) {
  .card.card-contact .card-body .card-text span {
    display: inline-block;
    min-width: 110px;
  }
}
.card.card-contact .card-body .card-text .icon {
  margin-right: 10px;
  margin-bottom: 3px;
  font-size: 22px;
}
.card.card-contact .card-body .card-text a:not(.btn) {
  color: #0098A1;
  font-size: 24px;
  text-decoration: none;
}
.card.card-contact .card-body .card-text a:not(.btn):hover {
  text-decoration: underline;
}
@media (max-width: 575.98px) {
  .card.card-contact .card-body .card-text a:not(.btn) {
    font-size: 20px;
  }
}
@media (min-width: 576px) {
  .card.card-contact .card-body .card-text {
    position: absolute;
    bottom: 40px;
  }
}

.card.card-career {
  border: 0;
  border-radius: 0;
}
@media (min-width: 768px) {
  .card.card-career {
    position: relative;
    overflow: hidden;
  }
  .card.card-career::after {
    content: "";
    position: absolute;
    width: 230%;
    height: 230%;
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%) scale(0);
    background-color: rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  }
  .card.card-career:hover::after {
    transform: translate(-50%, 50%) scale(1);
  }
  .card.card-career:hover .img {
    transform: scale(1.05);
  }
}
.card.card-career.no-image .card-body {
  background-color: #ffffff;
}
.card.card-career.no-image .card-body .img {
  opacity: 0;
}
.card.card-career.no-image .card-body::after {
  content: " ";
  bottom: 0;
  right: 50px;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-bottom-color: #0098A1;
  border-width: 40px;
}
.card.card-career.no-image .card-footer {
  bottom: 50%;
  transform: translateY(50%);
  padding-left: 65px;
  padding-right: 65px;
  left: 0;
}
@media (max-width: 575.98px) {
  .card.card-career.no-image .card-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.card.card-career.no-image .card-footer .card-pretitle {
  font-size: 20px;
  color: #000000;
  font-weight: 700;
}
.card.card-career.no-image .card-footer .card-title {
  color: #0098A1;
  font-size: 32px;
}
.card.card-career .card-body {
  height: 400px;
  padding: 0;
}
@media (max-width: 575.98px) {
  .card.card-career .card-body {
    height: 300px;
  }
}
.card.card-career .card-body .figure,
.card.card-career .card-body picture,
.card.card-career .card-body .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 250ms ease-in-out;
}
.card.card-career .card-footer {
  position: absolute;
  color: #ffffff;
  left: 32px;
  bottom: 40px;
  background-color: transparent;
  padding: 0;
  border: 0;
}

@media (min-width: 768px) {
  .module-cards.customers.shuffle-filter-container {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}
.module-cards.customers.shuffle-filter-container .card-customer {
  position: relative;
  width: calc(25% - 30px);
  margin-top: 30px;
  float: left;
}
@media (min-width: 768px) {
  .module-cards.customers.shuffle-filter-container .card-customer {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .module-cards.customers.shuffle-filter-container .card-customer {
    width: calc(50% - 30px) !important;
  }
}
@media (min-width: 992px) {
  .module-cards.customers.shuffle-filter-container .card-customer.card-big {
    width: calc(50% - 30px);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .module-cards.customers.shuffle-filter-container .card-customer.card-big {
    height: 310px;
  }
}
@media (max-width: 575.98px) {
  .module-cards.customers.shuffle-filter-container .card-customer {
    width: 100%;
  }
}
.module-cards.customers.shuffle-filter-container .card-customer .figure {
  opacity: 1 !important;
  transition: none !important;
  -webkit-animation: none !important;
          animation: none !important;
}
.module-cards.customers.shuffle-filter-container::after {
  display: block;
  clear: both;
  content: "";
}

.card.card-customer {
  width: 100%;
  height: 310px;
  color: #ffffff;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .card.card-customer {
    height: 330px;
  }
}
.card.card-customer.card-big {
  height: 650px;
}
@media (max-width: 575.98px) {
  .card.card-customer.card-big {
    height: 330px;
  }
}
.card.card-customer::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 85.3%);
  z-index: 1;
}
.card.card-customer::after {
  content: "";
  position: absolute;
  width: 230%;
  height: 230%;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%) scale(0);
  background-color: rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.card.card-customer:hover::after {
  transform: translate(-50%, 50%) scale(1);
}
.card.card-customer:hover video,
.card.card-customer:hover .img {
  transform: scale(1.1);
}
.card.card-customer:hover .card-icon {
  background-color: #007980;
  color: #ffffff;
}
.card.card-customer:hover .card-link {
  color: #007980;
}
.card.card-customer:hover .card-link .icon {
  transform: translateX(5px);
}
.card.card-customer video,
.card.card-customer .figure,
.card.card-customer picture,
.card.card-customer .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 250ms ease-in-out;
}
.card.card-customer .card-header,
.card.card-customer .card-body {
  padding: 0;
}
.card.card-customer .card-header {
  height: 100%;
}
.card.card-customer .card-header video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.card.card-customer .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  z-index: 1;
}
.card.card-customer .card-pretitle {
  position: absolute;
  top: 0;
  background-color: #007980;
  font-size: 14px;
  padding: 12px 16px;
  z-index: 1;
}
.card.card-customer .card-icon {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 42px;
  transition: all 200ms ease-in-out;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #000000;
}
.card.card-customer .card-link {
  font-weight: 700;
}
.card.card-customer .card-link .icon {
  transition: all 200ms ease-in-out;
}

.card-customer-modal .btn-close {
  position: absolute;
  right: 25px;
  top: 25px;
}
.card-customer-modal .modal-dialog {
  max-width: 1095px;
}
@media (max-width: 575.98px) {
  .card-customer-modal .modal-dialog {
    margin: 0;
  }
}
@media (max-width: 575.98px) {
  .card-customer-modal .modal-header,
.card-customer-modal .modal-body {
    padding: 25px;
  }
}
.card-customer-modal * {
  opacity: 1 !important;
}

.card.card-education {
  text-align: center;
}
.card.card-education,
.card.card-education .card-header,
.card.card-education .card-body {
  border: 0;
  background-color: transparent;
}
.card.card-education .card-header {
  position: relative;
}
.card.card-education .card-header.line-no-line::after {
  display: none;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .card.card-education .card-header.line-2::after {
    display: none;
  }
}
.card.card-education .card-header::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #000000 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 20px;
  background-repeat: repeat-x;
}
@media (max-width: 767.98px) {
  .card.card-education .card-header::after {
    display: none;
  }
}
.card.card-education .card-header .card-icon {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0px 12px 36px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}
.card.card-education .card-header .card-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  border: solid transparent;
  height: 0;
  width: 0;
  border-color: transparent;
  border-bottom-color: #0098A1;
  border-width: 18px;
}
.card.card-education .card-header .card-icon .icon {
  width: 64px;
  height: 64px;
}
.card.card-education .card-body .card-title {
  font-size: 20px;
  font-weight: 700;
}

.card.card-employee {
  border: 0;
  border-radius: 0;
  background-color: #F2F2F2;
  height: 100%;
}
.card.card-employee .figure,
.card.card-employee picture,
.card.card-employee .img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.card.card-employee .card-body {
  padding-top: 32px;
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 70px;
}
@media (max-width: 991.98px) {
  .card.card-employee .card-body {
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 60px;
  }
}
@media (max-width: 991.98px) {
  .card.card-employee .card-title {
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {
  .card.card-employee .card-title {
    font-weight: 700;
  }
}
.card.card-employee .card-subtitle {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .card.card-employee .card-subtitle {
    font-size: 16px;
  }
}
.card.card-employee .card-text {
  color: #0098A1;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .card.card-employee .card-text {
    font-size: 16px;
  }
}
.card.card-employee .card-links {
  position: absolute;
  bottom: 42px;
}
@media (max-width: 991.98px) {
  .card.card-employee .card-links {
    bottom: 32px;
  }
}
.card.card-employee .card-links a {
  margin-right: 20px;
  color: #000000;
}
.card.card-employee .card-links a .icon {
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  transition: color 200ms linear;
}
.card.card-employee .card-links a:hover {
  color: rgba(0, 0, 0, 0.6);
}
@media (min-width: 1200px) {
  .card.card-employee .card-links a:hover .icon {
    -webkit-animation-name: bounceInIcon;
            animation-name: bounceInIcon;
    color: #0098A1;
  }
}

.card.card-hover {
  height: 320px;
  padding-left: 70px;
  padding-right: 70px;
  color: #ffffff;
  transition: all 250ms linear;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .card.card-hover {
    padding: 48px;
  }
}
@media (max-width: 767.98px) {
  .card.card-hover {
    padding: 48px;
  }
}
.card.card-hover.bg-mosque .card-pretitle {
  color: #A7DCDF;
}
.card.card-hover.bg-rio-grande-dark .card-pretitle {
  color: #000000;
}
.card.card-hover:hover .card-header .card-text {
  opacity: 0;
}
.card.card-hover:hover .figure,
.card.card-hover:hover .card-body {
  opacity: 1;
}
.card.card-hover.no-hover {
  justify-content: center;
}
.card.card-hover,
.card.card-hover .card-header,
.card.card-hover .card-body {
  border: 0;
  border-radius: 0;
  z-index: 1;
}
.card.card-hover .card-header,
.card.card-hover .card-body {
  background-color: transparent;
  padding: 0;
}
.card.card-hover .figure {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 250ms linear;
}
.card.card-hover .figure::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 152, 161, 0.2), rgba(0, 152, 161, 0.2)), linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}
.card.card-hover .figure picture,
.card.card-hover .figure .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card.card-hover .card-header {
  max-width: 200px;
}
.card.card-hover .card-header .card-pretitle {
  margin-bottom: 10px;
}
.card.card-hover .card-header .card-title {
  line-height: 29px;
  font-weight: 600;
}
.card.card-hover .card-header .card-text {
  position: absolute;
  right: 15px;
  bottom: 35px;
  color: #ffffff;
  transition: all 250ms linear;
}
.card.card-hover .card-header .card-text .icon {
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  padding: 20px;
  transform: translateX(-20px);
}
.card.card-hover .card-body {
  position: absolute;
  opacity: 0;
  left: 70px;
  right: 70px;
  transition: all 250ms linear;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .card.card-hover .card-body {
    left: 48px;
    right: 48px;
  }
}
@media (max-width: 767.98px) {
  .card.card-hover .card-body {
    left: 48px;
    right: 48px;
  }
}
.card.card-hover .card-body .card-title {
  font-size: 68px;
  font-weight: 700;
}
.card.card-hover .card-body .card-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
}
.card.card-hover .card-body .card-text p {
  font-size: 24px;
}
.card.card-hover.transform-right, .card.card-hover.transform-left {
  flex-direction: row;
  align-items: center;
  width: 200%;
}
@media (min-width: 768px) {
  .card.card-hover.transform-right .card-header .card-text, .card.card-hover.transform-left .card-header .card-text {
    right: unset;
    left: calc(50% - 170px);
  }
}
@media (max-width: 767.98px) {
  .card.card-hover.transform-right, .card.card-hover.transform-left {
    width: 100%;
    align-items: baseline;
  }
  .card.card-hover.transform-right:hover, .card.card-hover.transform-left:hover {
    height: 640px;
    z-index: 2;
    max-height: 640px;
    transform: none !important;
  }
  .card.card-hover.transform-right:hover .card-body, .card.card-hover.transform-left:hover .card-body {
    transform: none !important;
    max-width: 100%;
  }
  .card.card-hover.transform-right .card-body, .card.card-hover.transform-left .card-body {
    bottom: 100px;
  }
}
.card.card-hover.transform-right .card-header .card-text, .card.card-hover.transform-left .card-header .card-text {
  right: calc(50% + 15px);
  bottom: 35px;
}
@media (max-width: 767.98px) {
  .card.card-hover.transform-right .card-header .card-text, .card.card-hover.transform-left .card-header .card-text {
    right: 15px;
  }
}
.card.card-hover.transform-right:hover {
  z-index: 2;
}
.card.card-hover.transform-right:hover .card-body {
  transform: translateX(100%);
}
@media (min-width: 768px) {
  .card.card-hover.transform-right .card-body {
    max-width: 50%;
    left: 0%;
    padding-right: 70px;
  }
}
.card.card-hover.transform-left {
  overflow: hidden;
}
.card.card-hover.transform-left:hover {
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .card.card-hover.transform-left .card-body {
    left: 50%;
  }
}
.card.card-hover.transform-bottom {
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 320px;
}
.card.card-hover.transform-bottom:hover {
  height: 200%;
  max-height: 640px;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .card.card-hover.transform-bottom:hover {
    height: 640px;
  }
}
.card.card-hover.transform-bottom .card-body {
  bottom: 100px;
}

.card.card-news {
  border-radius: 0;
  border: 0;
  font-size: 16px;
  height: 100%;
}
@media (min-width: 768px) {
  .card.card-news:hover .img {
    transform: scale(1.05);
  }
}
@media (min-width: 768px) {
  .card.card-news:hover .card-link {
    color: #66c1c7;
  }
  .card.card-news:hover .card-link .icon {
    transform: translateX(5px);
  }
}
.card.card-news .card-body {
  padding: 24px 32px 60px;
}
@media (max-width: 767.98px) {
  .card.card-news .card-body {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.card.card-news .figure,
.card.card-news picture,
.card.card-news .img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.card.card-news .figure {
  overflow: hidden;
}
.card.card-news .figure .img {
  transition: all 200ms linear;
}
.card.card-news .card-pretitle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card.card-news .card-pretitle .target {
  background-color: #425253;
  border-radius: 4px;
  color: #ffffff;
  padding: 4px 8px;
}
.card.card-news .card-pretitle .date {
  color: #808080;
}
.card.card-news .card-pretitle .target,
.card.card-news .card-pretitle .date {
  font-size: 14px;
}
.card.card-news .card-title {
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .card.card-news .card-title {
    font-size: 22px;
  }
}
.card.card-news .card-link {
  font-weight: 700;
  color: #0098A1;
  position: absolute;
  bottom: 25px;
  transition: all 200ms linear;
}
.card.card-news .card-link .icon {
  transition: all 200ms ease-in-out;
}

.card.card-office,
.card.card-office .card-header {
  background-color: transparent;
  border: 0;
}
.card.card-office .card-header,
.card.card-office .card-body {
  padding: 0;
}
.card.card-office .card-header {
  margin-bottom: 20px;
}
.card.card-office .card-header .icon {
  width: 58px;
  height: 58px;
}
.card.card-office .card-body .card-title {
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 575.98px) {
  .card.card-office .card-body .card-title {
    font-size: 18px;
  }
}
.card.card-office .card-body .card-title::after {
  content: "";
  position: absolute;
  background-color: #60BABF;
  height: 2px;
  width: 20px;
  bottom: -15px;
  left: 0;
}
.card.card-office .btn,
.card.card-office .icon {
  color: #60BABF;
}
.card.card-office .btn:hover {
  color: #4d9599;
}

.module-cards.sectors .card .card-title {
  font-size: 24px;
}
.module-cards.sectors .card .card-body {
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 60px;
}

.card.card-sector {
  border: 0;
  height: 100%;
}
@media (min-width: 768px) {
  .card.card-sector:hover .img {
    transform: scale(1.05);
  }
}
@media (min-width: 768px) {
  .card.card-sector:hover .card-link {
    color: #66c1c7;
  }
  .card.card-sector:hover .card-link .icon {
    transform: translateX(5px);
  }
}
.card.card-sector:not(.card-simple) .figure {
  text-align: center;
}
.card.card-sector.card-simple,
.card.card-sector.card-simple .card-body {
  background-color: transparent;
}
.card.card-sector.card-simple .card-body {
  padding: 20px 0 0 0 !important;
}
@media (max-width: 575.98px) {
  .card.card-sector.card-simple .card-body {
    padding-top: 10px !important;
  }
}
@media (max-width: 575.98px) {
  .card.card-sector.card-simple .card-body .card-title a {
    font-size: 22px;
  }
}
.card.card-sector.card-simple .figure {
  text-align: center;
}
.card.card-sector.card-simple .figure .img {
  max-width: 75%;
}
@media (min-width: 576px) {
  .card.card-sector.card-simple .figure .img {
    max-width: 50%;
  }
}
.card.card-sector .figure {
  overflow: hidden;
}
.card.card-sector .figure .img {
  transition: all 200ms linear;
}
.card.card-sector .card-title {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .card.card-sector .card-title {
    font-size: 26px;
  }
}
.card.card-sector .card-title a {
  color: #000000;
  text-decoration: none;
}
.card.card-sector .card-title a:hover {
  opacity: 0.6;
}
.card.card-sector .card-text p:not(.card-link) {
  color: #808080;
}
.card.card-sector .card-link {
  font-weight: 700;
  color: #0098A1;
  position: absolute;
  bottom: 40px;
  transition: all 200ms linear;
}
@media (max-width: 575.98px) {
  .card.card-sector .card-link {
    bottom: 32px;
  }
}
.card.card-sector .card-link .icon {
  transition: all 200ms ease-in-out;
}
.card.card-sector .card-body {
  background-color: #F2F2F2;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 80px;
}
@media (max-width: 575.98px) {
  .card.card-sector .card-body {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 70px;
  }
}
.info .card.card-sector .card-title {
  font-size: 18px;
  font-weight: 600;
}
.info .card.card-sector .card-link {
  bottom: 16px;
  font-size: 16px;
}
.info .card.card-sector .card-body {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
}
@media (max-width: 575.98px) {
  .info .card.card-sector .card-body {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 70px;
  }
}

@media (max-width: 575.98px) {
  .module-cards.subjects {
    margin-left: -25px;
    margin-right: -25px;
  }
}
.module-cards.subjects .cards-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1400px) {
  .module-cards.subjects .cards-wrapper {
    width: calc(100vw - (100vw - 100%) / 2);
  }
}

.card.card-subject {
  background-color: transparent;
  flex-basis: 33.3333333333%;
  height: 400px;
  border-radius: 0;
  border: 0;
}
@media (max-width: 1199.98px) {
  .card.card-subject {
    flex-basis: 50%;
  }
}
@media (max-width: 575.98px) {
  .card.card-subject {
    height: 140px;
  }
}
.card.card-subject:hover .card-body .btn {
  color: #cccccc;
}
.card.card-subject:hover .card-body .btn .icon {
  background-color: #ffffff;
  color: #000000;
}
.card.card-subject::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.card.card-subject .card-header,
.card.card-subject .card-body {
  padding: 0;
}
.card.card-subject .card-header {
  position: absolute;
  height: 100%;
  width: 100%;
}
.card.card-subject .card-header .figure,
.card.card-subject .card-header picture,
.card.card-subject .card-header .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card.card-subject .card-body {
  position: relative;
  z-index: 1;
}
.card.card-subject .card-body .btn {
  color: #ffffff;
  text-align: left;
  padding-left: 56px;
  padding-right: 150px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1399.98px) {
  .card.card-subject .card-body .btn {
    padding-left: 25px;
    padding-right: 100px;
  }
}
@media (max-width: 575.98px) {
  .card.card-subject .card-body .btn {
    padding-left: 16px;
  }
}
.card.card-subject .card-body .btn::after, .card.card-subject .card-body .btn::before {
  content: "";
  position: absolute;
  right: 70px;
  width: 1px;
  height: calc(50% - 46px);
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 250ms linear;
}
@media (max-width: 1399.98px) {
  .card.card-subject .card-body .btn::after, .card.card-subject .card-body .btn::before {
    right: 56px;
    height: calc(50% - 32px);
  }
}
@media (max-width: 767.98px) {
  .card.card-subject .card-body .btn::after, .card.card-subject .card-body .btn::before {
    right: 25px;
    height: calc(50% - 16px);
  }
}
.card.card-subject .card-body .btn::before {
  top: 0;
  left: auto;
  opacity: 1;
}
.card.card-subject .card-body .btn::after {
  bottom: 0;
}
.card.card-subject .card-body .btn .title {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .card.card-subject .card-body .btn .title {
    font-size: 16px;
  }
}
.card.card-subject .card-body .btn .icon {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 92px;
  padding: 25px;
  width: 92px;
  height: 92px;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 250ms linear;
}
@media (max-width: 1399.98px) {
  .card.card-subject .card-body .btn .icon {
    height: 64px;
    width: 64px;
    padding: 15px;
  }
}
@media (max-width: 767.98px) {
  .card.card-subject .card-body .btn .icon {
    right: 10px;
    height: 32px;
    width: 32px;
    padding: 5px;
  }
}

.card.card-total-count,
.card.card-total-count .card-body {
  border-radius: 0;
  border: 0;
  background-color: transparent;
}
.card.card-total-count.bg-cyprus .card-body {
  background-color: #003A3E;
}
.card.card-total-count.bg-cyprus .card-body .card-text,
.card.card-total-count.bg-cyprus .card-body .card-title {
  color: #ffffff;
}
.card.card-total-count .card-body {
  padding: 48px;
  background-color: #ffffff;
  box-shadow: 0px 2px 52px rgba(0, 0, 0, 0.2);
}
.card.card-total-count .card-body::before {
  content: "";
  position: absolute;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #0098A1;
}
.card.card-total-count .card-body .card-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 0;
  text-wrap: nowrap;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .card.card-total-count .card-body .card-title {
    font-size: 58px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .card.card-total-count .card-body .card-title {
    font-size: 58px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .card.card-total-count .card-body .card-title {
    font-size: 44px;
  }
}
.card.card-total-count .card-body .card-text {
  color: #C4C4C4;
  font-weight: 600;
}

.card.card-working-enviroment,
.card.card-working-enviroment .card-header,
.card.card-working-enviroment .card-body {
  border: 0;
  background-color: transparent;
  padding: 0;
}
.card.card-working-enviroment .card-header .card-icon {
  margin-bottom: 0;
}
.card.card-working-enviroment .card-header .icon {
  width: 60px;
  height: 60px;
  color: #0098A1;
}
.card.card-working-enviroment .card-body .card-title {
  position: relative;
  margin-top: 15px;
  margin-bottom: 30px;
}
.card.card-working-enviroment .card-body .card-title::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #0098A1;
  left: 0;
  bottom: -15px;
}

@media (min-width: 768px) {
  .module-carousel .carousel .carousel-slide-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
.module-carousel .carousel .carousel-align {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /** custom absolute align helper **/
}
@media (min-width: 768px) {
  .module-carousel .carousel .carousel-align > .row {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .module-carousel .carousel .carousel-align .align-tl {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 50%;
  }
  .module-carousel .carousel .carousel-align .align-tc {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .module-carousel .carousel .carousel-align .align-tr {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 50%;
  }
  .module-carousel .carousel .carousel-align .align-cl {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 50%;
  }
  .module-carousel .carousel .carousel-align .align-cc {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .module-carousel .carousel .carousel-align .align-cr {
    position: absolute;
    top: 50%;
    right: 0;
    max-width: 50%;
    transform: translateY(-50%);
  }
  .module-carousel .carousel .carousel-align .align-bl {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 50%;
  }
  .module-carousel .carousel .carousel-align .align-bc {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .module-carousel .carousel .carousel-align .align-br {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 50%;
  }
}

.module-categories-filter {
  position: relative;
}
@media (max-width: 575.98px) {
  .module-categories-filter {
    margin-left: -25px;
    margin-right: -25px;
  }
}
.module-categories-filter .categories-filter {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .module-categories-filter .categories-filter {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .module-categories-filter .categories-filter-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
  }
}
.module-categories-filter .categories-filter-wrapper .btn {
  color: #000000;
  font-weight: 400;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 5px 25px;
  border: 1px solid #dfdfdf;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 5px;
  margin-top: 5px !important;
}
.module-categories-filter .categories-filter-wrapper .btn:first-child.active {
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .module-categories-filter .categories-filter-wrapper .btn {
    flex-shrink: 0;
  }
}
.module-categories-filter .categories-filter-wrapper .btn.active {
  background-color: #0098A1;
  border-color: #0098A1;
  color: #ffffff;
}
.module-categories-filter .categories-filter-wrapper .btn:hover {
  text-decoration: none;
  opacity: 0.8;
}
.module-categories-filter .categories-filter-wrapper .btn:focus {
  text-decoration: none;
}
.module-categories-filter .categories-filter-wrapper .btn + .btn {
  margin-left: 0;
}
.module-categories-filter .categories-filter-wrapper:nth-child(2) {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .module-categories-filter .categories-filter-wrapper:nth-child(2) {
    margin-top: 20px;
  }
}
@media (max-width: 575.98px) {
  .module-categories-filter .categories-filter-wrapper:nth-child(2) {
    justify-content: space-between;
  }
}
.module-categories-filter .categories-filter-wrapper:nth-child(2) .form-check-text {
  margin-bottom: 0;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .module-categories-filter .categories-filter-wrapper:nth-child(2) .form-check-text {
    position: absolute;
    right: 80px;
    margin-right: 0;
  }
}
.module-categories-filter .categories-filter-wrapper:nth-child(2) .form-check-text .category-filter-icon {
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.module-categories-filter .categories-filter-wrapper:nth-child(2) .form-check .form-check-input {
  width: 44px;
  height: 24px;
  background-color: #C4C4C4;
  border-color: #C4C4C4;
}
.module-categories-filter .categories-filter-wrapper:nth-child(2) .form-check .form-check-input:checked {
  background-color: #0098A1;
  border-color: #0098A1;
}

@media (min-width: 768px) {
  .module-contact-person.simple .contact-person-wrapper .card .card-body {
    padding: 35px 54px;
  }
}
@media (max-width: 575.98px) {
  .module-contact-person.simple .contact-person-wrapper .card .card-body {
    padding-bottom: 24px;
  }
}
@media (max-width: 575.98px) {
  .module-contact-person.simple .contact-person-wrapper .card .card-title {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .module-contact-person.simple .contact-person-wrapper .card .card-text {
    margin-top: 15px;
    margin-bottom: 40px;
  }
}
.module-contact-person.simple .contact-person-wrapper .card .card-text .btn {
  color: #ffffff;
}
.module-contact-person.simple .contact-person-wrapper .card .card-text .btn:hover {
  color: #cccccc;
}
.module-contact-person .contact-person-wrapper .card {
  background-color: transparent;
  border: 0;
}
@media (min-width: 576px) {
  .module-contact-person .contact-person-wrapper .card {
    flex-direction: row;
  }
}
.module-contact-person .contact-person-wrapper .card .card-header {
  padding: 0;
  border: 0;
}
.module-contact-person .contact-person-wrapper .card .card-header .figure,
.module-contact-person .contact-person-wrapper .card .card-header picture,
.module-contact-person .contact-person-wrapper .card .card-header .img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 576px) {
  .module-contact-person .contact-person-wrapper .card .card-header .figure,
.module-contact-person .contact-person-wrapper .card .card-header picture,
.module-contact-person .contact-person-wrapper .card .card-header .img {
    width: 260px;
  }
}
@media (max-width: 575.98px) {
  .module-contact-person .contact-person-wrapper .card .card-header .figure,
.module-contact-person .contact-person-wrapper .card .card-header picture,
.module-contact-person .contact-person-wrapper .card .card-header .img {
    width: 100%;
  }
}
.module-contact-person .contact-person-wrapper .card .card-body {
  padding: 24px 48px;
}
@media (max-width: 767.98px) {
  .module-contact-person .contact-person-wrapper .card .card-body {
    padding: 24px 24px 32px;
  }
}
@media (max-width: 767.98px) {
  .module-contact-person .contact-person-wrapper .card .card-title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .module-contact-person .contact-person-wrapper .card .card-subtitle {
    max-width: 50%;
    line-height: 19px;
  }
}
.module-contact-person .contact-person-wrapper .card .card-text {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .module-contact-person .contact-person-wrapper .card .card-text {
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .module-contact-person .contact-person-wrapper .card .card-text {
    margin-top: 16px;
    margin-bottom: 26px;
  }
}
.module-contact-person .contact-person-wrapper .card .card-text .btn {
  font-size: 20px;
}
@media (max-width: 767.98px) {
  .module-contact-person .contact-person-wrapper .card .card-text .btn {
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {
  .module-contact-person .contact-person-wrapper .card .card-text .btn {
    display: block;
    text-align: left;
  }
}
.module-contact-person .contact-person-wrapper .card .card-social-media a {
  color: #000000;
}
.module-contact-person .contact-person-wrapper .card .card-social-media a .icon {
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  transition: color 200ms linear;
}
@media (min-width: 1200px) {
  .module-contact-person .contact-person-wrapper .card .card-social-media a:hover .icon {
    -webkit-animation-name: bounceInIcon;
            animation-name: bounceInIcon;
    color: #0098A1;
  }
}
.module-contact-person .contact-person-wrapper .card .icon:not(.icon-sm) {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.module-events .events-wrapper .item {
  background-color: #F2F2F2;
  margin-bottom: 8px;
  padding: 24px 32px;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 3fr minmax(100px, 1fr) 3fr 2fr;
  grid-template-areas: "a b c d";
  gap: 1rem;
}
.module-events .events-wrapper .item .title {
  grid-area: a;
}
.module-events .events-wrapper .item .company {
  grid-area: b;
}
.module-events .events-wrapper .item .details {
  grid-area: c;
}
.module-events .events-wrapper .item .btn-link {
  grid-area: d;
}
@media (max-width: 767.98px) {
  .module-events .events-wrapper .item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 16px 24px 23px;
    align-items: flex-start;
    gap: initial;
  }
}
.module-events .events-wrapper .item .title,
.module-events .events-wrapper .item .company,
.module-events .events-wrapper .item .details {
  margin-bottom: 0;
}
.module-events .events-wrapper .item .company {
  display: flex;
  align-items: center;
  flex-basis: 10%;
}
.module-events .events-wrapper .item .company span {
  background-color: #425253;
  color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  padding: 4px 8px;
}
@media (max-width: 767.98px) {
  .module-events .events-wrapper .item .company {
    order: 1;
  }
}
@media (max-width: 1199.98px) {
  .module-events .events-wrapper .item .details {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .module-events .events-wrapper .item .details {
    font-size: 16px;
    margin-top: 2px;
    margin-bottom: 8px;
  }
}
@media (max-width: 575.98px) {
  .module-events .events-wrapper .item .details {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .module-events .events-wrapper .item .details {
    display: flex;
  }
}
.module-events .events-wrapper .item .details .date {
  margin-right: 15px;
}
@media (max-width: 1199.98px) {
  .module-events .events-wrapper .item .details .date {
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  .module-events .events-wrapper .item .details .date {
    margin-right: 15px;
  }
}
@media (min-width: 1200px) {
  .module-events .events-wrapper .item .details .date {
    width: 200px;
  }
}
@media (min-width: 1200px) {
  .module-events .events-wrapper .item .details .city {
    display: flex;
    align-items: baseline;
  }
}
@media (min-width: 1200px) {
  .module-events .events-wrapper .item .details .city .icon {
    position: relative;
    top: 4px;
    left: -3px;
  }
}
@media (max-width: 767.98px) {
  .module-events .events-wrapper .item .btn-link {
    order: 2;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .module-events .events-wrapper .item .btn-link span {
    background-color: #0098A1;
    color: #ffffff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.frc-captcha {
  padding-bottom: 32px !important;
  max-width: 100% !important;
}
.frc-captcha .frc-button {
  padding: 0.6rem;
}

.module-hero {
  position: relative;
  color: #ffffff;
}
.module-hero .hero-wrapper {
  display: flex;
  justify-content: center;
}
@media (min-width: 576px) {
  .module-hero .hero-wrapper {
    align-items: center;
    height: 780px;
  }
}
.module-hero.bg-green .hero-media::after {
  background: rgba(0, 89, 95, 0.8);
}
@media (max-width: 575.98px) {
  .module-hero.hero-primary .hero-text {
    padding-top: 170px;
  }
}
@media (max-width: 575.98px) {
  .module-hero.hero-primary .hero-text .h1 {
    font-size: 32px;
    line-height: 38px;
  }
}
.module-hero.hero-primary .hero-text .text {
  max-width: 730px;
}
@media (min-width: 576px) {
  .module-hero.hero-primary .hero-text .text {
    margin: 0 auto;
  }
}
.module-hero.hero-primary .hero-text .details {
  margin-top: 50px;
}
@media (max-width: 575.98px) {
  .module-hero.hero-primary .hero-text .details {
    display: flex;
    flex-direction: column;
  }
}
.module-hero.hero-primary .hero-text .details .title {
  background-color: #425253;
  border-radius: 4px;
  padding: 5px 10px;
}
@media (min-width: 576px) {
  .module-hero.hero-primary .hero-text .details .date,
.module-hero.hero-primary .hero-text .details .city {
    font-size: 26px;
  }
}
.module-hero.hero-primary .hero-text .details span {
  margin-right: 20px;
  margin-left: 20px;
}
.module-hero.hero-primary .hero-text .details span .icon {
  margin-right: 10px;
}
@media (max-width: 575.98px) {
  .module-hero.hero-primary .hero-text .details span {
    margin-right: 0;
    margin-left: 0;
    margin-top: 15px;
  }
}
.module-hero.hero-secondary.text-black .hero-text .h1 {
  font-size: 40px;
  line-height: 54px;
}
@media (max-width: 575.98px) {
  .module-hero.hero-secondary.text-black .hero-text .h1 {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (max-width: 575.98px) {
  .module-hero.hero-secondary.text-black .hero-text .links {
    margin-top: 15px;
  }
}
@media (max-width: 575.98px) {
  .module-hero.hero-secondary.text-black .hero-text .text {
    font-weight: 700;
    font-size: 18px;
  }
}
.module-hero.hero-secondary .hero-wrapper {
  position: relative;
  flex-direction: row-reverse;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .module-hero.hero-secondary .hero-wrapper {
    max-width: 1110px;
  }
}
@media (max-width: 991.98px) {
  .module-hero.hero-secondary .hero-wrapper {
    flex-direction: column-reverse;
    height: auto;
  }
}
@media (max-width: 575.98px) {
  .module-hero.hero-secondary .hero-wrapper {
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .module-hero.hero-secondary .hero-wrapper {
    min-height: 600px;
    height: auto;
  }
}
.module-hero.hero-secondary .hero-media,
.module-hero.hero-secondary .hero-text {
  flex-basis: 50%;
}
.module-hero.hero-secondary .hero-media {
  position: relative;
}
@media (min-width: 1400px) {
  .module-hero.hero-secondary .hero-media {
    transform: translateX(170px);
    flex-basis: 60%;
  }
}
@media (min-width: 992px) {
  .module-hero.hero-secondary .hero-media {
    z-index: 1;
  }
}
@media (max-width: 991.98px) {
  .module-hero.hero-secondary .hero-media .img {
    max-height: 320px;
  }
}
.module-hero.hero-secondary .hero-media::after {
  display: none;
}
@media (min-width: 992px) {
  .module-hero.hero-secondary .hero-media .figure,
.module-hero.hero-secondary .hero-media picture,
.module-hero.hero-secondary .hero-media .img {
    width: auto;
    height: auto;
  }
}
@media (min-width: 1400px) {
  .module-hero.hero-secondary .hero-text {
    flex-basis: 40%;
  }
}
@media (max-width: 1199.98px) {
  .module-hero.hero-secondary .hero-text {
    margin-top: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991.98px) {
  .module-hero.hero-secondary .hero-text {
    padding-top: 150px;
    padding-bottom: 40px;
  }
}
.module-hero.hero-secondary .hero-text .pretitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.module-hero.hero-secondary .hero-text .pretitle .time {
  border-radius: 40px;
  border: 1px solid #000000;
  padding: 5px 10px;
  font-weight: 700;
  margin-right: 5px;
}
.module-hero.hero-secondary .hero-text .pretitle .target {
  background-color: #425253;
  padding: 5px 10px;
  border-radius: 4px;
  color: #ffffff;
  margin-right: 25px;
}
.module-hero.hero-secondary .hero-text .pretitle .date {
  font-size: 16px;
}
.module-hero.hero-secondary .hero-text .pretitle span {
  margin-bottom: 5px;
  margin-top: 5px;
}
.module-hero.hero-secondary .hero-text .details {
  display: flex;
  margin-top: 30px;
  font-weight: 700;
}
.module-hero.hero-secondary .hero-text .details .title,
.module-hero.hero-secondary .hero-text .details .city {
  display: flex;
  flex: 0 1 50%;
}
@media (max-width: 575.98px) {
  .module-hero.hero-secondary .hero-text .details {
    flex-direction: column;
    font-weight: 400;
    font-size: 16px;
    margin-top: 20px;
  }
}
.module-hero.hero-secondary .hero-text .details .icon {
  margin-right: 8px;
  width: 24px;
  height: 24px;
}
.module-hero.hero-secondary .hero-text .details .title {
  margin-right: 40px;
}
@media (max-width: 575.98px) {
  .module-hero.hero-secondary .hero-text .details .title {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.module-hero.hero-secondary .hero-text .links {
  margin-top: 40px;
}
.module-hero.hero-secondary .hero-text .links .btn:first-child {
  margin-left: 0;
}
.module-hero.hero-secondary .hero-text .total-careers {
  background-color: #C4C4C4;
  border-radius: 50%;
  padding-left: 4px;
  padding-right: 4px;
}
.module-hero.hero-tertiary:has(.text) .hero-text, .module-hero.hero-tertiary:has(.links) .hero-text {
  padding-top: 150px;
  padding-bottom: 80px;
}
@media (max-width: 575.98px) {
  .module-hero.hero-tertiary .hero-text {
    padding-top: 150px;
  }
}
.module-hero.hero-tertiary .hero-text .details {
  margin-top: 50px;
}
@media (max-width: 575.98px) {
  .module-hero.hero-tertiary .hero-text .details {
    display: flex;
    flex-direction: column;
  }
}
.module-hero.hero-tertiary .hero-text .details .title {
  background-color: #425253;
  border-radius: 4px;
  padding: 5px 10px;
}
@media (min-width: 576px) {
  .module-hero.hero-tertiary .hero-text .details .date,
.module-hero.hero-tertiary .hero-text .details .city {
    font-size: 26px;
  }
}
.module-hero.hero-tertiary .hero-text .details span {
  margin-right: 20px;
  margin-left: 20px;
}
.module-hero.hero-tertiary .hero-text .details span .icon {
  margin-right: 10px;
}
@media (max-width: 575.98px) {
  .module-hero.hero-tertiary .hero-text .details span {
    margin-right: 0;
    margin-left: 0;
    margin-top: 15px;
  }
}
.module-hero.hero-tertiary .hero-wrapper {
  display: block;
}
@media (min-width: 576px) {
  .module-hero.hero-tertiary .hero-wrapper {
    display: flex;
    align-items: center;
    height: auto;
    min-height: 425px;
  }
}
.module-hero .hero-media {
  position: absolute;
  height: 100%;
  width: 100%;
}
.module-hero .hero-media::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(39, 65, 67, 0) 31.25%, #031516 100%), linear-gradient(259.02deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), linear-gradient(0deg, rgba(0, 152, 161, 0.09), rgba(0, 152, 161, 0.09));
}
.module-hero .hero-media .figure,
.module-hero .hero-media picture,
.module-hero .hero-media .img {
  width: 100%;
  height: 100%;
}
.module-hero .hero-media .img {
  -o-object-fit: cover;
     object-fit: cover;
}
.module-hero .hero-media .media-video {
  height: 100%;
}
.module-hero .hero-media .media-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.media-video + .module-hero .hero-media::after {
  display: none;
}
.module-hero .hero-text {
  position: relative;
  max-width: 1320px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .module-hero .hero-text {
    max-width: 1110px;
  }
}
@media (min-width: 1200px) {
  .col-lg-6 .module-hero .hero-text {
    margin-left: 100px;
  }
}
@media (min-width: 768px) {
  .module-hero .hero-text {
    margin: 0 auto;
  }
}
@media (max-width: 991.98px) {
  .module-hero .hero-text {
    padding: 15px;
  }
}
@media (max-width: 575.98px) {
  .module-hero .hero-text {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.module-hero .hero-text .preheader {
  color: #ffffff;
  font-size: 18px;
}
@media (max-width: 1199.98px) {
  .module-hero .hero-text .preheader {
    font-size: calc(16px + 0.1666666667vw);
  }
}
.module-hero .hero-text .h1 {
  font-size: 68px;
  line-height: 78px;
}
@media (max-width: 1199.98px) {
  .module-hero .hero-text .h1 {
    font-size: calc(0px + 5.6666666667vw);
  }
}
@media (max-width: 575.98px) {
  .module-hero .hero-text .h1 {
    font-size: 32px;
  }
}
@media (max-width: 1199.98px) {
  .module-hero .hero-text .h1 {
    line-height: calc(0px + 6.5vw);
  }
}
@media (max-width: 575.98px) {
  .module-hero .hero-text .h1 {
    line-height: 38px;
  }
}
@media (max-width: 575.98px) {
  .module-hero .hero-text .text {
    font-size: 24px;
    margin-top: 10px;
  }
}
.module-hero .hero-text .links {
  margin-top: 50px;
}
@media (max-width: 767.98px) {
  .module-hero .hero-text .links {
    margin-top: 30px;
  }
}
@media (max-width: 575.98px) {
  .module-hero .hero-text .links {
    display: inline-flex;
    flex-direction: column;
  }
}
.module-hero .hero-text .links .btn {
  margin-left: 5px;
  margin-right: 5px;
}

.module-info-teaser {
  padding: 40px 56px;
}
@media (max-width: 575.98px) {
  .module-info-teaser {
    padding: 24px;
  }
}
.module-info-teaser.dark .info-teaser-wrapper {
  color: #000000;
}
.module-info-teaser.contact-person {
  padding-left: 65px;
  padding-right: 65px;
}
@media (max-width: 575.98px) {
  .module-info-teaser.contact-person {
    padding: 25px;
  }
}
.module-info-teaser.contact-person .info-teaser-wrapper .info-teaser-body {
  max-width: unset;
}
@media (max-width: 575.98px) {
  .module-info-teaser.contact-person .info-teaser-wrapper .info-teaser-body {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .module-info-teaser.contact-person .info-teaser-wrapper .info-teaser-body .details {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 767.98px) {
  .module-info-teaser.contact-person .info-teaser-wrapper .info-teaser-body .details {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .module-info-teaser.contact-person .info-teaser-wrapper .info-teaser-body .details {
    margin-left: 30px;
  }
}
.module-info-teaser.contact-person .info-teaser-wrapper .info-teaser-body .details .text {
  font-size: 26px;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .module-info-teaser.contact-person .info-teaser-wrapper .info-teaser-body .details .text {
    font-size: 16px;
    font-weight: 700;
  }
}
.module-info-teaser .info-teaser-wrapper {
  color: #ffffff;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .module-info-teaser .info-teaser-wrapper {
    flex-direction: column;
  }
}
.module-info-teaser .info-teaser-wrapper .info-teaser-body {
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .module-info-teaser .info-teaser-wrapper .info-teaser-body {
    max-width: 60%;
  }
}
@media (max-width: 575.98px) {
  .module-info-teaser .info-teaser-wrapper .info-teaser-body {
    flex-direction: column;
  }
}
.module-info-teaser .info-teaser-wrapper .info-teaser-body .figure,
.module-info-teaser .info-teaser-wrapper .info-teaser-body picture,
.module-info-teaser .info-teaser-wrapper .info-teaser-body .img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .module-info-teaser .info-teaser-wrapper .info-teaser-body .figure,
.module-info-teaser .info-teaser-wrapper .info-teaser-body picture,
.module-info-teaser .info-teaser-wrapper .info-teaser-body .img {
    width: 96px;
    height: 96px;
  }
}
.module-info-teaser .info-teaser-wrapper .info-teaser-body .text {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .module-info-teaser .info-teaser-wrapper .info-teaser-body .text {
    font-size: 22px;
    line-height: 26px;
  }
}
.module-info-teaser .info-teaser-wrapper .info-teaser-footer {
  text-align: right;
  flex: auto;
}
@media (max-width: 767.98px) {
  .module-info-teaser .info-teaser-wrapper .info-teaser-footer {
    width: 100%;
  }
  .module-info-teaser .info-teaser-wrapper .info-teaser-footer .btn {
    margin-top: 15px;
    width: 100%;
    display: block;
  }
}

.module-jobs.list .jobs-wrapper .item {
  display: flex;
  align-items: center;
  background-color: #F2F2F2;
  margin-bottom: 8px;
  padding: 24px 32px;
}
@media (max-width: 991.98px) {
  .module-jobs.list .jobs-wrapper .item {
    flex-direction: column;
    position: relative;
    padding: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 575.98px) {
  .module-jobs.list .jobs-wrapper .item {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.module-jobs.list .jobs-wrapper .item .title,
.module-jobs.list .jobs-wrapper .item .category,
.module-jobs.list .jobs-wrapper .item .details {
  margin-bottom: 0;
}
.module-jobs.list .jobs-wrapper .item .category {
  display: flex;
  align-items: center;
  flex-basis: 15%;
}
@media (max-width: 1399.98px) {
  .module-jobs.list .jobs-wrapper .item .category {
    flex-basis: 15%;
  }
}
.module-jobs.list .jobs-wrapper .item .category span {
  background-color: #425253;
  color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  padding: 4px 6px;
  width: 100%;
  text-align: center;
  margin-right: 20px;
}
.module-jobs.list .jobs-wrapper .item .title {
  flex-basis: 45%;
  line-height: 30px;
  margin-right: 30px;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .module-jobs.list .jobs-wrapper .item .title {
    margin-right: 0;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
@media (max-width: 575.98px) {
  .module-jobs.list .jobs-wrapper .item .title {
    font-size: 16px;
    line-height: 24px;
  }
}
.module-jobs.list .jobs-wrapper .item .details {
  flex-basis: 20%;
}
@media (max-width: 1199.98px) {
  .module-jobs.list .jobs-wrapper .item .details {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991.98px) {
  .module-jobs.list .jobs-wrapper .item .details {
    flex-direction: row;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .module-jobs.list .jobs-wrapper .item .details .sector {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 5px;
  }
}
.module-jobs.list .jobs-wrapper .item .btn-link {
  flex-basis: 20%;
  text-align: right;
}
@media (max-width: 1399.98px) {
  .module-jobs.list .jobs-wrapper .item .btn-link {
    flex-basis: 25%;
  }
}

@media (min-width: 992px) {
  .module-logos.logos-bigger .logos-wrapper .module-text-media {
    width: 33.3333333333%;
    max-width: 360px;
  }
}
.module-logos.awards .logos-wrapper {
  justify-content: flex-start;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .module-logos.awards .logos-wrapper {
    flex-direction: column;
  }
}
.module-logos.awards .logos-wrapper .module-text-media {
  padding: 0 !important;
}
@media (max-width: 767.98px) {
  .module-logos.awards .logos-wrapper .module-text-media {
    width: 220px;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .module-logos.awards .logos-wrapper .module-text-media {
    margin-right: 30px;
    margin-left: 30px;
  }
}
.module-logos.awards .logos-wrapper .module-text-media:first-child {
  margin-left: 0;
}
.module-logos .logos-wrapper {
  display: flex;
}
@media (min-width: 576px) {
  .module-logos .logos-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 575.98px) {
  .module-logos .logos-wrapper {
    margin-left: -25px;
    margin-right: -25px;
    padding-left: 25px;
    overflow-y: hidden;
    overflow-x: auto;
  }
}
.module-logos .logos-wrapper .module-text-media {
  display: flex;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  width: 130px;
  height: 95px;
  flex: 1 0 auto;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .module-logos .logos-wrapper .module-text-media {
    width: 33.3333333333%;
    height: 175px;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 50px;
    flex: none;
  }
}
@media (min-width: 992px) {
  .module-logos .logos-wrapper .module-text-media {
    width: 25%;
    height: 175px;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 50px;
    flex: none;
  }
}
.module-logos .logos-wrapper .module-text-media .figure,
.module-logos .logos-wrapper .module-text-media picture,
.module-logos .logos-wrapper .module-text-media .img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.module-newsletter-teaser {
  padding: 50px;
  color: #ffffff;
}
@media (max-width: 575.98px) {
  .module-newsletter-teaser {
    padding: 25px;
  }
}
.module-newsletter-teaser .newsletter-teaser-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .module-newsletter-teaser .newsletter-teaser-wrapper {
    flex-direction: column;
  }
}
.module-newsletter-teaser .newsletter-teaser-wrapper .newsletter-teaser-body {
  position: relative;
}
@media (min-width: 768px) {
  .module-newsletter-teaser .newsletter-teaser-wrapper .newsletter-teaser-body {
    padding-left: 80px;
  }
}
.module-newsletter-teaser .newsletter-teaser-wrapper .newsletter-teaser-body .icon {
  width: 44px;
  height: 44px;
}
@media (min-width: 768px) {
  .module-newsletter-teaser .newsletter-teaser-wrapper .newsletter-teaser-body .icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.module-newsletter-teaser .newsletter-teaser-wrapper .newsletter-teaser-footer {
  text-align: right;
  flex: auto;
}
@media (max-width: 767.98px) {
  .module-newsletter-teaser .newsletter-teaser-wrapper .newsletter-teaser-footer {
    width: 100%;
  }
  .module-newsletter-teaser .newsletter-teaser-wrapper .newsletter-teaser-footer .btn {
    margin-top: 15px;
    width: 100%;
    display: block;
  }
}

@media (max-width: 575.98px) {
  .module-tabs .nav-tabs {
    display: none;
  }
  .module-tabs .tab-content > .tab-pane {
    display: flex;
    opacity: 1;
    overflow: hidden;
  }
  .module-tabs .tab-content > .tab-pane .card-header {
    margin-bottom: -1px;
  }
  .module-tabs .tab-content > .tab-pane:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .module-tabs .tab-content > .tab-pane:not(:first-of-type) .card-header:first-child {
    border-radius: 0;
  }
  .module-tabs .tab-content > .tab-pane:not(:first-of-type):not(:last-of-type) {
    border-bottom: 0;
    border-radius: 0;
  }
  .module-tabs .tab-content > .tab-pane:last-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
@media (min-width: 768px) {
  .module-tabs .card {
    border: none;
  }
  .module-tabs .card .card-header {
    display: none;
  }
  .module-tabs .card .collapse {
    display: block;
  }
}

.module-tabs.vertical .nav-tabs {
  border: 0;
  border-radius: 0;
}
@media (min-width: 768px) {
  .module-tabs.vertical .nav-tabs {
    flex-direction: column;
    flex-basis: 40%;
  }
}
@media (max-width: 767.98px) {
  .module-tabs.vertical .nav-tabs {
    display: none;
  }
}
.module-tabs.vertical .nav-tabs .nav-item {
  border-bottom: 1px solid #c4c4c4;
}
.module-tabs.vertical .nav-tabs .nav-link {
  font-weight: 600;
  color: #808080;
  display: flex;
  align-items: center;
  border: 0;
  background-color: transparent;
  padding-top: 34px;
  padding-bottom: 34px;
  padding-left: 0;
}
.module-tabs.vertical .nav-tabs .nav-link .icon {
  margin-right: 25px;
}
.module-tabs.vertical .nav-tabs .nav-link.active {
  color: #0098A1;
}
@media (min-width: 768px) {
  .module-tabs.vertical .tab-content {
    flex-basis: 60%;
    padding-left: 25px;
  }
}
@media (min-width: 1200px) {
  .module-tabs.vertical .tab-content {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 767.98px) {
  .module-tabs.vertical .tab-content .card {
    border-radius: 0;
    border: 0;
    margin-bottom: 8px;
    display: flex;
    opacity: 1;
    overflow: hidden;
  }
}
@media (max-width: 767.98px) {
  .module-tabs.vertical .tab-content .card .card-header {
    border-radius: 0;
    border: 0;
    margin-bottom: -1px;
  }
  .module-tabs.vertical .tab-content .card .card-header .btn {
    font-size: 22px;
    font-weight: 600;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .module-tabs.vertical .tab-content .card .card-header .btn {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .module-tabs.vertical .tab-content .card .card-header .btn::before, .module-tabs.vertical .tab-content .card .card-header .btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 32px;
    height: 2px;
    width: 16px;
    background-color: #000000;
    transition: all 200ms ease-in-out;
  }
}
@media (max-width: 767.98px) {
  .module-tabs.vertical .tab-content .card .card-header .btn::before {
    transform: rotate(90deg);
  }
}
@media (max-width: 767.98px) {
  .module-tabs.vertical .tab-content .card .card-header .btn::after {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .module-tabs.vertical .tab-content .card .card-header .btn[aria-expanded=true]::before {
    transform: rotate(180deg);
  }
  .module-tabs.vertical .tab-content .card .card-header .btn[aria-expanded=true]::after {
    transform: rotate(90deg);
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .module-tabs.vertical {
    display: flex;
    align-items: flex-start;
  }
}

.table.list {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .table.list {
    display: flex;
    flex-direction: column;
  }
  .table.list thead tr {
    display: flex;
    flex-wrap: wrap;
  }
  .table.list thead tr th:first-child {
    flex-basis: 100%;
  }
  .table.list thead tr th:not(:first-child) {
    width: auto;
    min-width: auto;
    flex: 1;
  }
  .table.list tbody tr {
    display: flex;
    flex-wrap: wrap;
  }
  .table.list tbody tr td:first-child {
    flex-basis: 100%;
  }
  .table.list tbody tr td:not(:first-child) {
    flex: 1;
  }
}
.table.list thead th {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  border-bottom: 0;
  outline: 2px solid #ffffff;
}
@media (min-width: 768px) {
  .table.list thead th {
    height: 154px;
  }
}
.table.list thead th:not(:first-child) {
  width: 25%;
  min-width: 120px;
}
.table.list thead th:nth-child(2) .icon {
  color: #0098A1;
}
.table.list thead th:nth-child(3) .icon {
  color: #8C648F;
}
.table.list thead .module-header {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.table.list thead .module-header .header {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .table.list thead .module-header .header {
    font-size: 22px;
  }
}
.table.list thead .module-header .subheader {
  font-size: 18px;
  color: #808080;
  font-weight: 400;
}
@media (max-width: 575.98px) {
  .table.list thead .module-header .subheader {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.table.list thead .title {
  flex: 25%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #F6FBFC;
  font-weight: 600;
}
@media (min-width: 768px) {
  .table.list thead .title {
    text-align: center;
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .table.list thead .title {
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.table.list thead .title .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .table.list thead .title .icon {
    margin-bottom: 0;
  }
}
.table.list tbody {
  border-top: 0;
}
@media (min-width: 768px) {
  .table.list tbody tr:nth-child(odd) {
    background-color: #F6FBFC;
  }
}
.table.list tbody td {
  border-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  outline: 2px solid #ffffff;
}
.table.list tbody td:first-child {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .table.list tbody td:first-child {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767.98px) {
  .table.list tbody td:first-child {
    padding-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .table.list tbody td:not(:first-child) {
    background-color: #F6FBFC;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.table.list tbody .icon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.table.list tbody .icon-wrapper .icon {
  background-color: #D9F4E2;
  border-radius: 50%;
  color: #20AE4F;
  width: 24px;
  height: 24px;
  padding: 6px;
}
.table.list tbody .icon-wrapper .icon.no-feature {
  background-color: #F1D4D4;
  color: #BB2121;
}
.table.list tbody .icon-wrapper .icon.currency {
  background-color: #F2F2F2;
  color: #000000;
}
.table.list tbody .icon-wrapper .total-stars {
  position: absolute;
  font-size: 12px;
  color: #000000;
  top: -5px;
  left: 50%;
}
.table.list tfoot {
  background-color: #F6FBFC;
  border-top: 0;
  border-bottom: 0;
}
@media (max-width: 767.98px) {
  .table.list tfoot {
    border-top: 20px solid #ffffff;
  }
}
.table.list tfoot td {
  border-bottom: 0;
  padding: 25px;
}
@media (max-width: 575.98px) {
  .table.list tfoot td {
    padding: 15px;
  }
}
.table.list tfoot td .title {
  font-size: 14px;
}
.table.list tfoot td .detail {
  font-weight: 700;
  width: 30px;
  display: inline-block;
}

@media (min-width: 768px) {
  .module-text-media .media-col.float-md-left {
    margin-left: -15px;
    margin-right: 30px;
    padding-right: 0;
  }
}
@media (max-width: 575.98px) {
  .module-text-media .media-col.float-md-left {
    padding: 0;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .module-text-media .media-col.float-md-right {
    margin-right: -15px;
    margin-left: 30px;
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .module-text-media .media-col.float-md-right {
    padding: 0;
    margin: 0;
  }
}
.module-text-media .media-col .row.g-0 figure {
  margin: 0;
}
.module-text-media .media-col .row:not(.g-0):not(:last-of-type) {
  margin-bottom: 30px;
}
@media (max-width: 575.98px) {
  .module-text-media .media-col .row [class*=col-]:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.module-text-media.position-above .media-col .row:not(.g-0) {
  margin-bottom: 30px;
}
@media (max-width: 575.98px) {
  .module-text-media.position-above .media-col .row [class*=col-] {
    margin-bottom: 30px;
  }
}

.module-timeline {
  position: relative;
}
.module-timeline .timeline-footer {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-top: 100px;
}
@media (max-width: 767.98px) {
  .module-timeline .timeline-footer {
    font-size: 22px;
    margin-top: 60px;
  }
}
.module-timeline .timeline-footer::before {
  content: " ";
  bottom: 0;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-bottom-color: #0098A1;
  border-width: 20px;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
}
@media (max-width: 767.98px) {
  .module-timeline .timeline-footer::before {
    border-width: 15px;
    top: -30px;
  }
}
@media (min-width: 768px) {
  .module-timeline .timeline-wrapper::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: repeating-linear-gradient(to bottom, transparent 0 15px, #c4c4c4 15px 30px), linear-gradient(to bottom, #fff, transparent);
    background-size: 1px calc(100% - 150px);
    background-position: 80%;
    background-repeat: no-repeat;
  }
}
@media (max-width: 767.98px) {
  .module-timeline .timeline-wrapper {
    display: flex;
    overflow-x: auto;
    margin-left: -25px;
    margin-right: -25px;
    padding-left: 25px;
  }
}
.module-timeline .timeline-item {
  padding: 10px 70px;
  position: relative;
}
@media (max-width: 767.98px) {
  .module-timeline .timeline-item {
    margin-right: 15px;
    padding: 0;
    min-width: 250px;
    margin-top: 25px;
  }
}
.module-timeline .timeline-item:first-child::before {
  width: 50%;
  left: 50%;
}
.module-timeline .timeline-item:last-child::before {
  width: 50%;
  right: 50%;
}
@media (max-width: 767.98px) {
  .module-timeline .timeline-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #c4c4c4 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 20px;
    background-repeat: repeat-x;
    top: -18px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .module-timeline .timeline-item.card-right {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .module-timeline .timeline-item.card-right {
    margin-left: 50%;
  }
}
@media (min-width: 768px) {
  .module-timeline .timeline-item.card-right .item-header .date {
    margin-right: 20px;
  }
}
.module-timeline .timeline-item.card-right .item-header .date::after {
  left: -70px;
}
.module-timeline .timeline-item.card-right .item-header .date::before {
  left: -78px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .module-timeline .timeline-item.card-left {
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .module-timeline .timeline-item.card-left {
    text-align: right;
    margin-right: 50%;
  }
}
.module-timeline .timeline-item.card-left .item-header {
  flex-direction: row-reverse;
}
.module-timeline .timeline-item.card-left .item-header .date {
  margin-left: 20px;
}
.module-timeline .timeline-item.card-left .item-header .date::after {
  right: -70px;
}
.module-timeline .timeline-item.card-left .item-header .date::before {
  right: -78px;
}
.module-timeline .timeline-item .item-wrapper {
  position: relative;
}
@media (max-width: 767.98px) {
  .module-timeline .timeline-item .item-wrapper {
    text-align: center;
    background-color: #F6F6F6;
    padding: 16px;
    border-radius: 16px;
  }
}
.module-timeline .timeline-item .item-wrapper .item-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .module-timeline .timeline-item .item-wrapper .item-header {
    flex-direction: column;
    margin-bottom: 15px;
  }
}
.module-timeline .timeline-item .item-wrapper .item-header .date {
  position: relative;
  background-color: #00595F;
  border-radius: 30px;
  color: #ffffff;
  padding: 8px 16px;
  font-weight: 700;
}
.module-timeline .timeline-item .item-wrapper .item-header .date.bg-gold {
  background-color: #AF9B66;
}
.module-timeline .timeline-item .item-wrapper .item-header .date.bg-gold::after, .module-timeline .timeline-item .item-wrapper .item-header .date.bg-gold::before {
  background: #AF9B65;
  border-color: #EEE7D3;
}
.module-timeline .timeline-item .item-wrapper .item-header .date.bg-gold::before {
  width: 20px;
  height: 20px;
  right: -80px;
}
.module-timeline .timeline-item .item-wrapper .item-header .date::after, .module-timeline .timeline-item .item-wrapper .item-header .date::before {
  content: "";
  position: absolute;
  background-color: #00595F;
}
@media (min-width: 768px) {
  .module-timeline .timeline-item .item-wrapper .item-header .date::after, .module-timeline .timeline-item .item-wrapper .item-header .date::before {
    top: 50%;
    transform: translateY(-50%);
  }
}
.module-timeline .timeline-item .item-wrapper .item-header .date::after {
  width: 50px;
  height: 1px;
}
@media (max-width: 767.98px) {
  .module-timeline .timeline-item .item-wrapper .item-header .date::after {
    width: 1px;
    height: 20px;
    top: -35px;
    left: 50%;
    transform: translate(-50%);
  }
}
.module-timeline .timeline-item .item-wrapper .item-header .date::before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 3px solid #D0F2F4;
}
@media (max-width: 767.98px) {
  .module-timeline .timeline-item .item-wrapper .item-header .date::before {
    top: -40px;
    left: 50%;
    transform: translate(-50%);
  }
}
.module-timeline .timeline-item .item-wrapper .item-header .title {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .module-timeline .timeline-item .item-wrapper .item-header .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    margin-top: 15px;
  }
}
.module-timeline .timeline-item .item-wrapper .item-body .figure,
.module-timeline .timeline-item .item-wrapper .item-body picture,
.module-timeline .timeline-item .item-wrapper .item-body .img {
  width: 230px;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .module-timeline .timeline-item .item-wrapper .item-body .figure,
.module-timeline .timeline-item .item-wrapper .item-body picture,
.module-timeline .timeline-item .item-wrapper .item-body .img {
    width: 125px;
    height: 90px;
  }
}
.module-timeline .timeline-item .item-wrapper .item-body img {
  border-radius: 24px;
}
.module-timeline .timeline-item .item-wrapper .item-body .text {
  margin-top: 20px;
}
.module-timeline .timeline-item .item-wrapper .item-footer .btn, .module-timeline .timeline-item .item-wrapper .item-footer .btn:focus {
  text-decoration: none;
}

.timeline-modal .btn-close {
  position: absolute;
  right: 25px;
  top: 25px;
}
.timeline-modal .modal-dialog {
  max-width: 1095px;
}
@media (max-width: 575.98px) {
  .timeline-modal .modal-dialog {
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  .timeline-modal .modal-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.timeline-modal .modal-title .date {
  position: relative;
  background-color: #00595F;
  border-radius: 30px;
  color: #ffffff;
  padding: 8px 16px;
  font-weight: 700;
  display: inline-block;
  font-size: 18px;
}
.timeline-modal .modal-title .date.bg-gold {
  background-color: #AF9B66;
}
@media (min-width: 768px) {
  .timeline-modal .modal-title {
    min-width: 30%;
    margin-right: 50px;
  }
}
@media (max-width: 767.98px) {
  .timeline-modal .modal-title {
    margin-bottom: 20px;
  }
}
.timeline-modal .modal-image img {
  border-radius: 24px;
}

.module-show-more {
  position: relative;
}
.module-show-more > .overlay {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 90px;
  padding-top: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 80%, white 100%);
}
.module-show-more > .trigger {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0;
  cursor: pointer;
}
.module-show-more > .content {
  overflow-y: hidden;
  position: relative;
  z-index: 1;
  transition: max-height 1000ms ease-in;
}
.module-show-more[data-height=xs] > .content {
  max-height: 120px;
}
.module-show-more[data-height=md] > .content {
  max-height: 240px;
}
.module-show-more[data-height=lg] > .content {
  max-height: 360px;
}
.module-show-more > [type=checkbox] {
  display: none;
}
.module-show-more > [type=checkbox]:checked ~ .content {
  max-height: 9999px;
}
.module-show-more > [type=checkbox]:checked ~ .overlay, .module-show-more > [type=checkbox]:checked ~ .trigger {
  display: none;
}
@media (min-width: 768px) {
  .module-show-more[data-breakpoint-down=sm] > .content {
    max-height: 9999px;
  }
  .module-show-more[data-breakpoint-down=sm] > .overlay, .module-show-more[data-breakpoint-down=sm] > .trigger {
    display: none;
  }
}
@media (min-width: 576px) {
  .module-show-more[data-breakpoint-down=xs] > .content {
    max-height: 9999px;
  }
  .module-show-more[data-breakpoint-down=xs] > .overlay, .module-show-more[data-breakpoint-down=xs] > .trigger {
    display: none;
  }
}

.module-social-media .social-media-wrapper {
  display: flex;
}
.module-social-media .social-media-wrapper a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  margin-left: 30px;
  margin-right: 30px;
}
@media (min-width: 1200px) {
  .module-social-media .social-media-wrapper a:hover .icon {
    -webkit-animation-name: bounceInIcon;
            animation-name: bounceInIcon;
  }
}
@media (max-width: 767.98px) {
  .module-social-media .social-media-wrapper a {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.module-social-media .social-media-wrapper a:first-child {
  margin-left: 0;
}
.module-social-media .social-media-wrapper a .link-icon {
  color: #ffffff;
  background-color: #0098A1;
  width: 96px;
  height: 96px;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .module-social-media .social-media-wrapper a .link-icon {
    width: 72px;
    height: 72px;
  }
}
.module-social-media .social-media-wrapper a .link-icon .icon {
  width: 100%;
  height: 100%;
  padding: 15px;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  transition: color 200ms linear;
}
.module-social-media .social-media-wrapper a .link-icon .icon:hover {
  opacity: 0.8;
}
@media (max-width: 767.98px) {
  .module-social-media .social-media-wrapper a .link-icon .icon {
    padding: 10px;
  }
}
.module-social-media .social-media-wrapper a .link-title {
  color: #000000;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .module-social-media .social-media-wrapper a .link-title {
    font-size: 18px;
    font-weight: 700;
  }
}

@media (max-width: 575.98px) {
  .module-slider.quote {
    margin-left: -25px;
    margin-right: -25px;
  }
}
.module-slider.quote.no-arrows .carousel-inner::after, .module-slider.quote.no-arrows .carousel-inner::before {
  display: none;
}
.module-slider.quote .carousel-inner::before, .module-slider.quote .carousel-inner::after {
  content: "";
  position: absolute;
  width: 1px;
  background-color: #007980;
  opacity: 0.5;
  left: calc(40% + 46px);
  z-index: 1;
}
@media (max-width: 991.98px) {
  .module-slider.quote .carousel-inner::before, .module-slider.quote .carousel-inner::after {
    left: calc(40% + 32px);
  }
}
@media (max-width: 767.98px) {
  .module-slider.quote .carousel-inner::before, .module-slider.quote .carousel-inner::after {
    left: unset;
    right: 46px;
  }
}
.module-slider.quote .carousel-inner::before {
  height: calc(100% - 271px);
  top: 0;
}
@media (max-width: 991.98px) {
  .module-slider.quote .carousel-inner::before {
    height: calc(100% - 243px);
  }
}
@media (max-width: 767.98px) {
  .module-slider.quote .carousel-inner::before {
    height: 370px;
  }
}
@media (max-width: 575.98px) {
  .module-slider.quote .carousel-inner::before {
    height: 250px;
  }
}
.module-slider.quote .carousel-inner::after {
  height: 70px;
  bottom: 0;
}
@media (max-width: 991.98px) {
  .module-slider.quote .carousel-inner::after {
    height: 105px;
  }
}
@media (max-width: 767.98px) {
  .module-slider.quote .carousel-inner::after {
    bottom: unset;
    top: 513px;
    height: 37px;
  }
}
@media (max-width: 575.98px) {
  .module-slider.quote .carousel-inner::after {
    top: 394px;
    height: 32px;
  }
}
.module-slider.quote .carousel-item-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .module-slider.quote .carousel-item-wrapper {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .module-slider.quote .carousel-item-wrapper .item-media,
.module-slider.quote .carousel-item-wrapper .item-text {
    flex-basis: 50%;
  }
}
.module-slider.quote .carousel-item-wrapper .item-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1400px) {
  .module-slider.quote .carousel-item-wrapper .item-media {
    height: 730px;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .module-slider.quote .carousel-item-wrapper .item-media {
    height: 600px;
  }
}
@media (max-width: 767.98px) {
  .module-slider.quote .carousel-item-wrapper .item-media {
    width: 100%;
    height: 550px;
  }
}
@media (max-width: 575.98px) {
  .module-slider.quote .carousel-item-wrapper .item-media {
    height: 425px;
  }
}
.module-slider.quote .carousel-item-wrapper .item-media .figure,
.module-slider.quote .carousel-item-wrapper .item-media picture,
.module-slider.quote .carousel-item-wrapper .item-media .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.module-slider.quote .carousel-item-wrapper .item-text {
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (max-width: 1199.98px) {
  .module-slider.quote .carousel-item-wrapper .item-text {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.module-slider.quote .carousel-item-wrapper .item-text .pretitle {
  margin-bottom: 50px;
}
@media (max-width: 1199.98px) {
  .module-slider.quote .carousel-item-wrapper .item-text .pretitle {
    margin-bottom: 30px;
  }
}
.module-slider.quote .carousel-item-wrapper .item-text .pretitle .icon {
  width: 36px;
  height: 36px;
}
.module-slider.quote .carousel-item-wrapper .item-text .text {
  font-size: 21px;
  margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .module-slider.quote .carousel-item-wrapper .item-text .text {
    font-size: 18px;
  }
}
.module-slider.quote .carousel-item-wrapper .item-text .title {
  font-size: 20px;
}
@media (max-width: 1199.98px) {
  .module-slider.quote .carousel-item-wrapper .item-text .title {
    font-size: 18px;
  }
}
.module-slider.quote .carousel-item-wrapper .item-text p {
  margin-bottom: 0;
}
.module-slider.quote .carousel-control-prev,
.module-slider.quote .carousel-control-next {
  width: 92px;
  height: 92px;
  background-color: rgba(0, 121, 128, 0.1);
  border-radius: 50%;
  color: #ffffff;
  top: unset;
  right: unset;
  left: 40%;
  bottom: 70px;
  opacity: 1;
  border: 1px solid #007980;
}
@media (max-width: 991.98px) {
  .module-slider.quote .carousel-control-prev,
.module-slider.quote .carousel-control-next {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 767.98px) {
  .module-slider.quote .carousel-control-prev,
.module-slider.quote .carousel-control-next {
    bottom: unset;
    left: unset;
    right: 15px;
    top: 450px;
  }
}
@media (max-width: 575.98px) {
  .module-slider.quote .carousel-control-prev,
.module-slider.quote .carousel-control-next {
    top: 330px;
  }
}
.module-slider.quote .carousel-control-prev .icon,
.module-slider.quote .carousel-control-next .icon {
  width: 32px;
  height: 32px;
}
.module-slider.quote .carousel-control-prev:hover,
.module-slider.quote .carousel-control-next:hover {
  background-color: #007980;
  color: #ffffff;
}
.module-slider.quote .carousel-control-prev {
  bottom: 180px;
}
.module-slider.quote .carousel-control-prev::after {
  content: "";
  position: absolute;
  width: 1px;
  background-color: #007980;
  opacity: 0.5;
  height: 20px;
  bottom: -20px;
}
@media (max-width: 991.98px) {
  .module-slider.quote .carousel-control-prev::after {
    height: 10px;
    bottom: -12px;
  }
}
@media (max-width: 767.98px) {
  .module-slider.quote .carousel-control-prev::after {
    height: 17px;
    bottom: -17px;
  }
}
@media (max-width: 767.98px) {
  .module-slider.quote .carousel-control-prev {
    top: 370px;
  }
}
@media (max-width: 575.98px) {
  .module-slider.quote .carousel-control-prev {
    top: 250px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .module-slider.quote .carousel-control-next {
    bottom: 105px;
  }
}

.module-short-details {
  margin-top: 54px;
}
@media (min-width: 992px) {
  .module-short-details {
    margin-top: 40px;
    margin-left: 100px;
  }
}
.module-short-details .short-details-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.module-short-details .short-details-wrapper .short-details-item {
  width: 50%;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .module-short-details .short-details-wrapper .short-details-item {
    padding-right: 50px;
    margin-bottom: 60px;
  }
}
.module-short-details .short-details-wrapper .short-details-item .title {
  font-weight: 700;
  font-size: 76px;
  line-height: 115px;
  margin-bottom: 0;
  padding-top: 5px;
  position: relative;
}
@media (max-width: 767.98px) {
  .module-short-details .short-details-wrapper .short-details-item .title {
    font-size: 42px;
    line-height: 75px;
    padding-top: 10px;
  }
}
.module-short-details .short-details-wrapper .short-details-item .title::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 195px;
  height: 2px;
  background-color: #0098A1;
}
@media (max-width: 767.98px) {
  .module-short-details .short-details-wrapper .short-details-item .title::before {
    width: 120px;
    left: 0;
  }
}

.upload-files {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .upload-files {
    display: inline-block;
  }
}
.upload-files input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  opacity: 0;
  height: 51px;
  cursor: pointer;
}
.upload-files .file-bloc {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.upload-files .file-bloc .file-name {
  margin-right: 10px;
}
.upload-files .file-bloc .file-delete {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  cursor: pointer;
  line-height: 1;
  font-size: 10px;
}

#breadcrumb {
  position: relative;
  z-index: 1;
}
#breadcrumb .breadcrumb {
  font-size: 14px;
  position: absolute;
  border-bottom: 1px solid;
  border-color: rgba(128, 128, 128, 0.5);
  padding-top: 55px;
  padding-bottom: 30px;
}
@media (max-width: 575.98px) {
  #breadcrumb .breadcrumb {
    padding-bottom: 10px;
    width: calc(100% - 50px);
  }
}
@media (min-width: 1200px) {
  #breadcrumb .breadcrumb {
    left: 15px;
    right: 15px;
  }
}
#breadcrumb .breadcrumb.white {
  border-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1199.98px) {
  #breadcrumb .breadcrumb.white {
    width: calc(100% - 50px);
  }
}
#breadcrumb .breadcrumb.white .breadcrumb-item a, #breadcrumb .breadcrumb.white .breadcrumb-item::before, #breadcrumb .breadcrumb.white .breadcrumb-item.active {
  color: #ffffff;
}
#breadcrumb .breadcrumb .breadcrumb-item a {
  color: #808080;
}
#breadcrumb .breadcrumb .breadcrumb-item.active {
  color: #000000;
  font-weight: 700;
}

#footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
}
#footer .footer-links li {
  margin-bottom: 15px;
}
#footer .footer-links li a {
  display: flex;
  align-items: center;
  color: #F2F2F2;
}
#footer .footer-links li a:hover {
  text-decoration: none;
  color: #dadada;
}
#footer .footer-links li a .icon {
  margin-right: 5px;
}
#footer .footer-top,
#footer .footer-bottom {
  display: flex;
}
#footer .footer-wrapper {
  flex: auto;
}
#footer .footer-wrapper.details {
  color: #F2F2F2;
  min-width: 150px;
}
@media (max-width: 767.98px) {
  #footer .footer-wrapper.details {
    display: flex;
  }
}
#footer .footer-wrapper.details a {
  display: inline-block;
  color: #F2F2F2;
}
#footer .footer-wrapper.details a:has(img) {
  background-color: #ffffff;
}
@media (min-width: 768px) {
  #footer .footer-wrapper.details a:has(img) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  #footer .footer-wrapper.details a:has(img) {
    margin-right: 25px;
    height: 110px;
  }
}
#footer .footer-wrapper.details a:has(img) img {
  padding: 15px;
  width: auto;
  height: 110px;
}
@media (min-width: 768px) {
  #footer .footer-wrapper.details a:has(img) img {
    height: 160px;
  }
}
#footer .footer-wrapper.details a:hover {
  text-decoration: none;
  color: #dadada;
}
@media (max-width: 767.98px) {
  #footer .footer-top {
    flex-direction: column-reverse;
  }
}
#footer .footer-top .footer-wrapper {
  flex-basis: 80%;
}
#footer .footer-top .footer-wrapper.details {
  flex-basis: 20%;
}
#footer .footer-top .footer-wrapper.details span {
  font-size: 16px;
}
#footer .footer-top .img {
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  #footer .footer-top .img {
    margin-bottom: 0;
    margin-right: 25px;
  }
}
#footer .footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 767.98px) {
  #footer .footer-bottom {
    flex-direction: column;
  }
}
#footer .footer-bottom .footer-links {
  display: flex;
}
@media (max-width: 767.98px) {
  #footer .footer-bottom .footer-links {
    flex-direction: column;
  }
}
#footer .footer-bottom .footer-links li {
  margin-right: 30px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #footer .footer-bottom .footer-links li {
    margin-right: 5px;
  }
}
@media (max-width: 767.98px) {
  #footer .footer-bottom .footer-links li {
    margin-bottom: 25px;
  }
}
#footer .footer-bottom .footer-links li:last-child {
  margin-right: 0;
}
#footer .footer-bottom .footer-links li .icon-lg {
  margin-right: 0;
}
#footer .footer-bottom .footer-wrapper:last-child .footer-links {
  justify-content: end;
}
#footer .footer-bottom .footer-wrapper:last-child .footer-links a .icon {
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  transition: color 200ms linear;
}
@media (min-width: 1200px) {
  #footer .footer-bottom .footer-wrapper:last-child .footer-links a:hover .icon {
    -webkit-animation-name: bounceInIcon;
            animation-name: bounceInIcon;
    color: #0098A1;
  }
}
@media (max-width: 767.98px) {
  #footer .footer-bottom .footer-wrapper:last-child .footer-links {
    flex-direction: row;
    justify-content: start;
  }
}
#footer .footer-copyright {
  font-size: 14px;
  color: #F2F2F2;
  display: flex;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  #footer .footer-copyright {
    justify-content: center;
  }
}
#footer .footer-wrapper-accordion .accordion {
  display: flex;
}
@media (max-width: 767.98px) {
  #footer .footer-wrapper-accordion .accordion {
    flex-direction: column;
    height: auto !important;
  }
}
#footer .footer-wrapper-accordion .accordion .accordion-wrapper {
  flex: 0 0 auto;
  width: 20%;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #footer .footer-wrapper-accordion .accordion .accordion-wrapper {
    width: 25%;
  }
}
@media (max-width: 767.98px) {
  #footer .footer-wrapper-accordion .accordion .accordion-wrapper {
    margin-left: 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    left: 0 !important;
    top: 0 !important;
    position: relative !important;
  }
  #footer .footer-wrapper-accordion .accordion .accordion-wrapper:last-child {
    border-bottom: 0;
    margin-bottom: 15px;
  }
}
#footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item {
  background-color: transparent;
  border: 0;
}
@media (min-width: 768px) {
  #footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item {
    width: calc(100% - 50px);
  }
}
#footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item .accordion-header .accordion-button {
  color: #ffffff;
  box-shadow: none;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  font-weight: 700;
}
@media (min-width: 768px) {
  #footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item .accordion-header .accordion-button {
    padding-top: 0;
    pointer-events: none;
  }
}
@media (max-width: 767.98px) {
  #footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item .accordion-header .accordion-button::before, #footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item .accordion-header .accordion-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    height: 2px;
    width: 18px;
    background-color: #ffffff;
    transition: all 200ms ease-in-out;
  }
  #footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item .accordion-header .accordion-button::before {
    transform: rotate(90deg);
  }
  #footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item .accordion-header .accordion-button::after {
    opacity: 1;
  }
  #footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item .accordion-header .accordion-button[aria-expanded=true]::before {
    transform: rotate(180deg);
  }
  #footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item .accordion-header .accordion-button[aria-expanded=true]::after {
    transform: rotate(90deg);
    opacity: 0;
  }
}
@media (min-width: 768px) {
  #footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item .accordion-header .accordion-button::after {
    display: none;
  }
}
#footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item .accordion-body {
  padding: 0;
}
@media (max-width: 767.98px) {
  #footer .footer-wrapper-accordion .accordion .accordion-wrapper .accordion-item .accordion-body .footer-links li:last-child {
    margin-bottom: 30px;
  }
}

#footer .footer-extra-menu {
  display: flex;
}
@media (max-width: 991.98px) {
  #footer .footer-extra-menu {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  #footer .footer-extra-menu .extra-menu-wrapper {
    flex-basis: 50%;
  }
}
#footer .footer-extra-menu .extra-menu-wrapper:first-child {
  padding-right: 30px;
}
@media (min-width: 1400px) {
  #footer .footer-extra-menu .extra-menu-wrapper:first-child {
    padding-right: 140px;
  }
}
@media (max-width: 991.98px) {
  #footer .footer-extra-menu .extra-menu-wrapper:first-child {
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  #footer .footer-extra-menu .extra-menu-wrapper:first-child .menu-item .images-wrapper .image-item .figure {
    max-width: 160px;
  }
}
#footer .footer-extra-menu .extra-menu-wrapper:first-child .menu-item:first-child .images-wrapper .image-item:first-child {
  margin-right: 50px;
}
@media (max-width: 575.98px) {
  #footer .footer-extra-menu .extra-menu-wrapper:first-child .menu-item:first-child .images-wrapper .image-item:first-child {
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  #footer .footer-extra-menu .extra-menu-wrapper:first-child .menu-item:last-child .images-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  #footer .footer-extra-menu .extra-menu-wrapper:first-child .menu-item:last-child .images-wrapper .image-item {
    max-width: 170px;
    margin-bottom: 25px;
  }
}
#footer .footer-extra-menu .extra-menu-wrapper:last-child {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575.98px) {
  #footer .footer-extra-menu .extra-menu-wrapper:last-child {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  #footer .footer-extra-menu .extra-menu-wrapper:last-child .menu-item {
    flex-basis: calc(50% - 15px);
  }
}
#footer .footer-extra-menu .extra-menu-wrapper:last-child .menu-item .images-wrapper {
  flex-direction: column;
  align-items: flex-start;
}
#footer .footer-extra-menu .extra-menu-wrapper:last-child .menu-item .images-wrapper .image-item {
  margin-bottom: 50px;
  max-width: 230px;
}
#footer .footer-extra-menu .extra-menu-wrapper:last-child .menu-item .images-wrapper .image-item img {
  mix-blend-mode: darken;
}
@media (max-width: 575.98px) {
  #footer .footer-extra-menu .extra-menu-wrapper:last-child .menu-item .images-wrapper .image-item {
    margin-bottom: 25px;
  }
}
@media (max-width: 575.98px) {
  #footer .footer-extra-menu .extra-menu-wrapper:last-child .menu-item:last-child {
    margin-bottom: 20px;
  }
}
#footer .footer-extra-menu .extra-menu-wrapper .menu-item {
  margin-bottom: 50px;
}
#footer .footer-extra-menu .extra-menu-wrapper .menu-item .module-header {
  position: relative;
}
#footer .footer-extra-menu .extra-menu-wrapper .menu-item .module-header .header {
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  #footer .footer-extra-menu .extra-menu-wrapper .menu-item .module-header .header {
    font-size: 18px;
  }
}
#footer .footer-extra-menu .extra-menu-wrapper .menu-item .module-header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #C4C4C4;
  bottom: -20px;
  left: 0;
}
#footer .footer-extra-menu .extra-menu-wrapper .menu-item:last-child .images-wrapper {
  justify-content: space-between;
}
#footer .footer-extra-menu .extra-menu-wrapper .menu-item:last-child .images-wrapper .image-item {
  flex-basis: calc(33.3333333333% - 15px);
}
#footer .footer-extra-menu .extra-menu-wrapper .menu-item:last-child .images-wrapper .image-item img {
  mix-blend-mode: darken;
}
#footer .footer-extra-menu .extra-menu-wrapper .menu-item .images-wrapper {
  display: flex;
  margin-top: 50px;
}
#footer .footer-extra-menu .extra-menu-wrapper .menu-item .images-wrapper .text {
  margin-bottom: 0px;
  margin-top: 10px;
}
@media (min-width: 576px) {
  #footer .footer-extra-menu .extra-menu-wrapper .menu-item .images-wrapper .text {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  #footer .footer-extra-menu .extra-menu-wrapper .menu-item .images-wrapper .text {
    max-width: 90%;
  }
}
#footer .footer-extra-menu .extra-menu-wrapper .menu-item .images-wrapper .text .icon {
  margin-left: 5px;
  width: 16px;
  height: 16px;
}
#footer .footer-extra-menu .extra-menu-wrapper .list {
  display: flex;
  margin-top: 50px;
}
@media (min-width: 576px) {
  #footer .footer-extra-menu .extra-menu-wrapper .list {
    flex-direction: column;
  }
}
#footer .footer-extra-menu .extra-menu-wrapper .list a {
  display: block;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000000;
  text-align: left;
}
@media (max-width: 575.98px) {
  #footer .footer-extra-menu .extra-menu-wrapper .list a {
    display: flex;
    flex-direction: column;
  }
}
#footer .footer-extra-menu .extra-menu-wrapper .list a:hover {
  opacity: 0.8;
}
#footer .footer-extra-menu .extra-menu-wrapper .list a .icon {
  width: 64px;
  height: 64px;
  background-color: #0098A1;
  padding: 10px;
  color: #ffffff;
}
@media (min-width: 576px) {
  #footer .footer-extra-menu .extra-menu-wrapper .list a .icon {
    margin-right: 15px;
  }
}
@media (max-width: 575.98px) {
  #footer .footer-extra-menu .extra-menu-wrapper .list a .icon {
    margin-bottom: 5px;
    margin-right: 35px;
  }
}

#header {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #ffffff;
}
#header .navbar-collapse.james-search-collapse .close {
  background-color: transparent;
  border: none;
  z-index: 1;
  cursor: pointer;
  display: none;
  padding-right: 0;
}
#header .navbar-collapse.james-search-collapse .close .icon {
  width: 32px;
  height: 32px;
}
#header.active {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1200px) {
  #header.active .navbar-wrapper {
    margin-top: 0;
  }
  #header.active .navbar-wrapper .navbar-brand {
    box-shadow: unset;
    padding: 0;
    background-color: transparent;
  }
  #header.active .navbar-wrapper .navbar-brand::before {
    content: " ";
    top: 14px;
    left: 0;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-bottom-color: #0098A1;
    border-width: 0 37.5px 50px 37.5px;
  }
  #header.active .navbar-wrapper .navbar-brand img {
    opacity: 0;
  }
  #header.active .navbar-wrapper .top-nav {
    opacity: 0;
    z-index: -1;
  }
  #header.active .navbar-wrapper .navbar-collapse.james-search-collapse {
    z-index: 3;
  }
}
.overflow-hidden #header .navbar-collapse.james-search-collapse .close {
  display: inline-block !important;
}
#header .navbar-wrapper {
  width: 100%;
  display: flex;
  padding-top: 13px;
  padding-bottom: 13px;
  margin-top: 53px;
  transition: all 250ms ease-in-out;
}
#header .navbar-wrapper .top-nav {
  list-style: none;
  padding-left: 0;
  transition: all 250ms ease-in-out;
  font-size: 14px;
}
@media only screen and (max-width: 1199px) {
  #header .navbar-wrapper .top-nav {
    background-color: #fff;
  }
}
@media (min-width: 1400px) {
  #header .navbar-wrapper .top-nav {
    max-width: 1320px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  #header .navbar-wrapper .top-nav {
    padding-right: 15px;
  }
}
@media (min-width: 1200px) {
  #header .navbar-wrapper .top-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 53px;
    display: flex;
    margin: 0 auto;
    justify-content: flex-end;
    align-items: center;
  }
}
#header .navbar-wrapper .top-nav::before {
  content: "";
  width: 100vw;
  position: absolute;
  left: calc(-1 * (100vw - 100%) / 2);
  top: 0;
  height: 100%;
  background-color: #F2F2F2;
  z-index: -1;
}
#header .navbar-wrapper .top-nav li {
  margin-right: 12px;
  margin-left: 12px;
}
#header .navbar-wrapper .top-nav li:last-child {
  margin-left: 0;
  margin-right: 0;
}
#header .navbar-wrapper .top-nav li.language {
  width: 80px;
}
#header .navbar-wrapper .top-nav li.language:hover .dropdown-toggle {
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  #header .navbar-wrapper .top-nav li.language:hover ul {
    display: block;
  }
}
#header .navbar-wrapper .top-nav li.language a {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  display: block;
}
@media (min-width: 1200px) {
  #header .navbar-wrapper .top-nav li.language a {
    padding: 12px;
  }
}
#header .navbar-wrapper .top-nav li.language a:hover {
  text-decoration: none;
}
#header .navbar-wrapper .top-nav li.language img {
  margin-right: 5px;
}
#header .navbar-wrapper .top-nav li.language ul {
  background-color: #ffffff;
  border: 0;
  border-radius: 0;
  min-width: 100%;
  margin: 0;
  padding: 0;
}
#header .navbar-wrapper .top-nav li.language ul a:hover {
  background-color: #F2F2F2;
}
#header .navbar-wrapper .top-nav a:not(.btn) {
  color: #808080;
  font-weight: 600;
}
#header .navbar-wrapper .top-nav .btn {
  font-size: 14px;
  padding-top: 4px;
  padding-bottom: 4px;
  color: #000000;
  border-color: #000000;
}
#header .navbar-wrapper .top-nav .btn .icon {
  margin-bottom: 2px;
  color: #000000;
}
#header .navbar-wrapper .navbar-brand {
  position: absolute;
  top: 0;
  padding: 18px 15px;
  background-color: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1200px) {
  #header .navbar-wrapper .navbar-brand {
    z-index: 3;
  }
  #header .navbar-wrapper .navbar-brand,
#header .navbar-wrapper .navbar-brand img {
    transition: all 200ms linear;
  }
}
#header .navbar-wrapper .navbar-brand img {
  width: auto;
  height: 125px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1199px) {
  #header .navbar-wrapper .navbar-collapse .bottom-nav {
    display: none;
  }
}
#header .navbar-wrapper .navbar-collapse .james-search-field-wrapper {
  width: 100%;
}
#header .navbar-wrapper .navbar-collapse .james-search-field-wrapper .james-search-form .james-search-input {
  width: 100%;
  padding-right: 36px;
  background-color: #F2F2F2;
  border: none;
}
#header .navbar-wrapper .navbar-collapse .james-search-field-wrapper .james-search-form .james-search-input::-moz-placeholder {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
}
#header .navbar-wrapper .navbar-collapse .james-search-field-wrapper .james-search-form .james-search-input:-ms-input-placeholder {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
}
#header .navbar-wrapper .navbar-collapse .james-search-field-wrapper .james-search-form .james-search-input::placeholder {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
}
#header .navbar-wrapper .navbar-collapse .james-search-field-wrapper .james-search-form .input-group-append {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#header .navbar-wrapper .navbar-collapse .james-search-field-wrapper .james-search-form .input-group-append .btn-input-submit {
  border: none;
  background-color: transparent;
  color: #000000;
}
@media (min-width: 1200px) {
  #header .navbar-wrapper .navbar-collapse {
    z-index: 2;
  }
  #header .navbar-wrapper .navbar-collapse.james-search-collapse {
    justify-content: flex-end;
    max-width: 310px;
  }
  #header .navbar-wrapper .navbar-collapse > .bottom-nav {
    margin-left: 145px;
  }
  #header .navbar-wrapper .navbar-collapse > .bottom-nav:has(.nav-item:nth-last-child(n+6)) .nav-item {
    margin-left: 10px;
    margin-right: 10px;
  }
  #header .navbar-wrapper .navbar-collapse > .bottom-nav:has(.nav-item:nth-last-child(n+6)) .nav-link {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1600px) {
  #header .navbar-wrapper .navbar-collapse > .bottom-nav:has(.nav-item:nth-last-child(n+6)) .nav-link {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  #header .navbar-wrapper .navbar-collapse .btn-jobs {
    display: none;
  }
}
@media (min-width: 1200px) {
  #header .navbar-wrapper .navbar-collapse.james-search-collapse {
    z-index: 1;
  }
}
@media (min-width: 1400px) {
  #header .navbar-wrapper .navbar-collapse.james-search-collapse {
    margin-left: 50px;
  }
}
#header .navbar-wrapper .navbar-collapse .navbar-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  height: calc(100vh - 77px);
  padding-top: 24px;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(to bottom, rgba(146, 146, 146, 0.2), transparent);
  pointer-events: none;
}
@media (orientation: landscape) and (min-height: 1000px) and (min-width: 1600px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu {
    height: calc(100vh - 250px);
  }
}
@media (orientation: landscape) and (min-height: 1440px) and (min-width: 2560px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu {
    height: calc(100vh - 650px);
  }
}
@media only screen and (max-width: 1199px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu {
    display: block;
    padding-top: 24px;
    padding-bottom: 64px;
    width: 100%;
    max-width: 100%;
    position: static;
    overflow-x: hidden;
    padding-bottom: 0;
    height: auto;
  }
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .btn-back,
#header .navbar-wrapper .navbar-collapse .navbar-menu .btn-back-home {
  display: none;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items {
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  overflow-y: auto;
}
@media only screen and (max-width: 1199px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items {
    height: auto;
    position: relative;
  }
}
@media only screen and (max-width: 932px) and (max-height: 430px) and (orientation: landscape) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items {
    height: 45%;
  }
}
@media only screen and (max-width: 1366px) and (min-width: 1025px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items {
    padding-top: 24px;
  }
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper {
  padding-top: 30px;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper {
    padding-bottom: 130px;
  }
}
@media only screen and (max-width: 1366px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper {
    padding-right: 0px;
    padding-left: 0px;
    max-width: 1140px;
  }
}
@media only screen and (max-width: 1199px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
    overflow-x: hidden;
  }
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-deactive {
  position: absolute;
  top: 0;
  right: 0;
  width: 74%;
  height: calc(100vh - 460px);
  padding-top: 38px;
}
@media (max-width: 1199.98px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-deactive {
    display: none;
  }
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-deactive .footer {
  background-color: #003A3E;
  margin-top: 20px;
  padding: 20px;
  color: #ffffff;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-deactive .footer .text-btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-deactive .footer .text-btn-wrapper p {
  margin-bottom: 0;
  font-size: 20px;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-deactive .footer .text-btn-wrapper .btn {
  font-size: 14px;
  background-color: #0098A1;
  border-color: #0098A1;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-deactive .footer .text-btn-wrapper .btn:hover {
  background-color: #007980;
  border-color: #007980;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-deactive .footer .social-links {
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-deactive .footer .social-links li:not(:last-child) {
  margin-right: 20px;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-deactive .footer .social-links li a {
  color: #ffffff;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .layer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .layer-title.active {
  color: #0098A1;
  border-color: #0098A1;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list {
  list-style-type: none;
  padding-left: 0;
  font-size: 20px;
  width: 22%;
  position: absolute;
  top: 0;
  padding-top: 38px;
}
@media only screen and (max-width: 1199px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list {
    width: 100%;
    position: relative;
  }
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item.active ~ .item {
    opacity: 0;
    pointer-events: none;
  }
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .page-link {
  position: absolute;
  top: 0px;
  font-size: 20px;
  font-weight: 700;
  border: 0;
  padding: 0;
}
@media (min-width: 1200px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .page-link {
    pointer-events: none;
    cursor: default;
  }
}
@media only screen and (max-width: 1199px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .page-link {
    top: 0px;
  }
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item {
  border-bottom: 1px solid #dfdfdf;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-right: 0px;
  pointer-events: auto;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item:not(.active) {
  cursor: pointer;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item a {
  color: #000000;
}
@media only screen and (min-width: 1200px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item.active > .items-list {
    visibility: visible;
    height: auto;
    overflow-y: visible;
    pointer-events: none;
  }
}
@media only screen and (max-width: 1199px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item.active .items-list {
    left: 0 !important;
    height: 100%;
    background-color: #ffffff;
    transition-duration: 400ms;
  }
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item:first-of-type {
  border-top: 1px solid #dfdfdf;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item .icon {
  margin-left: 8px;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item .items-list {
  transform: translateX(-50px);
  opacity: 0;
  width: 100%;
  max-width: 100vw;
  display: none;
}
@media only screen and (min-width: 1200px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item .items-list {
    visibility: hidden;
    height: 0;
    overflow-y: hidden;
  }
}
@media only screen and (max-width: 1199px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item .items-list {
    overflow-x: hidden;
    transform: translateX(100%);
  }
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item.active {
  font-weight: 600;
  color: #0098A1;
  border-bottom: 1px solid #0098A1;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item.active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  transform: translateY(-15px);
  cursor: pointer;
}
#header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item.active > .items-list {
  opacity: 1;
  transition-duration: 400ms;
  transform: translateX(0);
  top: -1px;
  position: absolute;
  left: calc(100% + 40px);
  font-weight: 400;
  color: #212529;
  display: block;
}
@media only screen and (max-width: 769px) {
  #header .navbar-wrapper .navbar-collapse .navbar-menu .items .items-wrapper .items-list .item.active > .items-list {
    overflow-y: auto;
  }
}
#header .navbar-wrapper .navbar-nav .nav-item {
  position: inherit;
}
@media (min-width: 1200px) {
  #header .navbar-wrapper .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    margin-left: 12px;
    margin-right: 12px;
  }
}
#header .navbar-wrapper .nav-link {
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1200px) {
  #header .navbar-wrapper .nav-link.show {
    position: relative;
    color: #0098A1;
  }
  #header .navbar-wrapper .nav-link.show::after {
    content: " ";
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-bottom-color: #0098A1;
    border-width: 12px;
    display: block;
  }
}
@media screen and (max-width: 1600px) and (min-width: 1200px) {
  #header .navbar-wrapper .nav-link.show::after {
    bottom: -20px;
  }
}
#header .navbar-wrapper .nav-link::after {
  display: none;
}
#header .navbar-wrapper .nav-link:hover {
  color: #0098A1;
}

@-webkit-keyframes from-top-to-bottom {
  0% {
    padding: 0;
    opacity: 0;
    max-height: 0px;
  }
  33% {
    opacity: 0;
  }
  100% {
    padding-top: 50px;
    opacity: 1;
    max-height: 100vw;
  }
}

@keyframes from-top-to-bottom {
  0% {
    padding: 0;
    opacity: 0;
    max-height: 0px;
  }
  33% {
    opacity: 0;
  }
  100% {
    padding-top: 50px;
    opacity: 1;
    max-height: 100vw;
  }
}
@media (max-width: 1199.98px) {
  body.header-menu-opened {
    overflow-y: hidden;
  }
}

@media (max-width: 1199.98px) {
  #header {
    height: 65px;
  }
  #header .navbar-wrapper .navbar-menu .btn-back {
    padding-left: 0px;
    background-color: transparent;
    border: none;
    color: #000000;
    font-weight: 600;
    font-size: 20px;
  }
  #header .navbar-wrapper .navbar-menu .btn-back::before {
    content: "";
    margin-right: 6px;
    margin-top: 2px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../icons-svg/chevron-left.svg");
    width: 12px;
    height: 12px;
    position: relative;
    display: inline-flex;
  }
  #header .navbar-wrapper .navbar-menu .btn-back.show {
    display: flex;
    align-items: center;
  }
  #header .navbar-wrapper .navbar-menu .btn-back-home {
    background-color: transparent;
    border: none;
    color: #000000;
    font-weight: 600;
    padding-left: 0px;
    align-items: center;
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  #header .navbar-wrapper .navbar-menu .btn-back-home.show {
    display: flex;
  }
  #header .navbar-wrapper .navbar-menu .btn-back-home .icon {
    display: inline-flex;
    margin-right: 6px;
  }
  #header .navbar-wrapper .navbar-brand {
    opacity: 1;
    transition: all 250ms linear;
    padding: 10px;
    z-index: 2;
  }
  #header .navbar-wrapper .navbar-brand img {
    height: 80px;
    transition: all 150ms linear;
  }
  .header-menu-opened #header .navbar-wrapper .navbar-brand {
    z-index: 2;
    box-shadow: none;
  }
  .header-menu-opened #header .navbar-wrapper .navbar-brand img {
    height: 60px;
  }
  #header .navbar-wrapper .navbar-brand.hidden {
    display: none;
  }
  #header .navbar-wrapper .navbar-toggler {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    outline: 0;
    box-shadow: none !important;
    outline: none !important;
    z-index: 2;
    color: #000000;
    padding-left: 25px;
    padding-right: 25px;
  }
  #header .navbar-wrapper .navbar-toggler.james-search-toggler {
    right: 50px;
  }
  #header .navbar-wrapper .navbar-toggler[aria-expanded=true] .close-icon {
    display: inline-block;
  }
  #header .navbar-wrapper .navbar-toggler[aria-expanded=true] .open-icon {
    display: none;
  }
  #header .navbar-wrapper .navbar-toggler .open-icon {
    display: inline-block;
    font-size: 24px;
  }
  #header .navbar-wrapper .navbar-toggler .close-icon {
    display: none;
    font-size: 24px;
  }
  #header .navbar-wrapper .navbar-collapse {
    z-index: 1;
  }
  #header .navbar-wrapper .top-nav {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 60px;
  }
  #header .navbar-wrapper .top-nav::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #F2F2F2;
    top: -50px;
    left: 0;
  }
  #header .navbar-wrapper .top-nav li {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-top: 5px;
  }
  #header .navbar-wrapper .top-nav li:nth-child(1) .icon, #header .navbar-wrapper .top-nav li:nth-child(2) .icon {
    display: none;
  }
  #header .navbar-wrapper .top-nav li {
    order: 1;
  }
  #header .navbar-wrapper .top-nav li:not(:has(.btn-outline-tertiary)):not(.dropdown) {
    position: relative !important;
    order: 2;
    font-size: 14px;
    width: auto;
  }
  #header .navbar-wrapper .top-nav li:not(:has(.btn-outline-tertiary)):not(.dropdown) .icon {
    display: none;
  }
  #header .navbar-wrapper .top-nav li:nth-last-child(2) {
    order: 1;
    position: relative;
    margin-bottom: 15px;
  }
  #header .navbar-wrapper .top-nav li a {
    display: block;
  }
  #header .navbar-wrapper .top-nav li a.btn {
    font-size: 18px;
  }
  #header .navbar-wrapper .top-nav li a:not(.btn) {
    font-weight: 400;
    color: #000000;
  }
  #header .navbar-wrapper .top-nav li.language {
    position: fixed;
    top: 17px;
    right: 105px;
    width: 60px;
  }
  #header .navbar-wrapper .top-nav li.language .dropdown-toggle .icon {
    display: none;
  }
  #header .navbar-wrapper .top-nav li.language ul.show {
    position: relative;
    margin-top: 20px;
  }
  #header .navbar-wrapper .navbar-nav .nav-item.dropdown.scene-3 > .dropdown-menu {
    background-color: #003A3E !important;
  }
  #header .navbar-wrapper .navbar-nav .nav-item.dropdown.scene-3 .nav-link {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    color: #000000;
    font-size: 20px;
  }
  #header .navbar-wrapper .navbar-nav .nav-item.dropdown.scene-3 .dropdown-item-body .dropdown-menu {
    background-color: #003A3E;
  }
  #header .navbar-wrapper .navbar-nav .nav-item.dropdown.scene-3 .dropdown-item-body .dropdown-menu .title {
    color: #ffffff !important;
  }
  #header .navbar-wrapper .navbar-nav .nav-item.dropdown.scene-3 .dropdown-item-body .dropdown-menu .btn {
    font-size: 18px !important;
    font-weight: 700 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    width: 100%;
  }
  #header .navbar-wrapper .navbar-nav .nav-item .nav-link {
    font-size: 20px;
    display: flex;
    justify-content: space-between;
  }
  #header .navbar-wrapper .navbar-collapse {
    top: 0;
    width: 100%;
    transition: all 350ms ease-in-out;
    min-height: 100vh;
    padding-top: 80px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
  }
  #header .navbar-wrapper .navbar-collapse.show {
    height: 100vh;
    background-color: #ffffff;
    overflow-y: auto;
    position: absolute;
    right: 0;
  }
  #header .navbar-wrapper .navbar-collapse.collapsing {
    position: absolute;
    right: -100%;
    top: 0;
  }
  #header .navbar-wrapper .navbar-collapse.collapsing .dropdown-menu {
    left: 100%;
  }
  #header .navbar-wrapper .navbar-collapse .btn-jobs {
    margin-top: 8px;
    color: #000000;
    width: 100%;
    text-align: left;
  }
  #header .navbar-wrapper .navbar-collapse .btn-jobs .total {
    background-color: #ffffff;
    border-radius: 72px;
    padding: 4px 10px;
  }
  #header .navbar-wrapper .navbar-collapse .sidebar-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 54px 0;
    display: flex;
    justify-content: space-between;
  }
  #header .navbar-wrapper .navbar-collapse .sidebar-list .sidebar-item a {
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) {
    top: 0;
    width: 100%;
    transition: all 350ms ease-in-out;
    min-height: 100vh;
    position: absolute;
    left: 100%;
    right: unset;
    padding-top: 80px !important;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu).show {
    height: 100vh;
    background-color: #ffffff;
    overflow-y: auto;
    left: 0;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items {
    flex-basis: 100% !important;
    flex-wrap: wrap;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper {
    flex-basis: 100% !important;
    display: flex;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-body {
    position: inherit;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items > .title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    display: block;
    margin-bottom: 1rem;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper {
    margin-bottom: 15px !important;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-header {
    display: none;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-header .figure,
#header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-header picture,
#header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-header .img {
    width: 80px;
    height: 54px;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-body {
    display: flex;
    align-items: center;
    flex-basis: inherit;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-body .nav-link.dropdown-toggle {
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-body .title,
#header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-body a {
    font-size: 16px;
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 400;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-body .dropdown-menu .title {
    display: block;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-body .dropdown-menu .dropdown-item {
    font-size: 16px !important;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-body .dropdown-menu .dropdown-item .figure,
#header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-body .dropdown-menu .dropdown-item picture,
#header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-body .dropdown-menu .dropdown-item .img {
    display: none;
  }
  #header .navbar-wrapper .navbar-collapse .dropdown-menu:not(.language-menu) .dropdown-menu-wrapper .dropdown-menu-body .dropdown-items .dropdown-item-wrapper .dropdown-item-body .dropdown-menu .dropdown-item .icon {
    display: none;
  }
}

#page-not-found {
  text-align: center;
}
#page-not-found .header {
  font-weight: 700;
  font-size: 32px;
}
@media (min-width: 768px) {
  #page-not-found .header {
    font-size: 68px;
  }
}
#page-not-found .subheader {
  font-size: 24px;
  font-weight: 600;
  color: #0098A1;
}
@media (max-width: 575.98px) {
  #page-not-found .subheader {
    font-size: 22px;
  }
}

#to-top-button {
  position: fixed;
  bottom: 100px;
  right: 0px;
  margin-right: 20px;
  z-index: 999;
  max-height: 0;
  transition: all 0.2s ease-out;
}
#to-top-button a {
  display: block;
  position: relative;
  width: 64px;
  height: 64px;
  background-color: #0098A1;
  color: #ffffff;
}
#to-top-button .icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.4em;
  height: 1.4em;
}
@media screen and (min-width: 2560px) {
  #to-top-button {
    right: calc((100vw - 2560px) / 2);
  }
}

@media print {
  #header {
    height: 60px;
  }

  .module-header-main .module-searchbar,
.module-header-main .module-submenu,
.module-header-menu {
    display: none !important;
  }

  .module-aside-menu {
    display: none !important;
  }

  .module-to-top-button {
    display: none !important;
  }

  .footer-links,
.to-the-top {
    display: none !important;
  }
}
