body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e6c63b !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6c63b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b39617 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e6c63b !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a68b15 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e6c63b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e6c63b;
  border-color: #e6c63b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e6c63b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdfbf0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e6c63b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #e6c63b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e6c63b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e6c63b;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e6c63b;
  border-bottom-color: #e6c63b;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #e6c63b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23e6c63b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sTQEO2spbo .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTQEO2spbo .nav-item:focus,
.cid-sTQEO2spbo .nav-link:focus {
  outline: none;
}
.cid-sTQEO2spbo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTQEO2spbo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sTQEO2spbo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTQEO2spbo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTQEO2spbo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTQEO2spbo .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sTQEO2spbo .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sTQEO2spbo .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sTQEO2spbo .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTQEO2spbo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTQEO2spbo .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sTQEO2spbo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTQEO2spbo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTQEO2spbo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sTQEO2spbo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTQEO2spbo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTQEO2spbo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTQEO2spbo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTQEO2spbo .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sTQEO2spbo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTQEO2spbo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTQEO2spbo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sTQEO2spbo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sTQEO2spbo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTQEO2spbo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTQEO2spbo .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sTQEO2spbo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sTQEO2spbo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTQEO2spbo .navbar.navbar-short {
  background: #232323;
}
.cid-sTQEO2spbo .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTQEO2spbo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTQEO2spbo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTQEO2spbo .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sTQEO2spbo .dropdown-item.active,
.cid-sTQEO2spbo .dropdown-item:active {
  background-color: transparent;
  color: #e6c63b !important;
}
.cid-sTQEO2spbo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTQEO2spbo .nav-dropdown .link.dropdown-toggle {
  margin: 0rem 1.3rem;
}
.cid-sTQEO2spbo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0rem 1.3rem;
}
.cid-sTQEO2spbo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sTQEO2spbo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  background-color: transparent;
  margin: 0;
  left: 100%;
}
.cid-sTQEO2spbo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTQEO2spbo ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sTQEO2spbo .navbar-nav {
  margin: auto;
}
.cid-sTQEO2spbo .navbar-buttons {
  text-align: center;
}
.cid-sTQEO2spbo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTQEO2spbo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-sTQEO2spbo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTQEO2spbo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTQEO2spbo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTQEO2spbo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTQEO2spbo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTQEO2spbo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTQEO2spbo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTQEO2spbo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTQEO2spbo .navbar-dropdown {
  padding-left: 0rem;
  position: fixed;
}
.cid-sTQEO2spbo a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sTQEO2spbo .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTQEO2spbo .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-sTQEO2spbo .icons-menu span {
  font-size: 20px;
  color: #354463;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sTQEO2spbo .navbar {
    height: 77px;
  }
  .cid-sTQEO2spbo .navbar.opened {
    height: auto;
  }
}
.cid-sTQEO2spbo .btn {
  border-radius: 0px;
  margin: 0 !important;
}
.cid-sTQEO2spbo .text-btn {
  transition: transform 0.3s;
}
.cid-sTQEO2spbo .btn:hover {
  transform: scale(0.8);
}
.cid-sTQEO2spbo .btn:hover .text-btn {
  transform: scale(1.2);
}
.cid-sTQEO2spbo .nav-link {
  position: relative;
  display: inline-block;
}
.cid-sTQEO2spbo .nav-link::before {
  content: "";
  width: 0%;
  display: block;
  height: 3px;
  background: #e6c63b;
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.cid-sTQEO2spbo .nav-link:hover::before {
  width: 100%;
}
.cid-sTQEO2spbo .dropdown-menu > a {
  position: relative !important;
  display: inline-block;
}
.cid-sTQEO2spbo .dropdown-menu > a:hover {
  color: #c4c4c4 !important;
}
.cid-sTQEO2spbo .link {
  margin: 0rem 1.2rem !important;
}
.cid-sTQEO2spbo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.7rem;
  content: "";
  pointer-events: none;
  display: inline-block;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #777;
  right: -15px;
  top: 7px;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  border: none !important;
}
.cid-sTQEO2spbo .dropdown-menu > a::after {
  content: "";
  display: block;
  position: relative !important;
  width: 0%;
  height: 2px;
  background-color: #000000;
  margin-top: 4px !important;
  transition: width 0.3s;
  top: 83% !important;
  right: auto !important;
}
.cid-sTQEO2spbo .dropdown-menu > a:hover::after {
  width: 100%;
}
.cid-sTQEO2spbo .dropdown-menu::before {
  content: "";
  display: inline-block;
  border: 15px solid transparent;
  border-top: 20px solid #232323;
  position: absolute;
  top: -15px;
  left: 40px;
  transform: rotate(-90deg);
}
.cid-sTQEO2spbo .navbar-caption {
  font-family: 'Titillium Web', sans-serif;
}
@media (max-width: 992px) {
  .cid-sTQEO2spbo .nav-dropdown .link {
    padding: 0.5rem 0rem !important;
  }
  .cid-sTQEO2spbo .navbar .navbar-collapse {
    padding: 1rem 0;
  }
  .cid-sTQEO2spbo .dropdown-menu::before {
    display: none !important;
  }
  .cid-sTQEO2spbo .btn:hover {
    background-color: #e6c63b !important;
    color: #47b5ed !important;
  }
  .cid-sTQEO2spbo .dropdown-menu > a::after {
    display: none;
  }
  .cid-sTQEO2spbo .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sTQEO2spbo .nav-link::before {
    display: none;
  }
  .cid-sTQEO2spbo .dropdown-menu > a {
    color: #354463 !important;
  }
  .cid-sTQEO2spbo .mbr-section-btn {
    margin-top: 1.5rem;
  }
  .cid-sTQEO2spbo .btn {
    padding: 1.8rem 4rem;
    width: 100%;
  }
  .cid-sTQEO2spbo .dropdown-menu .dropdown-toggle {
    color: #354463 !important;
  }
  .cid-sTQEO2spbo .nav-dropdown .dropdown-item:focus,
  .cid-sTQEO2spbo .nav-dropdown .dropdown-item:hover {
    color: #354463 !important;
  }
}
@media (max-width: 767px) {
  .cid-sTQEO2spbo .container-fluid {
    padding: 1rem 1rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sTQEO2spbo .container-fluid {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTQEO2spbo .container-fluid {
    padding-right: 0rem;
  }
  .cid-sTQEO2spbo .nav-dropdown .link {
    padding: 1.8rem 0rem !important;
  }
  .cid-sTQEO2spbo .btn {
    padding: 1.8rem 6rem;
  }
  .cid-sTQEO2spbo .btn:hover {
    background-color: #47b5ed !important;
    color: #e6c63b !important;
  }
  .cid-sTQEO2spbo .dropdown-menu > a {
    color: #ffffff !important;
  }
  .cid-sTQEO2spbo .dropdown-menu > a:active {
    color: #ffffff !important;
  }
  .cid-sTQEO2spbo .dropdown-menu .dropdown-toggle {
    color: #ffffff !important;
  }
  .cid-sTQEO2spbo .nav-dropdown .dropdown-item:focus,
  .cid-sTQEO2spbo .nav-dropdown .dropdown-item:hover {
    color: #ffffff !important;
  }
}
.cid-sTQEO2spbo .btn-primary {
  color: #47b5ed !important;
}
.cid-sTQEO2spbo .btn-primary:focus {
  background-color: #ffffff !important;
}
.cid-sTQEO2spbo .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem !important;
}
.cid-sTQEO2spbo .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0rem;
}
.cid-sTQEO3rmYf h3 {
  width: fit-content;
  position: relative;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sTQEO3rmYf h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sTQEO3rmYf .btn {
  margin: 0.2rem !important;
}
@media (max-width: 767px) {
  .cid-sTQEO3rmYf h3 {
    margin: auto;
    margin-bottom: 1.4rem;
  }
  .cid-sTQEO3rmYf h3:before {
    position: absolute;
    content: '';
    left: -60px;
    top: 0;
    margin: auto;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: currentColor;
  }
}
.cid-sTQEO3rmYf H1 {
  color: #b6e7fe;
  text-align: left;
}
.cid-sTQEO3rmYf H3 {
  text-align: left;
}
.cid-sTQEO3rmYf .mbr-text,
.cid-sTQEO3rmYf .mbr-section-btn {
  text-align: left;
}
.cid-sVJpwXivaD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sVJpwXivaD h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sVJpwXivaD h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sVJpwXivaD h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sVJpwXivaD .mbr-text,
.cid-sVJpwXivaD .mbr-section-btn {
  color: #232323;
}
@media (max-width: 768px) {
  .cid-sVJpwXivaD h3:before,
  .cid-sVJpwXivaD h3:after {
    display: none;
  }
}
.cid-sTQJ9ZLPAm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sTQJ9ZLPAm h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sTQJ9ZLPAm h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sTQJ9ZLPAm h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sTQJ9ZLPAm .mbr-text,
.cid-sTQJ9ZLPAm .mbr-section-btn {
  color: #232323;
}
@media (max-width: 768px) {
  .cid-sTQJ9ZLPAm h3:before,
  .cid-sTQJ9ZLPAm h3:after {
    display: none;
  }
}
.cid-sVJoQgftYP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sVJoQgftYP h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sVJoQgftYP h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sVJoQgftYP h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sVJoQgftYP .mbr-text,
.cid-sVJoQgftYP .mbr-section-btn {
  color: #232323;
}
@media (max-width: 768px) {
  .cid-sVJoQgftYP h3:before,
  .cid-sVJoQgftYP h3:after {
    display: none;
  }
}
.cid-sTQEO6oml6 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sTQEO6oml6 .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sTQEO6oml6 .container {
  max-width: 1500px;
}
.cid-sTQEO6oml6 .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sTQEO6oml6 .container {
    padding: 0 4rem;
  }
}
.cid-sTQEO6oml6 .mbr-text,
.cid-sTQEO6oml6 .mbr-section-btn {
  color: #efeeee;
}
.cid-sTQEO6oml6 .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-sTQEO6oml6 .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-sTQEO6oml6 .align-left {
    text-align: center;
  }
  .cid-sTQEO6oml6 .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-sTQEO6oml6 H1 {
  text-align: left;
}
.cid-sTQEO6W8y0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sTQEO6W8y0 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sTQEO6W8y0 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sTQEO6W8y0 .row {
    text-align: center;
  }
  .cid-sTQEO6W8y0 .row > div {
    margin: auto;
  }
  .cid-sTQEO6W8y0 .social-row {
    justify-content: center;
  }
}
.cid-sTQEO6W8y0 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sTQEO6W8y0 .list {
  list-style: none;
  padding-left: 0;
  color: #e6c63b;
}
@media (max-width: 991px) {
  .cid-sTQEO6W8y0 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTQEO6W8y0 .list {
    margin-bottom: 0rem;
  }
}
.cid-sTQEO6W8y0 .mbr-text {
  color: #ffffff;
}
.cid-sTQEO6W8y0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sTQEO6W8y0 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sTQEO6W8y0 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sTQEO6W8y0 .copyright {
  text-align: right;
}
.cid-sUvVQoQjrN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sUvVQoQjrN .nav-item:focus,
.cid-sUvVQoQjrN .nav-link:focus {
  outline: none;
}
.cid-sUvVQoQjrN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sUvVQoQjrN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sUvVQoQjrN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sUvVQoQjrN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sUvVQoQjrN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sUvVQoQjrN .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sUvVQoQjrN .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sUvVQoQjrN .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sUvVQoQjrN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sUvVQoQjrN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sUvVQoQjrN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sUvVQoQjrN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sUvVQoQjrN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sUvVQoQjrN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sUvVQoQjrN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sUvVQoQjrN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sUvVQoQjrN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sUvVQoQjrN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sUvVQoQjrN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sUvVQoQjrN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sUvVQoQjrN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sUvVQoQjrN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sUvVQoQjrN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sUvVQoQjrN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sUvVQoQjrN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sUvVQoQjrN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sUvVQoQjrN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sUvVQoQjrN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sUvVQoQjrN .navbar.navbar-short {
  background: #232323;
}
.cid-sUvVQoQjrN .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sUvVQoQjrN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sUvVQoQjrN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sUvVQoQjrN .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sUvVQoQjrN .dropdown-item.active,
.cid-sUvVQoQjrN .dropdown-item:active {
  background-color: transparent;
  color: #e6c63b !important;
}
.cid-sUvVQoQjrN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sUvVQoQjrN .nav-dropdown .link.dropdown-toggle {
  margin: 0rem 1.3rem;
}
.cid-sUvVQoQjrN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0rem 1.3rem;
}
.cid-sUvVQoQjrN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sUvVQoQjrN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  background-color: transparent;
  margin: 0;
  left: 100%;
}
.cid-sUvVQoQjrN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sUvVQoQjrN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sUvVQoQjrN .navbar-nav {
  margin: auto;
}
.cid-sUvVQoQjrN .navbar-buttons {
  text-align: center;
}
.cid-sUvVQoQjrN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sUvVQoQjrN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-sUvVQoQjrN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sUvVQoQjrN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUvVQoQjrN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUvVQoQjrN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sUvVQoQjrN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUvVQoQjrN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sUvVQoQjrN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sUvVQoQjrN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUvVQoQjrN .navbar-dropdown {
  padding-left: 0rem;
  position: fixed;
}
.cid-sUvVQoQjrN a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sUvVQoQjrN .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sUvVQoQjrN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-sUvVQoQjrN .icons-menu span {
  font-size: 20px;
  color: #354463;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sUvVQoQjrN .navbar {
    height: 77px;
  }
  .cid-sUvVQoQjrN .navbar.opened {
    height: auto;
  }
}
.cid-sUvVQoQjrN .btn {
  border-radius: 0px;
  margin: 0 !important;
}
.cid-sUvVQoQjrN .text-btn {
  transition: transform 0.3s;
}
.cid-sUvVQoQjrN .btn:hover {
  transform: scale(0.8);
}
.cid-sUvVQoQjrN .btn:hover .text-btn {
  transform: scale(1.2);
}
.cid-sUvVQoQjrN .nav-link {
  position: relative;
  display: inline-block;
}
.cid-sUvVQoQjrN .nav-link::before {
  content: "";
  width: 0%;
  display: block;
  height: 3px;
  background: #e6c63b;
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.cid-sUvVQoQjrN .nav-link:hover::before {
  width: 100%;
}
.cid-sUvVQoQjrN .dropdown-menu > a {
  position: relative !important;
  display: inline-block;
}
.cid-sUvVQoQjrN .dropdown-menu > a:hover {
  color: #c4c4c4 !important;
}
.cid-sUvVQoQjrN .link {
  margin: 0rem 1.2rem !important;
}
.cid-sUvVQoQjrN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.7rem;
  content: "";
  pointer-events: none;
  display: inline-block;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #777;
  right: -15px;
  top: 7px;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  border: none !important;
}
.cid-sUvVQoQjrN .dropdown-menu > a::after {
  content: "";
  display: block;
  position: relative !important;
  width: 0%;
  height: 2px;
  background-color: #000000;
  margin-top: 4px !important;
  transition: width 0.3s;
  top: 83% !important;
  right: auto !important;
}
.cid-sUvVQoQjrN .dropdown-menu > a:hover::after {
  width: 100%;
}
.cid-sUvVQoQjrN .dropdown-menu::before {
  content: "";
  display: inline-block;
  border: 15px solid transparent;
  border-top: 20px solid #232323;
  position: absolute;
  top: -15px;
  left: 40px;
  transform: rotate(-90deg);
}
.cid-sUvVQoQjrN .navbar-caption {
  font-family: 'Titillium Web', sans-serif;
}
@media (max-width: 992px) {
  .cid-sUvVQoQjrN .nav-dropdown .link {
    padding: 0.5rem 0rem !important;
  }
  .cid-sUvVQoQjrN .navbar .navbar-collapse {
    padding: 1rem 0;
  }
  .cid-sUvVQoQjrN .dropdown-menu::before {
    display: none !important;
  }
  .cid-sUvVQoQjrN .btn:hover {
    background-color: #e6c63b !important;
    color: #47b5ed !important;
  }
  .cid-sUvVQoQjrN .dropdown-menu > a::after {
    display: none;
  }
  .cid-sUvVQoQjrN .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sUvVQoQjrN .nav-link::before {
    display: none;
  }
  .cid-sUvVQoQjrN .dropdown-menu > a {
    color: #354463 !important;
  }
  .cid-sUvVQoQjrN .mbr-section-btn {
    margin-top: 1.5rem;
  }
  .cid-sUvVQoQjrN .btn {
    padding: 1.8rem 4rem;
    width: 100%;
  }
  .cid-sUvVQoQjrN .dropdown-menu .dropdown-toggle {
    color: #354463 !important;
  }
  .cid-sUvVQoQjrN .nav-dropdown .dropdown-item:focus,
  .cid-sUvVQoQjrN .nav-dropdown .dropdown-item:hover {
    color: #354463 !important;
  }
}
@media (max-width: 767px) {
  .cid-sUvVQoQjrN .container-fluid {
    padding: 1rem 1rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sUvVQoQjrN .container-fluid {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sUvVQoQjrN .container-fluid {
    padding-right: 0rem;
  }
  .cid-sUvVQoQjrN .nav-dropdown .link {
    padding: 1.8rem 0rem !important;
  }
  .cid-sUvVQoQjrN .btn {
    padding: 1.8rem 6rem;
  }
  .cid-sUvVQoQjrN .btn:hover {
    background-color: #47b5ed !important;
    color: #e6c63b !important;
  }
  .cid-sUvVQoQjrN .dropdown-menu > a {
    color: #ffffff !important;
  }
  .cid-sUvVQoQjrN .dropdown-menu > a:active {
    color: #ffffff !important;
  }
  .cid-sUvVQoQjrN .dropdown-menu .dropdown-toggle {
    color: #ffffff !important;
  }
  .cid-sUvVQoQjrN .nav-dropdown .dropdown-item:focus,
  .cid-sUvVQoQjrN .nav-dropdown .dropdown-item:hover {
    color: #ffffff !important;
  }
}
.cid-sUvVQoQjrN .btn-primary {
  color: #47b5ed !important;
}
.cid-sUvVQoQjrN .btn-primary:focus {
  background-color: #ffffff !important;
}
.cid-sUvVQoQjrN .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem !important;
}
.cid-sUvVQoQjrN .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0rem;
}
.cid-sUwvAdOEbb {
  background-image: url("../../../assets/images/digitale-transformationen-der-welt-2-1227x649.jpg");
}
.cid-sUwvAdOEbb h3 {
  width: fit-content;
  position: relative;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sUwvAdOEbb h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sUwvAdOEbb .btn {
  margin: 0.2rem !important;
}
@media (max-width: 767px) {
  .cid-sUwvAdOEbb h3 {
    margin: auto;
    margin-bottom: 1.4rem;
  }
  .cid-sUwvAdOEbb h3:before {
    position: absolute;
    content: '';
    left: -60px;
    top: 0;
    margin: auto;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: currentColor;
  }
}
.cid-sUwvAdOEbb H1 {
  color: #b6e7fe;
  text-align: left;
}
.cid-sUwvAdOEbb H3 {
  text-align: left;
}
.cid-sUwvAdOEbb .mbr-text,
.cid-sUwvAdOEbb .mbr-section-btn {
  text-align: left;
}
.cid-sTJfgg3vJX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e4e5e6;
}
.cid-sTJfgg3vJX .content-block {
  max-width: 700px;
  padding: 4rem 3rem;
}
.cid-sTJfgg3vJX .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/verbandsdigitalisierung-hybrider-verband-extended-1920x1280.jpg");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
.cid-sTJfgg3vJX .block2 {
  background: #fafafa;
  display: flex;
  justify-content: center;
}
.cid-sTJfgg3vJX p {
  margin-left: 10rem;
  max-width: 450px;
}
.cid-sTJfgg3vJX .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #47b5ed;
  z-index: 2;
  opacity: 1;
}
.cid-sTJfgg3vJX .box-title2,
.cid-sTJfgg3vJX .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-sTJfgg3vJX .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 2;
}
.cid-sTJfgg3vJX .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-sTJfgg3vJX .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-sTJfgg3vJX .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-sTJfgg3vJX .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
}
.cid-sTJfgg3vJX .col:hover .box-title2,
.cid-sTJfgg3vJX .col:hover .box-text2 {
  color: rgba(0, 0, 0, 0);
  transition-delay: 0.3s;
  opacity: 0;
}
.cid-sTJfgg3vJX .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #47b5ed;
}
.cid-sTJfgg3vJX .content1 {
  z-index: 5;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
@media (max-width: 767px) {
  .cid-sTJfgg3vJX .img-content {
    opacity: 1;
  }
  .cid-sTJfgg3vJX .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-sTJfgg3vJX .box-content {
    width: 100%;
  }
  .cid-sTJfgg3vJX .box-title2,
  .cid-sTJfgg3vJX .box-text2 {
    color: #232323 !important;
  }
  .cid-sTJfgg3vJX p {
    margin-left: 0;
  }
  .cid-sTJfgg3vJX .content-block,
  .cid-sTJfgg3vJX .content1 {
    padding: 3rem 1rem;
  }
}
.cid-sTJfgg3vJX .box-text1 {
  color: #333333;
}
.cid-sTJfgg3vJX .box-title2 {
  color: #ffffff;
}
.cid-sTJfgg3vJX .box-text2 {
  color: #ffffff;
}
.cid-sTJfgg3vJX .mbr-text,
.cid-sTJfgg3vJX .mbr-section-btn {
  color: #232323;
  text-align: right;
}
.cid-sTJfgg3vJX H2 {
  color: #232323;
  text-align: left;
}
.cid-sTJfgg3vJX H3 {
  color: #232323;
  text-align: left;
}
.cid-sTJf2ecxKF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sTJf2ecxKF .content-block {
  max-width: 700px;
  padding: 4rem 3rem;
}
.cid-sTJf2ecxKF .img-content {
  z-index: 2;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/verbandssoftware-auswahl-lsungsdschungel2-1920x1280.jpg");
  background-position: center;
  background-size: cover;
}
.cid-sTJf2ecxKF .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #dfc13c;
  z-index: 2;
  opacity: 1;
}
.cid-sTJf2ecxKF .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 2;
}
.cid-sTJf2ecxKF .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-sTJf2ecxKF .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-sTJf2ecxKF .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-sTJf2ecxKF .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
  z-index: 6;
}
.cid-sTJf2ecxKF .col:hover .box-title2,
.cid-sTJf2ecxKF .col:hover .box-text2 {
  color: rgba(0, 0, 0, 0);
  transition-delay: 0.3s;
  opacity: 0;
}
.cid-sTJf2ecxKF .box-title2,
.cid-sTJf2ecxKF .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-sTJf2ecxKF .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #dfc13c;
}
.cid-sTJf2ecxKF .content1 {
  z-index: 5;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
@media (max-width: 767px) {
  .cid-sTJf2ecxKF .img-content {
    opacity: 1;
  }
  .cid-sTJf2ecxKF .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-sTJf2ecxKF .box-content {
    width: 100%;
  }
  .cid-sTJf2ecxKF .box-title2,
  .cid-sTJf2ecxKF .box-text2 {
    color: #232323 !important;
  }
  .cid-sTJf2ecxKF .content-block,
  .cid-sTJf2ecxKF .content1 {
    padding: 3rem 1rem;
  }
}
.cid-sTJf2ecxKF .box-text1 {
  color: #333333;
  z-index: 1;
}
.cid-sTJf2ecxKF .box-title2 {
  color: #ffffff;
  z-index: 1;
  text-align: right;
}
.cid-sTJf2ecxKF .mbr-text,
.cid-sTJf2ecxKF .mbr-section-btn {
  text-align: right;
}
.cid-sTxZT1sk2Q {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sTxZT1sk2Q h2,
.cid-sTxZT1sk2Q h3,
.cid-sTxZT1sk2Q h4,
.cid-sTxZT1sk2Q p {
  margin: 0;
}
.cid-sTxZT1sk2Q .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sTxZT1sk2Q .mbr-first-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-sTxZT1sk2Q .mbr-first-section-subtitle {
  margin-bottom: 5px;
}
.cid-sTxZT1sk2Q .mbr-first-section-text {
  color: #232323;
  margin-bottom: 10px;
}
.cid-sTxZT1sk2Q .mbr-second-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-sTxZT1sk2Q .mbr-second-section-subtitle {
  margin-bottom: 5px;
}
.cid-sTxZT1sk2Q .mbr-second-section-text {
  color: #232323;
  margin-bottom: 10px;
}
.cid-sTKIXkNjAw {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sTKIXkNjAw .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sTKIXkNjAw .container {
  max-width: 1500px;
}
.cid-sTKIXkNjAw .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sTKIXkNjAw .container {
    padding: 0 4rem;
  }
}
.cid-sTKIXkNjAw .mbr-text,
.cid-sTKIXkNjAw .mbr-section-btn {
  color: #efeeee;
}
.cid-sTKIXkNjAw .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-sTKIXkNjAw .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-sTKIXkNjAw .align-left {
    text-align: center;
  }
  .cid-sTKIXkNjAw .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-sTKIXkNjAw H1 {
  text-align: left;
}
.cid-sTFekSnMoa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sTFekSnMoa .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sTFekSnMoa .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sTFekSnMoa .row {
    text-align: center;
  }
  .cid-sTFekSnMoa .row > div {
    margin: auto;
  }
  .cid-sTFekSnMoa .social-row {
    justify-content: center;
  }
}
.cid-sTFekSnMoa .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sTFekSnMoa .list {
  list-style: none;
  padding-left: 0;
  color: #e6c63b;
}
@media (max-width: 991px) {
  .cid-sTFekSnMoa .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTFekSnMoa .list {
    margin-bottom: 0rem;
  }
}
.cid-sTFekSnMoa .mbr-text {
  color: #ffffff;
}
.cid-sTFekSnMoa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sTFekSnMoa .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sTFekSnMoa div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sTFekSnMoa .copyright {
  text-align: right;
}
.cid-utVkb1aThf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-utVkb1aThf .mbr-fallback-image.disabled {
  display: none;
}
.cid-utVkb1aThf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-utVkb1aThf .row {
    flex-direction: column-reverse;
  }
  .cid-utVkb1aThf .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-utVkb1aThf .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-utVkb1aThf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-utVkb1aThf .media-content,
.cid-utVkb1aThf .mbr-figure {
  align-self: center;
}
.cid-utVkb1aThf .mbr-figure iframe {
  width: 100%;
}
.cid-utVkiiOi1A {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fff0b0;
}
.cid-utVkiiOi1A .mbr-fallback-image.disabled {
  display: none;
}
.cid-utVkiiOi1A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utVkiiOi1A .mbr-section-title,
.cid-utVkiiOi1A .mbr-text,
.cid-utVkiiOi1A .mbr-section-btn {
  text-align: center;
}
.cid-utVkiiOi1A .video-wrapper {
  margin: auto;
}
.cid-utVkiiOi1A .video-wrapper iframe {
  width: 100%;
}
.cid-sUvWJm5rWM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sUvWJm5rWM .nav-item:focus,
.cid-sUvWJm5rWM .nav-link:focus {
  outline: none;
}
.cid-sUvWJm5rWM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sUvWJm5rWM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sUvWJm5rWM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sUvWJm5rWM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sUvWJm5rWM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sUvWJm5rWM .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sUvWJm5rWM .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sUvWJm5rWM .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sUvWJm5rWM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sUvWJm5rWM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sUvWJm5rWM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sUvWJm5rWM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sUvWJm5rWM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sUvWJm5rWM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sUvWJm5rWM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sUvWJm5rWM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sUvWJm5rWM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sUvWJm5rWM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sUvWJm5rWM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sUvWJm5rWM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sUvWJm5rWM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sUvWJm5rWM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sUvWJm5rWM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sUvWJm5rWM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sUvWJm5rWM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sUvWJm5rWM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sUvWJm5rWM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sUvWJm5rWM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sUvWJm5rWM .navbar.navbar-short {
  background: #232323;
}
.cid-sUvWJm5rWM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sUvWJm5rWM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sUvWJm5rWM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sUvWJm5rWM .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sUvWJm5rWM .dropdown-item.active,
.cid-sUvWJm5rWM .dropdown-item:active {
  background-color: transparent;
  color: #e6c63b !important;
}
.cid-sUvWJm5rWM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sUvWJm5rWM .nav-dropdown .link.dropdown-toggle {
  margin: 0rem 1.3rem;
}
.cid-sUvWJm5rWM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0rem 1.3rem;
}
.cid-sUvWJm5rWM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sUvWJm5rWM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  background-color: transparent;
  margin: 0;
  left: 100%;
}
.cid-sUvWJm5rWM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sUvWJm5rWM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sUvWJm5rWM .navbar-nav {
  margin: auto;
}
.cid-sUvWJm5rWM .navbar-buttons {
  text-align: center;
}
.cid-sUvWJm5rWM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sUvWJm5rWM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-sUvWJm5rWM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sUvWJm5rWM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUvWJm5rWM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUvWJm5rWM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sUvWJm5rWM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUvWJm5rWM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sUvWJm5rWM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sUvWJm5rWM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUvWJm5rWM .navbar-dropdown {
  padding-left: 0rem;
  position: fixed;
}
.cid-sUvWJm5rWM a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sUvWJm5rWM .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sUvWJm5rWM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-sUvWJm5rWM .icons-menu span {
  font-size: 20px;
  color: #354463;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sUvWJm5rWM .navbar {
    height: 77px;
  }
  .cid-sUvWJm5rWM .navbar.opened {
    height: auto;
  }
}
.cid-sUvWJm5rWM .btn {
  border-radius: 0px;
  margin: 0 !important;
}
.cid-sUvWJm5rWM .text-btn {
  transition: transform 0.3s;
}
.cid-sUvWJm5rWM .btn:hover {
  transform: scale(0.8);
}
.cid-sUvWJm5rWM .btn:hover .text-btn {
  transform: scale(1.2);
}
.cid-sUvWJm5rWM .nav-link {
  position: relative;
  display: inline-block;
}
.cid-sUvWJm5rWM .nav-link::before {
  content: "";
  width: 0%;
  display: block;
  height: 3px;
  background: #e6c63b;
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.cid-sUvWJm5rWM .nav-link:hover::before {
  width: 100%;
}
.cid-sUvWJm5rWM .dropdown-menu > a {
  position: relative !important;
  display: inline-block;
}
.cid-sUvWJm5rWM .dropdown-menu > a:hover {
  color: #c4c4c4 !important;
}
.cid-sUvWJm5rWM .link {
  margin: 0rem 1.2rem !important;
}
.cid-sUvWJm5rWM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.7rem;
  content: "";
  pointer-events: none;
  display: inline-block;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #777;
  right: -15px;
  top: 7px;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  border: none !important;
}
.cid-sUvWJm5rWM .dropdown-menu > a::after {
  content: "";
  display: block;
  position: relative !important;
  width: 0%;
  height: 2px;
  background-color: #000000;
  margin-top: 4px !important;
  transition: width 0.3s;
  top: 83% !important;
  right: auto !important;
}
.cid-sUvWJm5rWM .dropdown-menu > a:hover::after {
  width: 100%;
}
.cid-sUvWJm5rWM .dropdown-menu::before {
  content: "";
  display: inline-block;
  border: 15px solid transparent;
  border-top: 20px solid #232323;
  position: absolute;
  top: -15px;
  left: 40px;
  transform: rotate(-90deg);
}
.cid-sUvWJm5rWM .navbar-caption {
  font-family: 'Titillium Web', sans-serif;
}
@media (max-width: 992px) {
  .cid-sUvWJm5rWM .nav-dropdown .link {
    padding: 0.5rem 0rem !important;
  }
  .cid-sUvWJm5rWM .navbar .navbar-collapse {
    padding: 1rem 0;
  }
  .cid-sUvWJm5rWM .dropdown-menu::before {
    display: none !important;
  }
  .cid-sUvWJm5rWM .btn:hover {
    background-color: #e6c63b !important;
    color: #47b5ed !important;
  }
  .cid-sUvWJm5rWM .dropdown-menu > a::after {
    display: none;
  }
  .cid-sUvWJm5rWM .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sUvWJm5rWM .nav-link::before {
    display: none;
  }
  .cid-sUvWJm5rWM .dropdown-menu > a {
    color: #354463 !important;
  }
  .cid-sUvWJm5rWM .mbr-section-btn {
    margin-top: 1.5rem;
  }
  .cid-sUvWJm5rWM .btn {
    padding: 1.8rem 4rem;
    width: 100%;
  }
  .cid-sUvWJm5rWM .dropdown-menu .dropdown-toggle {
    color: #354463 !important;
  }
  .cid-sUvWJm5rWM .nav-dropdown .dropdown-item:focus,
  .cid-sUvWJm5rWM .nav-dropdown .dropdown-item:hover {
    color: #354463 !important;
  }
}
@media (max-width: 767px) {
  .cid-sUvWJm5rWM .container-fluid {
    padding: 1rem 1rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sUvWJm5rWM .container-fluid {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sUvWJm5rWM .container-fluid {
    padding-right: 0rem;
  }
  .cid-sUvWJm5rWM .nav-dropdown .link {
    padding: 1.8rem 0rem !important;
  }
  .cid-sUvWJm5rWM .btn {
    padding: 1.8rem 6rem;
  }
  .cid-sUvWJm5rWM .btn:hover {
    background-color: #47b5ed !important;
    color: #e6c63b !important;
  }
  .cid-sUvWJm5rWM .dropdown-menu > a {
    color: #ffffff !important;
  }
  .cid-sUvWJm5rWM .dropdown-menu > a:active {
    color: #ffffff !important;
  }
  .cid-sUvWJm5rWM .dropdown-menu .dropdown-toggle {
    color: #ffffff !important;
  }
  .cid-sUvWJm5rWM .nav-dropdown .dropdown-item:focus,
  .cid-sUvWJm5rWM .nav-dropdown .dropdown-item:hover {
    color: #ffffff !important;
  }
}
.cid-sUvWJm5rWM .btn-primary {
  color: #47b5ed !important;
}
.cid-sUvWJm5rWM .btn-primary:focus {
  background-color: #ffffff !important;
}
.cid-sUvWJm5rWM .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem !important;
}
.cid-sUvWJm5rWM .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0rem;
}
.cid-sUvWJniVDC h3 {
  width: fit-content;
  position: relative;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sUvWJniVDC h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sUvWJniVDC .btn {
  margin: 0.2rem !important;
}
@media (max-width: 767px) {
  .cid-sUvWJniVDC h3 {
    margin: auto;
    margin-bottom: 1.4rem;
  }
  .cid-sUvWJniVDC h3:before {
    position: absolute;
    content: '';
    left: -60px;
    top: 0;
    margin: auto;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: currentColor;
  }
}
.cid-sUvWJniVDC H1 {
  color: #98dee8;
  text-align: left;
}
.cid-sUvWJniVDC H3 {
  text-align: left;
}
.cid-sUvWJniVDC .mbr-text,
.cid-sUvWJniVDC .mbr-section-btn {
  text-align: left;
  color: #fafafa;
}
.cid-sUwxYabfUE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-sUwxYabfUE .content-block {
  max-width: 700px;
  padding: 4rem 3rem;
}
.cid-sUwxYabfUE .img-content {
  z-index: 2;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/ffentliche-ausscreibung-vgv-uvgo-744x531.png");
  background-position: center;
  background-size: cover;
}
.cid-sUwxYabfUE .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #65c6d4;
  z-index: 2;
  opacity: 1;
}
.cid-sUwxYabfUE .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 2;
}
.cid-sUwxYabfUE .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-sUwxYabfUE .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-sUwxYabfUE .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-sUwxYabfUE .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
  z-index: 6;
}
.cid-sUwxYabfUE .col:hover .box-title2,
.cid-sUwxYabfUE .col:hover .box-text2 {
  color: rgba(0, 0, 0, 0);
  transition-delay: 0.3s;
  opacity: 0;
}
.cid-sUwxYabfUE .box-title2,
.cid-sUwxYabfUE .box-text2 {
  color: rgba(0, 0, 0, 0);
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-sUwxYabfUE .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #65c6d4;
}
.cid-sUwxYabfUE .content1 {
  z-index: 1;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
@media (max-width: 767px) {
  .cid-sUwxYabfUE .img-content {
    opacity: 1;
  }
  .cid-sUwxYabfUE .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-sUwxYabfUE .box-content {
    width: 100%;
  }
  .cid-sUwxYabfUE .box-title2,
  .cid-sUwxYabfUE .box-text2 {
    color: #232323 !important;
  }
  .cid-sUwxYabfUE .content-block,
  .cid-sUwxYabfUE .content1 {
    padding: 3rem 1rem;
  }
}
.cid-sUwxYabfUE .box-text1 {
  color: #333333;
  z-index: 1;
}
.cid-sUwxYabfUE .box-title2 {
  color: #ffffff;
  z-index: 1;
  text-align: right;
}
.cid-sUwxYabfUE .mbr-text,
.cid-sUwxYabfUE .mbr-section-btn {
  text-align: right;
}
.cid-sUwyndCm7q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e4e5e6;
}
.cid-sUwyndCm7q .content-block {
  max-width: 700px;
  padding: 4rem 3rem;
}
.cid-sUwyndCm7q .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/e-government-smart-government-smart-city-smart-country-m-1-733x400.png");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
.cid-sUwyndCm7q .block2 {
  background: #fafafa;
  display: flex;
  justify-content: center;
}
.cid-sUwyndCm7q p {
  margin-left: 10rem;
  max-width: 450px;
}
.cid-sUwyndCm7q .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #dabc3b;
  z-index: 2;
  opacity: 1;
}
.cid-sUwyndCm7q .box-title2,
.cid-sUwyndCm7q .box-text2 {
  color: rgba(0, 0, 0, 0);
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-sUwyndCm7q .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 2;
}
.cid-sUwyndCm7q .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-sUwyndCm7q .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-sUwyndCm7q .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-sUwyndCm7q .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
}
.cid-sUwyndCm7q .col:hover .box-title2,
.cid-sUwyndCm7q .col:hover .box-text2 {
  color: rgba(0, 0, 0, 0);
  transition-delay: 0.3s;
  opacity: 0;
}
.cid-sUwyndCm7q .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #dabc3b;
}
.cid-sUwyndCm7q .content1 {
  z-index: 1;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
@media (max-width: 767px) {
  .cid-sUwyndCm7q .img-content {
    opacity: 1;
  }
  .cid-sUwyndCm7q .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-sUwyndCm7q .box-content {
    width: 100%;
  }
  .cid-sUwyndCm7q .box-title2,
  .cid-sUwyndCm7q .box-text2 {
    color: #232323 !important;
  }
  .cid-sUwyndCm7q p {
    margin-left: 0;
  }
  .cid-sUwyndCm7q .content-block,
  .cid-sUwyndCm7q .content1 {
    padding: 3rem 1rem;
  }
}
.cid-sUwyndCm7q .box-text1 {
  color: #333333;
}
.cid-sUwyndCm7q .box-title2 {
  color: #ffffff;
}
.cid-sUwyndCm7q .box-text2 {
  color: #ffffff;
}
.cid-sUwyndCm7q .mbr-text,
.cid-sUwyndCm7q .mbr-section-btn {
  color: #232323;
  text-align: right;
}
.cid-sUwyndCm7q H2 {
  color: #232323;
  text-align: left;
}
.cid-sUwyndCm7q H3 {
  color: #232323;
  text-align: left;
}
.cid-sWc5qGSxCY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWc5qGSxCY h2,
.cid-sWc5qGSxCY h3,
.cid-sWc5qGSxCY h4,
.cid-sWc5qGSxCY p {
  margin: 0;
}
.cid-sWc5qGSxCY .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sWc5qGSxCY .mbr-first-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-sWc5qGSxCY .mbr-first-section-subtitle {
  margin-bottom: 5px;
}
.cid-sWc5qGSxCY .mbr-first-section-text {
  color: #232323;
  margin-bottom: 10px;
}
.cid-sWc5qGSxCY .mbr-second-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-sWc5qGSxCY .mbr-second-section-subtitle {
  margin-bottom: 5px;
}
.cid-sWc5qGSxCY .mbr-second-section-text {
  color: #232323;
  margin-bottom: 10px;
}
.cid-sUvWJr0Pl6 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sUvWJr0Pl6 .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sUvWJr0Pl6 .container {
  max-width: 1500px;
}
.cid-sUvWJr0Pl6 .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sUvWJr0Pl6 .container {
    padding: 0 4rem;
  }
}
.cid-sUvWJr0Pl6 .mbr-text,
.cid-sUvWJr0Pl6 .mbr-section-btn {
  color: #efeeee;
}
.cid-sUvWJr0Pl6 .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-sUvWJr0Pl6 .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-sUvWJr0Pl6 .align-left {
    text-align: center;
  }
  .cid-sUvWJr0Pl6 .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-sUvWJr0Pl6 H1 {
  text-align: left;
}
.cid-sUvWJrUClh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sUvWJrUClh .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sUvWJrUClh .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sUvWJrUClh .row {
    text-align: center;
  }
  .cid-sUvWJrUClh .row > div {
    margin: auto;
  }
  .cid-sUvWJrUClh .social-row {
    justify-content: center;
  }
}
.cid-sUvWJrUClh .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sUvWJrUClh .list {
  list-style: none;
  padding-left: 0;
  color: #e6c63b;
}
@media (max-width: 991px) {
  .cid-sUvWJrUClh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sUvWJrUClh .list {
    margin-bottom: 0rem;
  }
}
.cid-sUvWJrUClh .mbr-text {
  color: #ffffff;
}
.cid-sUvWJrUClh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sUvWJrUClh .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sUvWJrUClh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sUvWJrUClh .copyright {
  text-align: right;
}
.cid-sTPPD95X3u .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTPPD95X3u .nav-item:focus,
.cid-sTPPD95X3u .nav-link:focus {
  outline: none;
}
.cid-sTPPD95X3u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTPPD95X3u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sTPPD95X3u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTPPD95X3u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTPPD95X3u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTPPD95X3u .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sTPPD95X3u .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sTPPD95X3u .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sTPPD95X3u .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTPPD95X3u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTPPD95X3u .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sTPPD95X3u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTPPD95X3u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTPPD95X3u .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sTPPD95X3u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTPPD95X3u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTPPD95X3u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTPPD95X3u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTPPD95X3u .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sTPPD95X3u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTPPD95X3u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTPPD95X3u .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sTPPD95X3u .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sTPPD95X3u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTPPD95X3u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTPPD95X3u .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sTPPD95X3u .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sTPPD95X3u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTPPD95X3u .navbar.navbar-short {
  background: #232323;
}
.cid-sTPPD95X3u .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTPPD95X3u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTPPD95X3u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTPPD95X3u .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sTPPD95X3u .dropdown-item.active,
.cid-sTPPD95X3u .dropdown-item:active {
  background-color: transparent;
  color: #e6c63b !important;
}
.cid-sTPPD95X3u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTPPD95X3u .nav-dropdown .link.dropdown-toggle {
  margin: 0rem 1.3rem;
}
.cid-sTPPD95X3u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0rem 1.3rem;
}
.cid-sTPPD95X3u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sTPPD95X3u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  background-color: transparent;
  margin: 0;
  left: 100%;
}
.cid-sTPPD95X3u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTPPD95X3u ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sTPPD95X3u .navbar-nav {
  margin: auto;
}
.cid-sTPPD95X3u .navbar-buttons {
  text-align: center;
}
.cid-sTPPD95X3u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTPPD95X3u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-sTPPD95X3u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTPPD95X3u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTPPD95X3u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTPPD95X3u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTPPD95X3u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTPPD95X3u nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTPPD95X3u nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTPPD95X3u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTPPD95X3u .navbar-dropdown {
  padding-left: 0rem;
  position: fixed;
}
.cid-sTPPD95X3u a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sTPPD95X3u .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTPPD95X3u .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-sTPPD95X3u .icons-menu span {
  font-size: 20px;
  color: #354463;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sTPPD95X3u .navbar {
    height: 77px;
  }
  .cid-sTPPD95X3u .navbar.opened {
    height: auto;
  }
}
.cid-sTPPD95X3u .btn {
  border-radius: 0px;
  margin: 0 !important;
}
.cid-sTPPD95X3u .text-btn {
  transition: transform 0.3s;
}
.cid-sTPPD95X3u .btn:hover {
  transform: scale(0.8);
}
.cid-sTPPD95X3u .btn:hover .text-btn {
  transform: scale(1.2);
}
.cid-sTPPD95X3u .nav-link {
  position: relative;
  display: inline-block;
}
.cid-sTPPD95X3u .nav-link::before {
  content: "";
  width: 0%;
  display: block;
  height: 3px;
  background: #e6c63b;
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.cid-sTPPD95X3u .nav-link:hover::before {
  width: 100%;
}
.cid-sTPPD95X3u .dropdown-menu > a {
  position: relative !important;
  display: inline-block;
}
.cid-sTPPD95X3u .dropdown-menu > a:hover {
  color: #c4c4c4 !important;
}
.cid-sTPPD95X3u .link {
  margin: 0rem 1.2rem !important;
}
.cid-sTPPD95X3u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.7rem;
  content: "";
  pointer-events: none;
  display: inline-block;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #777;
  right: -15px;
  top: 7px;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  border: none !important;
}
.cid-sTPPD95X3u .dropdown-menu > a::after {
  content: "";
  display: block;
  position: relative !important;
  width: 0%;
  height: 2px;
  background-color: #000000;
  margin-top: 4px !important;
  transition: width 0.3s;
  top: 83% !important;
  right: auto !important;
}
.cid-sTPPD95X3u .dropdown-menu > a:hover::after {
  width: 100%;
}
.cid-sTPPD95X3u .dropdown-menu::before {
  content: "";
  display: inline-block;
  border: 15px solid transparent;
  border-top: 20px solid #232323;
  position: absolute;
  top: -15px;
  left: 40px;
  transform: rotate(-90deg);
}
.cid-sTPPD95X3u .navbar-caption {
  font-family: 'Titillium Web', sans-serif;
}
@media (max-width: 992px) {
  .cid-sTPPD95X3u .nav-dropdown .link {
    padding: 0.5rem 0rem !important;
  }
  .cid-sTPPD95X3u .navbar .navbar-collapse {
    padding: 1rem 0;
  }
  .cid-sTPPD95X3u .dropdown-menu::before {
    display: none !important;
  }
  .cid-sTPPD95X3u .btn:hover {
    background-color: #e6c63b !important;
    color: #47b5ed !important;
  }
  .cid-sTPPD95X3u .dropdown-menu > a::after {
    display: none;
  }
  .cid-sTPPD95X3u .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sTPPD95X3u .nav-link::before {
    display: none;
  }
  .cid-sTPPD95X3u .dropdown-menu > a {
    color: #354463 !important;
  }
  .cid-sTPPD95X3u .mbr-section-btn {
    margin-top: 1.5rem;
  }
  .cid-sTPPD95X3u .btn {
    padding: 1.8rem 4rem;
    width: 100%;
  }
  .cid-sTPPD95X3u .dropdown-menu .dropdown-toggle {
    color: #354463 !important;
  }
  .cid-sTPPD95X3u .nav-dropdown .dropdown-item:focus,
  .cid-sTPPD95X3u .nav-dropdown .dropdown-item:hover {
    color: #354463 !important;
  }
}
@media (max-width: 767px) {
  .cid-sTPPD95X3u .container-fluid {
    padding: 1rem 1rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sTPPD95X3u .container-fluid {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTPPD95X3u .container-fluid {
    padding-right: 0rem;
  }
  .cid-sTPPD95X3u .nav-dropdown .link {
    padding: 1.8rem 0rem !important;
  }
  .cid-sTPPD95X3u .btn {
    padding: 1.8rem 6rem;
  }
  .cid-sTPPD95X3u .btn:hover {
    background-color: #47b5ed !important;
    color: #e6c63b !important;
  }
  .cid-sTPPD95X3u .dropdown-menu > a {
    color: #ffffff !important;
  }
  .cid-sTPPD95X3u .dropdown-menu > a:active {
    color: #ffffff !important;
  }
  .cid-sTPPD95X3u .dropdown-menu .dropdown-toggle {
    color: #ffffff !important;
  }
  .cid-sTPPD95X3u .nav-dropdown .dropdown-item:focus,
  .cid-sTPPD95X3u .nav-dropdown .dropdown-item:hover {
    color: #ffffff !important;
  }
}
.cid-sTPPD95X3u .btn-primary {
  color: #47b5ed !important;
}
.cid-sTPPD95X3u .btn-primary:focus {
  background-color: #ffffff !important;
}
.cid-sTPPD95X3u .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem !important;
}
.cid-sTPPD95X3u .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0rem;
}
.cid-sTPPDctxpz {
  overflow: hidden !important;
  background-image: url("../../../assets/images/factory-1771x971.jpg");
}
.cid-sTPPDctxpz .animated-element {
  color: #efefef;
}
.cid-sTPPDctxpz .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTPPDctxpz .mbr-section-subtitle {
  color: #b6e7fe;
}
@media (min-width: 992px) {
  .cid-sTPPDctxpz .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sTPPDctxpz .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-sTPPDctxpz .img-block {
    padding-bottom: 2rem;
  }
}
.cid-sVJq3pe2w0 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #fafafa;
}
.cid-sVJq3pe2w0 *:focus {
  outline: none;
}
.cid-sVJq3pe2w0 .form-group {
  margin-bottom: 2rem;
}
.cid-sVJq3pe2w0 .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #000000;
  color: #000000;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-sVJq3pe2w0 .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-sVJq3pe2w0 .form-control::-webkit-input-placeholder {
  color: #000000;
}
.cid-sVJq3pe2w0 .form-control::-moz-placeholder {
  color: #000000;
}
.cid-sVJq3pe2w0 .form-control:-ms-input-placeholder {
  color: #000000;
}
.cid-sVJq3pe2w0 .form-control:-moz-placeholder {
  color: #000000;
}
.cid-sVJq3pe2w0 input.form-control {
  padding: 1px 0;
}
.cid-sVJq3pe2w0 .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-sVJq3pe2w0 .soc-item .socicon {
  font-size: 1.5rem;
  color: #767676;
  opacity: 1;
}
.cid-sVJq3pe2w0 .soc-item .socicon:hover {
  opacity: .5;
}
.cid-sVJq3pe2w0 .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-sVJq3pe2w0 .first-column,
  .cid-sVJq3pe2w0 .form-1 {
    text-align: center;
  }
}
.cid-sWiEmxmbvz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
.cid-sWiEmxmbvz .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sWiEmxmbvz .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-sWiEmxmbvz .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
  transition: all 1s;
}
.cid-sWiEmxmbvz .row .img-item img:hover {
  transform: scale(1.1);
}
.cid-sTPPDhsfaM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sTPPDhsfaM .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sTPPDhsfaM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sTPPDhsfaM .row {
    text-align: center;
  }
  .cid-sTPPDhsfaM .row > div {
    margin: auto;
  }
  .cid-sTPPDhsfaM .social-row {
    justify-content: center;
  }
}
.cid-sTPPDhsfaM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sTPPDhsfaM .list {
  list-style: none;
  padding-left: 0;
  color: #e6c63b;
}
@media (max-width: 991px) {
  .cid-sTPPDhsfaM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTPPDhsfaM .list {
    margin-bottom: 0rem;
  }
}
.cid-sTPPDhsfaM .mbr-text {
  color: #ffffff;
}
.cid-sTPPDhsfaM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sTPPDhsfaM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sTPPDhsfaM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sTPPDhsfaM .copyright {
  text-align: right;
}
.cid-sTL3Q511xK .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTL3Q511xK .nav-item:focus,
.cid-sTL3Q511xK .nav-link:focus {
  outline: none;
}
.cid-sTL3Q511xK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTL3Q511xK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sTL3Q511xK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTL3Q511xK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTL3Q511xK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTL3Q511xK .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sTL3Q511xK .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sTL3Q511xK .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sTL3Q511xK .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTL3Q511xK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTL3Q511xK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sTL3Q511xK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTL3Q511xK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTL3Q511xK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sTL3Q511xK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTL3Q511xK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTL3Q511xK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTL3Q511xK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTL3Q511xK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sTL3Q511xK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTL3Q511xK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTL3Q511xK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sTL3Q511xK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sTL3Q511xK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTL3Q511xK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTL3Q511xK .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sTL3Q511xK .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sTL3Q511xK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTL3Q511xK .navbar.navbar-short {
  background: #232323;
}
.cid-sTL3Q511xK .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTL3Q511xK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTL3Q511xK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTL3Q511xK .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sTL3Q511xK .dropdown-item.active,
.cid-sTL3Q511xK .dropdown-item:active {
  background-color: transparent;
  color: #e6c63b !important;
}
.cid-sTL3Q511xK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTL3Q511xK .nav-dropdown .link.dropdown-toggle {
  margin: 0rem 1.3rem;
}
.cid-sTL3Q511xK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0rem 1.3rem;
}
.cid-sTL3Q511xK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sTL3Q511xK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  background-color: transparent;
  margin: 0;
  left: 100%;
}
.cid-sTL3Q511xK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTL3Q511xK ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sTL3Q511xK .navbar-nav {
  margin: auto;
}
.cid-sTL3Q511xK .navbar-buttons {
  text-align: center;
}
.cid-sTL3Q511xK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTL3Q511xK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-sTL3Q511xK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTL3Q511xK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTL3Q511xK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTL3Q511xK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTL3Q511xK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTL3Q511xK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTL3Q511xK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTL3Q511xK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTL3Q511xK .navbar-dropdown {
  padding-left: 0rem;
  position: fixed;
}
.cid-sTL3Q511xK a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sTL3Q511xK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTL3Q511xK .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-sTL3Q511xK .icons-menu span {
  font-size: 20px;
  color: #354463;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sTL3Q511xK .navbar {
    height: 77px;
  }
  .cid-sTL3Q511xK .navbar.opened {
    height: auto;
  }
}
.cid-sTL3Q511xK .btn {
  border-radius: 0px;
  margin: 0 !important;
}
.cid-sTL3Q511xK .text-btn {
  transition: transform 0.3s;
}
.cid-sTL3Q511xK .btn:hover {
  transform: scale(0.8);
}
.cid-sTL3Q511xK .btn:hover .text-btn {
  transform: scale(1.2);
}
.cid-sTL3Q511xK .nav-link {
  position: relative;
  display: inline-block;
}
.cid-sTL3Q511xK .nav-link::before {
  content: "";
  width: 0%;
  display: block;
  height: 3px;
  background: #e6c63b;
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.cid-sTL3Q511xK .nav-link:hover::before {
  width: 100%;
}
.cid-sTL3Q511xK .dropdown-menu > a {
  position: relative !important;
  display: inline-block;
}
.cid-sTL3Q511xK .dropdown-menu > a:hover {
  color: #c4c4c4 !important;
}
.cid-sTL3Q511xK .link {
  margin: 0rem 1.2rem !important;
}
.cid-sTL3Q511xK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.7rem;
  content: "";
  pointer-events: none;
  display: inline-block;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #777;
  right: -15px;
  top: 7px;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  border: none !important;
}
.cid-sTL3Q511xK .dropdown-menu > a::after {
  content: "";
  display: block;
  position: relative !important;
  width: 0%;
  height: 2px;
  background-color: #000000;
  margin-top: 4px !important;
  transition: width 0.3s;
  top: 83% !important;
  right: auto !important;
}
.cid-sTL3Q511xK .dropdown-menu > a:hover::after {
  width: 100%;
}
.cid-sTL3Q511xK .dropdown-menu::before {
  content: "";
  display: inline-block;
  border: 15px solid transparent;
  border-top: 20px solid #232323;
  position: absolute;
  top: -15px;
  left: 40px;
  transform: rotate(-90deg);
}
.cid-sTL3Q511xK .navbar-caption {
  font-family: 'Titillium Web', sans-serif;
}
@media (max-width: 992px) {
  .cid-sTL3Q511xK .nav-dropdown .link {
    padding: 0.5rem 0rem !important;
  }
  .cid-sTL3Q511xK .navbar .navbar-collapse {
    padding: 1rem 0;
  }
  .cid-sTL3Q511xK .dropdown-menu::before {
    display: none !important;
  }
  .cid-sTL3Q511xK .btn:hover {
    background-color: #e6c63b !important;
    color: #47b5ed !important;
  }
  .cid-sTL3Q511xK .dropdown-menu > a::after {
    display: none;
  }
  .cid-sTL3Q511xK .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sTL3Q511xK .nav-link::before {
    display: none;
  }
  .cid-sTL3Q511xK .dropdown-menu > a {
    color: #354463 !important;
  }
  .cid-sTL3Q511xK .mbr-section-btn {
    margin-top: 1.5rem;
  }
  .cid-sTL3Q511xK .btn {
    padding: 1.8rem 4rem;
    width: 100%;
  }
  .cid-sTL3Q511xK .dropdown-menu .dropdown-toggle {
    color: #354463 !important;
  }
  .cid-sTL3Q511xK .nav-dropdown .dropdown-item:focus,
  .cid-sTL3Q511xK .nav-dropdown .dropdown-item:hover {
    color: #354463 !important;
  }
}
@media (max-width: 767px) {
  .cid-sTL3Q511xK .container-fluid {
    padding: 1rem 1rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sTL3Q511xK .container-fluid {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTL3Q511xK .container-fluid {
    padding-right: 0rem;
  }
  .cid-sTL3Q511xK .nav-dropdown .link {
    padding: 1.8rem 0rem !important;
  }
  .cid-sTL3Q511xK .btn {
    padding: 1.8rem 6rem;
  }
  .cid-sTL3Q511xK .btn:hover {
    background-color: #47b5ed !important;
    color: #e6c63b !important;
  }
  .cid-sTL3Q511xK .dropdown-menu > a {
    color: #ffffff !important;
  }
  .cid-sTL3Q511xK .dropdown-menu > a:active {
    color: #ffffff !important;
  }
  .cid-sTL3Q511xK .dropdown-menu .dropdown-toggle {
    color: #ffffff !important;
  }
  .cid-sTL3Q511xK .nav-dropdown .dropdown-item:focus,
  .cid-sTL3Q511xK .nav-dropdown .dropdown-item:hover {
    color: #ffffff !important;
  }
}
.cid-sTL3Q511xK .btn-primary {
  color: #47b5ed !important;
}
.cid-sTL3Q511xK .btn-primary:focus {
  background-color: #ffffff !important;
}
.cid-sTL3Q511xK .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem !important;
}
.cid-sTL3Q511xK .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0rem;
}
.cid-sUvJtI6fyQ {
  overflow: hidden !important;
  background-image: url("../../../assets/images/digitalisierung-publicsector-verbaende-kmu-1499x800.jpg");
}
.cid-sUvJtI6fyQ .animated-element {
  color: #efefef;
}
.cid-sUvJtI6fyQ .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sUvJtI6fyQ .mbr-section-subtitle {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sUvJtI6fyQ .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sUvJtI6fyQ .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-sUvJtI6fyQ .img-block {
    padding-bottom: 2rem;
  }
}
.cid-sVJrwMsiez {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sVJrwMsiez h2,
.cid-sVJrwMsiez h3,
.cid-sVJrwMsiez h4,
.cid-sVJrwMsiez p {
  margin: 0;
}
.cid-sVJrwMsiez .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sVJrwMsiez .mbr-first-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-sVJrwMsiez .mbr-first-section-subtitle {
  margin-bottom: 5px;
}
.cid-sVJrwMsiez .mbr-first-section-text {
  color: #232323;
  margin-bottom: 10px;
}
.cid-sVJrwMsiez .mbr-second-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-sVJrwMsiez .mbr-second-section-subtitle {
  margin-bottom: 5px;
}
.cid-sVJrwMsiez .mbr-second-section-text {
  color: #232323;
  margin-bottom: 10px;
}
.cid-sUeoQsUtW9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUeoQsUtW9 h2,
.cid-sUeoQsUtW9 h3,
.cid-sUeoQsUtW9 h4,
.cid-sUeoQsUtW9 h5 {
  margin: 0;
}
.cid-sUeoQsUtW9 .container-fluid {
  padding-left: 8%;
  padding-right: 8%;
}
@media (max-width: 680px) {
  .cid-sUeoQsUtW9 .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sUeoQsUtW9 .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .cid-sUeoQsUtW9 .mbr-section-head {
    padding: 0 35px;
  }
}
.cid-sUeoQsUtW9 .mbr-section-title {
  color: #000000;
  text-align: center;
  margin: 0;
}
.cid-sUeoQsUtW9 .mbr-section-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}
.cid-sUeoQsUtW9 .item-container {
  max-width: 1620px;
  display: flex;
  flex-wrap: wrap;
}
.cid-sUeoQsUtW9 .item {
  padding: 0 40px;
  margin-bottom: 30px;
  width: 16.66667%;
  transition: opacity 0.32s ease-out, transform 0.29s ease-out;
}
@media (max-width: 1440px) {
  .cid-sUeoQsUtW9 .item {
    padding: 0 35px;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .cid-sUeoQsUtW9 .item {
    width: 20%;
  }
}
@media (min-width: 681px) and (max-width: 1024px) {
  .cid-sUeoQsUtW9 .item {
    width: 33.33333%;
  }
}
@media (max-width: 680px) {
  .cid-sUeoQsUtW9 .item {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-sUeoQsUtW9 .item-image {
  width: 100%;
}
.cid-sUeoQsUtW9 img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
}
.cid-sUeoQsUtW9 .mbr-card-title {
  color: #fafafa;
  text-align: center;
  margin: -5px 0 14px;
}
.cid-sUeoQsUtW9 .mbr-card-title:hover {
  color: #6c6a6a;
}
.cid-sUeoQsUtW9 h3 {
  margin: 0;
}
.cid-sUeoQsUtW9 .mbr-card-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
  margin-bottom: 2px;
}
.cid-sUeoQsUtW9 .item-caption {
  padding: 16px 0 8px;
  background: transparent;
  background: #232323;
}
.cid-sUeoQsUtW9 .item-caption {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.32s ease-out, transform 0.29s ease-out;
}
.cid-sUeoQsUtW9 .item:hover {
  cursor: pointer;
}
.cid-sUeoQsUtW9 .item:hover .item-caption {
  opacity: 1;
  transform: translateY(0);
}
.cid-sWorPk1E5K {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f2f2ef;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cid-sWorPk1E5K .col-md-6 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-sWorPk1E5K .mbr-section-head {
    padding: 0;
  }
}
.cid-sWorPk1E5K .people {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-sWorPk1E5K .people {
    padding: 0;
  }
}
.cid-sWorPk1E5K .mbr-section-title {
  color: #000000;
  margin: 0;
  text-align: center;
}
.cid-sWorPk1E5K .mbr-section-subtitle {
  color: #232323;
  margin: 0;
}
.cid-sWorPk1E5K .mbr-text {
  color: #6b6b6b;
  width: 362px;
  max-width: 362px;
  margin: 10px auto;
}
@media (max-width: 400px) {
  .cid-sWorPk1E5K .mbr-text {
    width: 100%;
  }
}
.cid-sWorPk1E5K .item-name {
  color: #000000;
  margin: 0;
}
.cid-sWorPk1E5K h3 {
  margin: 0;
}
.cid-sWorPk1E5K .occupation {
  color: #bbbbbb;
  margin: 0;
}
.cid-sWorPk1E5K .item {
  margin-bottom: 50px;
  transition: all 1s ease-out;
}
@media (max-width: 767px) {
  .cid-sWorPk1E5K .item {
    margin-bottom: 80px;
  }
}
.cid-sWorPk1E5K .item-wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .cid-sWorPk1E5K .item-wrapper {
    flex-direction: column;
  }
}
.cid-sWorPk1E5K .item-caption {
  width: 50%;
  padding-left: 30px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-sWorPk1E5K .item-caption {
    width: 100%;
    padding-left: 0;
  }
}
.cid-sWorPk1E5K .top {
  padding-top: 16px;
}
.cid-sWorPk1E5K .socials-wrap {
  margin-bottom: 5px;
}
.cid-sWorPk1E5K .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.cid-sWorPk1E5K .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 767px) {
  .cid-sWorPk1E5K .socials p {
    margin-right: 10px;
    margin-bottom: 5px;
  }
}
.cid-sWorPk1E5K .socials-item .link {
  color: #000000;
}
.cid-sWorPk1E5K .item-img {
  width: 50%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sWorPk1E5K .item-img {
    width: 100%;
    height: 100%;
  }
}
.cid-sWorPk1E5K .item-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-out;
  --qodef-gradient-color-1: rgba(248, 117, 117, 0.8);
  --qodef-gradient-color-2: rgba(255, 160, 160, 0.44);
  --qodef-gradient-color-3: rgba(254, 216, 255, 0);
  --qodef-gradient-color-4: #b1d2fe;
  --qodef-gradient-color-5: rgba(230, 255, 250, 0);
  --qodef-gradient-color-6: #d8cafe;
  background: radial-gradient(105.68% 45.69% at 92.95% 50%, var(--qodef-gradient-color-1) 0, var(--qodef-gradient-color-2) 53.91%, var(--qodef-gradient-color-3) 100%), radial-gradient(103.18% 103.18% at 90.11% 102.39%, var(--qodef-gradient-color-4) 0, var(--qodef-gradient-color-5) 100%), radial-gradient(90.45% 90.45% at 87.84% 9.55%, var(--qodef-gradient-color-5) 0, rgba(254, 219, 246, 0) 100%), linear-gradient(135.66deg, var(--qodef-gradient-color-6) 14.89%, var(--qodef-gradient-color-6) 74.33%);
  z-index: 1;
  pointer-events: none;
}
.cid-sWorPk1E5K .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sWorPk1E5K .item:hover {
  cursor: pointer;
}
.cid-sWorPk1E5K .item:hover .item-img::before {
  opacity: 0.7;
}
.cid-sWorPk1E5K .mbr-card-text {
  color: #232323;
}
.cid-sVJrsA2NhE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f2ef;
}
.cid-sVJrsA2NhE .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-sVJrsA2NhE .mbr-section-title,
.cid-sVJrsA2NhE .mbr-section-subtitle {
  text-align: center;
}
.cid-sVJrsA2NhE .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sVJrsA2NhE .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sVJrsA2NhE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sVJrsA2NhE .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sVJrsA2NhE .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sVJrsA2NhE .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sVJrsA2NhE .mbr-section-title {
  text-align: center;
}
.cid-sVJrmwfDux {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sVJrmwfDux .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
  position: relative;
  margin-bottom: 3rem;
}
.cid-sVJrmwfDux .item .icon-wrap {
  text-align: center;
}
.cid-sVJrmwfDux .item::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 38px;
  left: 50%;
  top: 97%;
  color: #e6c63b;
  transform: translate(-50%, 0);
}
.cid-sVJrmwfDux .item:last-child:before {
  display: none;
}
.cid-sVJrmwfDux .item.last::before {
  display: none;
}
.cid-sVJrmwfDux .icon-box {
  background: #e6c63b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-sVJrmwfDux .text-box {
  text-align: center;
}
.cid-sVJrmwfDux span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
@media (max-width: 991px) {
  .cid-sVJrmwfDux .card {
    margin-bottom: 2rem;
  }
  .cid-sVJrmwfDux .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sVJrmwfDux .mbr-text,
.cid-sVJrmwfDux .mbr-section-btn {
  text-align: center;
}
.cid-sTL3Qc4RVt {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sTL3Qc4RVt .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sTL3Qc4RVt .container {
  max-width: 1500px;
}
.cid-sTL3Qc4RVt .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sTL3Qc4RVt .container {
    padding: 0 4rem;
  }
}
.cid-sTL3Qc4RVt .mbr-text,
.cid-sTL3Qc4RVt .mbr-section-btn {
  color: #efeeee;
}
.cid-sTL3Qc4RVt .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-sTL3Qc4RVt .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-sTL3Qc4RVt .align-left {
    text-align: center;
  }
  .cid-sTL3Qc4RVt .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-sTL3Qc4RVt H1 {
  text-align: left;
}
.cid-sTL3QcwCtY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sTL3QcwCtY .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sTL3QcwCtY .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sTL3QcwCtY .row {
    text-align: center;
  }
  .cid-sTL3QcwCtY .row > div {
    margin: auto;
  }
  .cid-sTL3QcwCtY .social-row {
    justify-content: center;
  }
}
.cid-sTL3QcwCtY .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sTL3QcwCtY .list {
  list-style: none;
  padding-left: 0;
  color: #e6c63b;
}
@media (max-width: 991px) {
  .cid-sTL3QcwCtY .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTL3QcwCtY .list {
    margin-bottom: 0rem;
  }
}
.cid-sTL3QcwCtY .mbr-text {
  color: #ffffff;
}
.cid-sTL3QcwCtY .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sTL3QcwCtY .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sTL3QcwCtY div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sTL3QcwCtY .copyright {
  text-align: right;
}
.cid-sTQDFuZK9W .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTQDFuZK9W .nav-item:focus,
.cid-sTQDFuZK9W .nav-link:focus {
  outline: none;
}
.cid-sTQDFuZK9W .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTQDFuZK9W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sTQDFuZK9W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTQDFuZK9W .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTQDFuZK9W .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTQDFuZK9W .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sTQDFuZK9W .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sTQDFuZK9W .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sTQDFuZK9W .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sTQDFuZK9W .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sTQDFuZK9W .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sTQDFuZK9W .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sTQDFuZK9W .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sTQDFuZK9W .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sTQDFuZK9W .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sTQDFuZK9W .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sTQDFuZK9W .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sTQDFuZK9W .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sTQDFuZK9W .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sTQDFuZK9W .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sTQDFuZK9W .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sTQDFuZK9W .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sTQDFuZK9W .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sTQDFuZK9W .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sTQDFuZK9W .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sTQDFuZK9W .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sTQDFuZK9W .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sTQDFuZK9W .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sTQDFuZK9W .navbar.navbar-short {
  background: #232323;
}
.cid-sTQDFuZK9W .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sTQDFuZK9W .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sTQDFuZK9W .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sTQDFuZK9W .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sTQDFuZK9W .dropdown-item.active,
.cid-sTQDFuZK9W .dropdown-item:active {
  background-color: transparent;
  color: #e6c63b !important;
}
.cid-sTQDFuZK9W .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sTQDFuZK9W .nav-dropdown .link.dropdown-toggle {
  margin: 0rem 1.3rem;
}
.cid-sTQDFuZK9W .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0rem 1.3rem;
}
.cid-sTQDFuZK9W .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sTQDFuZK9W .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  background-color: transparent;
  margin: 0;
  left: 100%;
}
.cid-sTQDFuZK9W .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTQDFuZK9W ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sTQDFuZK9W .navbar-nav {
  margin: auto;
}
.cid-sTQDFuZK9W .navbar-buttons {
  text-align: center;
}
.cid-sTQDFuZK9W button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTQDFuZK9W button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e6c63b;
}
.cid-sTQDFuZK9W button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTQDFuZK9W button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTQDFuZK9W button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTQDFuZK9W button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTQDFuZK9W nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTQDFuZK9W nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTQDFuZK9W nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTQDFuZK9W nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTQDFuZK9W .navbar-dropdown {
  padding-left: 0rem;
  position: fixed;
}
.cid-sTQDFuZK9W a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sTQDFuZK9W .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sTQDFuZK9W .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-sTQDFuZK9W .icons-menu span {
  font-size: 20px;
  color: #354463;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sTQDFuZK9W .navbar {
    height: 77px;
  }
  .cid-sTQDFuZK9W .navbar.opened {
    height: auto;
  }
}
.cid-sTQDFuZK9W .btn {
  border-radius: 0px;
  margin: 0 !important;
}
.cid-sTQDFuZK9W .text-btn {
  transition: transform 0.3s;
}
.cid-sTQDFuZK9W .btn:hover {
  transform: scale(0.8);
}
.cid-sTQDFuZK9W .btn:hover .text-btn {
  transform: scale(1.2);
}
.cid-sTQDFuZK9W .nav-link {
  position: relative;
  display: inline-block;
}
.cid-sTQDFuZK9W .nav-link::before {
  content: "";
  width: 0%;
  display: block;
  height: 3px;
  background: #e6c63b;
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.cid-sTQDFuZK9W .nav-link:hover::before {
  width: 100%;
}
.cid-sTQDFuZK9W .dropdown-menu > a {
  position: relative !important;
  display: inline-block;
}
.cid-sTQDFuZK9W .dropdown-menu > a:hover {
  color: #c4c4c4 !important;
}
.cid-sTQDFuZK9W .link {
  margin: 0rem 1.2rem !important;
}
.cid-sTQDFuZK9W .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.7rem;
  content: "";
  pointer-events: none;
  display: inline-block;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #777;
  right: -15px;
  top: 7px;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  border: none !important;
}
.cid-sTQDFuZK9W .dropdown-menu > a::after {
  content: "";
  display: block;
  position: relative !important;
  width: 0%;
  height: 2px;
  background-color: #000000;
  margin-top: 4px !important;
  transition: width 0.3s;
  top: 83% !important;
  right: auto !important;
}
.cid-sTQDFuZK9W .dropdown-menu > a:hover::after {
  width: 100%;
}
.cid-sTQDFuZK9W .dropdown-menu::before {
  content: "";
  display: inline-block;
  border: 15px solid transparent;
  border-top: 20px solid #232323;
  position: absolute;
  top: -15px;
  left: 40px;
  transform: rotate(-90deg);
}
.cid-sTQDFuZK9W .navbar-caption {
  font-family: 'Titillium Web', sans-serif;
}
@media (max-width: 992px) {
  .cid-sTQDFuZK9W .nav-dropdown .link {
    padding: 0.5rem 0rem !important;
  }
  .cid-sTQDFuZK9W .navbar .navbar-collapse {
    padding: 1rem 0;
  }
  .cid-sTQDFuZK9W .dropdown-menu::before {
    display: none !important;
  }
  .cid-sTQDFuZK9W .btn:hover {
    background-color: #e6c63b !important;
    color: #47b5ed !important;
  }
  .cid-sTQDFuZK9W .dropdown-menu > a::after {
    display: none;
  }
  .cid-sTQDFuZK9W .navbar .dropdown.open > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sTQDFuZK9W .nav-link::before {
    display: none;
  }
  .cid-sTQDFuZK9W .dropdown-menu > a {
    color: #354463 !important;
  }
  .cid-sTQDFuZK9W .mbr-section-btn {
    margin-top: 1.5rem;
  }
  .cid-sTQDFuZK9W .btn {
    padding: 1.8rem 4rem;
    width: 100%;
  }
  .cid-sTQDFuZK9W .dropdown-menu .dropdown-toggle {
    color: #354463 !important;
  }
  .cid-sTQDFuZK9W .nav-dropdown .dropdown-item:focus,
  .cid-sTQDFuZK9W .nav-dropdown .dropdown-item:hover {
    color: #354463 !important;
  }
}
@media (max-width: 767px) {
  .cid-sTQDFuZK9W .container-fluid {
    padding: 1rem 1rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sTQDFuZK9W .container-fluid {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTQDFuZK9W .container-fluid {
    padding-right: 0rem;
  }
  .cid-sTQDFuZK9W .nav-dropdown .link {
    padding: 1.8rem 0rem !important;
  }
  .cid-sTQDFuZK9W .btn {
    padding: 1.8rem 6rem;
  }
  .cid-sTQDFuZK9W .btn:hover {
    background-color: #47b5ed !important;
    color: #e6c63b !important;
  }
  .cid-sTQDFuZK9W .dropdown-menu > a {
    color: #ffffff !important;
  }
  .cid-sTQDFuZK9W .dropdown-menu > a:active {
    color: #ffffff !important;
  }
  .cid-sTQDFuZK9W .dropdown-menu .dropdown-toggle {
    color: #ffffff !important;
  }
  .cid-sTQDFuZK9W .nav-dropdown .dropdown-item:focus,
  .cid-sTQDFuZK9W .nav-dropdown .dropdown-item:hover {
    color: #ffffff !important;
  }
}
.cid-sTQDFuZK9W .btn-primary {
  color: #47b5ed !important;
}
.cid-sTQDFuZK9W .btn-primary:focus {
  background-color: #ffffff !important;
}
.cid-sTQDFuZK9W .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem !important;
}
.cid-sTQDFuZK9W .navbar-dropdown.navbar-short .navbar-brand {
  padding: 0rem;
}
.cid-sWctk8BwDZ {
  background-image: url("../../../assets/images/imag0746-2000x1333-26-2000x1333.jpg");
}
.cid-sWctk8BwDZ h3 {
  width: fit-content;
  position: relative;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sWctk8BwDZ h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sWctk8BwDZ .btn {
  margin: 0.2rem !important;
}
@media (max-width: 767px) {
  .cid-sWctk8BwDZ h3 {
    margin: auto;
    margin-bottom: 1.4rem;
  }
  .cid-sWctk8BwDZ h3:before {
    position: absolute;
    content: '';
    left: -60px;
    top: 0;
    margin: auto;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: currentColor;
  }
}
.cid-sWctk8BwDZ H1 {
  color: #fafafa;
  text-align: right;
}
.cid-sWctk8BwDZ H3 {
  text-align: left;
}
.cid-sWctk8BwDZ .mbr-text,
.cid-sWctk8BwDZ .mbr-section-btn {
  text-align: right;
}
.cid-sTQDFwO5PT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sTQDFwO5PT h2,
.cid-sTQDFwO5PT h3,
.cid-sTQDFwO5PT h4,
.cid-sTQDFwO5PT p {
  margin: 0;
}
.cid-sTQDFwO5PT .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sTQDFwO5PT .mbr-first-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-sTQDFwO5PT .mbr-first-section-subtitle {
  margin-bottom: 5px;
}
.cid-sTQDFwO5PT .mbr-first-section-text {
  color: #232323;
  margin-bottom: 10px;
}
.cid-sTQDFwO5PT .mbr-second-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-sTQDFwO5PT .mbr-second-section-subtitle {
  margin-bottom: 5px;
}
.cid-sTQDFwO5PT .mbr-second-section-text {
  color: #232323;
  margin-bottom: 10px;
}
.cid-sTQDFxkOus {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/factory-2000x1169-96-2000x1169.jpg");
}
.cid-sTQDFxkOus .content-block {
  max-width: 350px;
  padding: 4rem 3rem;
  z-index: 1;
  position: relative;
}
.cid-sTQDFxkOus .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/20200706-124419-2000x1500.jpeg");
  background-position: center;
  background-size: cover;
  z-index: 3;
}
.cid-sTQDFxkOus .block2 {
  background-image: url("../../../assets/images/xo-xpointo-verbaende-digital-thomas-klauss-400x480.jpg");
}
.cid-sTQDFxkOus .block2:hover .block2-over {
  opacity: 0;
}
.cid-sTQDFxkOus .block1 {
  background-image: url("../../../assets/images/transparency-1280x1280.png");
}
.cid-sTQDFxkOus .block1:hover .block1-over {
  opacity: 0;
}
.cid-sTQDFxkOus .block1-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #6db2d5;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-sTQDFxkOus .block2-over {
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  background-color: #e6c63b;
  opactiy: 1;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-sTQDFxkOus .overlay {
  position: absolute;
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0%;
  background: #e6c63b;
  z-index: 1;
  opacity: 1;
}
.cid-sTQDFxkOus .overlay-wrapper {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  transition-delay: 0.3s;
  top: 0;
  z-index: 4;
}
.cid-sTQDFxkOus .col {
  padding: 0;
  display: flex;
  position: relative;
  min-height: 400px;
  justify-content: flex-end;
}
.cid-sTQDFxkOus .col:hover .overlay-wrapper {
  width: 100%;
  right: 0;
  transition-delay: 0s;
}
.cid-sTQDFxkOus .col:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-sTQDFxkOus .col:hover .img-content {
  opacity: 1;
  width: 100%;
  transition-delay: 0.3s;
}
.cid-sTQDFxkOus .col:hover .box-title2,
.cid-sTQDFxkOus .col:hover .box-text2 {
  color: #ffffff;
  transition-delay: 0.3s;
}
.cid-sTQDFxkOus .box-title2,
.cid-sTQDFxkOus .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-sTQDFxkOus .box-content {
  width: 50%;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: #e6c63b;
}
.cid-sTQDFxkOus .content1 {
  z-index: 1;
  max-width: 450px;
  position: relative;
  transition: all 0.3s;
  transition-delay: 0.3s;
  padding: 4rem 3rem;
}
.cid-sTQDFxkOus .content2 {
  z-index: 1;
  max-width: 450px;
  margin-bottom: -1rem;
  position: relative;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sTQDFxkOus .img-content {
    opacity: 1;
  }
  .cid-sTQDFxkOus .overlay-wrapper {
    width: 100%;
    right: 0;
  }
  .cid-sTQDFxkOus .box-content {
    width: 100%;
  }
  .cid-sTQDFxkOus .box-title2,
  .cid-sTQDFxkOus .box-text2 {
    color: #ffffff !important;
  }
  .cid-sTQDFxkOus .content-block,
  .cid-sTQDFxkOus .content1 {
    padding: 3rem 1rem;
  }
}
.cid-sTQDFxkOus .box-text1 {
  color: #333333;
  z-index: 1;
}
.cid-sTQDFxkOus .box-title2 {
  color: #ffffff;
}
.cid-sTQDFxkOus .block1-text,
.cid-sTQDFxkOus .mbr-section-btn {
  color: #ffffff;
  z-index: -1;
  text-align: left;
}
.cid-sTQDFxkOus .block2-text,
.cid-sTQDFxkOus .mbr-section-btn {
  color: #dabc3b;
}
.cid-sTQDFxkOus .block2-title {
  color: #dabc3b;
}
.cid-sTQDFxkOus .block1-subtitle {
  color: #ffffff;
}
.cid-sTQDFxkOus .block2-subtitle {
  color: #ffffff;
}
.cid-sTQDFxkOus .block1-title {
  color: #ffffff;
}
.cid-sWcfNAy4t5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sWcfNAy4t5 h2,
.cid-sWcfNAy4t5 h3,
.cid-sWcfNAy4t5 h4,
.cid-sWcfNAy4t5 p {
  margin: 0;
}
.cid-sWcfNAy4t5 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sWcfNAy4t5 .mbr-first-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-sWcfNAy4t5 .mbr-first-section-subtitle {
  margin-bottom: 5px;
}
.cid-sWcfNAy4t5 .mbr-first-section-text {
  color: #232323;
  margin-bottom: 10px;
}
.cid-sWcfNAy4t5 .mbr-second-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-sWcfNAy4t5 .mbr-second-section-subtitle {
  margin-bottom: 5px;
}
.cid-sWcfNAy4t5 .mbr-second-section-text {
  color: #232323;
  margin-bottom: 10px;
}
.cid-sTQDFyT1mh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f2ef;
}
.cid-sTQDFyT1mh .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sTQDFyT1mh .mbr-text {
  text-align: left;
}
.cid-sTQDFziV4q {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sTQDFziV4q .row {
  justify-content: space-between;
  padding: 0 1rem;
}
.cid-sTQDFziV4q .container {
  max-width: 1500px;
}
.cid-sTQDFziV4q .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-sTQDFziV4q .container {
    padding: 0 4rem;
  }
}
.cid-sTQDFziV4q .mbr-text,
.cid-sTQDFziV4q .mbr-section-btn {
  color: #efeeee;
}
.cid-sTQDFziV4q .btn {
  width: -webkit-fill-available;
  margin: 0.4rem !important;
}
.cid-sTQDFziV4q .pt-5 {
  padding-top: 4rem !important;
}
@media (max-width: 922px) {
  .cid-sTQDFziV4q .align-left {
    text-align: center;
  }
  .cid-sTQDFziV4q .row {
    justify-content: center;
    padding: 0rem;
  }
}
.cid-sTQDFziV4q H1 {
  text-align: left;
}
.cid-sTQDFzKOGu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sTQDFzKOGu .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sTQDFzKOGu .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sTQDFzKOGu .row {
    text-align: center;
  }
  .cid-sTQDFzKOGu .row > div {
    margin: auto;
  }
  .cid-sTQDFzKOGu .social-row {
    justify-content: center;
  }
}
.cid-sTQDFzKOGu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sTQDFzKOGu .list {
  list-style: none;
  padding-left: 0;
  color: #e6c63b;
}
@media (max-width: 991px) {
  .cid-sTQDFzKOGu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sTQDFzKOGu .list {
    margin-bottom: 0rem;
  }
}
.cid-sTQDFzKOGu .mbr-text {
  color: #ffffff;
}
.cid-sTQDFzKOGu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e6c63b;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sTQDFzKOGu .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sTQDFzKOGu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sTQDFzKOGu .copyright {
  text-align: right;
}
