.site-drawer-wrapper {
  position: relative;
}
.site-drawer-wrapper .site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  height: 100vh;
  width: 100%;
  min-width: 200px;
}
.site-drawer-wrapper .site-drawer.off-canvas {
  display: block !important;
}
.site-drawer-wrapper .site-drawer.pos-top {
  top: 0;
  left: 0;
}
.site-drawer-wrapper .site-drawer.pos-right {
  right: 0;
  top: 0;
}
.site-drawer-wrapper .site-drawer.pos-left {
  left: 0;
  top: 0;
}
.site-drawer-wrapper .site-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
}
.top-enter-active,
.top-leave-active,
.right-enter-active,
.right-leave-active,
.left-enter-active,
.left-leave-active {
  transition: transform 500ms ease-out, opacity 750ms ease-out;
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity 500ms ease-out;
}
.top-enter-from,
.top-leave-to {
  transform: translateY(-100%);
  opacity: 0;
}
.right-enter-from,
.right-leave-to {
  transform: translateX(100%);
  opacity: 0;
}
.right-enter-from.off-canvas,
.right-leave-to.off-canvas {
  transform: translateX(0%);
  opacity: 1;
}
.left-enter-from,
.left-leave-to {
  transform: translateX(-100%);
  opacity: 0;
}
.left-enter-from.off-canvas,
.left-leave-to.off-canvas {
  transform: translateX(0%);
  opacity: 1;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}
