body {
  font-family: 'DM Sans', sans-serif;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'DM Sans', 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: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #e03d24 !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: #e03d24 !important;
  border-color: #e03d24 !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: #982715 !important;
  border-color: #982715 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #982715 !important;
  border-color: #982715 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #2299aa !important;
  border-color: #2299aa !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: #145862 !important;
  border-color: #145862 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !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: #e03d24;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #982715 !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: #e03d24 !important;
  border-color: #e03d24 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2299aa;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #145862 !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: #2299aa !important;
  border-color: #2299aa !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: #e03d24 !important;
}
.text-secondary {
  color: #2299aa !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: #8a2314 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #114c55 !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: #e03d24;
}
.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: #e03d24;
  border-color: #e03d24;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e03d24;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f9dbd7;
}
.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: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #e03d24 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #e03d24;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e03d24;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e03d24;
}
.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: #e03d24;
  border-bottom-color: #e03d24;
}
.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: #ffffff !important;
  background-color: #e03d24 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #2299aa !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='%23e03d24' %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;
}
.cid-u45TnEteYu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u45TnEteYu nav.navbar {
  position: fixed;
}
.cid-u45TnEteYu .container,
.cid-u45TnEteYu .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u45TnEteYu .container,
  .cid-u45TnEteYu .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u45TnEteYu .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u45TnEteYu .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ff6666 !important;
}
.cid-u45TnEteYu .dropdown-item:hover,
.cid-u45TnEteYu .dropdown-item:focus {
  color: #e03d24 !important;
}
.cid-u45TnEteYu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u45TnEteYu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u45TnEteYu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u45TnEteYu .nav-link {
  position: relative;
}
.cid-u45TnEteYu .nav-link:hover {
  color: #e03d24 !important;
}
.cid-u45TnEteYu .nav-link:hover:before {
  opacity: 1;
}
.cid-u45TnEteYu .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-u45TnEteYu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u45TnEteYu .container {
  display: flex;
  margin: auto;
}
.cid-u45TnEteYu .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u45TnEteYu .nav-item:focus,
.cid-u45TnEteYu .nav-link:focus {
  outline: none;
}
.cid-u45TnEteYu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u45TnEteYu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u45TnEteYu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u45TnEteYu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u45TnEteYu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u45TnEteYu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u45TnEteYu .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e03d24;
}
.cid-u45TnEteYu .navbar.opened {
  transition: all 0.3s;
}
.cid-u45TnEteYu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u45TnEteYu .navbar .navbar-logo img {
  width: auto;
}
.cid-u45TnEteYu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u45TnEteYu .navbar.collapsed {
  justify-content: center;
}
.cid-u45TnEteYu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u45TnEteYu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u45TnEteYu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u45TnEteYu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u45TnEteYu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u45TnEteYu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u45TnEteYu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u45TnEteYu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u45TnEteYu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u45TnEteYu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u45TnEteYu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u45TnEteYu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u45TnEteYu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u45TnEteYu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u45TnEteYu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u45TnEteYu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u45TnEteYu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u45TnEteYu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u45TnEteYu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u45TnEteYu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u45TnEteYu .navbar.navbar-short {
  min-height: 60px;
}
.cid-u45TnEteYu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u45TnEteYu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u45TnEteYu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u45TnEteYu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u45TnEteYu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u45TnEteYu .dropdown-item.active,
.cid-u45TnEteYu .dropdown-item:active {
  background-color: transparent;
}
.cid-u45TnEteYu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u45TnEteYu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u45TnEteYu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u45TnEteYu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e03d24;
}
.cid-u45TnEteYu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u45TnEteYu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u45TnEteYu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u45TnEteYu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u45TnEteYu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-u45TnEteYu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u45TnEteYu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u45TnEteYu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u45TnEteYu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u45TnEteYu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u45TnEteYu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u45TnEteYu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u45TnEteYu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u45TnEteYu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u45TnEteYu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u45TnEteYu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u45TnEteYu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u45TnEteYu .navbar {
    height: 70px;
  }
  .cid-u45TnEteYu .navbar.opened {
    height: auto;
  }
  .cid-u45TnEteYu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-u45TnEteYu .icons-menu {
    padding-right: 0;
  }
  .cid-u45TnEteYu .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-u45TrCSE9g {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/endoscope-handling-1533x1024.png");
}
.cid-u45TrCSE9g .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-u45TrCSE9g .mbr-section-title a {
  font-weight: 600;
}
.cid-u45TrCSE9g .mbr-section-title a:hover {
  background: none !important;
}
.cid-u45TrCSE9g .mbr-text,
.cid-u45TrCSE9g .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u45TrCSE9g .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u45TrCSE9g .mbr-fallback-image.disabled {
  display: none;
}
.cid-u45TrCSE9g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4ceD47J6M {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4ceD47J6M .text-wrapper {
  padding: 2rem;
  max-width: 650px;
}
@media (max-width: 991px) {
  .cid-u4ceD47J6M .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4ceD47J6M img {
  width: 130%;
}
@media (max-width: 1400px) {
  .cid-u4ceD47J6M img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-u4ceD47J6M img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-u4ceD47J6M .text-wrapper {
    padding: 2rem;
  }
}
.cid-u4ceD47J6M .mbr-section-subtitle {
  color: #fa4529;
}
.cid-u4ceD47J6M .mbr-text {
  color: #666666;
}
.cid-uZSRBhltWM {
  background-image: url("../../../assets/images/forum-budva.jpg-1279x561.jpg");
}
.cid-uZSRBhltWM .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uZSRBhltWM .mbr-section-title a {
  font-weight: 600;
}
.cid-uZSRBhltWM .mbr-section-title a:hover {
  background: none !important;
}
.cid-uZSRBhltWM .mbr-text,
.cid-uZSRBhltWM .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uZSRBhltWM .mbr-section-subtitle {
  color: #052a6a;
  text-align: center;
}
.cid-uZSRBhltWM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZSRBhltWM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZSWTskB6g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZSWTskB6g .row {
  flex-direction: row-reverse;
}
.cid-uZSWTskB6g .mbr-text {
  max-width: 550px;
}
.cid-uZSWTskB6g .row {
  align-items: center;
}
.cid-uZSWTskB6g .mbr-section-subtitle {
  line-height: 1.6;
}
.cid-uZSWTskB6g .mbr-text,
.cid-uZSWTskB6g .mbr-section-btn {
  color: #666666;
}
.cid-uZSWTskB6g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZSWTskB6g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZSWTskB6g .mbr-section-title {
  color: #fa4529;
}
.cid-v05nrWzUBF {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #fa4529;
}
.cid-v05nrWzUBF .mbr-title {
  color: #ffffff;
}
.cid-v05nrWzUBF .card-wrapper {
  border-top: 2px solid currentColor;
}
.cid-v05nrWzUBF .card-wrapper {
  padding-top: 4rem;
}
.cid-v05nrWzUBF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v05nrWzUBF .mbr-text,
.cid-v05nrWzUBF .mbr-section-btn {
  color: #000000;
}
.cid-v05nrWzUBF .mbr-section-title,
.cid-v05nrWzUBF .item {
  color: #000000;
}
.cid-v05nrWzUBF .mbr-section-title,
.cid-v05nrWzUBF .card-wrapper {
  color: #000000;
}
.cid-u4QOYUhfwZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u4QOYUhfwZ .item-subtitle a {
  font-weight: 600;
}
.cid-u4QOYUhfwZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4QOYUhfwZ .item:hover img {
  transform: scale(1.05);
}
.cid-u4QOYUhfwZ .item-img {
  overflow: hidden;
}
.cid-u4QOYUhfwZ img,
.cid-u4QOYUhfwZ .item-img {
  width: 100%;
  transition: all 1s;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u4QOYUhfwZ h5 {
  margin: 0;
}
.cid-u4QOYUhfwZ .item:focus,
.cid-u4QOYUhfwZ span:focus {
  outline: none;
}
.cid-u4QOYUhfwZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u4QOYUhfwZ .item-content {
  padding-top: 2rem;
}
.cid-u4QOYUhfwZ .mbr-section-title {
  color: #e03d24;
}
.cid-u4QOYUhfwZ .item-title {
  color: #e03d24;
}
.cid-u45TsanU49 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-u45TsanU49 .mbr-section-title {
  color: #000000;
}
.cid-u45TsanU49 .mbr-text,
.cid-u45TsanU49 .mbr-section-btn {
  color: #ffffff;
}
.cid-u45TsanU49 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u45TsanU49 .mbr-text2 {
  border-top: 2px solid #000000;
  padding-top: 4rem;
}
.cid-u45TsanU49 .mbr-text2,
.cid-u45TsanU49 .mbr-section-btn {
  color: #ffffff;
}
.cid-u45TsanU49 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u45TsanU49 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4cQ9YMB4g {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u4cQ9YMB4g .card-icon {
  font-size: 56px;
  color: #ffffff;
  transition: color 0.3s;
}
.cid-u4cQ9YMB4g .icon2 {
  color: #ffffff;
}
.cid-u4cQ9YMB4g .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-u4cQ9YMB4g p {
  font-weight: 400;
}
.cid-u4cQ9YMB4g .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #353535;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-u4cQ9YMB4g .line2 {
  background: #353535;
}
.cid-u4cQ9YMB4g .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #e03d24;
}
.cid-u4cQ9YMB4g .card-wrapper:hover .link-ico {
  background-color: #ffffff;
  border-color: #ffffff;
  color: white;
}
.cid-u4cQ9YMB4g .card2 {
  background: #e03d24;
}
.cid-u4cQ9YMB4g .card-title,
.cid-u4cQ9YMB4g .card-ico,
.cid-u4cQ9YMB4g .line-wrap {
  text-align: center;
}
.cid-u4cQ9YMB4g .mbr-text,
.cid-u4cQ9YMB4g .card-link {
  text-align: center;
}
.cid-u4cQ9YMB4g .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4cQ9YMB4g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4cMePcYC6 {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/geus-futer-1969x413.jpg");
}
.cid-u4cMePcYC6 .row {
  align-items: center;
}
.cid-u4cMePcYC6 .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-u4cMePcYC6 .mbr-text,
.cid-u4cMePcYC6 .mbr-section-btn {
  color: #000000;
}
.cid-u4cMePcYC6 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u4cMePcYC6 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #666666;
  border: 1px solid #efefef;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-u4cMePcYC6 .social-list .mbr-iconfont-social:hover {
  background: #e03d24;
  color: white;
}
.cid-u4cMePcYC6 .social-list .soc-item {
  margin-right: 1rem;
}
.cid-u4cMePcYC6 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-u4cMePcYC6 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4cMePcYC6 .mbr-text-title {
  color: #bbbbbb;
}
.cid-u4cMePcYC6 .mbr-section-title {
  text-align: center;
}
.cid-u4cMabQ9q1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1b5aca;
}
.cid-u4cMabQ9q1 .mbr-text {
  color: #FFFF;
}
@media (max-width: 992px) {
  .cid-u4cMabQ9q1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u4cMabQ9q1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u4cMabQ9q1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #000000;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-u4cMabQ9q1 .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #e03d24;
  transform: translateY(-3px);
}
.cid-u4cMabQ9q1 .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-u4cMabQ9q1 .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-u4cMabQ9q1 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4cMabQ9q1 .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-u5oE4gNDxB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5oE4gNDxB nav.navbar {
  position: fixed;
}
.cid-u5oE4gNDxB .container,
.cid-u5oE4gNDxB .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5oE4gNDxB .container,
  .cid-u5oE4gNDxB .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u5oE4gNDxB .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5oE4gNDxB .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ff6666 !important;
}
.cid-u5oE4gNDxB .dropdown-item:hover,
.cid-u5oE4gNDxB .dropdown-item:focus {
  color: #e03d24 !important;
}
.cid-u5oE4gNDxB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5oE4gNDxB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5oE4gNDxB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5oE4gNDxB .nav-link {
  position: relative;
}
.cid-u5oE4gNDxB .nav-link:hover {
  color: #e03d24 !important;
}
.cid-u5oE4gNDxB .nav-link:hover:before {
  opacity: 1;
}
.cid-u5oE4gNDxB .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-u5oE4gNDxB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5oE4gNDxB .container {
  display: flex;
  margin: auto;
}
.cid-u5oE4gNDxB .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5oE4gNDxB .nav-item:focus,
.cid-u5oE4gNDxB .nav-link:focus {
  outline: none;
}
.cid-u5oE4gNDxB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5oE4gNDxB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5oE4gNDxB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5oE4gNDxB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5oE4gNDxB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5oE4gNDxB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5oE4gNDxB .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e03d24;
}
.cid-u5oE4gNDxB .navbar.opened {
  transition: all 0.3s;
}
.cid-u5oE4gNDxB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5oE4gNDxB .navbar .navbar-logo img {
  width: auto;
}
.cid-u5oE4gNDxB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5oE4gNDxB .navbar.collapsed {
  justify-content: center;
}
.cid-u5oE4gNDxB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5oE4gNDxB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u5oE4gNDxB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u5oE4gNDxB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5oE4gNDxB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5oE4gNDxB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u5oE4gNDxB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5oE4gNDxB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5oE4gNDxB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5oE4gNDxB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5oE4gNDxB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5oE4gNDxB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5oE4gNDxB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5oE4gNDxB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u5oE4gNDxB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5oE4gNDxB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5oE4gNDxB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5oE4gNDxB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5oE4gNDxB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5oE4gNDxB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u5oE4gNDxB .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5oE4gNDxB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5oE4gNDxB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5oE4gNDxB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5oE4gNDxB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5oE4gNDxB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5oE4gNDxB .dropdown-item.active,
.cid-u5oE4gNDxB .dropdown-item:active {
  background-color: transparent;
}
.cid-u5oE4gNDxB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5oE4gNDxB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5oE4gNDxB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5oE4gNDxB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e03d24;
}
.cid-u5oE4gNDxB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5oE4gNDxB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5oE4gNDxB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5oE4gNDxB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5oE4gNDxB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-u5oE4gNDxB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u5oE4gNDxB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5oE4gNDxB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5oE4gNDxB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5oE4gNDxB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5oE4gNDxB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5oE4gNDxB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5oE4gNDxB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5oE4gNDxB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5oE4gNDxB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5oE4gNDxB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5oE4gNDxB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u5oE4gNDxB .navbar {
    height: 70px;
  }
  .cid-u5oE4gNDxB .navbar.opened {
    height: auto;
  }
  .cid-u5oE4gNDxB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-u5oE4gNDxB .icons-menu {
    padding-right: 0;
  }
  .cid-u5oE4gNDxB .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-u5oE4f4vrN {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/endoscope-handling-1533x1024.png");
}
.cid-u5oE4f4vrN .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-u5oE4f4vrN .mbr-section-title a {
  font-weight: 600;
}
.cid-u5oE4f4vrN .mbr-section-title a:hover {
  background: none !important;
}
.cid-u5oE4f4vrN .mbr-text,
.cid-u5oE4f4vrN .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u5oE4f4vrN .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u5oE4f4vrN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5oE4f4vrN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5oERoaPzI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/statut-1920x1080.jpg");
}
.cid-u5oERoaPzI .mbr-section-title {
  color: #000000;
}
.cid-u5oERoaPzI .mbr-text,
.cid-u5oERoaPzI .mbr-section-btn {
  color: #ffffff;
}
.cid-u5oERoaPzI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u5oERoaPzI .mbr-text2 {
  border-top: 2px solid #000000;
  padding-top: 4rem;
}
.cid-u5oERoaPzI .mbr-text2,
.cid-u5oERoaPzI .mbr-section-btn {
  color: #ffffff;
}
.cid-u5oERoaPzI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5oERoaPzI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5oE4hVUjK {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u5oE4hVUjK .card-icon {
  font-size: 56px;
  color: #ffffff;
  transition: color 0.3s;
}
.cid-u5oE4hVUjK .icon2 {
  color: #ffffff;
}
.cid-u5oE4hVUjK .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-u5oE4hVUjK p {
  font-weight: 400;
}
.cid-u5oE4hVUjK .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #353535;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-u5oE4hVUjK .line2 {
  background: #353535;
}
.cid-u5oE4hVUjK .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #e03d24;
}
.cid-u5oE4hVUjK .card-wrapper:hover .link-ico {
  background-color: #ffffff;
  border-color: #ffffff;
  color: white;
}
.cid-u5oE4hVUjK .card2 {
  background: #e03d24;
}
.cid-u5oE4hVUjK .card-title,
.cid-u5oE4hVUjK .card-ico,
.cid-u5oE4hVUjK .line-wrap {
  text-align: center;
}
.cid-u5oE4hVUjK .mbr-text,
.cid-u5oE4hVUjK .card-link {
  text-align: center;
}
.cid-u5oE4hVUjK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5oE4hVUjK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5oE4iwSiT {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/geus-futer-1969x413.jpg");
}
.cid-u5oE4iwSiT .row {
  align-items: center;
}
.cid-u5oE4iwSiT .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-u5oE4iwSiT .mbr-text,
.cid-u5oE4iwSiT .mbr-section-btn {
  color: #000000;
}
.cid-u5oE4iwSiT .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u5oE4iwSiT .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #666666;
  border: 1px solid #efefef;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-u5oE4iwSiT .social-list .mbr-iconfont-social:hover {
  background: #e03d24;
  color: white;
}
.cid-u5oE4iwSiT .social-list .soc-item {
  margin-right: 1rem;
}
.cid-u5oE4iwSiT .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-u5oE4iwSiT .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u5oE4iwSiT .mbr-text-title {
  color: #bbbbbb;
}
.cid-u5oE4iwSiT .mbr-section-title {
  text-align: center;
}
.cid-u5oE4j0WcF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1b5aca;
}
.cid-u5oE4j0WcF .mbr-text {
  color: #FFFF;
}
@media (max-width: 992px) {
  .cid-u5oE4j0WcF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u5oE4j0WcF .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u5oE4j0WcF .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #000000;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-u5oE4j0WcF .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #e03d24;
  transform: translateY(-3px);
}
.cid-u5oE4j0WcF .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-u5oE4j0WcF .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-u5oE4j0WcF .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u5oE4j0WcF .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-u5oJecKdU7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u5oJecKdU7 nav.navbar {
  position: fixed;
}
.cid-u5oJecKdU7 .container,
.cid-u5oJecKdU7 .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5oJecKdU7 .container,
  .cid-u5oJecKdU7 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u5oJecKdU7 .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5oJecKdU7 .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ff6666 !important;
}
.cid-u5oJecKdU7 .dropdown-item:hover,
.cid-u5oJecKdU7 .dropdown-item:focus {
  color: #e03d24 !important;
}
.cid-u5oJecKdU7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5oJecKdU7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5oJecKdU7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5oJecKdU7 .nav-link {
  position: relative;
}
.cid-u5oJecKdU7 .nav-link:hover {
  color: #e03d24 !important;
}
.cid-u5oJecKdU7 .nav-link:hover:before {
  opacity: 1;
}
.cid-u5oJecKdU7 .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-u5oJecKdU7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5oJecKdU7 .container {
  display: flex;
  margin: auto;
}
.cid-u5oJecKdU7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5oJecKdU7 .nav-item:focus,
.cid-u5oJecKdU7 .nav-link:focus {
  outline: none;
}
.cid-u5oJecKdU7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5oJecKdU7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5oJecKdU7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5oJecKdU7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5oJecKdU7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5oJecKdU7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5oJecKdU7 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e03d24;
}
.cid-u5oJecKdU7 .navbar.opened {
  transition: all 0.3s;
}
.cid-u5oJecKdU7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5oJecKdU7 .navbar .navbar-logo img {
  width: auto;
}
.cid-u5oJecKdU7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5oJecKdU7 .navbar.collapsed {
  justify-content: center;
}
.cid-u5oJecKdU7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5oJecKdU7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u5oJecKdU7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u5oJecKdU7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5oJecKdU7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5oJecKdU7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u5oJecKdU7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5oJecKdU7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5oJecKdU7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5oJecKdU7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5oJecKdU7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5oJecKdU7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5oJecKdU7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5oJecKdU7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u5oJecKdU7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5oJecKdU7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5oJecKdU7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5oJecKdU7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5oJecKdU7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5oJecKdU7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u5oJecKdU7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5oJecKdU7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5oJecKdU7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5oJecKdU7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5oJecKdU7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5oJecKdU7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5oJecKdU7 .dropdown-item.active,
.cid-u5oJecKdU7 .dropdown-item:active {
  background-color: transparent;
}
.cid-u5oJecKdU7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5oJecKdU7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5oJecKdU7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5oJecKdU7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e03d24;
}
.cid-u5oJecKdU7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5oJecKdU7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5oJecKdU7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5oJecKdU7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5oJecKdU7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-u5oJecKdU7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u5oJecKdU7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5oJecKdU7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5oJecKdU7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5oJecKdU7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5oJecKdU7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5oJecKdU7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5oJecKdU7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5oJecKdU7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5oJecKdU7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5oJecKdU7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5oJecKdU7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u5oJecKdU7 .navbar {
    height: 70px;
  }
  .cid-u5oJecKdU7 .navbar.opened {
    height: auto;
  }
  .cid-u5oJecKdU7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-u5oJecKdU7 .icons-menu {
    padding-right: 0;
  }
  .cid-u5oJecKdU7 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-u5oJebVpDQ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/endoscope-handling-1533x1024.png");
}
.cid-u5oJebVpDQ .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-u5oJebVpDQ .mbr-section-title a {
  font-weight: 600;
}
.cid-u5oJebVpDQ .mbr-section-title a:hover {
  background: none !important;
}
.cid-u5oJebVpDQ .mbr-text,
.cid-u5oJebVpDQ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u5oJebVpDQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u5oJebVpDQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5oJebVpDQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5oK1AQD2j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5oK1AQD2j .mbr-text {
  color: #666666;
}
.cid-u5oK1AQD2j .list {
  color: #666666;
}
.cid-u5oK1AQD2j ul {
  list-style-position: inside;
  padding: 0;
}
.cid-u5oK1AQD2j li {
  padding-bottom: 0.5rem;
}
.cid-u5oK1AQD2j .mbr-section-subtitle {
  color: #e03d24;
}
.cid-u5oJedNfTV {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/geus-futer-1969x413.jpg");
}
.cid-u5oJedNfTV .row {
  align-items: center;
}
.cid-u5oJedNfTV .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-u5oJedNfTV .mbr-text,
.cid-u5oJedNfTV .mbr-section-btn {
  color: #000000;
}
.cid-u5oJedNfTV .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u5oJedNfTV .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #666666;
  border: 1px solid #efefef;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-u5oJedNfTV .social-list .mbr-iconfont-social:hover {
  background: #e03d24;
  color: white;
}
.cid-u5oJedNfTV .social-list .soc-item {
  margin-right: 1rem;
}
.cid-u5oJedNfTV .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-u5oJedNfTV .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u5oJedNfTV .mbr-text-title {
  color: #bbbbbb;
}
.cid-u5oJedNfTV .mbr-section-title {
  text-align: center;
}
.cid-u5oJeebyAV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1b5aca;
}
.cid-u5oJeebyAV .mbr-text {
  color: #FFFF;
}
@media (max-width: 992px) {
  .cid-u5oJeebyAV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u5oJeebyAV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u5oJeebyAV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #000000;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-u5oJeebyAV .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #e03d24;
  transform: translateY(-3px);
}
.cid-u5oJeebyAV .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-u5oJeebyAV .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-u5oJeebyAV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u5oJeebyAV .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-uZT2ISLwsr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uZT2ISLwsr nav.navbar {
  position: fixed;
}
.cid-uZT2ISLwsr .container,
.cid-uZT2ISLwsr .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uZT2ISLwsr .container,
  .cid-uZT2ISLwsr .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uZT2ISLwsr .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZT2ISLwsr .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ff6666 !important;
}
.cid-uZT2ISLwsr .dropdown-item:hover,
.cid-uZT2ISLwsr .dropdown-item:focus {
  color: #e03d24 !important;
}
.cid-uZT2ISLwsr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uZT2ISLwsr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uZT2ISLwsr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uZT2ISLwsr .nav-link {
  position: relative;
}
.cid-uZT2ISLwsr .nav-link:hover {
  color: #e03d24 !important;
}
.cid-uZT2ISLwsr .nav-link:hover:before {
  opacity: 1;
}
.cid-uZT2ISLwsr .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uZT2ISLwsr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uZT2ISLwsr .container {
  display: flex;
  margin: auto;
}
.cid-uZT2ISLwsr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uZT2ISLwsr .nav-item:focus,
.cid-uZT2ISLwsr .nav-link:focus {
  outline: none;
}
.cid-uZT2ISLwsr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZT2ISLwsr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZT2ISLwsr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZT2ISLwsr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZT2ISLwsr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZT2ISLwsr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZT2ISLwsr .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e03d24;
}
.cid-uZT2ISLwsr .navbar.opened {
  transition: all 0.3s;
}
.cid-uZT2ISLwsr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZT2ISLwsr .navbar .navbar-logo img {
  width: auto;
}
.cid-uZT2ISLwsr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uZT2ISLwsr .navbar.collapsed {
  justify-content: center;
}
.cid-uZT2ISLwsr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZT2ISLwsr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uZT2ISLwsr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uZT2ISLwsr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZT2ISLwsr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZT2ISLwsr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uZT2ISLwsr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZT2ISLwsr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZT2ISLwsr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uZT2ISLwsr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZT2ISLwsr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZT2ISLwsr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZT2ISLwsr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZT2ISLwsr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uZT2ISLwsr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZT2ISLwsr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZT2ISLwsr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZT2ISLwsr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZT2ISLwsr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZT2ISLwsr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uZT2ISLwsr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZT2ISLwsr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZT2ISLwsr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZT2ISLwsr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZT2ISLwsr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZT2ISLwsr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZT2ISLwsr .dropdown-item.active,
.cid-uZT2ISLwsr .dropdown-item:active {
  background-color: transparent;
}
.cid-uZT2ISLwsr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZT2ISLwsr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZT2ISLwsr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZT2ISLwsr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e03d24;
}
.cid-uZT2ISLwsr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZT2ISLwsr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZT2ISLwsr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uZT2ISLwsr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZT2ISLwsr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-uZT2ISLwsr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZT2ISLwsr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZT2ISLwsr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZT2ISLwsr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZT2ISLwsr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZT2ISLwsr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZT2ISLwsr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZT2ISLwsr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZT2ISLwsr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZT2ISLwsr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZT2ISLwsr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZT2ISLwsr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZT2ISLwsr .navbar {
    height: 70px;
  }
  .cid-uZT2ISLwsr .navbar.opened {
    height: auto;
  }
  .cid-uZT2ISLwsr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-uZT2ISLwsr .icons-menu {
    padding-right: 0;
  }
  .cid-uZT2ISLwsr .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uZT2IRWF2S {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/gastroenteroloko-udruenje-srbije2-870x488.jpg");
}
.cid-uZT2IRWF2S .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-uZT2IRWF2S .mbr-section-title a {
  font-weight: 600;
}
.cid-uZT2IRWF2S .mbr-section-title a:hover {
  background: none !important;
}
.cid-uZT2IRWF2S .mbr-text,
.cid-uZT2IRWF2S .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uZT2IRWF2S .mbr-section-subtitle {
  color: #e03d24;
  text-align: center;
}
.cid-uZT2IRWF2S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZT2IRWF2S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZT3s8W7yT {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uZT3s8W7yT ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-uZT3s8W7yT ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-uZT3s8W7yT ul li:hover {
  transform: translateX(10px);
}
.cid-uZT3s8W7yT ul li:hover a {
  color: #e03d24 !important;
  background: none !important;
}
.cid-uZT3s8W7yT h4 {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.cid-uZT3s8W7yT .mbr-title {
  color: #fa4529;
}
.cid-uZT2ITlG69 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/geus-futer-1969x413.jpg");
}
.cid-uZT2ITlG69 .row {
  align-items: center;
}
.cid-uZT2ITlG69 .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-uZT2ITlG69 .mbr-text,
.cid-uZT2ITlG69 .mbr-section-btn {
  color: #000000;
}
.cid-uZT2ITlG69 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uZT2ITlG69 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #666666;
  border: 1px solid #efefef;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-uZT2ITlG69 .social-list .mbr-iconfont-social:hover {
  background: #e03d24;
  color: white;
}
.cid-uZT2ITlG69 .social-list .soc-item {
  margin-right: 1rem;
}
.cid-uZT2ITlG69 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-uZT2ITlG69 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uZT2ITlG69 .mbr-text-title {
  color: #bbbbbb;
}
.cid-uZT2ITlG69 .mbr-section-title {
  text-align: center;
}
.cid-uZT2ITLgh7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1b5aca;
}
.cid-uZT2ITLgh7 .mbr-text {
  color: #FFFF;
}
@media (max-width: 992px) {
  .cid-uZT2ITLgh7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZT2ITLgh7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uZT2ITLgh7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #000000;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-uZT2ITLgh7 .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #e03d24;
  transform: translateY(-3px);
}
.cid-uZT2ITLgh7 .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-uZT2ITLgh7 .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-uZT2ITLgh7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uZT2ITLgh7 .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-v04y8bU36L {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v04y8bU36L nav.navbar {
  position: fixed;
}
.cid-v04y8bU36L .container,
.cid-v04y8bU36L .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v04y8bU36L .container,
  .cid-v04y8bU36L .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-v04y8bU36L .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v04y8bU36L .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ff6666 !important;
}
.cid-v04y8bU36L .dropdown-item:hover,
.cid-v04y8bU36L .dropdown-item:focus {
  color: #e03d24 !important;
}
.cid-v04y8bU36L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v04y8bU36L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v04y8bU36L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v04y8bU36L .nav-link {
  position: relative;
}
.cid-v04y8bU36L .nav-link:hover {
  color: #e03d24 !important;
}
.cid-v04y8bU36L .nav-link:hover:before {
  opacity: 1;
}
.cid-v04y8bU36L .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-v04y8bU36L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v04y8bU36L .container {
  display: flex;
  margin: auto;
}
.cid-v04y8bU36L .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v04y8bU36L .nav-item:focus,
.cid-v04y8bU36L .nav-link:focus {
  outline: none;
}
.cid-v04y8bU36L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v04y8bU36L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v04y8bU36L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v04y8bU36L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v04y8bU36L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v04y8bU36L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v04y8bU36L .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e03d24;
}
.cid-v04y8bU36L .navbar.opened {
  transition: all 0.3s;
}
.cid-v04y8bU36L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v04y8bU36L .navbar .navbar-logo img {
  width: auto;
}
.cid-v04y8bU36L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v04y8bU36L .navbar.collapsed {
  justify-content: center;
}
.cid-v04y8bU36L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v04y8bU36L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v04y8bU36L .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v04y8bU36L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v04y8bU36L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v04y8bU36L .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v04y8bU36L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v04y8bU36L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v04y8bU36L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v04y8bU36L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v04y8bU36L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v04y8bU36L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v04y8bU36L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v04y8bU36L .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v04y8bU36L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v04y8bU36L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v04y8bU36L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v04y8bU36L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v04y8bU36L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v04y8bU36L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v04y8bU36L .navbar.navbar-short {
  min-height: 60px;
}
.cid-v04y8bU36L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v04y8bU36L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v04y8bU36L .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v04y8bU36L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v04y8bU36L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v04y8bU36L .dropdown-item.active,
.cid-v04y8bU36L .dropdown-item:active {
  background-color: transparent;
}
.cid-v04y8bU36L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v04y8bU36L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v04y8bU36L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v04y8bU36L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e03d24;
}
.cid-v04y8bU36L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v04y8bU36L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v04y8bU36L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v04y8bU36L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v04y8bU36L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-v04y8bU36L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v04y8bU36L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v04y8bU36L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v04y8bU36L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v04y8bU36L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v04y8bU36L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v04y8bU36L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v04y8bU36L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v04y8bU36L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v04y8bU36L .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v04y8bU36L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v04y8bU36L .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v04y8bU36L .navbar {
    height: 70px;
  }
  .cid-v04y8bU36L .navbar.opened {
    height: auto;
  }
  .cid-v04y8bU36L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-v04y8bU36L .icons-menu {
    padding-right: 0;
  }
  .cid-v04y8bU36L .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v04y8cD5ak {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-v04y8cD5ak .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-v04y8cD5ak .mbr-section-title a {
  font-weight: 600;
}
.cid-v04y8cD5ak .mbr-section-title a:hover {
  background: none !important;
}
.cid-v04y8cD5ak .mbr-text,
.cid-v04y8cD5ak .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v04y8cD5ak .mbr-section-subtitle {
  color: #e03d24;
  text-align: center;
}
.cid-v04y8cD5ak .mbr-fallback-image.disabled {
  display: none;
}
.cid-v04y8cD5ak .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v04y8d4lpw {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v04y8d4lpw ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-v04y8d4lpw ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-v04y8d4lpw ul li:hover {
  transform: translateX(10px);
}
.cid-v04y8d4lpw ul li:hover a {
  color: #e03d24 !important;
  background: none !important;
}
.cid-v04y8d4lpw h4 {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.cid-v04y8d4lpw .mbr-title {
  color: #fa4529;
}
.cid-v04y8dJccB {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/geus-futer-1969x413.jpg");
}
.cid-v04y8dJccB .row {
  align-items: center;
}
.cid-v04y8dJccB .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-v04y8dJccB .mbr-text,
.cid-v04y8dJccB .mbr-section-btn {
  color: #000000;
}
.cid-v04y8dJccB .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v04y8dJccB .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #666666;
  border: 1px solid #efefef;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-v04y8dJccB .social-list .mbr-iconfont-social:hover {
  background: #e03d24;
  color: white;
}
.cid-v04y8dJccB .social-list .soc-item {
  margin-right: 1rem;
}
.cid-v04y8dJccB .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-v04y8dJccB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v04y8dJccB .mbr-text-title {
  color: #bbbbbb;
}
.cid-v04y8dJccB .mbr-section-title {
  text-align: center;
}
.cid-v04y8e6U91 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1b5aca;
}
.cid-v04y8e6U91 .mbr-text {
  color: #FFFF;
}
@media (max-width: 992px) {
  .cid-v04y8e6U91 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v04y8e6U91 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v04y8e6U91 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #000000;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-v04y8e6U91 .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #e03d24;
  transform: translateY(-3px);
}
.cid-v04y8e6U91 .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-v04y8e6U91 .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-v04y8e6U91 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v04y8e6U91 .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-v04KpKy1rj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v04KpKy1rj nav.navbar {
  position: fixed;
}
.cid-v04KpKy1rj .container,
.cid-v04KpKy1rj .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v04KpKy1rj .container,
  .cid-v04KpKy1rj .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-v04KpKy1rj .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v04KpKy1rj .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ff6666 !important;
}
.cid-v04KpKy1rj .dropdown-item:hover,
.cid-v04KpKy1rj .dropdown-item:focus {
  color: #e03d24 !important;
}
.cid-v04KpKy1rj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v04KpKy1rj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v04KpKy1rj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v04KpKy1rj .nav-link {
  position: relative;
}
.cid-v04KpKy1rj .nav-link:hover {
  color: #e03d24 !important;
}
.cid-v04KpKy1rj .nav-link:hover:before {
  opacity: 1;
}
.cid-v04KpKy1rj .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-v04KpKy1rj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v04KpKy1rj .container {
  display: flex;
  margin: auto;
}
.cid-v04KpKy1rj .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v04KpKy1rj .nav-item:focus,
.cid-v04KpKy1rj .nav-link:focus {
  outline: none;
}
.cid-v04KpKy1rj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v04KpKy1rj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v04KpKy1rj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v04KpKy1rj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v04KpKy1rj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v04KpKy1rj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v04KpKy1rj .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e03d24;
}
.cid-v04KpKy1rj .navbar.opened {
  transition: all 0.3s;
}
.cid-v04KpKy1rj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v04KpKy1rj .navbar .navbar-logo img {
  width: auto;
}
.cid-v04KpKy1rj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v04KpKy1rj .navbar.collapsed {
  justify-content: center;
}
.cid-v04KpKy1rj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v04KpKy1rj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v04KpKy1rj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v04KpKy1rj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v04KpKy1rj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v04KpKy1rj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v04KpKy1rj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v04KpKy1rj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v04KpKy1rj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v04KpKy1rj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v04KpKy1rj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v04KpKy1rj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v04KpKy1rj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v04KpKy1rj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v04KpKy1rj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v04KpKy1rj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v04KpKy1rj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v04KpKy1rj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v04KpKy1rj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v04KpKy1rj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v04KpKy1rj .navbar.navbar-short {
  min-height: 60px;
}
.cid-v04KpKy1rj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v04KpKy1rj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v04KpKy1rj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v04KpKy1rj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v04KpKy1rj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v04KpKy1rj .dropdown-item.active,
.cid-v04KpKy1rj .dropdown-item:active {
  background-color: transparent;
}
.cid-v04KpKy1rj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v04KpKy1rj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v04KpKy1rj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v04KpKy1rj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e03d24;
}
.cid-v04KpKy1rj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v04KpKy1rj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v04KpKy1rj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v04KpKy1rj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v04KpKy1rj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-v04KpKy1rj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v04KpKy1rj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v04KpKy1rj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v04KpKy1rj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v04KpKy1rj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v04KpKy1rj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v04KpKy1rj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v04KpKy1rj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v04KpKy1rj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v04KpKy1rj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v04KpKy1rj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v04KpKy1rj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v04KpKy1rj .navbar {
    height: 70px;
  }
  .cid-v04KpKy1rj .navbar.opened {
    height: auto;
  }
  .cid-v04KpKy1rj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-v04KpKy1rj .icons-menu {
    padding-right: 0;
  }
  .cid-v04KpKy1rj .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v04KpLaixI {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/gastroenteroloko-udruenje-srbije2-870x488.jpg");
}
.cid-v04KpLaixI .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-v04KpLaixI .mbr-section-title a {
  font-weight: 600;
}
.cid-v04KpLaixI .mbr-section-title a:hover {
  background: none !important;
}
.cid-v04KpLaixI .mbr-text,
.cid-v04KpLaixI .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v04KpLaixI .mbr-section-subtitle {
  color: #e03d24;
  text-align: center;
}
.cid-v04KpLaixI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v04KpLaixI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v04KpLxSWC {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v04KpLxSWC ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-v04KpLxSWC ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-v04KpLxSWC ul li:hover {
  transform: translateX(10px);
}
.cid-v04KpLxSWC ul li:hover a {
  color: #e03d24 !important;
  background: none !important;
}
.cid-v04KpLxSWC h4 {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.cid-v04KpLxSWC .mbr-title {
  color: #fa4529;
}
.cid-v04KpLTib2 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/geus-futer-1969x413.jpg");
}
.cid-v04KpLTib2 .row {
  align-items: center;
}
.cid-v04KpLTib2 .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-v04KpLTib2 .mbr-text,
.cid-v04KpLTib2 .mbr-section-btn {
  color: #000000;
}
.cid-v04KpLTib2 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v04KpLTib2 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #666666;
  border: 1px solid #efefef;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-v04KpLTib2 .social-list .mbr-iconfont-social:hover {
  background: #e03d24;
  color: white;
}
.cid-v04KpLTib2 .social-list .soc-item {
  margin-right: 1rem;
}
.cid-v04KpLTib2 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-v04KpLTib2 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v04KpLTib2 .mbr-text-title {
  color: #bbbbbb;
}
.cid-v04KpLTib2 .mbr-section-title {
  text-align: center;
}
.cid-v04KpMgHFi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1b5aca;
}
.cid-v04KpMgHFi .mbr-text {
  color: #FFFF;
}
@media (max-width: 992px) {
  .cid-v04KpMgHFi .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v04KpMgHFi .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v04KpMgHFi .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #000000;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-v04KpMgHFi .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #e03d24;
  transform: translateY(-3px);
}
.cid-v04KpMgHFi .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-v04KpMgHFi .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-v04KpMgHFi .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v04KpMgHFi .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-v04OvePOnr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v04OvePOnr nav.navbar {
  position: fixed;
}
.cid-v04OvePOnr .container,
.cid-v04OvePOnr .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v04OvePOnr .container,
  .cid-v04OvePOnr .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-v04OvePOnr .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v04OvePOnr .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ff6666 !important;
}
.cid-v04OvePOnr .dropdown-item:hover,
.cid-v04OvePOnr .dropdown-item:focus {
  color: #e03d24 !important;
}
.cid-v04OvePOnr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v04OvePOnr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v04OvePOnr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v04OvePOnr .nav-link {
  position: relative;
}
.cid-v04OvePOnr .nav-link:hover {
  color: #e03d24 !important;
}
.cid-v04OvePOnr .nav-link:hover:before {
  opacity: 1;
}
.cid-v04OvePOnr .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-v04OvePOnr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v04OvePOnr .container {
  display: flex;
  margin: auto;
}
.cid-v04OvePOnr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v04OvePOnr .nav-item:focus,
.cid-v04OvePOnr .nav-link:focus {
  outline: none;
}
.cid-v04OvePOnr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v04OvePOnr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v04OvePOnr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v04OvePOnr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v04OvePOnr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v04OvePOnr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v04OvePOnr .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e03d24;
}
.cid-v04OvePOnr .navbar.opened {
  transition: all 0.3s;
}
.cid-v04OvePOnr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v04OvePOnr .navbar .navbar-logo img {
  width: auto;
}
.cid-v04OvePOnr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v04OvePOnr .navbar.collapsed {
  justify-content: center;
}
.cid-v04OvePOnr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v04OvePOnr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v04OvePOnr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v04OvePOnr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v04OvePOnr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v04OvePOnr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v04OvePOnr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v04OvePOnr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v04OvePOnr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v04OvePOnr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v04OvePOnr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v04OvePOnr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v04OvePOnr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v04OvePOnr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v04OvePOnr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v04OvePOnr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v04OvePOnr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v04OvePOnr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v04OvePOnr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v04OvePOnr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v04OvePOnr .navbar.navbar-short {
  min-height: 60px;
}
.cid-v04OvePOnr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v04OvePOnr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v04OvePOnr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v04OvePOnr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v04OvePOnr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v04OvePOnr .dropdown-item.active,
.cid-v04OvePOnr .dropdown-item:active {
  background-color: transparent;
}
.cid-v04OvePOnr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v04OvePOnr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v04OvePOnr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v04OvePOnr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e03d24;
}
.cid-v04OvePOnr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v04OvePOnr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v04OvePOnr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v04OvePOnr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v04OvePOnr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-v04OvePOnr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v04OvePOnr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v04OvePOnr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v04OvePOnr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v04OvePOnr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v04OvePOnr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v04OvePOnr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v04OvePOnr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v04OvePOnr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v04OvePOnr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v04OvePOnr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v04OvePOnr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v04OvePOnr .navbar {
    height: 70px;
  }
  .cid-v04OvePOnr .navbar.opened {
    height: auto;
  }
  .cid-v04OvePOnr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-v04OvePOnr .icons-menu {
    padding-right: 0;
  }
  .cid-v04OvePOnr .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v04OvfA5Eq {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/gastroenteroloko-udruenje-srbije2-870x488.jpg");
}
.cid-v04OvfA5Eq .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-v04OvfA5Eq .mbr-section-title a {
  font-weight: 600;
}
.cid-v04OvfA5Eq .mbr-section-title a:hover {
  background: none !important;
}
.cid-v04OvfA5Eq .mbr-text,
.cid-v04OvfA5Eq .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v04OvfA5Eq .mbr-section-subtitle {
  color: #e03d24;
  text-align: center;
}
.cid-v04OvfA5Eq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v04OvfA5Eq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v04Ovg4J0d {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v04Ovg4J0d ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-v04Ovg4J0d ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-v04Ovg4J0d ul li:hover {
  transform: translateX(10px);
}
.cid-v04Ovg4J0d ul li:hover a {
  color: #e03d24 !important;
  background: none !important;
}
.cid-v04Ovg4J0d h4 {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.cid-v04Ovg4J0d .mbr-title {
  color: #fa4529;
}
.cid-v04Ovgtisn {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/geus-futer-1969x413.jpg");
}
.cid-v04Ovgtisn .row {
  align-items: center;
}
.cid-v04Ovgtisn .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-v04Ovgtisn .mbr-text,
.cid-v04Ovgtisn .mbr-section-btn {
  color: #000000;
}
.cid-v04Ovgtisn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v04Ovgtisn .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #666666;
  border: 1px solid #efefef;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-v04Ovgtisn .social-list .mbr-iconfont-social:hover {
  background: #e03d24;
  color: white;
}
.cid-v04Ovgtisn .social-list .soc-item {
  margin-right: 1rem;
}
.cid-v04Ovgtisn .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-v04Ovgtisn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v04Ovgtisn .mbr-text-title {
  color: #bbbbbb;
}
.cid-v04Ovgtisn .mbr-section-title {
  text-align: center;
}
.cid-v04OvgWAo6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1b5aca;
}
.cid-v04OvgWAo6 .mbr-text {
  color: #FFFF;
}
@media (max-width: 992px) {
  .cid-v04OvgWAo6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v04OvgWAo6 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v04OvgWAo6 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #000000;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-v04OvgWAo6 .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #e03d24;
  transform: translateY(-3px);
}
.cid-v04OvgWAo6 .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-v04OvgWAo6 .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-v04OvgWAo6 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v04OvgWAo6 .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-v050jnDNDj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v050jnDNDj nav.navbar {
  position: fixed;
}
.cid-v050jnDNDj .container,
.cid-v050jnDNDj .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v050jnDNDj .container,
  .cid-v050jnDNDj .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-v050jnDNDj .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v050jnDNDj .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ff6666 !important;
}
.cid-v050jnDNDj .dropdown-item:hover,
.cid-v050jnDNDj .dropdown-item:focus {
  color: #e03d24 !important;
}
.cid-v050jnDNDj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v050jnDNDj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v050jnDNDj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v050jnDNDj .nav-link {
  position: relative;
}
.cid-v050jnDNDj .nav-link:hover {
  color: #e03d24 !important;
}
.cid-v050jnDNDj .nav-link:hover:before {
  opacity: 1;
}
.cid-v050jnDNDj .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-v050jnDNDj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v050jnDNDj .container {
  display: flex;
  margin: auto;
}
.cid-v050jnDNDj .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v050jnDNDj .nav-item:focus,
.cid-v050jnDNDj .nav-link:focus {
  outline: none;
}
.cid-v050jnDNDj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v050jnDNDj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v050jnDNDj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v050jnDNDj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v050jnDNDj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v050jnDNDj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v050jnDNDj .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e03d24;
}
.cid-v050jnDNDj .navbar.opened {
  transition: all 0.3s;
}
.cid-v050jnDNDj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v050jnDNDj .navbar .navbar-logo img {
  width: auto;
}
.cid-v050jnDNDj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v050jnDNDj .navbar.collapsed {
  justify-content: center;
}
.cid-v050jnDNDj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v050jnDNDj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v050jnDNDj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v050jnDNDj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v050jnDNDj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v050jnDNDj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v050jnDNDj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v050jnDNDj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v050jnDNDj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v050jnDNDj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v050jnDNDj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v050jnDNDj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v050jnDNDj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v050jnDNDj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v050jnDNDj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v050jnDNDj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v050jnDNDj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v050jnDNDj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v050jnDNDj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v050jnDNDj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v050jnDNDj .navbar.navbar-short {
  min-height: 60px;
}
.cid-v050jnDNDj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v050jnDNDj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v050jnDNDj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v050jnDNDj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v050jnDNDj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v050jnDNDj .dropdown-item.active,
.cid-v050jnDNDj .dropdown-item:active {
  background-color: transparent;
}
.cid-v050jnDNDj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v050jnDNDj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v050jnDNDj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v050jnDNDj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e03d24;
}
.cid-v050jnDNDj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v050jnDNDj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v050jnDNDj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v050jnDNDj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v050jnDNDj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-v050jnDNDj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v050jnDNDj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v050jnDNDj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v050jnDNDj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v050jnDNDj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v050jnDNDj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v050jnDNDj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v050jnDNDj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v050jnDNDj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v050jnDNDj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v050jnDNDj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v050jnDNDj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v050jnDNDj .navbar {
    height: 70px;
  }
  .cid-v050jnDNDj .navbar.opened {
    height: auto;
  }
  .cid-v050jnDNDj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-v050jnDNDj .icons-menu {
    padding-right: 0;
  }
  .cid-v050jnDNDj .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v050jonGV2 {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-v050jonGV2 .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-v050jonGV2 .mbr-section-title a {
  font-weight: 600;
}
.cid-v050jonGV2 .mbr-section-title a:hover {
  background: none !important;
}
.cid-v050jonGV2 .mbr-text,
.cid-v050jonGV2 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v050jonGV2 .mbr-section-subtitle {
  color: #e03d24;
  text-align: center;
}
.cid-v050jonGV2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v050jonGV2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v050joVhAx {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v050joVhAx ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-v050joVhAx ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-v050joVhAx ul li:hover {
  transform: translateX(10px);
}
.cid-v050joVhAx ul li:hover a {
  color: #e03d24 !important;
  background: none !important;
}
.cid-v050joVhAx h4 {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.cid-v050joVhAx .mbr-title {
  color: #fa4529;
}
.cid-v050jpoauc {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/geus-futer-1969x413.jpg");
}
.cid-v050jpoauc .row {
  align-items: center;
}
.cid-v050jpoauc .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-v050jpoauc .mbr-text,
.cid-v050jpoauc .mbr-section-btn {
  color: #000000;
}
.cid-v050jpoauc .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v050jpoauc .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #666666;
  border: 1px solid #efefef;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-v050jpoauc .social-list .mbr-iconfont-social:hover {
  background: #e03d24;
  color: white;
}
.cid-v050jpoauc .social-list .soc-item {
  margin-right: 1rem;
}
.cid-v050jpoauc .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-v050jpoauc .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v050jpoauc .mbr-text-title {
  color: #bbbbbb;
}
.cid-v050jpoauc .mbr-section-title {
  text-align: center;
}
.cid-v050jpRHX7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1b5aca;
}
.cid-v050jpRHX7 .mbr-text {
  color: #FFFF;
}
@media (max-width: 992px) {
  .cid-v050jpRHX7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v050jpRHX7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v050jpRHX7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #000000;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-v050jpRHX7 .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #e03d24;
  transform: translateY(-3px);
}
.cid-v050jpRHX7 .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-v050jpRHX7 .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-v050jpRHX7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v050jpRHX7 .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-v05adHYbS7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v05adHYbS7 nav.navbar {
  position: fixed;
}
.cid-v05adHYbS7 .container,
.cid-v05adHYbS7 .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v05adHYbS7 .container,
  .cid-v05adHYbS7 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-v05adHYbS7 .dropdown-item:before {
  font-family: Moririse2 !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;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v05adHYbS7 .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ff6666 !important;
}
.cid-v05adHYbS7 .dropdown-item:hover,
.cid-v05adHYbS7 .dropdown-item:focus {
  color: #e03d24 !important;
}
.cid-v05adHYbS7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v05adHYbS7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v05adHYbS7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v05adHYbS7 .nav-link {
  position: relative;
}
.cid-v05adHYbS7 .nav-link:hover {
  color: #e03d24 !important;
}
.cid-v05adHYbS7 .nav-link:hover:before {
  opacity: 1;
}
.cid-v05adHYbS7 .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-v05adHYbS7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v05adHYbS7 .container {
  display: flex;
  margin: auto;
}
.cid-v05adHYbS7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v05adHYbS7 .nav-item:focus,
.cid-v05adHYbS7 .nav-link:focus {
  outline: none;
}
.cid-v05adHYbS7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v05adHYbS7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v05adHYbS7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v05adHYbS7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v05adHYbS7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v05adHYbS7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v05adHYbS7 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e03d24;
}
.cid-v05adHYbS7 .navbar.opened {
  transition: all 0.3s;
}
.cid-v05adHYbS7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v05adHYbS7 .navbar .navbar-logo img {
  width: auto;
}
.cid-v05adHYbS7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v05adHYbS7 .navbar.collapsed {
  justify-content: center;
}
.cid-v05adHYbS7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v05adHYbS7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v05adHYbS7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v05adHYbS7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v05adHYbS7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v05adHYbS7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v05adHYbS7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v05adHYbS7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v05adHYbS7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v05adHYbS7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v05adHYbS7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v05adHYbS7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v05adHYbS7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v05adHYbS7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v05adHYbS7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v05adHYbS7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v05adHYbS7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v05adHYbS7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v05adHYbS7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v05adHYbS7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v05adHYbS7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v05adHYbS7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v05adHYbS7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v05adHYbS7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v05adHYbS7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v05adHYbS7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v05adHYbS7 .dropdown-item.active,
.cid-v05adHYbS7 .dropdown-item:active {
  background-color: transparent;
}
.cid-v05adHYbS7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v05adHYbS7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v05adHYbS7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v05adHYbS7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e03d24;
}
.cid-v05adHYbS7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v05adHYbS7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v05adHYbS7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v05adHYbS7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v05adHYbS7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-v05adHYbS7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v05adHYbS7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v05adHYbS7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05adHYbS7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v05adHYbS7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v05adHYbS7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05adHYbS7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v05adHYbS7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v05adHYbS7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v05adHYbS7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v05adHYbS7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v05adHYbS7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v05adHYbS7 .navbar {
    height: 70px;
  }
  .cid-v05adHYbS7 .navbar.opened {
    height: auto;
  }
  .cid-v05adHYbS7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-v05adHYbS7 .icons-menu {
    padding-right: 0;
  }
  .cid-v05adHYbS7 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-v05adILkpk {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/gastroenteroloko-udruenje-srbije2-870x488.jpg");
}
.cid-v05adILkpk .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-v05adILkpk .mbr-section-title a {
  font-weight: 600;
}
.cid-v05adILkpk .mbr-section-title a:hover {
  background: none !important;
}
.cid-v05adILkpk .mbr-text,
.cid-v05adILkpk .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v05adILkpk .mbr-section-subtitle {
  color: #e03d24;
  text-align: center;
}
.cid-v05adILkpk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v05adILkpk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v05adJj9Tx {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v05adJj9Tx ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-v05adJj9Tx ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-v05adJj9Tx ul li:hover {
  transform: translateX(10px);
}
.cid-v05adJj9Tx ul li:hover a {
  color: #e03d24 !important;
  background: none !important;
}
.cid-v05adJj9Tx h4 {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.cid-v05adJj9Tx .mbr-title {
  color: #fa4529;
}
.cid-v05adJLHgY {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/geus-futer-1969x413.jpg");
}
.cid-v05adJLHgY .row {
  align-items: center;
}
.cid-v05adJLHgY .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-v05adJLHgY .mbr-text,
.cid-v05adJLHgY .mbr-section-btn {
  color: #000000;
}
.cid-v05adJLHgY .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v05adJLHgY .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #666666;
  border: 1px solid #efefef;
  border-radius: 50%;
  padding: 0.6rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-v05adJLHgY .social-list .mbr-iconfont-social:hover {
  background: #e03d24;
  color: white;
}
.cid-v05adJLHgY .social-list .soc-item {
  margin-right: 1rem;
}
.cid-v05adJLHgY .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 767px) {
  .cid-v05adJLHgY .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v05adJLHgY .mbr-text-title {
  color: #bbbbbb;
}
.cid-v05adJLHgY .mbr-section-title {
  text-align: center;
}
.cid-v05adKeNTE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1b5aca;
}
.cid-v05adKeNTE .mbr-text {
  color: #FFFF;
}
@media (max-width: 992px) {
  .cid-v05adKeNTE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v05adKeNTE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v05adKeNTE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #000000;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-v05adKeNTE .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #e03d24;
  transform: translateY(-3px);
}
.cid-v05adKeNTE .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-v05adKeNTE .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-v05adKeNTE .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v05adKeNTE .copyright > p {
  color: #ffffff;
  text-align: left;
}