.fade-bottom-enter-active,
.fade-bottom-leave-active {
  transition: opacity 250ms ease-in-out, transform 250ms ease-in-out;
}
.fade-bottom-enter,
.fade-bottom-leave-to {
  opacity: 0;
  transform: translateY(100%);
}
.modal-body-content {
  background-color: #fff;
  padding: 40px 20px 100px;
  box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.3);
}
.cookies-bar {
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 15px 10px 5px;
  z-index: 1000;
  box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.3);
}
.cookies-bar .message p {
  font-size: 12px;
  letter-spacing: 0.025rem;
  text-align: center;
}
.cookies-bar .message p button {
  color: #fff;
  text-decoration-color: #fff !important;
}
.cookies-bar .buttons {
  margin: 10px 15px;
  text-align: center;
}
.cookies-bar .buttons .btn {
  border-width: 1px;
  border-style: solid;
  font-size: 0.725rem;
  padding: 10px 15px;
  line-height: 1;
  margin: 5px 15px;
}
.cookies-bar .buttons .btn-underline {
  text-decoration: underline;
  background: transparent;
  font-size: 12px;
}
.cookies-bar .buttons .btn-underline:hover {
  text-decoration: none;
}
.cookies-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}
.cookies-text p {
  font-size: 12px;
}
.btn-accept-decline {
  margin-bottom: 40px;
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: column;
}
.btn-accept-decline .btn-accept-decline-switch {
  position: relative;
  border: 1px solid;
  border-radius: 34px;
  transition: 400ms;
  display: flex;
  align-items: center;
}
.btn-accept-decline .btn-accept-decline-switch .switch-bg {
  position: absolute;
  z-index: 0;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  background-color: #1b416c;
  border-radius: 34px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: left 250ms ease-in-out;
}
.btn-accept-decline .btn-accept-decline-switch .switch-label {
  padding: 8px 5px;
  width: 50px;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: color 250ms ease-in-out;
}
.btn-accept-decline .cookie-title {
  line-height: 1.2;
  font-size: 14px;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.btn-accept-decline .cookie-descr {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 11px;
}
.btn-accept-decline.accept .btn-accept-decline-switch .switch-label.switch-label-left {
  color: #fff;
}
.btn-accept-decline.decline .btn-accept-decline-switch .switch-bg {
  left: 50%;
}
.btn-accept-decline.decline .btn-accept-decline-switch .switch-label.switch-label-right {
  color: #fff;
}
.btn-accept-decline:disabled .btn-accept-decline-switch {
  opacity: 0.4;
}
.btn-discard-cookies {
  text-align: center;
}
.btn-discard-cookies i {
  color: #000;
}
.btn-discard-cookies i::before {
  font-size: 40px;
}
.btn-discard-cookies span {
  display: block;
  color: #000;
  letter-spacing: 0.025rem;
  line-height: 1;
  font-size: 0.75rem;
}
.btn-save-wrapper {
  text-align: center;
}
.btn-save-wrapper .btn-save-cookies {
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 18px 54px 22px;
  border-radius: 50px;
  transition: opacity 250ms ease-in-out;
}
.btn-save-wrapper .btn-save-cookies:hover {
  background: transparent;
  opacity: 0.6;
}
#modal-policy .btn-modal-close svg {
  width: 20px;
}
@media only screen and (min-width: 700px) {
.modal-body-content {
    padding: 40px 40px 100px;
}
.cookies-bar {
    bottom: 0px;
}
.btn-accept-decline {
    flex-flow: row;
    text-align: left;
}
}
@media only screen and (min-width: 1200px) {
.modal-body-content {
    padding: 40px 60px 60px;
}
.cookies-bar {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    max-width: 500px;
    padding: 20px 20px 10px;
}
.cookies-title {
    font-size: 30px;
    margin-bottom: 40px;
}
.cookies-text p {
    font-size: 15px;
}
.btn-accept-decline {
    margin-bottom: 60px;
}
.btn-accept-decline .cookie-title {
    font-size: 18px;
}
.btn-accept-decline .btn-accept-decline-switch .switch-label {
    font-size: 15px;
    padding: 12px 5px;
    width: 70px;
}
}
bg-video {
  display: block;
  position: relative;
}
.bg-video {
  display: block;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.bg-video .video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bg-video .poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50%;
}
.bg-video .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bg-video .video-full-btn {
  position: absolute;
  bottom: 25%;
  right: 10%;
  color: #fff;
  opacity: 0.5;
}
.bg-video .video-full-btn:hover {
  opacity: 1;
}
.bg-video .overlay-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.bg-video .overlay-pattern {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  opacity: 0.6;
}
.bg-video .fade-enter-active,
.bg-video .fade-leave-active {
  transition: opacity 1s;
}
.bg-video .fade-enter,
.bg-video .fade-leave-to {
  opacity: 0;
}
.bg-video.pos-top .video {
  top: 0%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 991px) {
.bg-video .video-full-btn {
    bottom: 5%;
}
}
bg-image {
  display: block;
  position: relative;
}
.bg-image-component {
  position: relative;
}
.bg-image-component .bg-image-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.bg-image-component .bg-image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
}
.bg-image-component .bg-image-wrapper .pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
}
.bg-image-component .bg-image-wrapper .bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
.bg-image-component .bg-image-wrapper .bg-image.bg-image-low {
  opacity: 1;
  transition: opacity 500ms 500ms ease-out;
}
.bg-image-component .bg-image-wrapper .bg-image.bg-image-high {
  opacity: 0;
  transition: opacity 500ms ease-out;
}
.bg-image-component .bg-image-wrapper.blur.show-placeholder .bg-image.bg-image-low {
  filter: blur(20px);
  transition: opacity 500ms 500ms ease-out, filter 1000ms ease-out;
}
.bg-image-component .bg-image-wrapper.blur.show-placeholder .bg-image.bg-image-high {
  filter: blur(20px);
  transition: opacity 500ms ease-out, filter 1000ms ease-out;
}
.bg-image-component .bg-image-wrapper.zoom-in .bg-image.bg-image-low, .bg-image-component .bg-image-wrapper.zoom-in .bg-image.bg-image-high {
  transform: scale(1);
  transition: opacity 500ms ease-out, filter 1000ms ease-out, transform 7000ms ease-out;
}
.bg-image-component .bg-image-wrapper.zoom-out .bg-image.bg-image-low, .bg-image-component .bg-image-wrapper.zoom-out .bg-image.bg-image-high {
  transform: scale(1);
  transition: opacity 500ms ease-out, filter 1000ms ease-out, transform 7000ms ease-out;
}
.bg-image-component .bg-image-wrapper.height.show-placeholder .bg-image {
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}
.bg-image-component .bg-image-wrapper.height.show-placeholder .bg-image.bg-image-low, .bg-image-component .bg-image-wrapper.height.show-placeholder .bg-image.bg-image-high {
  transition: opacity 500ms ease-out, filter 1000ms ease-out, clip-path 1000ms ease-out;
}
.bg-image-component .bg-image-wrapper.loaded .bg-image.bg-image-low {
  opacity: 0;
}
.bg-image-component .bg-image-wrapper.loaded .bg-image.bg-image-high {
  opacity: 1;
}
.bg-image-component .bg-image-wrapper.loaded.blur .bg-image.bg-image-high {
  filter: blur(0px);
}
.bg-image-component .bg-image-wrapper.loaded.blur.show-placeholder .bg-image.bg-image-low {
  filter: blur(0px);
}
.bg-image-component .bg-image-wrapper.loaded.zoom-in .bg-image.bg-image-low, .bg-image-component .bg-image-wrapper.loaded.zoom-in .bg-image.bg-image-high {
  transform: scale(1.05);
}
.bg-image-component .bg-image-wrapper.loaded.zoom-out .bg-image.bg-image-low, .bg-image-component .bg-image-wrapper.loaded.zoom-out .bg-image.bg-image-high {
  transform: scale(1.05);
}
.bg-image-component .bg-image-wrapper.loaded.animation-active.height .bg-image {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.bg-image-component.bg-contain .bg-image-wrapper .bg-image {
  background-size: contain;
}
.bg-image-component.bg-opacity-30 .bg-image-wrapper {
  opacity: 0.3;
}
.bg-image-component.bg-left .bg-image-wrapper .bg-image {
  background-position: 0% 0%;
}
.bg-image-component.bg-right .bg-image-wrapper .bg-image {
  background-position: 100% 50%;
}
.bg-image-component.bg-top .bg-image-wrapper .bg-image {
  background-position: 50% 0%;
}
.bg-image-component.bg-bottom .bg-image-wrapper .bg-image {
  background-position: 50% 100%;
}
.bg-image-component.bg-top-right .bg-image-wrapper .bg-image {
  background-position: 100% 0%;
}
.bg-image-component.bg-bottom-right .bg-image-wrapper .bg-image {
  background-position: 100% 100%;
}
.bg-image-component.bg-bottom-left .bg-image-wrapper .bg-image {
  background-position: 0% 100%;
}
.bg-image-component.bg-left-center .bg-image-wrapper .bg-image {
  background-position: 0% 50%;
}
.bg-image-component.bg-top-70 .bg-image-wrapper .bg-image {
  background-position: 50% 0%;
}
.bg-image-component.bg-bottom-70 .bg-image-wrapper .bg-image {
  background-position: 50% 70%;
}
.bg-image-component.bg-bottom-90 .bg-image-wrapper .bg-image {
  background-position: 50% 90%;
}
.bg-image-component.bg-bottom-left .bg-image-wrapper .bg-image {
  background-position: 0% 100%;
}
.bg-image-component.x-n30 .bg-image-wrapper .bg-image {
  transform: translateX(30%);
}
.bg-image-component.bg-fixed {
  position: fixed;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100vh;
}
.bg-image-component.bg-parallax .bg-image-wrapper .bg-image {
  background-attachment: fixed;
}
@media only screen and (min-width: 576px) {
.bg-image-component.bg-opacity-sm-100 .bg-image-wrapper {
    opacity: 1;
}
.bg-image-component.bg-sm-left .bg-image-wrapper .bg-image {
    background-position: 0% 0%;
}
.bg-image-component.x-sm-n30 .bg-image-wrapper .bg-image {
    transform: translateX(30%);
}
}
@media only screen and (min-width: 992px) {
.bg-image-component .bg-image-wrapper.bg-lg-left-30 .bg-image {
    background-position: 30% 100%;
}
.bg-image-component .bg-image-wrapper.bg-lg-30-100 .bg-image {
    background-position: 30% 100%;
}
.bg-image-component.bg-opacity-lg-100 .bg-image-wrapper {
    opacity: 1;
}
}
@media only screen and (min-width: 1200px) {
.bg-image-component .bg-image-wrapper.bg-xl-left-10 .bg-image {
    background-position: 0% 0%;
}
.bg-image-component .bg-image-wrapper.bg-xl-10-50 .bg-image {
    background-position: 50% 10%;
}
}
@media only screen and (min-width: 1367px) {
.bg-image-component .bg-image-wrapper.bg-xxl-50-50 .bg-image {
    background-position: 50% 50%;
}
}
.circles {
  position: absolute;
  width: 100%;
  padding-top: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circles .circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  animation: rotate infinite linear;
}
.circles .circle.circle-1 {
  transform-origin: 49% 51%;
  animation-duration: 8s;
}
.circles .circle.circle-2 {
  transform-origin: 52% 50%;
  animation-duration: 9s;
  animation-direction: backwards;
}
.circles .circle.circle-3 {
  transform-origin: 50% 48%;
  animation-duration: 7.5s;
  animation-direction: backwards;
}
.circles .circle.circle-4 {
  transform-origin: 48% 49%;
  animation-duration: 9.5s;
}
@keyframes rotate {
from {
    transform: rotateZ(0deg);
}
to {
    transform: rotateZ(360deg);
}
}
.about-carousel-bg {
  height: 100vh;
}
.about-carousel-wrapper {
  position: relative;
  z-index: 1;
  margin-top: -90vh;
  padding-bottom: 500px;
}
.about-carousel-slider {
  opacity: 0;
  transform: translateY(100px);
}
@media only screen and (min-width: 576px) {
.about-carousel-wrapper {
    margin-top: -60vh;
}
}
.fade-logos {
  justify-content: center;
  display: flex;
}
.fade-logos .fade-logo {
  position: relative;
  text-align: center;
  padding: 0px 20px;
}
.fade-logos .fade-logo .fade-logo-image {
  width: 120px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fade-logos .fade-logo .fade-logo-image img {
  max-width: 100%;
  max-height: 100%;
}
.fade-logos .fade-logo .fade-logo-text {
  margin-top: 5px;
  text-align: center;
  min-height: 60px;
}
.fade-logos .fade-logo .fade-logo-text p {
  font-size: 10px;
  color: #fff;
}
.fade-logos .fade-logo-seperator {
  display: block;
  width: 1px;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.5);
}
@media only screen and (min-width: 576px) {
.fade-logos .fade-logo .fade-logo-image {
    width: 129px;
    height: 50px;
}
}
@media only screen and (min-width: 768px) {
.fade-logos .fade-logo {
    padding: 0px 30px;
}
.fade-logos .fade-logo .fade-logo-image {
    width: 140px;
    height: 60px;
}
}
@media only screen and (min-width: 992px) {
.fade-logos .fade-logo .fade-logo-image {
    width: 153px;
}
}
@media only screen and (min-width: 1200px) {
.fade-logos .fade-logo .fade-logo-image {
    width: 198px;
    height: 75px;
}
.fade-logos .fade-logo .fade-logo-text {
    margin-top: 20px;
}
.fade-logos .fade-logo .fade-logo-text p {
    font-size: 12px;
}
}
@media only screen and (min-width: 1369px) {
.fade-logos .fade-logo .fade-logo-image {
    width: 210px;
    height: 80px;
}
}

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