.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #b23926 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #957528 !important;
  border-color: #957528 !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: #513f16 !important;
  border-color: #513f16 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #513f16 !important;
  border-color: #513f16 !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: #b23926 !important;
  border-color: #b23926 !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: #6b2217 !important;
  border-color: #6b2217 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #6b2217 !important;
  border-color: #6b2217 !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: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #957528;
  color: #957528;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #513f16 !important;
  background-color: transparent!important;
  border-color: #513f16 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #957528 !important;
  border-color: #957528 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  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: #148cca !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: #40b0bf;
  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: #2a747e !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: #ffe161;
  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: #ffd10a !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: #b23926;
  color: #b23926;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #6b2217 !important;
  background-color: transparent!important;
  border-color: #6b2217 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b23926 !important;
  border-color: #b23926 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #000000 !important;
}
.text-secondary {
  color: #957528 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #b23926 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #453612 !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: #5e1e14 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.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: #b23926;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.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: #e28476;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', 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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #000000;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #957528 !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='%23000000' %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-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-uPTie4WAck .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPTie4WAck .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.webp");
}
.cid-uPO1zydiGS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPO1zydiGS img,
.cid-uPO1zydiGS .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uPO1zydiGS .item:focus,
.cid-uPO1zydiGS span:focus {
  outline: none;
}
.cid-uPO1zydiGS .item-wrapper {
  position: relative;
}
.cid-uPO1zydiGS .slide-content {
  position: relative;
  border-radius: 4px;
  background: #f2f3f7;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPO1zydiGS .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPO1zydiGS .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-uPO1zydiGS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPO1zydiGS .mbr-section-title {
  color: #232323;
}
.cid-uPO1zydiGS .mbr-text,
.cid-uPO1zydiGS .mbr-section-btn {
  text-align: left;
}
.cid-uPO1zydiGS .item-title {
  text-align: left;
}
.cid-uPO1zydiGS .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uPO1zydiGS .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uPO1zydiGS .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uPO1zydiGS .embla__button--next,
.cid-uPO1zydiGS .embla__button--prev {
  display: flex;
}
.cid-uPO1zydiGS .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPO1zydiGS .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uPO1zydiGS .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uPO1zydiGS .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPO1zydiGS .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPO1zydiGS .embla__button {
    top: auto;
  }
}
.cid-uPO1zydiGS .embla {
  position: relative;
  width: 100%;
}
.cid-uPO1zydiGS .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uPO1zydiGS .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uPO1zydiGS .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uPO1zydiGS .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uPO1zydiGS .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-uPO1zydiGS .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uPO1zydiGS .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uPO2IH7csQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f3f7;
}
.cid-uPO2IH7csQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPO2IH7csQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPO2IH7csQ .col-title {
  margin-bottom: 32px;
}
.cid-uPO2IH7csQ .mbr-section-title {
  color: #FFFFFF;
}
.cid-uPO2IH7csQ .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-uPO2IH7csQ .cards-row {
  row-gap: 32px;
}
.cid-uPO2IH7csQ .card {
  border-radius: 0;
}
@media (max-width: 767px) {
  .cid-uPO2IH7csQ .card {
    text-align: center;
  }
}
.cid-uPO2IH7csQ .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: stretch;
  flex-wrap: wrap;
}
.cid-uPO2IH7csQ .mbr-iconfont {
  flex-shrink: 0;
  display: block;
  font-size: 48px;
  color: #b79b6c;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-uPO2IH7csQ .mbr-iconfont {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPO2IH7csQ .mbr-iconfont {
    font-size: 40px;
  }
}
.cid-uPO2IH7csQ .text-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uPO2IH7csQ .text-wrap {
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-uPO2IH7csQ .card-title {
  flex-grow: 1;
  color: #FFFFFF;
}
.cid-uPO2IH7csQ .card-text {
  width: 100%;
  margin-top: 20px;
  color: #33363b;
}
@media (max-width: 991px) {
  .cid-uPO2IH7csQ .card-text {
    margin-top: 0.5rem;
  }
}
.cid-uPO2IH7csQ .card-title,
.cid-uPO2IH7csQ .text-wrap {
  color: #33363b;
}
.cid-uPO2JMCOmN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPO2JMCOmN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPO2JMCOmN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPO2JMCOmN .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uPO2JMCOmN .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uPO2JMCOmN .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uPO2JMCOmN .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uPO2JMCOmN .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uPO2JMCOmN .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uPO2JMCOmN .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPO2JMCOmN .image-wrapper img {
    height: 350px;
  }
}
.cid-uPO2JMCOmN .mbr-section-title {
  color: #ffffff;
}
.cid-uPO2JMCOmN .mbr-text,
.cid-uPO2JMCOmN .text-wrapper {
  color: #060606;
}
.cid-uPO2JMCOmN .mbr-section-title,
.cid-uPO2JMCOmN .mbr-section-btn {
  color: #060606;
}
.cid-uPO1VvgjmW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f3f7;
}
.cid-uPO1VvgjmW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPO1VvgjmW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPO1VvgjmW .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uPO1VvgjmW .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uPO1VvgjmW .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uPO1VvgjmW .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uPO1VvgjmW .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uPO1VvgjmW .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uPO1VvgjmW .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPO1VvgjmW .image-wrapper img {
    height: 350px;
  }
}
.cid-uPO1VvgjmW .mbr-section-title {
  color: #ffffff;
}
.cid-uPO1VvgjmW .mbr-text,
.cid-uPO1VvgjmW .text-wrapper {
  color: #060606;
}
.cid-uPO1VvgjmW .mbr-section-title,
.cid-uPO1VvgjmW .mbr-section-btn {
  color: #060606;
}
.cid-uPO2gpooOh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPO2gpooOh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPO2gpooOh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPO2gpooOh .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uPO2gpooOh .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uPO2gpooOh .container {
    padding: 0 16px;
  }
}
.cid-uPO2gpooOh .row {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 -12px;
}
.cid-uPO2gpooOh .row .card {
  justify-content: flex-end;
  padding: 0 12px;
}
.cid-uPO2gpooOh .content-wrapper {
  margin-bottom: 80px;
}
.cid-uPO2gpooOh .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uPO2gpooOh .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uPO2gpooOh .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-uPO2gpooOh .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uPO2gpooOh .mbr-section-btn-main {
  margin-bottom: 14px;
}
.cid-uPO2gpooOh .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-uPO2gpooOh .item .item-wrapper {
  background-color: #f2f3f7;
  height: 100%;
  padding: 50px;
  border-radius: 14px !important;
}
@media (max-width: 992px) {
  .cid-uPO2gpooOh .item .item-wrapper {
    padding: 32px;
  }
}
.cid-uPO2gpooOh .item .item-wrapper .card-box .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uPO2gpooOh .item .item-wrapper .card-box .title-wrap {
    margin-bottom: 32px;
  }
}
.cid-uPO2gpooOh .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-uPO2gpooOh .item .item-wrapper .card-box .title-wrap .mbr-iconfont {
  display: inline-flex;
  margin-left: 16px;
  font-size: 30px;
  color: #b23926;
}
.cid-uPO2gpooOh .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uPO2gpooOh .item-menu-overlay .btn-wrapper {
  margin-top: -4%;
}
.cid-uPO2gpooOh .mbr-section-title {
  color: #000000;
}
.cid-uPO2gpooOh .mbr-text,
.cid-uPO2gpooOh .text-wrap {
  color: #6f6f6f;
  text-align: center;
}
.cid-uPO2gpooOh .item-title {
  color: #060606;
}
.cid-uPO2gpooOh .item-text {
  color: #060606;
}
.cid-uPO2gpooOh .mbr-section-title,
.cid-uPO2gpooOh .mbr-section-btn {
  text-align: center;
}
.cid-uPO2dJqzm6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #f2f3f7;
}
.cid-uPO2dJqzm6 .item:focus,
.cid-uPO2dJqzm6 span:focus {
  outline: none;
}
.cid-uPO2dJqzm6 .item-wrapper {
  position: relative;
}
.cid-uPO2dJqzm6 .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uPO2dJqzm6 .mbr-section-btn {
  margin-top: auto !important;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  display: inline-block;
}
.cid-uPO2dJqzm6 .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 24px;
}
.cid-uPO2dJqzm6 .mbr-text,
.cid-uPO2dJqzm6 .mbr-section-btn {
  text-align: left;
}
.cid-uPO2dJqzm6 .item-title {
  text-align: left;
}
.cid-uPO2dJqzm6 .item-subtitle {
  text-align: left;
}
.cid-uPO2dJqzm6 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 33%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-uPO2dJqzm6 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-uPO2dJqzm6 .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-uPO2dJqzm6 .embla__slide {
    min-width: 375px;
  }
}
.cid-uPO2dJqzm6 .embla__button--next,
.cid-uPO2dJqzm6 .embla__button--prev {
  display: flex;
}
.cid-uPO2dJqzm6 .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: #14142b;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPO2dJqzm6 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uPO2dJqzm6 .embla__button:hover {
  background: #47b5ed;
  color: #fff;
  transform: scale(1.05);
}
.cid-uPO2dJqzm6 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPO2dJqzm6 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPO2dJqzm6 .embla__button {
    top: auto;
  }
}
.cid-uPO2dJqzm6 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uPO2dJqzm6 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uPO2dJqzm6 .embla {
  position: relative;
  width: 100%;
}
.cid-uPO2dJqzm6 .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uPO2dJqzm6 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uPO2dJqzm6 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uPO2dJqzm6 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uPO2dJqzm6 .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-uPO2dJqzm6 .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-uPO2dJqzm6 .shadow {
  border-radius: 34px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  padding: 48px 32px;
  border: 1px solid #eff0f6;
  background-color: #ffffff;
}
.cid-uPO2dJqzm6 .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  padding: 0px 20px 20px;
  display: flex;
  justify-content: center;
}
.cid-uPO2dJqzm6 img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.cid-uPO2dJqzm6 .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-uPO2dJqzm6 .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-uPO2dJqzm6 .shadow:hover .number,
.cid-uPO2dJqzm6 .shadow:hover .card-title {
  color: #47b5ed !important;
}
.cid-uPO2dJqzm6 .shadow:hover .iconfont-wrapper > .mbr-iconfont > span {
  color: #000000 !important;
}
.cid-uPO2dJqzm6 .card-title {
  margin-bottom: 16px;
  color: #4c4c4c;
  transition: 0.35s;
  text-align: left;
}
.cid-uPO2dJqzm6 .card-text {
  color: #8c8c95;
  text-align: center;
}
.cid-uPO2dJqzm6 H3 {
  color: #1d1d1f;
  text-align: center;
}
.cid-uPO2dJqzm6 .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 34px 25px 54px 31px;
}
.cid-uPO2dJqzm6 .date {
  margin-bottom: 24px;
  color: #8c8c95;
}
.cid-uPO2dJqzm6 .link-title {
  display: inline-block;
}
.cid-uPO2dJqzm6 .margin {
  margin-right: 14px;
}
.cid-uPO2dJqzm6 .article {
  display: contents;
}
.cid-uPO2dJqzm6 .button-color {
  padding: 1rem 1.5625rem !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
}
.cid-uPO2dJqzm6 .link-row {
  align-items: center;
}
@media (max-width: 530px) {
  .cid-uPO2dJqzm6 .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
@media (max-width: 480px) {
  .cid-uPO2dJqzm6 .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
.cid-uPO2dJqzm6 .iconfont-wrapper {
  text-align: left;
  margin-bottom: 32px;
}
.cid-uPO2dJqzm6 .iconfont-wrapper .mbr-iconfont::before {
  font-size: 50px;
  padding: 25px;
  border-radius: 50%;
}
.cid-uPO2dJqzm6 .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-uPO2dJqzm6 .btn {
  margin-top: 20px;
}
.cid-uPO2dJqzm6 .card-title,
.cid-uPO2dJqzm6 .iconfont-wrapper {
  text-align: center;
  color: #a7822a;
}
.cid-uPO2dJqzm6 a.btn > span {
  margin-left: 0.5rem;
}
.cid-uPO2brPz8J {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPO2brPz8J blockquote {
  border-color: #a7822a;
  border-radius: 4px;
  background-color: #f2f3f7;
}
.cid-uPO2etrc7M {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPO2etrc7M blockquote {
  border-color: #a7822a;
  border-radius: 4px;
  background-color: #f2f3f7;
}
.cid-uPO2a4ZmGj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f2f3f7;
}
.cid-uPO2a4ZmGj .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uPO2a4ZmGj .container {
    max-width: 1400px;
  }
}
.cid-uPO2a4ZmGj .card {
  margin: auto;
}
.cid-uPO2a4ZmGj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #a7822a;
  margin-bottom: 2rem;
}
.cid-uPO2a4ZmGj .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPO2a4ZmGj .row {
  justify-content: center;
}
.cid-uPO2a4ZmGj .card-title,
.cid-uPO2a4ZmGj .card-box {
  text-align: center;
}
.cid-uPO1ZbHj5M {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPO1ZbHj5M img {
  width: 120px;
  margin: auto;
}
.cid-uPO1ZbHj5M .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uPO1ZbHj5M .card {
    max-width: 12.5%;
  }
}
.cid-uPO209Wdpl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #f2f3f7;
}
.cid-uPO209Wdpl .item-wrapper {
  position: relative;
}
.cid-uPO209Wdpl .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uPO209Wdpl .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 18%;
  max-width: 596px;
}
.cid-uPO209Wdpl .embla__button--next,
.cid-uPO209Wdpl .embla__button--prev {
  display: flex;
}
.cid-uPO209Wdpl .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPO209Wdpl .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uPO209Wdpl .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-uPO209Wdpl .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-uPO209Wdpl .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uPO209Wdpl .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uPO209Wdpl .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-uPO209Wdpl .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uPO209Wdpl .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uPO209Wdpl .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uPO209Wdpl .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uPO209Wdpl .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.cid-uPO209Wdpl img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uPO209Wdpl .container {
  max-width: 1100px;
}
.cid-uPO209Wdpl .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-uPO209Wdpl .embla {
    width: 70%;
  }
  .cid-uPO209Wdpl .embla__slide {
    min-width: 150%;
  }
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uPHXa48gFk .icon-bar {
  z-index: 100002;
  right: 2%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uPHXa48gFk .icon-bar a:hover {
  background-color: #e59e4d;
  margin-left: -50px;
  width: 100px;
}
.cid-uPHXa48gFk .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 5px;
  border-radius: 21px;
}
.cid-uPHXa48gFk .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-uPHXa48gFk .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-uPHXa48gFk .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-uPHXa48gFk .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-uPHXa48gFk .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-uPHXa48gFk .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-uPHXa48gFk .custom1 {
  background: #a7822a;
  color: white;
  width: 50px;
}
.cid-uPHXa48gFk .custom2 {
  background: #0e1b28;
  color: white;
  width: 50px;
}
.cid-uPHXa48gFk .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uPHXa48gFk .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#e43f3f, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-uPHXa48gFk .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #e43f3f);
}
.cid-uPHXa48gFk .corner-ribbon.top-zen {
  top: auto;
  bottom: 25px;
  left: -50px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: fixed;
}
.cid-uPHXa48gFk P {
  color: #232323;
}
.cid-uPHXa48gFk DIV {
  color: #ffffff;
}
.cid-uPHXa48gFk H10 {
  color: #767676;
}
.cid-uPHXa48gFk .hidden {
  display: none;
}
.cid-uPHXa48gFk div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sLIergnYvr {
  padding-top: 180px;
  background-image: url("../../../assets/images/mbr-3-1920x1440.webp");
}
.cid-sLIergnYvr .container {
  margin-bottom: 15%;
}
.cid-sLIergnYvr .content-container .btn-bgr {
  z-index: 0;
}
.cid-sLIergnYvr .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sLIergnYvr .icon-block-top span {
  background-color: #a7822a;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sLIergnYvr .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sLIergnYvr .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sLIergnYvr .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sLIergnYvr .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sLIergnYvr .box-item-text,
.cid-sLIergnYvr .mbr-section-btn {
  color: #8d97ad;
}
.cid-sLIergnYvr .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sLIergnYvr .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sLIergnYvr .box-list li:last-child {
  border-bottom: none;
}
.cid-sLIergnYvr .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sLIergnYvr .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sLIergnYvr .mbr-section-btn {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.cid-sLIergnYvr .mbr-section-btn > .btn-underline {
  padding: .5rem;
}
@media (min-width: 992px) {
  .cid-sLIergnYvr .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sLIergnYvr .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLIergnYvr .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sLIergnYvr .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sLIergnYvr .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sLIergnYvr .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sLIergnYvr .mbr-text {
  color: #ffffff;
}
.cid-sLIergnYvr H1 {
  color: #ffffff;
}
.cid-sPv8L8Y2If {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-ufuz654Ie0 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ufBaTBqIAE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-ufBaTBqIAE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufBaTBqIAE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-ufBaTBqIAE .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ufBaTBqIAE .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ufBaTBqIAE .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ufBaTBqIAE .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-ufBaTBqIAE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ufBaTBqIAE .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sPv9TNAlph {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-ufuz6ZBnpj {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ufBekU9Udn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-ufBekU9Udn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufBekU9Udn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-ufBekU9Udn .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ufBekU9Udn .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ufBekU9Udn .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ufBekU9Udn .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-ufBekU9Udn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ufBekU9Udn .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sWXtRfTNrM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-sWXtRfTNrM .item:focus,
.cid-sWXtRfTNrM span:focus {
  outline: none;
}
.cid-sWXtRfTNrM .item-wrapper {
  position: relative;
}
.cid-sWXtRfTNrM .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-sWXtRfTNrM .mbr-section-btn {
  margin-top: auto !important;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  display: inline-block;
}
.cid-sWXtRfTNrM .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 24px;
}
.cid-sWXtRfTNrM .mbr-text,
.cid-sWXtRfTNrM .mbr-section-btn {
  text-align: left;
}
.cid-sWXtRfTNrM .item-title {
  text-align: left;
}
.cid-sWXtRfTNrM .item-subtitle {
  text-align: left;
}
.cid-sWXtRfTNrM .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 33%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-sWXtRfTNrM .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-sWXtRfTNrM .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-sWXtRfTNrM .embla__slide {
    min-width: 375px;
  }
}
.cid-sWXtRfTNrM .embla__button--next,
.cid-sWXtRfTNrM .embla__button--prev {
  display: flex;
}
.cid-sWXtRfTNrM .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: #14142b;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sWXtRfTNrM .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-sWXtRfTNrM .embla__button:hover {
  background: #47b5ed;
  color: #fff;
  transform: scale(1.05);
}
.cid-sWXtRfTNrM .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sWXtRfTNrM .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sWXtRfTNrM .embla__button {
    top: auto;
  }
}
.cid-sWXtRfTNrM .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sWXtRfTNrM .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sWXtRfTNrM .embla {
  position: relative;
  width: 100%;
}
.cid-sWXtRfTNrM .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-sWXtRfTNrM .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-sWXtRfTNrM .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-sWXtRfTNrM .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-sWXtRfTNrM .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-sWXtRfTNrM .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-sWXtRfTNrM .shadow {
  border-radius: 34px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  padding: 48px 32px;
  border: 1px solid #eff0f6;
  background-color: #ffffff;
}
.cid-sWXtRfTNrM .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  padding: 0px 20px 20px;
  display: flex;
  justify-content: center;
}
.cid-sWXtRfTNrM img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.cid-sWXtRfTNrM .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-sWXtRfTNrM .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-sWXtRfTNrM .shadow:hover .number,
.cid-sWXtRfTNrM .shadow:hover .card-title {
  color: #47b5ed !important;
}
.cid-sWXtRfTNrM .shadow:hover .iconfont-wrapper > .mbr-iconfont > span {
  color: #000000 !important;
}
.cid-sWXtRfTNrM .card-title {
  margin-bottom: 16px;
  color: #4c4c4c;
  transition: 0.35s;
  text-align: left;
}
.cid-sWXtRfTNrM .card-text {
  color: #8c8c95;
  text-align: center;
}
.cid-sWXtRfTNrM H3 {
  color: #1d1d1f;
  text-align: center;
}
.cid-sWXtRfTNrM .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 34px 25px 54px 31px;
}
.cid-sWXtRfTNrM .date {
  margin-bottom: 24px;
  color: #8c8c95;
}
.cid-sWXtRfTNrM .link-title {
  display: inline-block;
}
.cid-sWXtRfTNrM .margin {
  margin-right: 14px;
}
.cid-sWXtRfTNrM .article {
  display: contents;
}
.cid-sWXtRfTNrM .button-color {
  padding: 1rem 1.5625rem !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
}
.cid-sWXtRfTNrM .link-row {
  align-items: center;
}
@media (max-width: 530px) {
  .cid-sWXtRfTNrM .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
@media (max-width: 480px) {
  .cid-sWXtRfTNrM .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
.cid-sWXtRfTNrM .iconfont-wrapper {
  text-align: left;
  margin-bottom: 32px;
}
.cid-sWXtRfTNrM .iconfont-wrapper .mbr-iconfont::before {
  font-size: 50px;
  padding: 25px;
  border-radius: 50%;
}
.cid-sWXtRfTNrM .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-sWXtRfTNrM .btn {
  margin-top: 20px;
}
.cid-sWXtRfTNrM .card-title,
.cid-sWXtRfTNrM .iconfont-wrapper {
  text-align: center;
  color: #a7822a;
}
.cid-sWXtRfTNrM a.btn > span {
  margin-left: 0.5rem;
}
.cid-sPv9UvGHBT {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-ufuz7WZcWp {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sPvj0LUyGF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sPvj0LUyGF h2,
.cid-sPvj0LUyGF h3,
.cid-sPvj0LUyGF h4,
.cid-sPvj0LUyGF h5 {
  margin: 0;
}
.cid-sPvj0LUyGF .container-fluid {
  padding-left: 8%;
  padding-right: 8%;
}
@media (max-width: 680px) {
  .cid-sPvj0LUyGF .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sPvj0LUyGF .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .cid-sPvj0LUyGF .mbr-section-head {
    padding: 0 35px;
  }
}
.cid-sPvj0LUyGF .mbr-section-title {
  color: #000000;
  text-align: center;
  margin: 0;
}
.cid-sPvj0LUyGF .mbr-section-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}
.cid-sPvj0LUyGF .item-container {
  max-width: 1620px;
  display: flex;
  flex-wrap: wrap;
}
.cid-sPvj0LUyGF .item {
  padding: 0 40px;
  margin-bottom: 30px;
  width: 16.66667%;
  transition: opacity 0.32s ease-out, transform 0.29s ease-out;
}
@media (max-width: 1440px) {
  .cid-sPvj0LUyGF .item {
    padding: 0 35px;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .cid-sPvj0LUyGF .item {
    width: 20%;
  }
}
@media (min-width: 681px) and (max-width: 1024px) {
  .cid-sPvj0LUyGF .item {
    width: 33.33333%;
  }
}
@media (max-width: 680px) {
  .cid-sPvj0LUyGF .item {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-sPvj0LUyGF .item-image {
  width: 100%;
}
.cid-sPvj0LUyGF img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
}
.cid-sPvj0LUyGF .mbr-card-title {
  color: #000000;
  text-align: center;
  margin: -5px 0 14px;
}
.cid-sPvj0LUyGF .mbr-card-title:hover {
  color: #a7822a;
}
.cid-sPvj0LUyGF h3 {
  margin: 0;
}
.cid-sPvj0LUyGF .mbr-card-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
  margin-bottom: 2px;
}
.cid-sPvj0LUyGF .item-caption {
  padding: 16px 0 8px;
  background: transparent;
}
.cid-ufuzFGRkfB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ufuzFGRkfB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufuzFGRkfB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufuzFGRkfB .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-ufuzFGRkfB .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-ufuzFGRkfB .container {
    padding: 0 22px;
  }
}
.cid-ufuzFGRkfB .row .card {
  justify-content: flex-end;
}
.cid-ufuzFGRkfB .content-wrapper {
  margin-bottom: 55px;
}
@media (max-width: 992px) {
  .cid-ufuzFGRkfB .content-wrapper {
    height: auto;
    margin-bottom: 32px;
  }
}
.cid-ufuzFGRkfB .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ufuzFGRkfB .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ufuzFGRkfB .item {
  padding: 0 6px;
  margin-bottom: 40px;
}
.cid-ufuzFGRkfB .item .item-wrapper .item-img {
  margin-bottom: 32px;
}
.cid-ufuzFGRkfB .item .item-wrapper .item-img img {
  height: 430px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ufuzFGRkfB .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-ufuzFGRkfB .item .item-wrapper .item-content .card-name {
  margin-bottom: 0;
}
.cid-ufuzFGRkfB .item .item-wrapper .item-content .card-role {
  margin-bottom: 0;
}
.cid-ufuzFGRkfB .item .item-wrapper .item-content .card-text {
  margin: 32px 0 0 0;
}
.cid-ufuzFGRkfB .item .item-wrapper .item-content .icon-wrapper {
  margin-top: 32px;
  display: block;
}
.cid-ufuzFGRkfB .item .item-wrapper .item-content .icon-wrapper:hover .mbr-iconfont,
.cid-ufuzFGRkfB .item .item-wrapper .item-content .icon-wrapper:focus .mbr-iconfont {
  color: #a7822a;
}
.cid-ufuzFGRkfB .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 24px;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-ufuzFGRkfB .items-wrapper {
  margin: 0 -6px;
}
.cid-ufuzFGRkfB .mbr-section-title {
  color: #000000;
}
.cid-ufuzFGRkfB .mbr-desc {
  color: #000000;
  text-align: right;
}
.cid-ufuzFGRkfB .card-name {
  color: #000000;
}
.cid-ufuzFGRkfB .card-role {
  color: #000000;
}
.cid-ufuzFGRkfB .card-text {
  color: #635d60;
}
.cid-u7Ad1wa6l7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7Ad1wa6l7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7Ad1wa6l7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7Ad1wa6l7 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-u7Ad1wa6l7 .panel-group {
  border: none;
}
.cid-u7Ad1wa6l7 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u7Ad1wa6l7 .panel-body,
.cid-u7Ad1wa6l7 .card-header {
  padding: 1rem 0;
}
.cid-u7Ad1wa6l7 .panel-title-edit {
  color: #000000;
}
.cid-u7Ad1wa6l7 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ufuKCWkVD0 .icon-bar {
  z-index: 100002;
  right: 1%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-ufuKCWkVD0 .icon-bar a:hover {
  background-color: #e59e4d;
  margin-left: -50px;
  width: 100px;
}
.cid-ufuKCWkVD0 .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 18px;
}
.cid-ufuKCWkVD0 .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-ufuKCWkVD0 .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-ufuKCWkVD0 .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-ufuKCWkVD0 .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-ufuKCWkVD0 .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-ufuKCWkVD0 .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-ufuKCWkVD0 .custom1 {
  background: #a7822a;
  color: white;
  width: 50px;
}
.cid-ufuKCWkVD0 .custom2 {
  background: #0e1b28;
  color: white;
  width: 50px;
}
.cid-ufuKCWkVD0 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-ufuKCWkVD0 .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#e43f3f, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-ufuKCWkVD0 .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #e43f3f);
}
.cid-ufuKCWkVD0 .corner-ribbon.top-zen {
  top: auto;
  bottom: 25px;
  left: -50px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: fixed;
}
.cid-ufuKCWkVD0 P {
  color: #232323;
}
.cid-ufuKCWkVD0 DIV {
  color: #ffffff;
}
.cid-ufuKCWkVD0 H10 {
  color: #767676;
}
.cid-ufuKCWkVD0 .hidden {
  display: none;
}
.cid-ufuKCWkVD0 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sMi8Cp07xn {
  padding-top: 180px;
  background-image: url("../../../assets/images/img-20190731-115757-2000x2667.webp");
}
.cid-sMi8Cp07xn .container {
  margin-bottom: 15%;
}
.cid-sMi8Cp07xn .content-container .btn-bgr {
  z-index: 0;
}
.cid-sMi8Cp07xn .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sMi8Cp07xn .icon-block-top span {
  background-color: #a7822a;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sMi8Cp07xn .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sMi8Cp07xn .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sMi8Cp07xn .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sMi8Cp07xn .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sMi8Cp07xn .box-item-text,
.cid-sMi8Cp07xn .mbr-section-btn {
  color: #8d97ad;
}
.cid-sMi8Cp07xn .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sMi8Cp07xn .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sMi8Cp07xn .box-list li:last-child {
  border-bottom: none;
}
.cid-sMi8Cp07xn .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sMi8Cp07xn .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sMi8Cp07xn .mbr-section-btn {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.cid-sMi8Cp07xn .mbr-section-btn > .btn-underline {
  padding: .5rem;
}
@media (min-width: 992px) {
  .cid-sMi8Cp07xn .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sMi8Cp07xn .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sMi8Cp07xn .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sMi8Cp07xn .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sMi8Cp07xn .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sMi8Cp07xn .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sMi8Cp07xn .mbr-text {
  color: #ffffff;
}
.cid-sMi8Cp07xn H1 {
  color: #ffffff;
}
.cid-sWuAjrtLIP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sWuAjrtLIP blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-sMibq5cct3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sMi9OWSLCi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-sMi9OWSLCi .img-wrapper {
  text-align: center;
}
.cid-sMi9OWSLCi img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-sMi9OWSLCi .row {
  align-items: flex-start;
}
.cid-sMi9OWSLCi .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 992px) {
  .cid-sMi9OWSLCi .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-sMi9OWSLCi .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sMi9OWSLCi .card-wrapper {
    padding: 1rem;
  }
}
.cid-sMib7jxWVW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sMibfBCa6R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-sMibfBCa6R .img-wrapper {
  text-align: center;
}
.cid-sMibfBCa6R img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-sMibfBCa6R .row {
  align-items: flex-start;
}
.cid-sMibfBCa6R .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 992px) {
  .cid-sMibfBCa6R .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-sMibfBCa6R .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sMibfBCa6R .card-wrapper {
    padding: 1rem;
  }
}
.cid-sMib8QE2l4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sMibgdvPrK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-sMibgdvPrK .img-wrapper {
  text-align: center;
}
.cid-sMibgdvPrK img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-sMibgdvPrK .row {
  align-items: flex-start;
}
.cid-sMibgdvPrK .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 992px) {
  .cid-sMibgdvPrK .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-sMibgdvPrK .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sMibgdvPrK .card-wrapper {
    padding: 1rem;
  }
}
.cid-u7AlVRdSfX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7AlVRdSfX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7AlVRdSfX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7AlVRdSfX .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-u7AlVRdSfX .panel-group {
  border: none;
}
.cid-u7AlVRdSfX .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u7AlVRdSfX .panel-body,
.cid-u7AlVRdSfX .card-header {
  padding: 1rem 0;
}
.cid-u7AlVRdSfX .panel-title-edit {
  color: #000000;
}
.cid-u7AlVRdSfX .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ufuKNich3c .icon-bar {
  z-index: 100002;
  right: 1%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-ufuKNich3c .icon-bar a:hover {
  background-color: #e59e4d;
  margin-left: -50px;
  width: 100px;
}
.cid-ufuKNich3c .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 18px;
}
.cid-ufuKNich3c .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-ufuKNich3c .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-ufuKNich3c .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-ufuKNich3c .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-ufuKNich3c .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-ufuKNich3c .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-ufuKNich3c .custom1 {
  background: #a7822a;
  color: white;
  width: 50px;
}
.cid-ufuKNich3c .custom2 {
  background: #0e1b28;
  color: white;
  width: 50px;
}
.cid-ufuKNich3c .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-ufuKNich3c .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#e43f3f, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-ufuKNich3c .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #e43f3f);
}
.cid-ufuKNich3c .corner-ribbon.top-zen {
  top: auto;
  bottom: 25px;
  left: -50px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: fixed;
}
.cid-ufuKNich3c P {
  color: #232323;
}
.cid-ufuKNich3c DIV {
  color: #ffffff;
}
.cid-ufuKNich3c H10 {
  color: #767676;
}
.cid-ufuKNich3c .hidden {
  display: none;
}
.cid-ufuKNich3c div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-uLJnAB6uCH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uLJc6hi0Ro {
  flex-direction: column !important;
  justify-content: center;
  background-image: url("../../../assets/images/16-interno-piloti-2000x1400.webp");
}
.cid-uLJc6hi0Ro .row.heading {
  margin-bottom: 72px;
}
.cid-uLJc6hi0Ro .card {
  flex-direction: row;
  justify-content: center;
}
.cid-uLJc6hi0Ro .card-box {
  display: flex;
  flex-direction: column;
  width: 80%;
  padding-left: 1rem;
}
.cid-uLJc6hi0Ro .card-box .card-title {
  color: #ffffff;
}
.cid-uLJc6hi0Ro .card-box .mbr-text {
  color: #ffffff;
}
.cid-uLJc6hi0Ro .card-box .link .btn {
  margin: 0;
}
.cid-uLJc6hi0Ro .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-uLJc6hi0Ro .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-uLJc6hi0Ro .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-uLJc6hi0Ro .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-uLJc6hi0Ro .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-uLJc6hi0Ro .card .card-box .card-title,
  .cid-uLJc6hi0Ro .card .card-box .mbr-text,
  .cid-uLJc6hi0Ro .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-uLJc6hi0Ro .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-uLJc6hi0Ro .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLJc6hi0Ro .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7572lAqId {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/whatsapp-image-2023-04-22-at-14.54.38-2000x1500.webp");
}
.cid-u7572lAqId .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7572lAqId .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-u7572lAqId .container {
    padding: 0 16px;
  }
}
.cid-u7572lAqId .row {
  position: relative;
  justify-content: space-between;
}
.cid-u7572lAqId .content-wrapper {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .cid-u7572lAqId .content-wrapper {
    margin-bottom: 80px;
  }
}
.cid-u7572lAqId .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u7572lAqId .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-u7572lAqId .content-wrapper .mbr-text {
  margin-bottom: 14px;
}
.cid-u7572lAqId .content-wrapper .decor-wrapper {
  margin-top: 32px;
}
.cid-u7572lAqId .content-wrapper .decor-wrapper .decor-wrap {
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #e59e4d -10%, transparent 80%);
}
.cid-u7572lAqId .panel-group .card {
  border-radius: 20px !important;
  background-color: #fafafa;
  margin-bottom: 24px;
  padding: 32px;
}
.cid-u7572lAqId .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-u7572lAqId .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-u7572lAqId .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-u7572lAqId .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-u7572lAqId .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-u7572lAqId .panel-group .card .panel-collapse .panel-body {
  padding-top: 16px;
}
.cid-u7572lAqId .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(20px) scale3d(1, 0, 1);
  opacity: 0;
}
.cid-u7572lAqId .panel-group .card .panel-collapse.show .panel-body .panel-text {
  transform: translateY(0) scale3d(1, 1, 1);
  opacity: 1;
}
.cid-u7572lAqId .mbr-section-title {
  color: #000000;
}
.cid-u7572lAqId .mbr-text {
  color: #6f6f6f;
}
.cid-u7572lAqId .panel-title-edit {
  color: #000000;
}
.cid-u7572lAqId .panel-text {
  color: #000000;
}
.cid-u7572lAqId .mbr-text,
.cid-u7572lAqId .text-wrap {
  color: #000000;
}
.cid-uLKfMcEzRF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLKfMcEzRF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLKfMcEzRF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLKfMcEzRF .container {
    padding: 0 16px;
  }
}
.cid-uLKfMcEzRF .row {
  justify-content: center;
}
.cid-uLKfMcEzRF .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uLKfMcEzRF .image-wrapper {
  margin-bottom: 40px;
}
.cid-uLKfMcEzRF .image-wrapper img {
  height: 360px;
  object-fit: cover;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .cid-uLKfMcEzRF .image-wrapper img {
    height: 280px;
  }
}
.cid-uLKfMcEzRF .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uLKfMcEzRF .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uLKfMcEzRF .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-uLKfMcEzRF .mbr-section-title,
.cid-uLKfMcEzRF .mbr-section-btn,
.cid-uLKfMcEzRF .icon-wrapper {
  color: #000000;
}
.cid-uwPc6DLG8W {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uwPc6DLG8W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwPc6DLG8W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwPc6DLG8W .col-title {
  margin-bottom: 32px;
}
.cid-uwPc6DLG8W .mbr-section-title {
  color: #24262b;
}
.cid-uwPc6DLG8W .mbr-section-subtitle {
  color: #24262b;
}
.cid-uwPc6DLG8W .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uwPc6DLG8W .cards-row {
  row-gap: 32px;
}
.cid-uwPc6DLG8W .card {
  border-radius: 0;
}
.cid-uwPc6DLG8W .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #33363b;
  margin-right: 0.5rem;
  flex-shrink: 0;
  transition: 0.3s all;
}
.cid-uwPc6DLG8W .card-title {
  flex-grow: 1;
  color: #24262b;
  transition: 0.3s all;
}
.cid-uwPc6DLG8W .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwPc6DLG8W .card-wrapper:hover .card-title {
  color: #b79b6c;
}
.cid-uwPc6DLG8W .card-wrapper:hover .mbr-iconfont {
  color: #b79b6c;
}
.cid-sMicVNpZtP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uwPedV4RV9 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #f2f3f7;
}
.cid-uwPedV4RV9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwPedV4RV9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwPedV4RV9 .col-title {
  margin-bottom: 32px;
}
.cid-uwPedV4RV9 .mbr-section-title {
  color: #24262b;
}
.cid-uwPedV4RV9 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uwPedV4RV9 .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uwPedV4RV9 .cards-row {
  row-gap: 32px;
}
.cid-uwPedV4RV9 .card {
  border-radius: 0;
}
.cid-uwPedV4RV9 .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #33363b;
  margin-right: 0.5rem;
  flex-shrink: 0;
  transition: 0.3s all;
}
.cid-uwPedV4RV9 .card-title {
  flex-grow: 1;
  color: #24262b;
  transition: 0.3s all;
}
.cid-uwPedV4RV9 .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwPedV4RV9 .card-wrapper:hover .card-title {
  color: #b79b6c;
}
.cid-uwPedV4RV9 .card-wrapper:hover .mbr-iconfont {
  color: #b79b6c;
}
.cid-sMicXOXlz0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwPefHegh2 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uwPefHegh2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwPefHegh2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwPefHegh2 .col-title {
  margin-bottom: 32px;
}
.cid-uwPefHegh2 .mbr-section-title {
  color: #24262b;
}
.cid-uwPefHegh2 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uwPefHegh2 .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uwPefHegh2 .cards-row {
  row-gap: 32px;
}
.cid-uwPefHegh2 .card {
  border-radius: 0;
}
.cid-uwPefHegh2 .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #33363b;
  margin-right: 0.5rem;
  flex-shrink: 0;
  transition: 0.3s all;
}
.cid-uwPefHegh2 .card-title {
  flex-grow: 1;
  color: #24262b;
  transition: 0.3s all;
}
.cid-uwPefHegh2 .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwPefHegh2 .card-wrapper:hover .card-title {
  color: #b79b6c;
}
.cid-uwPefHegh2 .card-wrapper:hover .mbr-iconfont {
  color: #b79b6c;
}
.cid-uLluSMFuI5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/inglese-per-piloti-1200x900.webp");
}
.cid-uLluSMFuI5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLluSMFuI5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLluSMFuI5 .container {
    padding: 0 16px;
  }
}
.cid-uLluSMFuI5 .row {
  position: relative;
  justify-content: space-between;
}
.cid-uLluSMFuI5 .content-wrapper {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .cid-uLluSMFuI5 .content-wrapper {
    margin-bottom: 80px;
  }
}
.cid-uLluSMFuI5 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uLluSMFuI5 .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uLluSMFuI5 .content-wrapper .mbr-text {
  margin-bottom: 14px;
}
.cid-uLluSMFuI5 .content-wrapper .decor-wrapper {
  margin-top: 32px;
}
.cid-uLluSMFuI5 .content-wrapper .decor-wrapper .decor-wrap {
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #e59e4d -10%, transparent 80%);
}
.cid-uLluSMFuI5 .panel-group .card {
  border-radius: 20px !important;
  background-color: #ffffff;
  margin-bottom: 24px;
  padding: 32px;
}
.cid-uLluSMFuI5 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uLluSMFuI5 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uLluSMFuI5 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uLluSMFuI5 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-uLluSMFuI5 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uLluSMFuI5 .panel-group .card .panel-collapse .panel-body {
  padding-top: 16px;
}
.cid-uLluSMFuI5 .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(20px) scale3d(1, 0, 1);
  opacity: 0;
}
.cid-uLluSMFuI5 .panel-group .card .panel-collapse.show .panel-body .panel-text {
  transform: translateY(0) scale3d(1, 1, 1);
  opacity: 1;
}
.cid-uLluSMFuI5 .mbr-section-title {
  color: #000000;
}
.cid-uLluSMFuI5 .mbr-text {
  color: #6f6f6f;
}
.cid-uLluSMFuI5 .panel-title-edit {
  color: #000000;
}
.cid-uLluSMFuI5 .panel-text {
  color: #000000;
}
.cid-uLluSMFuI5 .mbr-text,
.cid-uLluSMFuI5 .text-wrap {
  color: #000000;
}
.cid-uLlwnv7hrs {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLlwnv7hrs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLlwnv7hrs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLlwnv7hrs .col-title {
  margin-bottom: 32px;
}
.cid-uLlwnv7hrs .mbr-section-title {
  color: #24262b;
}
.cid-uLlwnv7hrs .mbr-section-subtitle {
  color: #24262b;
}
.cid-uLlwnv7hrs .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uLlwnv7hrs .cards-row {
  row-gap: 32px;
}
.cid-uLlwnv7hrs .card {
  border-radius: 0;
}
.cid-uLlwnv7hrs .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #33363b;
  margin-right: 0.5rem;
  flex-shrink: 0;
  transition: 0.3s all;
}
.cid-uLlwnv7hrs .card-title {
  flex-grow: 1;
  color: #24262b;
  transition: 0.3s all;
}
.cid-uLlwnv7hrs .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLlwnv7hrs .card-wrapper:hover .card-title {
  color: #b79b6c;
}
.cid-uLlwnv7hrs .card-wrapper:hover .mbr-iconfont {
  color: #b79b6c;
}
.cid-sRudbL2ZjN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f3f7;
}
.cid-sRudbL2ZjN .line {
  background-color: #a7822a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u7AqimXWtQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7AqimXWtQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7AqimXWtQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7AqimXWtQ .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-u7AqimXWtQ .panel-group {
  border: none;
}
.cid-u7AqimXWtQ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u7AqimXWtQ .panel-body,
.cid-u7AqimXWtQ .card-header {
  padding: 1rem 0;
}
.cid-u7AqimXWtQ .panel-title-edit {
  color: #000000;
}
.cid-u7AqimXWtQ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ufuKRiUaC8 .icon-bar {
  z-index: 100002;
  right: 1%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-ufuKRiUaC8 .icon-bar a:hover {
  background-color: #e59e4d;
  margin-left: -50px;
  width: 100px;
}
.cid-ufuKRiUaC8 .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 18px;
}
.cid-ufuKRiUaC8 .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-ufuKRiUaC8 .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-ufuKRiUaC8 .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-ufuKRiUaC8 .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-ufuKRiUaC8 .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-ufuKRiUaC8 .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-ufuKRiUaC8 .custom1 {
  background: #a7822a;
  color: white;
  width: 50px;
}
.cid-ufuKRiUaC8 .custom2 {
  background: #0e1b28;
  color: white;
  width: 50px;
}
.cid-ufuKRiUaC8 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-ufuKRiUaC8 .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#e43f3f, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-ufuKRiUaC8 .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #e43f3f);
}
.cid-ufuKRiUaC8 .corner-ribbon.top-zen {
  top: auto;
  bottom: 25px;
  left: -50px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: fixed;
}
.cid-ufuKRiUaC8 P {
  color: #232323;
}
.cid-ufuKRiUaC8 DIV {
  color: #ffffff;
}
.cid-ufuKRiUaC8 H10 {
  color: #767676;
}
.cid-ufuKRiUaC8 .hidden {
  display: none;
}
.cid-ufuKRiUaC8 p {
  color: #ecf0f1;
  line-height: 28px;
  font-size: 15px;
  padding-top: 50px;
}
.cid-ufuKRiUaC8 .sticky-container {
  z-index: 1001;
  padding: 0px;
  margin: 0px;
  position: fixed;
  Right: -119px;
  top: 145px;
  width: 196px;
}
.cid-ufuKRiUaC8 .sticky li {
  list-style-type: none;
  background-color: #cccccc;
  color: #efefef;
  height: 43px;
  padding: 0px;
  margin: 0px 0px 1px 0px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.cid-ufuKRiUaC8 .sticky li:hover {
  margin-left: -100px;
}
.cid-ufuKRiUaC8 .sticky li img {
  float: left;
  margin: 5px 5px;
  margin-right: 10px;
  width: 10vw;
  height: 10vh;
  max-width: 30px;
  max-height: 30px;
}
.cid-ufuKRiUaC8 .sticky li p {
  padding: 0px;
  margin: 0px;
  line-height: 43px;
}
.cid-ufuKRiUaC8 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-ufuLh5Rw9u.popup-builder {
  background-color: #ffffff;
}
.cid-ufuLh5Rw9u.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ufuLh5Rw9u.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ufuLh5Rw9u .modal-content,
.cid-ufuLh5Rw9u .modal-dialog {
  height: auto;
}
.cid-ufuLh5Rw9u .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ufuLh5Rw9u .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ufuLh5Rw9u .form-wrapper .mbr-form .form-group,
  .cid-ufuLh5Rw9u .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ufuLh5Rw9u .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ufuLh5Rw9u .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ufuLh5Rw9u .mbr-text {
  text-align: center;
}
.cid-ufuLh5Rw9u .pt-0 {
  padding-top: 0 !important;
}
.cid-ufuLh5Rw9u .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ufuLh5Rw9u .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ufuLh5Rw9u .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ufuLh5Rw9u .modal-open {
  overflow: hidden;
}
.cid-ufuLh5Rw9u .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ufuLh5Rw9u .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ufuLh5Rw9u .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ufuLh5Rw9u .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ufuLh5Rw9u .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ufuLh5Rw9u .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ufuLh5Rw9u .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ufuLh5Rw9u .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ufuLh5Rw9u .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ufuLh5Rw9u .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ufuLh5Rw9u .modal-backdrop.fade {
  opacity: 0;
}
.cid-ufuLh5Rw9u .modal-backdrop.show {
  opacity: .5;
}
.cid-ufuLh5Rw9u .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ufuLh5Rw9u .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ufuLh5Rw9u .modal-header {
    padding: 1rem;
  }
}
.cid-ufuLh5Rw9u .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ufuLh5Rw9u .modal-header .close svg {
  fill: #353535;
}
.cid-ufuLh5Rw9u .modal-header .close:hover {
  opacity: 1;
}
.cid-ufuLh5Rw9u .modal-header .close:focus {
  outline: none;
}
.cid-ufuLh5Rw9u .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ufuLh5Rw9u .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ufuLh5Rw9u .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufuLh5Rw9u .modal-body {
    padding: 1rem;
  }
}
.cid-ufuLh5Rw9u .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufuLh5Rw9u .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufuLh5Rw9u .modal-footer {
    padding: 1rem;
  }
}
.cid-ufuLh5Rw9u .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ufuLh5Rw9u .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ufuLh5Rw9u .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ufuLh5Rw9u .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ufuLh5Rw9u .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ufuLh5Rw9u .modal-lg,
  .cid-ufuLh5Rw9u .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ufuLh5Rw9u .modal-xl {
    max-width: 1140px;
  }
}
.cid-ufuLh5Rw9u .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ufuLh5Rw9u .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ufuLh5Rw9u .form-group {
  margin-bottom: 1rem;
}
.cid-ufuLh5Rw9u .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ufuLh5Rw9u .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ufuLh5Rw9u .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ufuLh5Rw9u .mbr-section-btn {
  margin: 0;
}
.cid-ufuLh5Rw9u .mbr-section-btn .btn {
  margin: 0;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-uPS6mdfiUh {
  padding-top: 7rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uPS6mdfiUh .mbr-overlay {
  background-color: #212428;
  opacity: 0.2;
}
.cid-uPS6mdfiUh .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uPS6mdfiUh .row {
  margin-left: -10px;
  margin-right: -10px;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;
}
.cid-uPS6mdfiUh .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .cid-uPS6mdfiUh .col-info-card {
    margin-bottom: 50px;
  }
}
.cid-uPS6mdfiUh .mbr-section-head {
  width: 100%;
  padding-bottom: 40px;
}
.cid-uPS6mdfiUh .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-uPS6mdfiUh .mbr-section-title {
    text-align: center;
  }
}
.cid-uPS6mdfiUh .mbr-section-subtitle {
  color: #000000;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uPS6mdfiUh .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-uPS6mdfiUh .item-card {
  height: 100%;
}
.cid-uPS6mdfiUh .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: #000000;
  box-shadow: 10px 10px 19px #947730, -10px -10px 19px #801808;
}
@media (max-width: 767px) {
  .cid-uPS6mdfiUh .item-wrap {
    padding: 50px 20px;
  }
}
.cid-uPS6mdfiUh .item-wrap:hover .item-img img {
  transform: scale(1.1);
}
.cid-uPS6mdfiUh .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-uPS6mdfiUh .item-img img {
  width: 100%;
  aspect-ratio: 1.59722222;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-uPS6mdfiUh .card-box {
  padding-top: 28px;
}
.cid-uPS6mdfiUh .card-title {
  color: #ffffff;
  margin-bottom: 9px;
}
.cid-uPS6mdfiUh .card-subtitle {
  color: #ffffff;
  margin-bottom: 15px;
}
.cid-uPS6mdfiUh .card-text {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-uPS6mdfiUh .card-contacts {
  color: #ffffff;
}
.cid-uPS6mdfiUh .card-contacts a {
  position: relative;
  transition: 0.4s all;
}
.cid-uPS6mdfiUh .card-contacts a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: 0.4s all;
}
.cid-uPS6mdfiUh .card-contacts a:hover {
  color: #000000 !important;
}
.cid-uPS6mdfiUh .card-contacts a:hover:before {
  width: 100%;
}
.cid-uPS6mdfiUh .social-container {
  width: 100%;
  padding-top: 30px;
}
.cid-uPS6mdfiUh .social-title {
  color: #C4CFDE;
  margin-bottom: 8px;
}
.cid-uPS6mdfiUh .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -15px;
  margin-top: 24px;
}
.cid-uPS6mdfiUh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 15px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #947730, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uPS6mdfiUh .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPS6mdfiUh .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPS6mdfiUh .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPS6mdfiUh .soc-item:hover .mbr-iconfont {
  color: #000000;
}
.cid-uPS6mdfiUh .soc-item:hover:before {
  opacity: 1;
}
.cid-uPS6mdfiUh .form-main-container {
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  .cid-uPS6mdfiUh .form-main-container {
    padding-right: 20px;
  }
}
.cid-uPS6mdfiUh .form-wrap {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  background: #000000;
  box-shadow: 10px 10px 19px #947730, -10px -10px 19px #801808;
}
@media (max-width: 575px) {
  .cid-uPS6mdfiUh .form-wrap {
    padding: 20px;
  }
}
.cid-uPS6mdfiUh form {
  width: 100%;
}
.cid-uPS6mdfiUh form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-uPS6mdfiUh form p {
  color: #878e99;
}
.cid-uPS6mdfiUh form .mbr-section-btn {
  text-align: center;
  justify-content: center;
}
.cid-uPS6mdfiUh form .mbr-section-btn .btn {
  width: 100%;
}
.cid-uPS6mdfiUh form .form-group {
  margin-bottom: 20px !important;
}
.cid-uPS6mdfiUh form .form-control {
  background-color: #191b1e;
  border-radius: 6px !important;
  height: 55px;
  box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset !important;
  border: 2px solid #191b1e !important;
  padding: 10px 15px;
  font-size: 18px;
  margin-bottom: 0;
  color: #C4CFDE;
  font-weight: 400;
  transition: 0.4s all !important;
  line-height: 29px !important;
}
.cid-uPS6mdfiUh form .form-control::-webkit-input-placeholder {
  color: #878e99;
}
.cid-uPS6mdfiUh form .form-control::-moz-placeholder {
  color: #878e99;
}
.cid-uPS6mdfiUh form .form-control:-moz-placeholder {
  color: #878e99;
}
.cid-uPS6mdfiUh form .form-control:-ms-input-placeholder {
  color: #878e99;
}
.cid-uPS6mdfiUh form select {
  color: #878e99 !important;
}
.cid-uPS6mdfiUh form textarea {
  height: 216px !important;
  resize: none;
}
.cid-uPS6mdfiUh form input:active,
.cid-uPS6mdfiUh form textarea:active,
.cid-uPS6mdfiUh form input:focus,
.cid-uPS6mdfiUh form textarea:focus {
  border-color: #000000 !important;
  box-shadow: none !important;
  color: #878e99 !important;
  outline: none !important;
}
.cid-uPS6mdfiUh form input:active::-webkit-input-placeholder,
.cid-uPS6mdfiUh form textarea:active::-webkit-input-placeholder,
.cid-uPS6mdfiUh form input:focus::-webkit-input-placeholder,
.cid-uPS6mdfiUh form textarea:focus::-webkit-input-placeholder {
  color: #878e99;
}
.cid-uPS6mdfiUh form input:active::-moz-placeholder,
.cid-uPS6mdfiUh form textarea:active::-moz-placeholder,
.cid-uPS6mdfiUh form input:focus::-moz-placeholder,
.cid-uPS6mdfiUh form textarea:focus::-moz-placeholder {
  color: #878e99;
}
.cid-uPS6mdfiUh form input:active:-moz-placeholder,
.cid-uPS6mdfiUh form textarea:active:-moz-placeholder,
.cid-uPS6mdfiUh form input:focus:-moz-placeholder,
.cid-uPS6mdfiUh form textarea:focus:-moz-placeholder {
  color: #878e99;
}
.cid-uPS6mdfiUh form input:active:-ms-input-placeholder,
.cid-uPS6mdfiUh form textarea:active:-ms-input-placeholder,
.cid-uPS6mdfiUh form input:focus:-ms-input-placeholder,
.cid-uPS6mdfiUh form textarea:focus:-ms-input-placeholder {
  color: #878e99;
}
.cid-uPS6mdfiUh form .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.cid-uPS6mdfiUh form .row [class*=col] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-uPS6mdfiUh form label {
  width: 100%;
  color: #878e99;
  margin-bottom: 14px;
}
.cid-uPS6mdfiUh form .form-control-label {
  width: 100%;
}
.cid-uPS6mdfiUh form .form-check-label {
  margin-bottom: 14px;
}
.cid-uPS6mdfiUh form .form-check-input {
  border-color: #191b1e !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uPS6mdfiUh form .form-check-input:focus,
.cid-uPS6mdfiUh form .form-check-input:hover {
  border-color: #000000 !important;
}
.cid-uPS6mdfiUh form .form-check-input:checked {
  border-color: #000000 !important;
  background-color: #191b1e !important;
}
.cid-uPS6mdfiUh LABEL {
  color: #000000;
}
.cid-uPS6mdfiUh P {
  color: #f2f3f7;
}
.cid-sH71SqNyBR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sH71SqNyBR .media-container-row {
  justify-content: space-between;
}
.cid-sH71SqNyBR .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sH71SqNyBR .text-content {
    max-width: none;
  }
}
.cid-sH71SqNyBR .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #a7822a;
  border: 2px solid #a7822a;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sH71SqNyBR .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sH71SqNyBR .mbr-iconfont-social:hover {
  background-color: #a7822a;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sH71SqNyBR .icons {
    justify-content: center !important;
  }
  .cid-sH71SqNyBR .text-content * {
    text-align: center;
  }
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sIjbqB3RvN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sIl2Ck88LU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sIl0VcfS34 {
  display: flex;
  background-image: url("../../../assets/images/i-elfa-1-1024x683.webp");
}
.cid-sIl0VcfS34 .mbr-overlay {
  background: #b23926;
  background: linear-gradient(90deg, #b23926, #a7822a);
}
.cid-sIl0VcfS34 .mbr-section-title {
  margin: 0;
}
.cid-sIl0VcfS34 .mbr-text {
  color: #efefef;
}
.cid-sIl0VcfS34 .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sIl0VcfS34 .card-img {
  text-align: left;
}
.cid-sIl0VcfS34 .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sIl0VcfS34 .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sIl0VcfS34 .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sIl0VcfS34 .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sIl0VcfS34 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sIl0VcfS34 .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sIl2XJEHak {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-sIl2XJEHak .container-fluid {
  padding: 0 3rem;
}
.cid-sIl2XJEHak .mbr-section-subtitle {
  color: #767676;
}
.cid-sIl2XJEHak .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sIl2XJEHak .table-wrapper {
  margin: 0 auto;
}
.cid-sIl2XJEHak table {
  width: 90% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sIl2XJEHak table thead tr {
  border: none !important;
}
.cid-sIl2XJEHak table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-sIl2XJEHak table tr td {
  border-color: #c1c1c1;
}
.cid-sIl2XJEHak table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sIl2XJEHak tr:hover {
  background-color: #ffffff !important;
}
.cid-sIl2XJEHak th:after,
.cid-sIl2XJEHak th:before {
  display: none !important;
}
.cid-sIl2XJEHak .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sIl2XJEHak .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sIl2XJEHak table th,
  .cid-sIl2XJEHak table td {
    padding: .75rem;
  }
}
.cid-sIl2XJEHak .body-item {
  text-align: center;
}
.cid-sIl2XJEHak .mbr-text {
  color: #767676;
}
.cid-sIl2XJEHak .head-item {
  color: #232323;
}
.cid-sIl44GIjaa {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sIl44GIjaa [class*="col"] {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}
.cid-sIl44GIjaa .card {
  margin-bottom: .5rem;
  overflow: hidden;
  min-height: 426px;
}
.cid-sIl44GIjaa .card .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-sIl44GIjaa .card .card-img img {
  object-fit: cover;
  height: 100%;
}
.cid-sIl44GIjaa .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sIl44GIjaa .row:nth-of-type(2) .card {
  min-height: 326px;
}
.cid-sIl44GIjaa .card-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-sIl44GIjaa .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-sIl44GIjaa .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-sIl44GIjaa .card-sub-title {
  text-align: center;
}
.cid-sIl44GIjaa .mbr-section-sub-title {
  text-align: left;
  color: #000000;
}
.cid-umV6jEnIMQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sIl5TZuDlQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sIl5U0fnu3 {
  display: flex;
  background-image: url("../../../assets/images/esterno5-2000x1230.webp");
}
.cid-sIl5U0fnu3 .mbr-overlay {
  background: #b23926;
  background: linear-gradient(90deg, #b23926, #a7822a);
}
.cid-sIl5U0fnu3 .mbr-section-title {
  margin: 0;
}
.cid-sIl5U0fnu3 .mbr-text {
  color: #efefef;
}
.cid-sIl5U0fnu3 .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sIl5U0fnu3 .card-img {
  text-align: left;
}
.cid-sIl5U0fnu3 .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sIl5U0fnu3 .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sIl5U0fnu3 .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sIl5U0fnu3 .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sIl5U0fnu3 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sIl5U0fnu3 .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sIl5U12K7g {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-sIl5U12K7g .container-fluid {
  padding: 0 3rem;
}
.cid-sIl5U12K7g .mbr-section-subtitle {
  color: #767676;
}
.cid-sIl5U12K7g .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sIl5U12K7g .table-wrapper {
  margin: 0 auto;
}
.cid-sIl5U12K7g table {
  width: 90% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sIl5U12K7g table thead tr {
  border: none !important;
}
.cid-sIl5U12K7g table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-sIl5U12K7g table tr td {
  border-color: #c1c1c1;
}
.cid-sIl5U12K7g table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sIl5U12K7g tr:hover {
  background-color: #ffffff !important;
}
.cid-sIl5U12K7g th:after,
.cid-sIl5U12K7g th:before {
  display: none !important;
}
.cid-sIl5U12K7g .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sIl5U12K7g .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sIl5U12K7g table th,
  .cid-sIl5U12K7g table td {
    padding: .75rem;
  }
}
.cid-sIl5U12K7g .body-item {
  text-align: center;
}
.cid-sIl5U12K7g .mbr-text {
  color: #767676;
}
.cid-sIl5U12K7g .head-item {
  color: #232323;
}
.cid-t6iaIl4w5Z {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f2f3f7;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-t6iaIl4w5Z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t6iaIl4w5Z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t6iaIl4w5Z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t6iaIl4w5Z .title {
  padding: 0 2rem;
}
.cid-t6iaIl4w5Z .container {
  padding: 0 1rem;
}
.cid-t6iaIl4w5Z .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-t6iaIl4w5Z .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-t6iaIl4w5Z .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-t6iaIl4w5Z .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-t6iaIl4w5Z .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-t6iaIl4w5Z .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-t6iaIl4w5Z .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-t6iaIl4w5Z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t6iaIl4w5Z .icon-focus {
  display: none;
}
.cid-t6iaIl4w5Z .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-t6iaIl4w5Z .btn-primary-outline:hover {
  background: transparent !important;
  color: #000000 !important;
}
.cid-t6iaIl4w5Z li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-t6iaIl4w5Z li {
  position: relative;
}
.cid-t6iaIl4w5Z .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-t6iaIl4w5Z .btn {
  font-family: Jost !important;
}
.cid-t6iaIl4w5Z .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-t6iaIl4w5Z .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t6iaIl4w5Z li:not(:last-child):after {
    top: 9px;
  }
  .cid-t6iaIl4w5Z .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-t6iaIl4w5Z .container {
    padding: 0rem 0.5rem;
  }
  .cid-t6iaIl4w5Z .title {
    padding: 0 1rem;
  }
}
.cid-t6iaIl4w5Z H2 {
  color: #89b758;
}
.cid-umV5UtD1uH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sIl9LRENqi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sIl9LSfTlg {
  display: flex;
  background-image: url("../../../assets/images/i-cddl-1024x768.webp");
}
.cid-sIl9LSfTlg .mbr-overlay {
  background: #b23926;
  background: linear-gradient(90deg, #b23926, #a7822a);
}
.cid-sIl9LSfTlg .mbr-section-title {
  margin: 0;
}
.cid-sIl9LSfTlg .mbr-text {
  color: #efefef;
}
.cid-sIl9LSfTlg .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sIl9LSfTlg .card-img {
  text-align: left;
}
.cid-sIl9LSfTlg .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sIl9LSfTlg .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sIl9LSfTlg .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sIl9LSfTlg .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sIl9LSfTlg .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sIl9LSfTlg .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sIl9LT31P4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-sIl9LT31P4 .container-fluid {
  padding: 0 3rem;
}
.cid-sIl9LT31P4 .mbr-section-subtitle {
  color: #767676;
}
.cid-sIl9LT31P4 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sIl9LT31P4 .table-wrapper {
  margin: 0 auto;
}
.cid-sIl9LT31P4 table {
  width: 90% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sIl9LT31P4 table thead tr {
  border: none !important;
}
.cid-sIl9LT31P4 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-sIl9LT31P4 table tr td {
  border-color: #c1c1c1;
}
.cid-sIl9LT31P4 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sIl9LT31P4 tr:hover {
  background-color: #ffffff !important;
}
.cid-sIl9LT31P4 th:after,
.cid-sIl9LT31P4 th:before {
  display: none !important;
}
.cid-sIl9LT31P4 .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sIl9LT31P4 .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sIl9LT31P4 table th,
  .cid-sIl9LT31P4 table td {
    padding: .75rem;
  }
}
.cid-sIl9LT31P4 .body-item {
  text-align: center;
}
.cid-sIl9LT31P4 .mbr-text {
  color: #767676;
}
.cid-sIl9LT31P4 .head-item {
  color: #232323;
}
.cid-sIl9LTLWnl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sIl9LTLWnl [class*="col"] {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}
.cid-sIl9LTLWnl .card {
  margin-bottom: .5rem;
  overflow: hidden;
  min-height: 426px;
}
.cid-sIl9LTLWnl .card .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-sIl9LTLWnl .card .card-img img {
  object-fit: cover;
  height: 100%;
}
.cid-sIl9LTLWnl .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sIl9LTLWnl .row:nth-of-type(2) .card {
  min-height: 326px;
}
.cid-sIl9LTLWnl .card-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-sIl9LTLWnl .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-sIl9LTLWnl .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-sIl9LTLWnl .card-sub-title {
  text-align: center;
}
.cid-sIl9LTLWnl .mbr-section-sub-title {
  text-align: left;
  color: #000000;
}
.cid-umV5D2qF63 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sIl9xUYEVz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sIl9xVM6Ze {
  display: flex;
  background-image: url("../../../assets/images/i-keov-960x640.webp");
}
.cid-sIl9xVM6Ze .mbr-overlay {
  background: #b23926;
  background: linear-gradient(90deg, #b23926, #a7822a);
}
.cid-sIl9xVM6Ze .mbr-section-title {
  margin: 0;
}
.cid-sIl9xVM6Ze .mbr-text {
  color: #efefef;
}
.cid-sIl9xVM6Ze .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sIl9xVM6Ze .card-img {
  text-align: left;
}
.cid-sIl9xVM6Ze .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sIl9xVM6Ze .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sIl9xVM6Ze .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sIl9xVM6Ze .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sIl9xVM6Ze .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sIl9xVM6Ze .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sIl9xWFQlW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-sIl9xWFQlW .container-fluid {
  padding: 0 3rem;
}
.cid-sIl9xWFQlW .mbr-section-subtitle {
  color: #767676;
}
.cid-sIl9xWFQlW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sIl9xWFQlW .table-wrapper {
  margin: 0 auto;
}
.cid-sIl9xWFQlW table {
  width: 90% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sIl9xWFQlW table thead tr {
  border: none !important;
}
.cid-sIl9xWFQlW table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-sIl9xWFQlW table tr td {
  border-color: #c1c1c1;
}
.cid-sIl9xWFQlW table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sIl9xWFQlW tr:hover {
  background-color: #ffffff !important;
}
.cid-sIl9xWFQlW th:after,
.cid-sIl9xWFQlW th:before {
  display: none !important;
}
.cid-sIl9xWFQlW .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sIl9xWFQlW .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sIl9xWFQlW table th,
  .cid-sIl9xWFQlW table td {
    padding: .75rem;
  }
}
.cid-sIl9xWFQlW .body-item {
  text-align: center;
}
.cid-sIl9xWFQlW .mbr-text {
  color: #767676;
}
.cid-sIl9xWFQlW .head-item {
  color: #232323;
}
.cid-sWuFCR5C9n {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f2f3f7;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sWuFCR5C9n .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sWuFCR5C9n .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sWuFCR5C9n .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sWuFCR5C9n .title {
  padding: 0 2rem;
}
.cid-sWuFCR5C9n .container {
  padding: 0 1rem;
}
.cid-sWuFCR5C9n .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-sWuFCR5C9n .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-sWuFCR5C9n .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-sWuFCR5C9n .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-sWuFCR5C9n .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-sWuFCR5C9n .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-sWuFCR5C9n .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sWuFCR5C9n .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sWuFCR5C9n .icon-focus {
  display: none;
}
.cid-sWuFCR5C9n .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-sWuFCR5C9n .btn-primary-outline:hover {
  background: transparent !important;
  color: #000000 !important;
}
.cid-sWuFCR5C9n li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-sWuFCR5C9n li {
  position: relative;
}
.cid-sWuFCR5C9n .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-sWuFCR5C9n .btn {
  font-family: Jost !important;
}
.cid-sWuFCR5C9n .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sWuFCR5C9n .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWuFCR5C9n li:not(:last-child):after {
    top: 9px;
  }
  .cid-sWuFCR5C9n .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-sWuFCR5C9n .container {
    padding: 0rem 0.5rem;
  }
  .cid-sWuFCR5C9n .title {
    padding: 0 1rem;
  }
}
.cid-sWuFCR5C9n H2 {
  color: #89b758;
}
.cid-umV5Pd2jLK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sLHK2HE7YU {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f2f3f7;
}
.cid-sLHK2HE7YU .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #b23926 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sLHK2HE7YU .photo-split {
  padding: 0;
}
.cid-sLHK2HE7YU .photo-split img {
  width: 100%;
}
.cid-sLHK2HE7YU .icon-transition span:hover {
  background-color: #a7822a;
}
.cid-sLHK2HE7YU .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sLHK2HE7YU .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-sLHK2HE7YU .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-sLHK2HE7YU .wrap-block {
  padding: 3rem 3rem;
}
.cid-sLHK2HE7YU .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-sLHK2HE7YU .wrap-block ul li {
  display: inline-block;
}
.cid-sLHK2HE7YU .wrap-block ul li span {
  text-align: center;
}
.cid-sLHK2HE7YU .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-sLHK2HE7YU .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sLHK2HE7YU .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sLHK2HE7YU .mbr-list,
.cid-sLHK2HE7YU .social-media UL {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-sLHK2HE7YU .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sLHK2HE7YU .mbr-section-title,
  .cid-sLHK2HE7YU .mbr-section-subtitle,
  .cid-sLHK2HE7YU .mbr-text {
    text-align: center !important;
  }
  .cid-sLHK2HE7YU .social-list {
    text-align: center !important;
  }
}
.cid-sLHK2HE7YU .mbr-list,
.cid-sLHK2HE7YU .social-media {
  color: #767676;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-u6PsTKChUw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6PsTKChUw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6PsTKChUw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sPvkLdb4vN {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background: #f2f3f7;
}
.cid-sPvkLdb4vN .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sPvkLdb4vN .team-card:hover {
  transform: translateY(-10px);
}
.cid-sPvkLdb4vN .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sPvkLdb4vN .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sPvkLdb4vN .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sPvkLdb4vN .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPvkLdb4vN .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sPvkLdb4vN .social-row {
  text-align: center;
}
.cid-sPvkLdb4vN .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sPvkLdb4vN .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sPvkLdb4vN .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sPvkLdb4vN .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sPvkLdb4vN .card-text,
.cid-sPvkLdb4vN .mbr-section-btn,
.cid-sPvkLdb4vN .social-row {
  text-align: left;
}
.cid-sPvkLcloPy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #f2f3f7;
}
.cid-sPvkLcloPy .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sPvkLcloPy .team-card:hover {
  transform: translateY(-10px);
}
.cid-sPvkLcloPy .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sPvkLcloPy .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sPvkLcloPy .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sPvkLcloPy .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPvkLcloPy .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sPvkLcloPy .social-row {
  text-align: center;
}
.cid-sPvkLcloPy .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sPvkLcloPy .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sPvkLcloPy .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sPvkLcloPy .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sPvkLcloPy .card-text,
.cid-sPvkLcloPy .mbr-section-btn,
.cid-sPvkLcloPy .social-row {
  text-align: left;
}
.cid-u6NRsFvfkv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #f2f3f7;
}
.cid-u6NRsFvfkv .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-u6NRsFvfkv .team-card:hover {
  transform: translateY(-10px);
}
.cid-u6NRsFvfkv .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-u6NRsFvfkv .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-u6NRsFvfkv .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-u6NRsFvfkv .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u6NRsFvfkv .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-u6NRsFvfkv .social-row {
  text-align: center;
}
.cid-u6NRsFvfkv .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-u6NRsFvfkv .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-u6NRsFvfkv .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-u6NRsFvfkv .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-u6NRsFvfkv .card-text,
.cid-u6NRsFvfkv .mbr-section-btn,
.cid-u6NRsFvfkv .social-row {
  text-align: left;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sRyEkqDtOi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sRyEkrtfpm {
  display: flex;
  background-image: url("../../../assets/images/photo1639409782-1280x719.webp");
}
.cid-sRyEkrtfpm .mbr-overlay {
  background: #b23926;
  background: linear-gradient(90deg, #b23926, #a7822a);
}
.cid-sRyEkrtfpm .mbr-section-title {
  margin: 0;
}
.cid-sRyEkrtfpm .mbr-text {
  color: #efefef;
}
.cid-sRyEkrtfpm .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sRyEkrtfpm .card-img {
  text-align: left;
}
.cid-sRyEkrtfpm .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sRyEkrtfpm .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sRyEkrtfpm .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sRyEkrtfpm .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sRyEkrtfpm .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sRyEkrtfpm .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sWhZf3R412 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sWhZf3R412 .mbr-section-subtitle {
  color: #767676;
}
.cid-sWhZf3R412 .container-table {
  margin: 0 auto;
}
.cid-sWhZf3R412 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sWhZf3R412 .dataTables_wrapper {
  display: block;
}
.cid-sWhZf3R412 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sWhZf3R412 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sWhZf3R412 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #efefef;
  margin-bottom: 0;
}
.cid-sWhZf3R412 table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #efefef;
  transition: all .2s;
}
.cid-sWhZf3R412 table th:hover {
  background: #efefef;
  color: #000000;
}
.cid-sWhZf3R412 table td {
  border: 1px solid #efefef;
}
.cid-sWhZf3R412 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sWhZf3R412 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sWhZf3R412 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sWhZf3R412 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sWhZf3R412 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sWhZf3R412 .dataTables_filter {
    text-align: center;
  }
  .cid-sWhZf3R412 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sWhZf3R412 .head-item,
.cid-sWhZf3R412 .body-item {
  text-align: center;
}
.cid-sWcVINhgC3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f2f3f7;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sWcVINhgC3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sWcVINhgC3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sWcVINhgC3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sWcVINhgC3 .title {
  padding: 0 2rem;
}
.cid-sWcVINhgC3 .container {
  padding: 0 1rem;
}
.cid-sWcVINhgC3 .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-sWcVINhgC3 .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-sWcVINhgC3 .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-sWcVINhgC3 .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-sWcVINhgC3 .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-sWcVINhgC3 .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-sWcVINhgC3 .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sWcVINhgC3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sWcVINhgC3 .icon-focus {
  display: none;
}
.cid-sWcVINhgC3 .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-sWcVINhgC3 .btn-primary-outline:hover {
  background: transparent !important;
  color: #000000 !important;
}
.cid-sWcVINhgC3 li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-sWcVINhgC3 li {
  position: relative;
}
.cid-sWcVINhgC3 .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-sWcVINhgC3 .btn {
  font-family: Jost !important;
}
.cid-sWcVINhgC3 .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sWcVINhgC3 .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWcVINhgC3 li:not(:last-child):after {
    top: 9px;
  }
  .cid-sWcVINhgC3 .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-sWcVINhgC3 .container {
    padding: 0rem 0.5rem;
  }
  .cid-sWcVINhgC3 .title {
    padding: 0 1rem;
  }
}
.cid-sWcVINhgC3 H2 {
  color: #89b758;
}
.cid-umV6cXALNu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sRzqCz4rbc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sRzqCzMqNm {
  display: flex;
  background-image: url("../../../assets/images/20160414-101757-resized-1632x918.webp");
}
.cid-sRzqCzMqNm .mbr-overlay {
  background: #b23926;
  background: linear-gradient(90deg, #b23926, #a7822a);
}
.cid-sRzqCzMqNm .mbr-section-title {
  margin: 0;
}
.cid-sRzqCzMqNm .mbr-text {
  color: #efefef;
}
.cid-sRzqCzMqNm .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sRzqCzMqNm .card-img {
  text-align: left;
}
.cid-sRzqCzMqNm .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sRzqCzMqNm .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sRzqCzMqNm .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sRzqCzMqNm .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sRzqCzMqNm .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sRzqCzMqNm .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sRzqCAo20c {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-sRzqCAo20c .container-fluid {
  padding: 0 3rem;
}
.cid-sRzqCAo20c .mbr-section-subtitle {
  color: #767676;
}
.cid-sRzqCAo20c .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sRzqCAo20c .table-wrapper {
  margin: 0 auto;
}
.cid-sRzqCAo20c table {
  width: 90% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sRzqCAo20c table thead tr {
  border: none !important;
}
.cid-sRzqCAo20c table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-sRzqCAo20c table tr td {
  border-color: #c1c1c1;
}
.cid-sRzqCAo20c table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sRzqCAo20c tr:hover {
  background-color: #ffffff !important;
}
.cid-sRzqCAo20c th:after,
.cid-sRzqCAo20c th:before {
  display: none !important;
}
.cid-sRzqCAo20c .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sRzqCAo20c .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sRzqCAo20c table th,
  .cid-sRzqCAo20c table td {
    padding: .75rem;
  }
}
.cid-sRzqCAo20c .body-item {
  text-align: center;
}
.cid-sRzqCAo20c .mbr-text {
  color: #767676;
}
.cid-sRzqCAo20c .head-item {
  color: #232323;
}
.cid-sRzqCB11Ba {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sRzqCB11Ba [class*="col"] {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}
.cid-sRzqCB11Ba .card {
  margin-bottom: .5rem;
  overflow: hidden;
  min-height: 426px;
}
.cid-sRzqCB11Ba .card .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-sRzqCB11Ba .card .card-img img {
  object-fit: cover;
  height: 100%;
}
.cid-sRzqCB11Ba .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sRzqCB11Ba .row:nth-of-type(2) .card {
  min-height: 326px;
}
.cid-sRzqCB11Ba .card-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-sRzqCB11Ba .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-sRzqCB11Ba .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-sRzqCB11Ba .card-sub-title {
  text-align: center;
}
.cid-sRzqCB11Ba .mbr-section-sub-title {
  text-align: left;
  color: #000000;
}
.cid-umV5IAW8S6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sVPcNAumGk {
  background-image: url("../../../assets/images/dsc00970-modifica-2000x1334.webp");
}
.cid-sVPcNAumGk .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sVPcNAumGk .mbr-section-title a {
  font-weight: 600;
}
.cid-sVPcNAumGk .mbr-section-title a:hover {
  background: none !important;
}
.cid-sVPcNAumGk .mbr-text,
.cid-sVPcNAumGk .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sVPcNAumGk .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sWusZBTYJu {
  background-color: #ffffff;
}
.cid-sWusZBTYJu .row {
  flex-direction: row-reverse;
}
.cid-sWusZBTYJu .image-wrapper {
  padding: 0 2rem;
}
.cid-sWusZBTYJu .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sWusZBTYJu .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sWusZBTYJu .mbr-section-title {
  color: #1f1437;
  margin-bottom: 1.5rem;
}
.cid-sWusZBTYJu .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sWusZBTYJu .mbr-text {
  color: #1f1437;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sWusZBTYJu .text-wrapper,
  .cid-sWusZBTYJu .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWusZBTYJu .text-wrapper,
  .cid-sWusZBTYJu .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sWusZBTYJu .text-wrapper,
  .cid-sWusZBTYJu .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sWusZBTYJu .text-wrapper,
  .cid-sWusZBTYJu .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sWusZBTYJu .text-wrapper,
  .cid-sWusZBTYJu .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sWusZBTYJu .content {
    text-align: center;
  }
}
.cid-sWusZBTYJu .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sWusZBTYJu .mbr-card-title {
    text-align: start;
  }
}
.cid-sWusZBTYJu .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sWusZBTYJu .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sWusZBTYJu .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sWusZBTYJu .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sWusZBTYJu .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sWusZBTYJu .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sWusZBTYJu .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sWusZBTYJu .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sWusZBTYJu .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sWusZBTYJu .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sWusZBTYJu .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sWusZBTYJu .nutrition-wrap {
    width: 100%;
  }
}
.cid-sWusZBTYJu .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sWusZBTYJu .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sWusZBTYJu .tile-text-wrap {
  display: flex;
}
.cid-sWusZBTYJu svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sWusZBTYJu svg path {
  fill: #cd8ad1;
}
.cid-sWusZBTYJu .numbers {
  display: flex;
  align-self: center;
}
.cid-sWusZBTYJu .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sWusZBTYJu .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sWusZBTYJu .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sWusZBTYJu .mbr-tile-text {
    text-align: start;
  }
}
.cid-sWusZBTYJu .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sWusZBTYJu .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sWusZBTYJu .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sWusZBTYJu .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sWusZBTYJu .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sWusZBTYJu .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWusZBTYJu .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWusZBTYJu .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWusZBTYJu .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWusZBTYJu div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-ufkWUTlMWn {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7zX4U540V {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7zX4U540V .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zX4U540V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zX4U540V .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-u7zX4U540V .panel-group {
  border: none;
}
.cid-u7zX4U540V .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u7zX4U540V .panel-body,
.cid-u7zX4U540V .card-header {
  padding: 1rem 0;
}
.cid-u7zX4U540V .panel-title-edit {
  color: #000000;
}
.cid-u7zX4U540V .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sWuuqnw07X {
  background-image: url("../../../assets/images/dsc00970-modifica-2000x1334.webp");
}
.cid-sWuuqnw07X .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sWuuqnw07X .mbr-section-title a {
  font-weight: 600;
}
.cid-sWuuqnw07X .mbr-section-title a:hover {
  background: none !important;
}
.cid-sWuuqnw07X .mbr-text,
.cid-sWuuqnw07X .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sWuuqnw07X .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sWuuqodbb0 {
  background-color: #ffffff;
}
.cid-sWuuqodbb0 .row {
  flex-direction: row-reverse;
}
.cid-sWuuqodbb0 .image-wrapper {
  padding: 0 2rem;
}
.cid-sWuuqodbb0 .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sWuuqodbb0 .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sWuuqodbb0 .mbr-section-title {
  color: #1f1437;
  margin-bottom: 1.5rem;
}
.cid-sWuuqodbb0 .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sWuuqodbb0 .mbr-text {
  color: #1f1437;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sWuuqodbb0 .text-wrapper,
  .cid-sWuuqodbb0 .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWuuqodbb0 .text-wrapper,
  .cid-sWuuqodbb0 .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sWuuqodbb0 .text-wrapper,
  .cid-sWuuqodbb0 .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sWuuqodbb0 .text-wrapper,
  .cid-sWuuqodbb0 .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sWuuqodbb0 .text-wrapper,
  .cid-sWuuqodbb0 .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sWuuqodbb0 .content {
    text-align: center;
  }
}
.cid-sWuuqodbb0 .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sWuuqodbb0 .mbr-card-title {
    text-align: start;
  }
}
.cid-sWuuqodbb0 .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sWuuqodbb0 .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sWuuqodbb0 .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sWuuqodbb0 .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sWuuqodbb0 .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sWuuqodbb0 .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sWuuqodbb0 .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sWuuqodbb0 .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sWuuqodbb0 .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sWuuqodbb0 .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sWuuqodbb0 .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sWuuqodbb0 .nutrition-wrap {
    width: 100%;
  }
}
.cid-sWuuqodbb0 .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sWuuqodbb0 .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sWuuqodbb0 .tile-text-wrap {
  display: flex;
}
.cid-sWuuqodbb0 svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sWuuqodbb0 svg path {
  fill: #cd8ad1;
}
.cid-sWuuqodbb0 .numbers {
  display: flex;
  align-self: center;
}
.cid-sWuuqodbb0 .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sWuuqodbb0 .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sWuuqodbb0 .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sWuuqodbb0 .mbr-tile-text {
    text-align: start;
  }
}
.cid-sWuuqodbb0 .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sWuuqodbb0 .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sWuuqodbb0 .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sWuuqodbb0 .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sWuuqodbb0 .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sWuuqodbb0 .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWuuqodbb0 .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWuuqodbb0 .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWuuqodbb0 .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWuuqodbb0 div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-ufkXx61cLq {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7A2qRTsCr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7A2qRTsCr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7A2qRTsCr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7A2qRTsCr .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-u7A2qRTsCr .panel-group {
  border: none;
}
.cid-u7A2qRTsCr .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u7A2qRTsCr .panel-body,
.cid-u7A2qRTsCr .card-header {
  padding: 1rem 0;
}
.cid-u7A2qRTsCr .panel-title-edit {
  color: #000000;
}
.cid-u7A2qRTsCr .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sWK8ftkm7w {
  background-image: url("../../../assets/images/mbr-1920x1373.webp");
}
.cid-sWK8ftkm7w .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sWK8ftkm7w .mbr-section-title a {
  font-weight: 600;
}
.cid-sWK8ftkm7w .mbr-section-title a:hover {
  background: none !important;
}
.cid-sWK8ftkm7w .mbr-text,
.cid-sWK8ftkm7w .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sWK8ftkm7w .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sWK8JwPC3N {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sWK8JwPC3N .wrap {
  display: flex;
  border-bottom: 1px dotted #83868c;
  margin-bottom: 39px;
  padding-bottom: 20px;
}
.cid-sWK8JwPC3N .wrap .ico1 {
  font-size: 2rem;
  margin-right: 30px;
  color: #ffc600;
}
.cid-sWK8JwPC3N .wrap .mbr-text {
  z-index: 2;
  position: relative;
  color: #47b5ed;
}
.cid-sWK8JwPC3N .wrap .mbr-section-subtitle {
  color: #000000;
  display: inline-block;
  margin-right: 20px;
}
.cid-sWK8JwPC3N .wrap .ico-line {
  display: inline-block;
}
.cid-sWK8JwPC3N .wrap .ico-line .mbr-iconfont {
  color: #279e64;
  font-size: 14px;
}
.cid-sWK8JwPC3N .col-md-12:last-child .wrap,
.cid-sWK8JwPC3N .col-lg-12:last-child .wrap {
  border-bottom: none;
}
.cid-sWK8JwPC3N .col-md-12.last-child .wrap,
.cid-sWK8JwPC3N .col-lg-12.last-child .wrap {
  border-bottom: none;
}
@media (max-width: 768px) {
  .cid-sWK8JwPC3N * {
    text-align: left;
  }
  .cid-sWK8JwPC3N .ico1 {
    display: none;
  }
}
.cid-sWKaXhx1jf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKb6AHA3i {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKbhad5Ov {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKbncyxnB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKbFNDhcO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKbQ5k4sz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKceoGT6H {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKcBLjZyX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKcOyR5TN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKcU8N1Mh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKd0xmbg5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKd9SlnCa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKdfx5HIt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKdHaII2A {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKdOOFiNo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKdTxQpg1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKdZCwDK7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKe712J99 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKefupNSR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWKeL09Etx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sWKhcYlRlp {
  background-image: url("../../../assets/images/dsc00970-modifica-2000x1334.webp");
}
.cid-sWKhcYlRlp .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sWKhcYlRlp .mbr-section-title a {
  font-weight: 600;
}
.cid-sWKhcYlRlp .mbr-section-title a:hover {
  background: none !important;
}
.cid-sWKhcYlRlp .mbr-text,
.cid-sWKhcYlRlp .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sWKhcYlRlp .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sWKhcYLJXM {
  background-color: #ffffff;
}
.cid-sWKhcYLJXM .row {
  flex-direction: row-reverse;
}
.cid-sWKhcYLJXM .image-wrapper {
  padding: 0 2rem;
}
.cid-sWKhcYLJXM .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sWKhcYLJXM .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sWKhcYLJXM .mbr-section-title {
  color: #1f1437;
  margin-bottom: 1.5rem;
}
.cid-sWKhcYLJXM .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sWKhcYLJXM .mbr-text {
  color: #1f1437;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sWKhcYLJXM .text-wrapper,
  .cid-sWKhcYLJXM .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWKhcYLJXM .text-wrapper,
  .cid-sWKhcYLJXM .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sWKhcYLJXM .text-wrapper,
  .cid-sWKhcYLJXM .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sWKhcYLJXM .text-wrapper,
  .cid-sWKhcYLJXM .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sWKhcYLJXM .text-wrapper,
  .cid-sWKhcYLJXM .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sWKhcYLJXM .content {
    text-align: center;
  }
}
.cid-sWKhcYLJXM .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sWKhcYLJXM .mbr-card-title {
    text-align: start;
  }
}
.cid-sWKhcYLJXM .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sWKhcYLJXM .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sWKhcYLJXM .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sWKhcYLJXM .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sWKhcYLJXM .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sWKhcYLJXM .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sWKhcYLJXM .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sWKhcYLJXM .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sWKhcYLJXM .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sWKhcYLJXM .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sWKhcYLJXM .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sWKhcYLJXM .nutrition-wrap {
    width: 100%;
  }
}
.cid-sWKhcYLJXM .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sWKhcYLJXM .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sWKhcYLJXM .tile-text-wrap {
  display: flex;
}
.cid-sWKhcYLJXM svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sWKhcYLJXM svg path {
  fill: #cd8ad1;
}
.cid-sWKhcYLJXM .numbers {
  display: flex;
  align-self: center;
}
.cid-sWKhcYLJXM .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sWKhcYLJXM .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sWKhcYLJXM .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sWKhcYLJXM .mbr-tile-text {
    text-align: start;
  }
}
.cid-sWKhcYLJXM .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sWKhcYLJXM .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sWKhcYLJXM .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sWKhcYLJXM .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sWKhcYLJXM .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sWKhcYLJXM .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWKhcYLJXM .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWKhcYLJXM .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWKhcYLJXM .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWKhcYLJXM div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-ufkXEaUXlH {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7A1OZOQ4H {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7A1OZOQ4H .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7A1OZOQ4H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7A1OZOQ4H .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-u7A1OZOQ4H .panel-group {
  border: none;
}
.cid-u7A1OZOQ4H .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u7A1OZOQ4H .panel-body,
.cid-u7A1OZOQ4H .card-header {
  padding: 1rem 0;
}
.cid-u7A1OZOQ4H .panel-title-edit {
  color: #000000;
}
.cid-u7A1OZOQ4H .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sWKhwQfwrA {
  background-image: url("../../../assets/images/dsc00970-modifica-2000x1334.webp");
}
.cid-sWKhwQfwrA .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sWKhwQfwrA .mbr-section-title a {
  font-weight: 600;
}
.cid-sWKhwQfwrA .mbr-section-title a:hover {
  background: none !important;
}
.cid-sWKhwQfwrA .mbr-text,
.cid-sWKhwQfwrA .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sWKhwQfwrA .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sWKhwQUJAY {
  background-color: #ffffff;
}
.cid-sWKhwQUJAY .row {
  flex-direction: row-reverse;
}
.cid-sWKhwQUJAY .image-wrapper {
  padding: 0 2rem;
}
.cid-sWKhwQUJAY .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sWKhwQUJAY .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sWKhwQUJAY .mbr-section-title {
  color: #1f1437;
  margin-bottom: 1.5rem;
}
.cid-sWKhwQUJAY .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sWKhwQUJAY .mbr-text {
  color: #1f1437;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sWKhwQUJAY .text-wrapper,
  .cid-sWKhwQUJAY .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWKhwQUJAY .text-wrapper,
  .cid-sWKhwQUJAY .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sWKhwQUJAY .text-wrapper,
  .cid-sWKhwQUJAY .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sWKhwQUJAY .text-wrapper,
  .cid-sWKhwQUJAY .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sWKhwQUJAY .text-wrapper,
  .cid-sWKhwQUJAY .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sWKhwQUJAY .content {
    text-align: center;
  }
}
.cid-sWKhwQUJAY .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sWKhwQUJAY .mbr-card-title {
    text-align: start;
  }
}
.cid-sWKhwQUJAY .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sWKhwQUJAY .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sWKhwQUJAY .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sWKhwQUJAY .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sWKhwQUJAY .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sWKhwQUJAY .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sWKhwQUJAY .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sWKhwQUJAY .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sWKhwQUJAY .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sWKhwQUJAY .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sWKhwQUJAY .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sWKhwQUJAY .nutrition-wrap {
    width: 100%;
  }
}
.cid-sWKhwQUJAY .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sWKhwQUJAY .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sWKhwQUJAY .tile-text-wrap {
  display: flex;
}
.cid-sWKhwQUJAY svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sWKhwQUJAY svg path {
  fill: #cd8ad1;
}
.cid-sWKhwQUJAY .numbers {
  display: flex;
  align-self: center;
}
.cid-sWKhwQUJAY .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sWKhwQUJAY .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sWKhwQUJAY .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sWKhwQUJAY .mbr-tile-text {
    text-align: start;
  }
}
.cid-sWKhwQUJAY .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sWKhwQUJAY .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sWKhwQUJAY .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sWKhwQUJAY .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sWKhwQUJAY .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sWKhwQUJAY .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWKhwQUJAY .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWKhwQUJAY .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWKhwQUJAY .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWKhwQUJAY div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-ufkXYmIed2 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7A8akQJhg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7A8akQJhg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7A8akQJhg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7A8akQJhg .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-u7A8akQJhg .panel-group {
  border: none;
}
.cid-u7A8akQJhg .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u7A8akQJhg .panel-body,
.cid-u7A8akQJhg .card-header {
  padding: 1rem 0;
}
.cid-u7A8akQJhg .panel-title-edit {
  color: #000000;
}
.cid-u7A8akQJhg .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sWKhInsfpr {
  background-image: url("../../../assets/images/dsc00970-modifica-2000x1334.webp");
}
.cid-sWKhInsfpr .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sWKhInsfpr .mbr-section-title a {
  font-weight: 600;
}
.cid-sWKhInsfpr .mbr-section-title a:hover {
  background: none !important;
}
.cid-sWKhInsfpr .mbr-text,
.cid-sWKhInsfpr .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sWKhInsfpr .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sWKhInZ1Ix {
  background-color: #ffffff;
}
.cid-sWKhInZ1Ix .row {
  flex-direction: row-reverse;
}
.cid-sWKhInZ1Ix .image-wrapper {
  padding: 0 2rem;
}
.cid-sWKhInZ1Ix .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sWKhInZ1Ix .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sWKhInZ1Ix .mbr-section-title {
  color: #1f1437;
  margin-bottom: 1.5rem;
}
.cid-sWKhInZ1Ix .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sWKhInZ1Ix .mbr-text {
  color: #1f1437;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sWKhInZ1Ix .text-wrapper,
  .cid-sWKhInZ1Ix .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWKhInZ1Ix .text-wrapper,
  .cid-sWKhInZ1Ix .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sWKhInZ1Ix .text-wrapper,
  .cid-sWKhInZ1Ix .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sWKhInZ1Ix .text-wrapper,
  .cid-sWKhInZ1Ix .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sWKhInZ1Ix .text-wrapper,
  .cid-sWKhInZ1Ix .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sWKhInZ1Ix .content {
    text-align: center;
  }
}
.cid-sWKhInZ1Ix .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sWKhInZ1Ix .mbr-card-title {
    text-align: start;
  }
}
.cid-sWKhInZ1Ix .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sWKhInZ1Ix .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sWKhInZ1Ix .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sWKhInZ1Ix .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sWKhInZ1Ix .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sWKhInZ1Ix .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sWKhInZ1Ix .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sWKhInZ1Ix .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sWKhInZ1Ix .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sWKhInZ1Ix .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sWKhInZ1Ix .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sWKhInZ1Ix .nutrition-wrap {
    width: 100%;
  }
}
.cid-sWKhInZ1Ix .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sWKhInZ1Ix .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sWKhInZ1Ix .tile-text-wrap {
  display: flex;
}
.cid-sWKhInZ1Ix svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sWKhInZ1Ix svg path {
  fill: #cd8ad1;
}
.cid-sWKhInZ1Ix .numbers {
  display: flex;
  align-self: center;
}
.cid-sWKhInZ1Ix .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sWKhInZ1Ix .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sWKhInZ1Ix .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sWKhInZ1Ix .mbr-tile-text {
    text-align: start;
  }
}
.cid-sWKhInZ1Ix .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sWKhInZ1Ix .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sWKhInZ1Ix .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sWKhInZ1Ix .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sWKhInZ1Ix .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sWKhInZ1Ix .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWKhInZ1Ix .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWKhInZ1Ix .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWKhInZ1Ix .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWKhInZ1Ix div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-ufkXNg6ah0 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7A4vRQynG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7A4vRQynG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7A4vRQynG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7A4vRQynG .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-u7A4vRQynG .panel-group {
  border: none;
}
.cid-u7A4vRQynG .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u7A4vRQynG .panel-body,
.cid-u7A4vRQynG .card-header {
  padding: 1rem 0;
}
.cid-u7A4vRQynG .panel-title-edit {
  color: #000000;
}
.cid-u7A4vRQynG .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sWKhQK3ioD {
  background-image: url("../../../assets/images/dsc00970-modifica-2000x1334.webp");
}
.cid-sWKhQK3ioD .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sWKhQK3ioD .mbr-section-title a {
  font-weight: 600;
}
.cid-sWKhQK3ioD .mbr-section-title a:hover {
  background: none !important;
}
.cid-sWKhQK3ioD .mbr-text,
.cid-sWKhQK3ioD .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sWKhQK3ioD .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sWKhQKHUka {
  background-color: #ffffff;
}
.cid-sWKhQKHUka .row {
  flex-direction: row-reverse;
}
.cid-sWKhQKHUka .image-wrapper {
  padding: 0 2rem;
}
.cid-sWKhQKHUka .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sWKhQKHUka .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sWKhQKHUka .mbr-section-title {
  color: #1f1437;
  margin-bottom: 1.5rem;
}
.cid-sWKhQKHUka .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sWKhQKHUka .mbr-text {
  color: #1f1437;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sWKhQKHUka .text-wrapper,
  .cid-sWKhQKHUka .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWKhQKHUka .text-wrapper,
  .cid-sWKhQKHUka .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sWKhQKHUka .text-wrapper,
  .cid-sWKhQKHUka .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sWKhQKHUka .text-wrapper,
  .cid-sWKhQKHUka .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sWKhQKHUka .text-wrapper,
  .cid-sWKhQKHUka .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sWKhQKHUka .content {
    text-align: center;
  }
}
.cid-sWKhQKHUka .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sWKhQKHUka .mbr-card-title {
    text-align: start;
  }
}
.cid-sWKhQKHUka .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sWKhQKHUka .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sWKhQKHUka .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sWKhQKHUka .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sWKhQKHUka .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sWKhQKHUka .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sWKhQKHUka .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sWKhQKHUka .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sWKhQKHUka .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sWKhQKHUka .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sWKhQKHUka .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sWKhQKHUka .nutrition-wrap {
    width: 100%;
  }
}
.cid-sWKhQKHUka .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sWKhQKHUka .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sWKhQKHUka .tile-text-wrap {
  display: flex;
}
.cid-sWKhQKHUka svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sWKhQKHUka svg path {
  fill: #cd8ad1;
}
.cid-sWKhQKHUka .numbers {
  display: flex;
  align-self: center;
}
.cid-sWKhQKHUka .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sWKhQKHUka .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sWKhQKHUka .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sWKhQKHUka .mbr-tile-text {
    text-align: start;
  }
}
.cid-sWKhQKHUka .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sWKhQKHUka .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sWKhQKHUka .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sWKhQKHUka .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sWKhQKHUka .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sWKhQKHUka .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWKhQKHUka .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWKhQKHUka .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWKhQKHUka .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWKhQKHUka div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-ufkXSGwIeh {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7A6FeiDjS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7A6FeiDjS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7A6FeiDjS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7A6FeiDjS .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-u7A6FeiDjS .panel-group {
  border: none;
}
.cid-u7A6FeiDjS .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u7A6FeiDjS .panel-body,
.cid-u7A6FeiDjS .card-header {
  padding: 1rem 0;
}
.cid-u7A6FeiDjS .panel-title-edit {
  color: #000000;
}
.cid-u7A6FeiDjS .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sWM3igsE6W {
  flex-direction: column !important;
  justify-content: center;
  background-image: url("../../../assets/images/mbr-1920x1086.webp");
}
.cid-sWM3igsE6W .row.heading {
  margin-bottom: 72px;
}
.cid-sWM3igsE6W .card {
  flex-direction: row;
  justify-content: center;
}
.cid-sWM3igsE6W .card-box {
  display: flex;
  flex-direction: column;
}
.cid-sWM3igsE6W .card-box .card-title {
  color: #ffffff;
}
.cid-sWM3igsE6W .card-box .mbr-text {
  color: #ffffff;
}
.cid-sWM3igsE6W .card-box .link .btn {
  margin: 0;
}
.cid-sWM3igsE6W .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-sWM3igsE6W .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-sWM3igsE6W .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-sWM3igsE6W .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-sWM3igsE6W .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-sWM3igsE6W .card .card-box .card-title,
  .cid-sWM3igsE6W .card .card-box .mbr-text,
  .cid-sWM3igsE6W .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-sWM3igsE6W .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sWM6nlDjJy {
  background-image: url("../../../assets/images/fly-brunello-1174x882.webp");
}
.cid-sWM6nlDjJy .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sWM6nlDjJy .mbr-section-title a {
  font-weight: 600;
}
.cid-sWM6nlDjJy .mbr-section-title a:hover {
  background: none !important;
}
.cid-sWM6nlDjJy .mbr-text,
.cid-sWM6nlDjJy .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sWM6nlDjJy .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sWM6nmdL1c {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-sWM6nmdL1c .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #a7822a;
}
.cid-sWM6nmdL1c img {
  width: 100%;
}
.cid-sWM6nmdL1c p {
  margin-top: 6rem;
}
.cid-sWM6nmdL1c .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sWM6nmdL1c .content-wrapper {
  padding-top: 6rem;
}
.cid-sWM6nmdL1c h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-sWM6nmdL1c .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sWM6nmdL1c p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sWM6nmdL1c .back {
    width: 100%;
    height: 75%;
  }
  .cid-sWM6nmdL1c .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-sWM6nmdL1c p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sWM6nmdL1c .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-sWM6nmdL1c h4 {
    right: 2rem;
  }
}
.cid-sWM6nmdL1c .mbr-text,
.cid-sWM6nmdL1c .mbr-section-btn {
  color: #ffffff;
}
.cid-sWM6nmdL1c H1 {
  color: #ffffff;
}
.cid-sWM6nmI2K2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-sWM6nmI2K2 .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #a7822a;
}
.cid-sWM6nmI2K2 img {
  width: 100%;
}
.cid-sWM6nmI2K2 p {
  margin-top: 6rem;
}
.cid-sWM6nmI2K2 .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sWM6nmI2K2 .content-wrapper {
  padding-top: 6rem;
}
.cid-sWM6nmI2K2 h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-sWM6nmI2K2 .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sWM6nmI2K2 p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sWM6nmI2K2 .back {
    width: 100%;
    height: 75%;
  }
  .cid-sWM6nmI2K2 .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-sWM6nmI2K2 p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sWM6nmI2K2 .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-sWM6nmI2K2 h4 {
    right: 2rem;
  }
}
.cid-sWM6nmI2K2 H1 {
  color: #ffffff;
}
.cid-sWM6nmI2K2 .mbr-text,
.cid-sWM6nmI2K2 .mbr-section-btn {
  color: #ffffff;
}
.cid-sWM6nnb2xS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-sWM6nnb2xS .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #a7822a;
}
.cid-sWM6nnb2xS img {
  width: 100%;
}
.cid-sWM6nnb2xS p {
  margin-top: 6rem;
}
.cid-sWM6nnb2xS .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sWM6nnb2xS .content-wrapper {
  padding-top: 6rem;
}
.cid-sWM6nnb2xS h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-sWM6nnb2xS .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sWM6nnb2xS p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sWM6nnb2xS .back {
    width: 100%;
    height: 75%;
  }
  .cid-sWM6nnb2xS .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-sWM6nnb2xS p {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sWM6nnb2xS .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-sWM6nnb2xS h4 {
    right: 2rem;
  }
}
.cid-sWM6nnb2xS .mbr-text,
.cid-sWM6nnb2xS .mbr-section-btn {
  color: #ffffff;
}
.cid-sWM6nnb2xS H1 {
  color: #ffffff;
}
.cid-sWM6nnEpwV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWM6nnEpwV p {
  margin: 0;
}
.cid-sWM6nnEpwV ul {
  list-style-type: none;
  padding: 0;
}
.cid-sWM6nnEpwV .list {
  display: flex;
  flex-direction: column;
}
.cid-sWM6nnEpwV .list .list-item {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sWM6nnEpwV .list .list-item {
    flex-direction: column;
  }
}
.cid-sWM6nnEpwV .mbr-number {
  color: #a7822a;
  margin-right: 2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-sWM6nnEpwV .mbr-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.cid-sWM6nnEpwV .line {
  width: 3px;
  background-color: #b23926;
  margin-right: 3rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-sWM6nnEpwV .line {
    width: 100%;
    height: 3px;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.cid-sWM6nnEpwV .mbr-section-title {
  color: #a7822a;
  margin-bottom: 2rem;
}
.cid-sWM6noaO8t {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWM6noaO8t img {
  width: 120px;
  margin: auto;
}
.cid-sWM6noaO8t .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sWM6noaO8t .card {
    max-width: 12.5%;
  }
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-u6kiqGQFcc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6kiqHbl4Y {
  display: flex;
  background-image: url("../../../assets/images/lato-sx-2000x1500.webp");
}
.cid-u6kiqHbl4Y .mbr-overlay {
  background: #b23926;
  background: linear-gradient(90deg, #b23926, #a7822a);
}
.cid-u6kiqHbl4Y .mbr-section-title {
  margin: 0;
}
.cid-u6kiqHbl4Y .mbr-text {
  color: #efefef;
}
.cid-u6kiqHbl4Y .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-u6kiqHbl4Y .card-img {
  text-align: left;
}
.cid-u6kiqHbl4Y .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-u6kiqHbl4Y .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-u6kiqHbl4Y .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u6kiqHbl4Y .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-u6kiqHbl4Y .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-u6kiqHbl4Y .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-u6kiqHwkAt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-u6kiqHwkAt .container-fluid {
  padding: 0 3rem;
}
.cid-u6kiqHwkAt .mbr-section-subtitle {
  color: #767676;
}
.cid-u6kiqHwkAt .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u6kiqHwkAt .table-wrapper {
  margin: 0 auto;
}
.cid-u6kiqHwkAt table {
  width: 90% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-u6kiqHwkAt table thead tr {
  border: none !important;
}
.cid-u6kiqHwkAt table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-u6kiqHwkAt table tr td {
  border-color: #c1c1c1;
}
.cid-u6kiqHwkAt table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-u6kiqHwkAt tr:hover {
  background-color: #ffffff !important;
}
.cid-u6kiqHwkAt th:after,
.cid-u6kiqHwkAt th:before {
  display: none !important;
}
.cid-u6kiqHwkAt .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-u6kiqHwkAt .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-u6kiqHwkAt table th,
  .cid-u6kiqHwkAt table td {
    padding: .75rem;
  }
}
.cid-u6kiqHwkAt .body-item {
  text-align: center;
}
.cid-u6kiqHwkAt .mbr-text {
  color: #767676;
}
.cid-u6kiqHwkAt .head-item {
  color: #232323;
}
.cid-u6kiqHX5TT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u6kiqHX5TT [class*="col"] {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}
.cid-u6kiqHX5TT .card {
  margin-bottom: .5rem;
  overflow: hidden;
  min-height: 426px;
}
.cid-u6kiqHX5TT .card .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-u6kiqHX5TT .card .card-img img {
  object-fit: cover;
  height: 100%;
}
.cid-u6kiqHX5TT .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-u6kiqHX5TT .row:nth-of-type(2) .card {
  min-height: 326px;
}
.cid-u6kiqHX5TT .card-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-u6kiqHX5TT .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-u6kiqHX5TT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-u6kiqHX5TT .card-sub-title {
  text-align: center;
}
.cid-u6kiqHX5TT .mbr-section-sub-title {
  text-align: left;
  color: #000000;
}
.cid-umV5s1i60U {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-u6NFEFYPOz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6NFEGQDwO {
  display: flex;
  background-image: url("../../../assets/images/lato-sx-2000x682.webp");
}
.cid-u6NFEGQDwO .mbr-overlay {
  background: #b23926;
  background: linear-gradient(90deg, #b23926, #a7822a);
}
.cid-u6NFEGQDwO .mbr-section-title {
  margin: 0;
}
.cid-u6NFEGQDwO .mbr-text {
  color: #efefef;
}
.cid-u6NFEGQDwO .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-u6NFEGQDwO .card-img {
  text-align: left;
}
.cid-u6NFEGQDwO .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-u6NFEGQDwO .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-u6NFEGQDwO .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u6NFEGQDwO .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-u6NFEGQDwO .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-u6NFEGQDwO .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-u6NFEHmiCW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-u6NFEHmiCW .container-fluid {
  padding: 0 3rem;
}
.cid-u6NFEHmiCW .mbr-section-subtitle {
  color: #767676;
}
.cid-u6NFEHmiCW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u6NFEHmiCW .table-wrapper {
  margin: 0 auto;
}
.cid-u6NFEHmiCW table {
  width: 90% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-u6NFEHmiCW table thead tr {
  border: none !important;
}
.cid-u6NFEHmiCW table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-u6NFEHmiCW table tr td {
  border-color: #c1c1c1;
}
.cid-u6NFEHmiCW table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-u6NFEHmiCW tr:hover {
  background-color: #ffffff !important;
}
.cid-u6NFEHmiCW th:after,
.cid-u6NFEHmiCW th:before {
  display: none !important;
}
.cid-u6NFEHmiCW .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-u6NFEHmiCW .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-u6NFEHmiCW table th,
  .cid-u6NFEHmiCW table td {
    padding: .75rem;
  }
}
.cid-u6NFEHmiCW .body-item {
  text-align: center;
}
.cid-u6NFEHmiCW .mbr-text {
  color: #767676;
}
.cid-u6NFEHmiCW .head-item {
  color: #232323;
}
.cid-u6NFEIcsHx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u6NFEIcsHx [class*="col"] {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}
.cid-u6NFEIcsHx .card {
  margin-bottom: .5rem;
  overflow: hidden;
  min-height: 426px;
}
.cid-u6NFEIcsHx .card .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-u6NFEIcsHx .card .card-img img {
  object-fit: cover;
  height: 100%;
}
.cid-u6NFEIcsHx .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-u6NFEIcsHx .row:nth-of-type(2) .card {
  min-height: 326px;
}
.cid-u6NFEIcsHx .card-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-u6NFEIcsHx .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-u6NFEIcsHx .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-u6NFEIcsHx .card-sub-title {
  text-align: center;
}
.cid-u6NFEIcsHx .mbr-section-sub-title {
  text-align: left;
  color: #000000;
}
.cid-umV5lKXeyg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sRyE46xjmV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sRyE47aEjZ {
  display: flex;
  background-image: url("../../../assets/images/lato1-1-2000x1447.webp");
}
.cid-sRyE47aEjZ .mbr-overlay {
  background: #b23926;
  background: linear-gradient(90deg, #b23926, #a7822a);
}
.cid-sRyE47aEjZ .mbr-section-title {
  margin: 0;
}
.cid-sRyE47aEjZ .mbr-text {
  color: #efefef;
}
.cid-sRyE47aEjZ .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sRyE47aEjZ .card-img {
  text-align: left;
}
.cid-sRyE47aEjZ .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sRyE47aEjZ .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sRyE47aEjZ .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sRyE47aEjZ .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sRyE47aEjZ .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sRyE47aEjZ .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sRyE4818IO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-sRyE4818IO .container-fluid {
  padding: 0 3rem;
}
.cid-sRyE4818IO .mbr-section-subtitle {
  color: #767676;
}
.cid-sRyE4818IO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sRyE4818IO .table-wrapper {
  margin: 0 auto;
}
.cid-sRyE4818IO table {
  width: 90% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sRyE4818IO table thead tr {
  border: none !important;
}
.cid-sRyE4818IO table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-sRyE4818IO table tr td {
  border-color: #c1c1c1;
}
.cid-sRyE4818IO table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sRyE4818IO tr:hover {
  background-color: #ffffff !important;
}
.cid-sRyE4818IO th:after,
.cid-sRyE4818IO th:before {
  display: none !important;
}
.cid-sRyE4818IO .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sRyE4818IO .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sRyE4818IO table th,
  .cid-sRyE4818IO table td {
    padding: .75rem;
  }
}
.cid-sRyE4818IO .body-item {
  text-align: center;
}
.cid-sRyE4818IO .mbr-text {
  color: #767676;
}
.cid-sRyE4818IO .head-item {
  color: #232323;
}
.cid-t6hN7DUu8N {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f2f3f7;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-t6hN7DUu8N .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t6hN7DUu8N .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t6hN7DUu8N .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t6hN7DUu8N .title {
  padding: 0 2rem;
}
.cid-t6hN7DUu8N .container {
  padding: 0 1rem;
}
.cid-t6hN7DUu8N .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-t6hN7DUu8N .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-t6hN7DUu8N .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-t6hN7DUu8N .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-t6hN7DUu8N .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-t6hN7DUu8N .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-t6hN7DUu8N .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-t6hN7DUu8N .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t6hN7DUu8N .icon-focus {
  display: none;
}
.cid-t6hN7DUu8N .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-t6hN7DUu8N .btn-primary-outline:hover {
  background: transparent !important;
  color: #000000 !important;
}
.cid-t6hN7DUu8N li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-t6hN7DUu8N li {
  position: relative;
}
.cid-t6hN7DUu8N .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-t6hN7DUu8N .btn {
  font-family: Jost !important;
}
.cid-t6hN7DUu8N .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-t6hN7DUu8N .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t6hN7DUu8N li:not(:last-child):after {
    top: 9px;
  }
  .cid-t6hN7DUu8N .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-t6hN7DUu8N .container {
    padding: 0rem 0.5rem;
  }
  .cid-t6hN7DUu8N .title {
    padding: 0 1rem;
  }
}
.cid-t6hN7DUu8N H2 {
  color: #89b758;
}
.cid-umV66DDV6f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-sIl5Mz6xvv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sIl5MA8l9y {
  display: flex;
  background-image: url("../../../assets/images/fronte-dx-2000x1103.webp");
}
.cid-sIl5MA8l9y .mbr-overlay {
  background: #b23926;
  background: linear-gradient(90deg, #b23926, #a7822a);
}
.cid-sIl5MA8l9y .mbr-section-title {
  margin: 0;
}
.cid-sIl5MA8l9y .mbr-text {
  color: #efefef;
}
.cid-sIl5MA8l9y .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sIl5MA8l9y .card-img {
  text-align: left;
}
.cid-sIl5MA8l9y .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sIl5MA8l9y .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sIl5MA8l9y .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sIl5MA8l9y .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sIl5MA8l9y .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sIl5MA8l9y .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sIl5MAU3UG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-sIl5MAU3UG .container-fluid {
  padding: 0 3rem;
}
.cid-sIl5MAU3UG .mbr-section-subtitle {
  color: #767676;
}
.cid-sIl5MAU3UG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sIl5MAU3UG .table-wrapper {
  margin: 0 auto;
}
.cid-sIl5MAU3UG table {
  width: 90% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sIl5MAU3UG table thead tr {
  border: none !important;
}
.cid-sIl5MAU3UG table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-sIl5MAU3UG table tr td {
  border-color: #c1c1c1;
}
.cid-sIl5MAU3UG table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sIl5MAU3UG tr:hover {
  background-color: #ffffff !important;
}
.cid-sIl5MAU3UG th:after,
.cid-sIl5MAU3UG th:before {
  display: none !important;
}
.cid-sIl5MAU3UG .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-sIl5MAU3UG .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-sIl5MAU3UG table th,
  .cid-sIl5MAU3UG table td {
    padding: .75rem;
  }
}
.cid-sIl5MAU3UG .body-item {
  text-align: center;
}
.cid-sIl5MAU3UG .mbr-text {
  color: #767676;
}
.cid-sIl5MAU3UG .head-item {
  color: #232323;
}
.cid-u6PmcWHUsz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f2f3f7;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u6PmcWHUsz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u6PmcWHUsz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u6PmcWHUsz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u6PmcWHUsz .title {
  padding: 0 2rem;
}
.cid-u6PmcWHUsz .container {
  padding: 0 1rem;
}
.cid-u6PmcWHUsz .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-u6PmcWHUsz .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-u6PmcWHUsz .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-u6PmcWHUsz .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-u6PmcWHUsz .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-u6PmcWHUsz .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-u6PmcWHUsz .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-u6PmcWHUsz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u6PmcWHUsz .icon-focus {
  display: none;
}
.cid-u6PmcWHUsz .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-u6PmcWHUsz .btn-primary-outline:hover {
  background: transparent !important;
  color: #000000 !important;
}
.cid-u6PmcWHUsz li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-u6PmcWHUsz li {
  position: relative;
}
.cid-u6PmcWHUsz .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-u6PmcWHUsz .btn {
  font-family: Jost !important;
}
.cid-u6PmcWHUsz .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-u6PmcWHUsz .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u6PmcWHUsz li:not(:last-child):after {
    top: 9px;
  }
  .cid-u6PmcWHUsz .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-u6PmcWHUsz .container {
    padding: 0rem 0.5rem;
  }
  .cid-u6PmcWHUsz .title {
    padding: 0 1rem;
  }
}
.cid-u6PmcWHUsz H2 {
  color: #89b758;
}
.cid-umV60tNFMJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-u7ncuUpoPa {
  background-image: url("../../../assets/images/mbr-1920x1440.webp");
}
.cid-u7ncuUpoPa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ncuUpoPa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ncgH75Yx {
  background-image: url("../../../assets/images/mbr-1920x1078.webp");
}
.cid-u7ncgH75Yx .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ncgH75Yx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ncgH75Yx .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u7ncgH75Yx .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u7ncgH75Yx .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7ncgH75Yx .card-wrapper {
    padding: 4rem;
  }
}
.cid-u7ncgH75Yx .mbr-text,
.cid-u7ncgH75Yx .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-u7AuFFOoMW {
  background-image: url("../../../assets/images/659271-v2-1920x1080.webp");
}
.cid-u7AuFFOoMW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7AuFFOoMW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7AuFFOoMW .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u7AuFFOoMW .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u7AuFFOoMW .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7AuFFOoMW .card-wrapper {
    padding: 4rem;
  }
}
.cid-u7AuFFOoMW .mbr-text,
.cid-u7AuFFOoMW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-u7nchus0yv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7nchus0yv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7nchus0yv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7nchus0yv .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-u7nchus0yv .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-u7nchus0yv .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u7nchus0yv .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u7nchus0yv .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7nchus0yv .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u7nchus0yv .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-u7nchus0yv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u7nchus0yv .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-u7nchus0yv .mbr-text,
.cid-u7nchus0yv .mbr-section-btn {
  color: #ffffff;
}
.cid-u7nciyEE5K {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7nciyEE5K .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7nciyEE5K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7nciyEE5K .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-u7nciyEE5K .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u7nciyEE5K .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u7nciyEE5K .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7nciyEE5K .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u7nciyEE5K .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u7nciyEE5K .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u7nciyEE5K .card-title {
  color: #ffffff;
}
.cid-u7nciyEE5K .mbr-text,
.cid-u7nciyEE5K .mbr-section-btn {
  color: #ffffff;
}
.cid-u7ncj6N8Kw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7ncj6N8Kw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ncj6N8Kw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ncj6N8Kw .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-u7ncj6N8Kw .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-u7ncj6N8Kw .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u7ncj6N8Kw .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u7ncj6N8Kw .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7ncj6N8Kw .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u7ncj6N8Kw .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-u7ncj6N8Kw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u7ncj6N8Kw .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-u7ncj6N8Kw .mbr-text,
.cid-u7ncj6N8Kw .mbr-section-btn {
  color: #ffffff;
}
.cid-u7nckBedVm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7nckBedVm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7nckBedVm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7nckBedVm .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-u7nckBedVm .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u7nckBedVm .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u7nckBedVm .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7nckBedVm .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u7nckBedVm .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u7nckBedVm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u7nckBedVm .card-title {
  color: #ffffff;
}
.cid-u7nckBedVm .mbr-text,
.cid-u7nckBedVm .mbr-section-btn {
  color: #ffffff;
}
.cid-u7nclsPsQz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7nclsPsQz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7nclsPsQz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7nclsPsQz .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-u7nclsPsQz .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-u7nclsPsQz .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u7nclsPsQz .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u7nclsPsQz .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7nclsPsQz .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u7nclsPsQz .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-u7nclsPsQz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u7nclsPsQz .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-u7nclsPsQz .mbr-text,
.cid-u7nclsPsQz .mbr-section-btn {
  color: #ffffff;
}
.cid-u7ncmej7RB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7ncmej7RB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ncmej7RB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ncmej7RB .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-u7ncmej7RB .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u7ncmej7RB .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u7ncmej7RB .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7ncmej7RB .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u7ncmej7RB .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u7ncmej7RB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u7ncmej7RB .card-title {
  color: #ffffff;
}
.cid-u7ncmej7RB .mbr-text,
.cid-u7ncmej7RB .mbr-section-btn {
  color: #ffffff;
}
.cid-u7ncmSMt4E {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7ncmSMt4E .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ncmSMt4E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ncmSMt4E .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-u7ncmSMt4E .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-u7ncmSMt4E .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u7ncmSMt4E .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u7ncmSMt4E .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u7ncmSMt4E .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u7ncmSMt4E .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-u7ncmSMt4E .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u7ncmSMt4E .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-u7ncmSMt4E .mbr-text,
.cid-u7ncmSMt4E .mbr-section-btn {
  color: #ffffff;
}
.cid-u7AwbZiU2i {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u7AwbZiU2i .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7AwbZiU2i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7AwbZiU2i .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-u7AwbZiU2i .panel-group {
  border: none;
}
.cid-u7AwbZiU2i .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u7AwbZiU2i .panel-body,
.cid-u7AwbZiU2i .card-header {
  padding: 1rem 0;
}
.cid-u7AwbZiU2i .panel-title-edit {
  color: #000000;
}
.cid-u7AwbZiU2i .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-uPC5SJnbMU {
  background-color: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-uPC5SJnbMU .carousel {
  width: 100%;
}
.cid-uPC5SJnbMU .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uPC5SJnbMU .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uPC5SJnbMU img,
.cid-uPC5SJnbMU .item-wrapper {
  border-radius: 0 !important;
}
.cid-uPC5SJnbMU .carousel-caption {
  bottom: 40px;
}
.cid-uPC5SJnbMU .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uPC5SJnbMU .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uPC5SJnbMU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uPC5SJnbMU .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uPC5SJnbMU .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uPC5SJnbMU .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uPC5SJnbMU .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uPC5SJnbMU .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uPC5SJnbMU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPC5SJnbMU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPC5SJnbMU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPC5SJnbMU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uPC5SJnbMU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uPC5SJnbMU .carousel-indicators li.active,
.cid-uPC5SJnbMU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPC5SJnbMU .carousel-indicators li::after,
.cid-uPC5SJnbMU .carousel-indicators li::before {
  content: none;
}
.cid-uPC5SJnbMU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPC5SJnbMU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPC5SJnbMU .mbr-section-subtitle,
  .cid-uPC5SJnbMU .mbr-section-text,
  .cid-uPC5SJnbMU .mbr-section-btn {
    text-align: center;
  }
}
.cid-uOzDpc883P {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOzDpc883P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOzDpc883P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOzDpc883P .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uOzDpc883P .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uOzDpc883P .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uOzDpc883P .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uOzDpc883P .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uOzDpc883P .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uOzDpc883P .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uOzDpc883P .image-wrapper img {
    height: 350px;
  }
}
.cid-uOzDpc883P .mbr-section-title {
  color: #ffffff;
}
.cid-uOzDpc883P .mbr-text,
.cid-uOzDpc883P .text-wrapper {
  color: #9aa0a6;
}
.cid-uOzDpc883P .mbr-section-title,
.cid-uOzDpc883P .mbr-section-btn {
  color: #060606;
}
.cid-uOzDKMnDPh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOzDKMnDPh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOzDKMnDPh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOzDKMnDPh .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uOzDKMnDPh .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uOzDKMnDPh .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uOzDKMnDPh .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uOzDKMnDPh .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uOzDKMnDPh .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uOzDKMnDPh .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uOzDKMnDPh .image-wrapper img {
    height: 350px;
  }
}
.cid-uOzDKMnDPh .mbr-section-title {
  color: #ffffff;
}
.cid-uOzDKMnDPh .mbr-text,
.cid-uOzDKMnDPh .text-wrapper {
  color: #9aa0a6;
}
.cid-uOzDKMnDPh .mbr-section-title,
.cid-uOzDKMnDPh .mbr-section-btn {
  color: #060606;
}
.cid-uOzzF6MxAT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOzzF6MxAT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOzzF6MxAT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOzDSDPc1X {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOzDSDPc1X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOzDSDPc1X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOzDSDPc1X .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uOzDSDPc1X .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uOzDSDPc1X .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uOzDSDPc1X .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uOzDSDPc1X .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uOzDSDPc1X .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uOzDSDPc1X .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uOzDSDPc1X .image-wrapper img {
    height: 350px;
  }
}
.cid-uOzDSDPc1X .mbr-section-title {
  color: #ffffff;
}
.cid-uOzDSDPc1X .mbr-text,
.cid-uOzDSDPc1X .text-wrapper {
  color: #9aa0a6;
}
.cid-uOzDSDPc1X .mbr-section-title,
.cid-uOzDSDPc1X .mbr-section-btn {
  color: #060606;
}
.cid-uOzEc3hIMZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOzEc3hIMZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOzEc3hIMZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOzEc3hIMZ .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uOzEc3hIMZ .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uOzEc3hIMZ .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uOzEc3hIMZ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uOzEc3hIMZ .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uOzEc3hIMZ .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uOzEc3hIMZ .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uOzEc3hIMZ .image-wrapper img {
    height: 350px;
  }
}
.cid-uOzEc3hIMZ .mbr-section-title {
  color: #ffffff;
}
.cid-uOzEc3hIMZ .mbr-text,
.cid-uOzEc3hIMZ .text-wrapper {
  color: #9aa0a6;
}
.cid-uOzEc3hIMZ .mbr-section-title,
.cid-uOzEc3hIMZ .mbr-section-btn {
  color: #060606;
}
.cid-uOzEivcKic {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOzEivcKic .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOzEivcKic .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOzEivcKic .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uOzEivcKic .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uOzEivcKic .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uOzEivcKic .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uOzEivcKic .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uOzEivcKic .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uOzEivcKic .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uOzEivcKic .image-wrapper img {
    height: 350px;
  }
}
.cid-uOzEivcKic .mbr-section-title {
  color: #ffffff;
}
.cid-uOzEivcKic .mbr-text,
.cid-uOzEivcKic .text-wrapper {
  color: #9aa0a6;
}
.cid-uOzEivcKic .mbr-section-title,
.cid-uOzEivcKic .mbr-section-btn {
  color: #060606;
}
.cid-uOzCW4pHYZ {
  align-items: flex-end;
  background-image: url("../../../assets/images/destination-non-stop-flights-1831x743.webp");
}
.cid-uOzCW4pHYZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOzCW4pHYZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOzCW4pHYZ .image-wrapper {
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uOzCW4pHYZ .image-wrapper {
    height: 350px;
  }
}
.cid-ud2x1PvR4o {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ud2x1PvR4o .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud2x1PvR4o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud2x1PvR4o .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-ud2x1PvR4o .panel-group {
  border: none;
}
.cid-ud2x1PvR4o .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ud2x1PvR4o .panel-body,
.cid-ud2x1PvR4o .card-header {
  padding: 1rem 0;
}
.cid-ud2x1PvR4o .panel-title-edit {
  color: #000000;
}
.cid-ud2x1PvR4o .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ud2t8dCDkc.popup-builder {
  background-color: #ffffff;
}
.cid-ud2t8dCDkc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ud2t8dCDkc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ud2t8dCDkc .modal-content,
.cid-ud2t8dCDkc .modal-dialog {
  height: auto;
}
.cid-ud2t8dCDkc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ud2t8dCDkc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ud2t8dCDkc .form-wrapper .mbr-form .form-group,
  .cid-ud2t8dCDkc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ud2t8dCDkc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ud2t8dCDkc .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ud2t8dCDkc .mbr-text {
  text-align: center;
}
.cid-ud2t8dCDkc .pt-0 {
  padding-top: 0 !important;
}
.cid-ud2t8dCDkc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ud2t8dCDkc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ud2t8dCDkc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ud2t8dCDkc .modal-open {
  overflow: hidden;
}
.cid-ud2t8dCDkc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ud2t8dCDkc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ud2t8dCDkc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ud2t8dCDkc .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ud2t8dCDkc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ud2t8dCDkc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ud2t8dCDkc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ud2t8dCDkc .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ud2t8dCDkc .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ud2t8dCDkc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ud2t8dCDkc .modal-backdrop.fade {
  opacity: 0;
}
.cid-ud2t8dCDkc .modal-backdrop.show {
  opacity: .5;
}
.cid-ud2t8dCDkc .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ud2t8dCDkc .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ud2t8dCDkc .modal-header {
    padding: 1rem;
  }
}
.cid-ud2t8dCDkc .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ud2t8dCDkc .modal-header .close svg {
  fill: #353535;
}
.cid-ud2t8dCDkc .modal-header .close:hover {
  opacity: 1;
}
.cid-ud2t8dCDkc .modal-header .close:focus {
  outline: none;
}
.cid-ud2t8dCDkc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ud2t8dCDkc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ud2t8dCDkc .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ud2t8dCDkc .modal-body {
    padding: 1rem;
  }
}
.cid-ud2t8dCDkc .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ud2t8dCDkc .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ud2t8dCDkc .modal-footer {
    padding: 1rem;
  }
}
.cid-ud2t8dCDkc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ud2t8dCDkc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ud2t8dCDkc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ud2t8dCDkc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ud2t8dCDkc .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ud2t8dCDkc .modal-lg,
  .cid-ud2t8dCDkc .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ud2t8dCDkc .modal-xl {
    max-width: 1140px;
  }
}
.cid-ud2t8dCDkc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ud2t8dCDkc .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ud2t8dCDkc .form-group {
  margin-bottom: 1rem;
}
.cid-ud2t8dCDkc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ud2t8dCDkc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ud2t8dCDkc .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ud2t8dCDkc .mbr-section-btn {
  margin: 0;
}
.cid-ud2t8dCDkc .mbr-section-btn .btn {
  margin: 0;
}
.cid-ufuKGMd0ZR .icon-bar {
  z-index: 100002;
  right: 1%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-ufuKGMd0ZR .icon-bar a:hover {
  background-color: #e59e4d;
  margin-left: -50px;
  width: 100px;
}
.cid-ufuKGMd0ZR .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 18px;
}
.cid-ufuKGMd0ZR .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-ufuKGMd0ZR .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-ufuKGMd0ZR .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-ufuKGMd0ZR .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-ufuKGMd0ZR .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-ufuKGMd0ZR .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-ufuKGMd0ZR .custom1 {
  background: #a7822a;
  color: white;
  width: 50px;
}
.cid-ufuKGMd0ZR .custom2 {
  background: #0e1b28;
  color: white;
  width: 50px;
}
.cid-ufuKGMd0ZR .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-ufuKGMd0ZR .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#e43f3f, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-ufuKGMd0ZR .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #e43f3f);
}
.cid-ufuKGMd0ZR .corner-ribbon.top-zen {
  top: auto;
  bottom: 25px;
  left: -50px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: fixed;
}
.cid-ufuKGMd0ZR P {
  color: #232323;
}
.cid-ufuKGMd0ZR DIV {
  color: #ffffff;
}
.cid-ufuKGMd0ZR H10 {
  color: #767676;
}
.cid-ufuKGMd0ZR .hidden {
  display: none;
}
.cid-ufuKGMd0ZR div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-umV3nMKLF5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-umV3nNj6zF {
  display: flex;
  background-image: url("../../../assets/images/whatsapp-image-2023-04-22-at-14.54.38-2000x1500.webp");
}
.cid-umV3nNj6zF .mbr-overlay {
  background: #b23926;
  background: linear-gradient(90deg, #b23926, #a7822a);
}
.cid-umV3nNj6zF .mbr-section-title {
  margin: 0;
}
.cid-umV3nNj6zF .mbr-text {
  color: #efefef;
}
.cid-umV3nNj6zF .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-umV3nNj6zF .card-img {
  text-align: left;
}
.cid-umV3nNj6zF .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-umV3nNj6zF .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-umV3nNj6zF .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-umV3nNj6zF .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-umV3nNj6zF .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-umV3nNj6zF .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-umV3nNY1Oy {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-umV3nNY1Oy .container-fluid {
  padding: 0 3rem;
}
.cid-umV3nNY1Oy .mbr-section-subtitle {
  color: #767676;
}
.cid-umV3nNY1Oy .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-umV3nNY1Oy .table-wrapper {
  margin: 0 auto;
}
.cid-umV3nNY1Oy table {
  width: 90% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-umV3nNY1Oy table thead tr {
  border: none !important;
}
.cid-umV3nNY1Oy table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-color: #5b5b5b;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-umV3nNY1Oy table tr td {
  border-color: #c1c1c1;
}
.cid-umV3nNY1Oy table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-umV3nNY1Oy tr:hover {
  background-color: #ffffff !important;
}
.cid-umV3nNY1Oy th:after,
.cid-umV3nNY1Oy th:before {
  display: none !important;
}
.cid-umV3nNY1Oy .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-umV3nNY1Oy .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-umV3nNY1Oy table th,
  .cid-umV3nNY1Oy table td {
    padding: .75rem;
  }
}
.cid-umV3nNY1Oy .body-item {
  text-align: center;
}
.cid-umV3nNY1Oy .mbr-text {
  color: #767676;
}
.cid-umV3nNY1Oy .head-item {
  color: #232323;
}
.cid-umV3nOBHqP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umV3nOBHqP [class*="col"] {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}
.cid-umV3nOBHqP .card {
  margin-bottom: .5rem;
  overflow: hidden;
  min-height: 426px;
}
.cid-umV3nOBHqP .card .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-umV3nOBHqP .card .card-img img {
  object-fit: cover;
  height: 100%;
}
.cid-umV3nOBHqP .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-umV3nOBHqP .row:nth-of-type(2) .card {
  min-height: 326px;
}
.cid-umV3nOBHqP .card-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-umV3nOBHqP .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-umV3nOBHqP .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-umV3nOBHqP .card-sub-title {
  text-align: center;
}
.cid-umV3nOBHqP .mbr-section-sub-title {
  text-align: left;
  color: #000000;
}
.cid-umV3nPhnhI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-uscHsWxWc9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/222-2000x1003.webp");
}
.cid-uscHsWxWc9 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-uscHsWxWc9 .row {
    justify-content: flex-start !important;
  }
}
.cid-uscHsWxWc9 .mbr-section-head {
  margin-bottom: 2rem;
}
.cid-uscHsWxWc9 .mbr-section-title {
  text-align: center;
}
.cid-uscHsWxWc9 .mbr-section-subtitle {
  text-align: center;
}
.cid-uscHsWxWc9 .image-wrapper {
  margin-bottom: 1rem;
}
.cid-uscHsWxWc9 .card-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-uscHsWxWc9 .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: auto;
  flex-grow: 0;
  text-align: center;
  padding: 2rem 1rem;
  background-color: #a7822a;
  border-width: 3px;
  border-style: dashed;
  border-color: #b23926;
  border-radius: 30px;
  justify-content: center;
}
.cid-uscHsWxWc9 .mbr-iconfont {
  font-size: 4rem;
  color: #cd8ad1;
}
.cid-uscHsWxWc9 div[class*="col"] {
  margin-bottom: 2rem;
}
.cid-us7Uv2GeIY {
  overflow: hidden;
  background-image: url("../../../assets/images/20210825130212-capri-campania-gettyimages-637818296-1-2000x1228.webp");
}
.cid-us7Uv2GeIY .mbr-overlay {
  background: #060606;
  opacity: 0.3;
}
.cid-us7Uv2GeIY .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-us7Uv2GeIY .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-us7Uv2GeIY .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 50%;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-us7Uv2GeIY .title-wrapper .desc-wrapper .mbr-desc {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-us7Uv2GeIY .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-us7Uv2GeIY .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-us7Uv2GeIY .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-us7Uv2GeIY .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 850px;
  max-width: 850px;
}
@media (max-width: 1200px) {
  .cid-us7Uv2GeIY .embla__slide {
    min-width: 650px;
    max-width: 650px;
  }
}
@media (max-width: 767px) {
  .cid-us7Uv2GeIY .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-us7Uv2GeIY .embla__slide:hover .slide-content .item-wrapper .item-img img,
.cid-us7Uv2GeIY .embla__slide:focus .slide-content .item-wrapper .item-img img {
  border: 2px solid #b23926;
}
.cid-us7Uv2GeIY .embla__slide .slide-content {
  width: 100%;
}
.cid-us7Uv2GeIY .embla__slide .slide-content .item-wrapper .item-img {
  margin-bottom: 32px;
}
.cid-us7Uv2GeIY .embla__slide .slide-content .item-wrapper .item-img img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  border: 2px solid transparent;
}
@media (max-width: 992px) {
  .cid-us7Uv2GeIY .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-us7Uv2GeIY .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 2px;
}
.cid-us7Uv2GeIY .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-us7Uv2GeIY .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
    width: 100%;
  }
}
.cid-us7Uv2GeIY .embla__slide .slide-content .item-wrapper .item-content .text-wrap .item-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-us7Uv2GeIY .embla__slide .slide-content .item-wrapper .item-content .text-wrap .item-text {
    width: 100%;
  }
}
.cid-us7Uv2GeIY .embla__button--next,
.cid-us7Uv2GeIY .embla__button--prev {
  display: flex;
}
.cid-us7Uv2GeIY .embla__button {
  bottom: 0;
  width: 48px;
  height: 48px;
  font-size: 24px;
  background-color: #252525 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-us7Uv2GeIY .embla__button:hover {
  transform: scale(1.05);
}
.cid-us7Uv2GeIY .embla__button.embla__button--prev {
  left: 0;
}
.cid-us7Uv2GeIY .embla__button.embla__button--next {
  right: 0;
}
.cid-us7Uv2GeIY .embla {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-us7Uv2GeIY .embla {
    margin-bottom: 38px;
  }
}
.cid-us7Uv2GeIY .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-us7Uv2GeIY .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-us7Uv2GeIY .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-us7Uv2GeIY .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-us7Uv2GeIY .item-menu-overlay {
  opacity: 0 !important;
}
.cid-us7Uv2GeIY .mbr-section-title {
  color: #ffffff;
}
.cid-us7Uv2GeIY .mbr-text,
.cid-us7Uv2GeIY .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-us7Uv2GeIY .mbr-desc,
.cid-us7Uv2GeIY .desc-wrapper {
  color: #a7822a;
  text-align: center;
}
.cid-us7Uv2GeIY .item-title,
.cid-us7Uv2GeIY .title-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-us7Uv2GeIY .item-text,
.cid-us7Uv2GeIY .text-wrap {
  color: #9aa0a6;
  text-align: center;
}
.cid-us7Uv2GeIY .mbr-section-title,
.cid-us7Uv2GeIY .mbr-section-btn {
  text-align: center;
}
.cid-us7XSRIzDd .icon-bar {
  z-index: 100002;
  right: 1%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-us7XSRIzDd .icon-bar a:hover {
  background-color: #e59e4d;
  margin-left: -50px;
  width: 100px;
}
.cid-us7XSRIzDd .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 18px;
}
.cid-us7XSRIzDd .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-us7XSRIzDd .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-us7XSRIzDd .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-us7XSRIzDd .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-us7XSRIzDd .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-us7XSRIzDd .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-us7XSRIzDd .custom1 {
  background: #a7822a;
  color: white;
  width: 50px;
}
.cid-us7XSRIzDd .custom2 {
  background: #0e1b28;
  color: white;
  width: 50px;
}
.cid-us7XSRIzDd .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-us7XSRIzDd .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#e43f3f, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-us7XSRIzDd .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #e43f3f);
}
.cid-us7XSRIzDd .corner-ribbon.top-zen {
  top: auto;
  bottom: 25px;
  left: -50px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: fixed;
}
.cid-us7XSRIzDd P {
  color: #232323;
}
.cid-us7XSRIzDd DIV {
  color: #ffffff;
}
.cid-us7XSRIzDd H10 {
  color: #767676;
}
.cid-us7XSRIzDd .hidden {
  display: none;
}
.cid-us7XSRIzDd div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-us7KzlyO0Y.popup-builder {
  background-color: #ffffff;
}
.cid-us7KzlyO0Y.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-us7KzlyO0Y.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-us7KzlyO0Y .modal-content,
.cid-us7KzlyO0Y .modal-dialog {
  height: auto;
}
.cid-us7KzlyO0Y .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-us7KzlyO0Y .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-us7KzlyO0Y .form-wrapper .mbr-form .form-group,
  .cid-us7KzlyO0Y .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-us7KzlyO0Y .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-us7KzlyO0Y .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-us7KzlyO0Y .mbr-text {
  text-align: center;
}
.cid-us7KzlyO0Y .pt-0 {
  padding-top: 0 !important;
}
.cid-us7KzlyO0Y .pb-0 {
  padding-bottom: 0 !important;
}
.cid-us7KzlyO0Y .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-us7KzlyO0Y .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-us7KzlyO0Y .modal-open {
  overflow: hidden;
}
.cid-us7KzlyO0Y .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-us7KzlyO0Y .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-us7KzlyO0Y .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-us7KzlyO0Y .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-us7KzlyO0Y .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-us7KzlyO0Y .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-us7KzlyO0Y .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-us7KzlyO0Y .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-us7KzlyO0Y .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-us7KzlyO0Y .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-us7KzlyO0Y .modal-backdrop.fade {
  opacity: 0;
}
.cid-us7KzlyO0Y .modal-backdrop.show {
  opacity: .5;
}
.cid-us7KzlyO0Y .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-us7KzlyO0Y .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-us7KzlyO0Y .modal-header {
    padding: 1rem;
  }
}
.cid-us7KzlyO0Y .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-us7KzlyO0Y .modal-header .close svg {
  fill: #353535;
}
.cid-us7KzlyO0Y .modal-header .close:hover {
  opacity: 1;
}
.cid-us7KzlyO0Y .modal-header .close:focus {
  outline: none;
}
.cid-us7KzlyO0Y .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-us7KzlyO0Y .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-us7KzlyO0Y .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us7KzlyO0Y .modal-body {
    padding: 1rem;
  }
}
.cid-us7KzlyO0Y .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-us7KzlyO0Y .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us7KzlyO0Y .modal-footer {
    padding: 1rem;
  }
}
.cid-us7KzlyO0Y .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-us7KzlyO0Y .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-us7KzlyO0Y .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-us7KzlyO0Y .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-us7KzlyO0Y .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-us7KzlyO0Y .modal-lg,
  .cid-us7KzlyO0Y .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-us7KzlyO0Y .modal-xl {
    max-width: 1140px;
  }
}
.cid-us7KzlyO0Y .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-us7KzlyO0Y .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-us7KzlyO0Y .form-group {
  margin-bottom: 1rem;
}
.cid-us7KzlyO0Y .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-us7KzlyO0Y .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-us7KzlyO0Y .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-us7KzlyO0Y .mbr-section-btn {
  margin: 0;
}
.cid-us7KzlyO0Y .mbr-section-btn .btn {
  margin: 0;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-uLKnH43znF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uLKnlEppY4 {
  flex-direction: column !important;
  justify-content: center;
  background-image: url("../../../assets/images/16-interno-piloti-2000x1400.webp");
}
.cid-uLKnlEppY4 .row.heading {
  margin-bottom: 72px;
}
.cid-uLKnlEppY4 .card {
  flex-direction: row;
  justify-content: center;
}
.cid-uLKnlEppY4 .card-box {
  display: flex;
  flex-direction: column;
  width: 80%;
  padding-left: 1rem;
}
.cid-uLKnlEppY4 .card-box .card-title {
  color: #ffffff;
}
.cid-uLKnlEppY4 .card-box .mbr-text {
  color: #ffffff;
}
.cid-uLKnlEppY4 .card-box .link .btn {
  margin: 0;
}
.cid-uLKnlEppY4 .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-uLKnlEppY4 .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-uLKnlEppY4 .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-uLKnlEppY4 .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-uLKnlEppY4 .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-uLKnlEppY4 .card .card-box .card-title,
  .cid-uLKnlEppY4 .card .card-box .mbr-text,
  .cid-uLKnlEppY4 .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-uLKnlEppY4 .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-uLKnlEppY4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLKnlEppY4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAvR6zgp7f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/whatsapp-image-2023-04-22-at-14.54.38-2000x1500.webp");
}
.cid-uAvR6zgp7f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAvR6zgp7f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uAvR6zgp7f .container {
    padding: 0 16px;
  }
}
.cid-uAvR6zgp7f .row {
  position: relative;
  justify-content: space-between;
}
.cid-uAvR6zgp7f .content-wrapper {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .cid-uAvR6zgp7f .content-wrapper {
    margin-bottom: 80px;
  }
}
.cid-uAvR6zgp7f .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uAvR6zgp7f .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uAvR6zgp7f .content-wrapper .mbr-text {
  margin-bottom: 14px;
}
.cid-uAvR6zgp7f .content-wrapper .decor-wrapper {
  margin-top: 32px;
}
.cid-uAvR6zgp7f .content-wrapper .decor-wrapper .decor-wrap {
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #e59e4d -10%, transparent 80%);
}
.cid-uAvR6zgp7f .panel-group .card {
  border-radius: 20px !important;
  background-color: #fafafa;
  margin-bottom: 24px;
  padding: 32px;
}
.cid-uAvR6zgp7f .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uAvR6zgp7f .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uAvR6zgp7f .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uAvR6zgp7f .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-uAvR6zgp7f .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uAvR6zgp7f .panel-group .card .panel-collapse .panel-body {
  padding-top: 16px;
}
.cid-uAvR6zgp7f .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(20px) scale3d(1, 0, 1);
  opacity: 0;
}
.cid-uAvR6zgp7f .panel-group .card .panel-collapse.show .panel-body .panel-text {
  transform: translateY(0) scale3d(1, 1, 1);
  opacity: 1;
}
.cid-uAvR6zgp7f .mbr-section-title {
  color: #000000;
}
.cid-uAvR6zgp7f .mbr-text {
  color: #6f6f6f;
}
.cid-uAvR6zgp7f .panel-title-edit {
  color: #000000;
}
.cid-uAvR6zgp7f .panel-text {
  color: #000000;
}
.cid-uAvR6zgp7f .mbr-text,
.cid-uAvR6zgp7f .text-wrap {
  color: #000000;
}
.cid-uLKnjRnA81 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLKnjRnA81 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLKnjRnA81 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLKnjRnA81 .container {
    padding: 0 16px;
  }
}
.cid-uLKnjRnA81 .row {
  justify-content: center;
}
.cid-uLKnjRnA81 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uLKnjRnA81 .image-wrapper {
  margin-bottom: 40px;
}
.cid-uLKnjRnA81 .image-wrapper img {
  height: 360px;
  object-fit: cover;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .cid-uLKnjRnA81 .image-wrapper img {
    height: 280px;
  }
}
.cid-uLKnjRnA81 .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uLKnjRnA81 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uLKnjRnA81 .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-uLKnjRnA81 .mbr-section-title,
.cid-uLKnjRnA81 .mbr-section-btn,
.cid-uLKnjRnA81 .icon-wrapper {
  color: #000000;
}
.cid-uAvR6yIOUX {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uAvR6yIOUX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAvR6yIOUX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAvR6yIOUX .col-title {
  margin-bottom: 32px;
}
.cid-uAvR6yIOUX .mbr-section-title {
  color: #24262b;
}
.cid-uAvR6yIOUX .mbr-section-subtitle {
  color: #24262b;
}
.cid-uAvR6yIOUX .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uAvR6yIOUX .cards-row {
  row-gap: 32px;
}
.cid-uAvR6yIOUX .card {
  border-radius: 0;
}
.cid-uAvR6yIOUX .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #33363b;
  margin-right: 0.5rem;
  flex-shrink: 0;
  transition: 0.3s all;
}
.cid-uAvR6yIOUX .card-title {
  flex-grow: 1;
  color: #24262b;
  transition: 0.3s all;
}
.cid-uAvR6yIOUX .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAvR6yIOUX .card-wrapper:hover .card-title {
  color: #b79b6c;
}
.cid-uAvR6yIOUX .card-wrapper:hover .mbr-iconfont {
  color: #b79b6c;
}
.cid-uAvR6ylwHr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uAvR6zNaHX {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #f2f3f7;
}
.cid-uAvR6zNaHX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAvR6zNaHX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAvR6zNaHX .col-title {
  margin-bottom: 32px;
}
.cid-uAvR6zNaHX .mbr-section-title {
  color: #24262b;
}
.cid-uAvR6zNaHX .mbr-section-subtitle {
  color: #24262b;
}
.cid-uAvR6zNaHX .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uAvR6zNaHX .cards-row {
  row-gap: 32px;
}
.cid-uAvR6zNaHX .card {
  border-radius: 0;
}
.cid-uAvR6zNaHX .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #33363b;
  margin-right: 0.5rem;
  flex-shrink: 0;
  transition: 0.3s all;
}
.cid-uAvR6zNaHX .card-title {
  flex-grow: 1;
  color: #24262b;
  transition: 0.3s all;
}
.cid-uAvR6zNaHX .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAvR6zNaHX .card-wrapper:hover .card-title {
  color: #b79b6c;
}
.cid-uAvR6zNaHX .card-wrapper:hover .mbr-iconfont {
  color: #b79b6c;
}
.cid-uAvR6AS2SH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAvR6Bm6A5 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uAvR6Bm6A5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAvR6Bm6A5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAvR6Bm6A5 .col-title {
  margin-bottom: 32px;
}
.cid-uAvR6Bm6A5 .mbr-section-title {
  color: #24262b;
}
.cid-uAvR6Bm6A5 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uAvR6Bm6A5 .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uAvR6Bm6A5 .cards-row {
  row-gap: 32px;
}
.cid-uAvR6Bm6A5 .card {
  border-radius: 0;
}
.cid-uAvR6Bm6A5 .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #33363b;
  margin-right: 0.5rem;
  flex-shrink: 0;
  transition: 0.3s all;
}
.cid-uAvR6Bm6A5 .card-title {
  flex-grow: 1;
  color: #24262b;
  transition: 0.3s all;
}
.cid-uAvR6Bm6A5 .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAvR6Bm6A5 .card-wrapper:hover .card-title {
  color: #b79b6c;
}
.cid-uAvR6Bm6A5 .card-wrapper:hover .mbr-iconfont {
  color: #b79b6c;
}
.cid-uLlYMqjSig {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/inglese-per-piloti-1200x900.webp");
}
.cid-uLlYMqjSig .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLlYMqjSig .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uLlYMqjSig .container {
    padding: 0 16px;
  }
}
.cid-uLlYMqjSig .row {
  position: relative;
  justify-content: space-between;
}
.cid-uLlYMqjSig .content-wrapper {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .cid-uLlYMqjSig .content-wrapper {
    margin-bottom: 80px;
  }
}
.cid-uLlYMqjSig .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uLlYMqjSig .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uLlYMqjSig .content-wrapper .mbr-text {
  margin-bottom: 14px;
}
.cid-uLlYMqjSig .content-wrapper .decor-wrapper {
  margin-top: 32px;
}
.cid-uLlYMqjSig .content-wrapper .decor-wrapper .decor-wrap {
  display: inline-flex;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #e59e4d -10%, transparent 80%);
}
.cid-uLlYMqjSig .panel-group .card {
  border-radius: 20px !important;
  background-color: #ffffff;
  margin-bottom: 24px;
  padding: 32px;
}
.cid-uLlYMqjSig .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uLlYMqjSig .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uLlYMqjSig .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uLlYMqjSig .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-uLlYMqjSig .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uLlYMqjSig .panel-group .card .panel-collapse .panel-body {
  padding-top: 16px;
}
.cid-uLlYMqjSig .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(20px) scale3d(1, 0, 1);
  opacity: 0;
}
.cid-uLlYMqjSig .panel-group .card .panel-collapse.show .panel-body .panel-text {
  transform: translateY(0) scale3d(1, 1, 1);
  opacity: 1;
}
.cid-uLlYMqjSig .mbr-section-title {
  color: #000000;
}
.cid-uLlYMqjSig .mbr-text {
  color: #6f6f6f;
}
.cid-uLlYMqjSig .panel-title-edit {
  color: #000000;
}
.cid-uLlYMqjSig .panel-text {
  color: #000000;
}
.cid-uLlYMqjSig .mbr-text,
.cid-uLlYMqjSig .text-wrap {
  color: #000000;
}
.cid-uLlZ6JMRIw {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uLlZ6JMRIw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLlZ6JMRIw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLlZ6JMRIw .col-title {
  margin-bottom: 32px;
}
.cid-uLlZ6JMRIw .mbr-section-title {
  color: #24262b;
}
.cid-uLlZ6JMRIw .mbr-section-subtitle {
  color: #24262b;
}
.cid-uLlZ6JMRIw .border-item {
  width: 100%;
  height: 1px;
  background: #767676;
  margin-bottom: 2rem;
}
.cid-uLlZ6JMRIw .cards-row {
  row-gap: 32px;
}
.cid-uLlZ6JMRIw .card {
  border-radius: 0;
}
.cid-uLlZ6JMRIw .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #33363b;
  margin-right: 0.5rem;
  flex-shrink: 0;
  transition: 0.3s all;
}
.cid-uLlZ6JMRIw .card-title {
  flex-grow: 1;
  color: #24262b;
  transition: 0.3s all;
}
.cid-uLlZ6JMRIw .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLlZ6JMRIw .card-wrapper:hover .card-title {
  color: #b79b6c;
}
.cid-uLlZ6JMRIw .card-wrapper:hover .mbr-iconfont {
  color: #b79b6c;
}
.cid-uAvR6C1j1z {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f3f7;
}
.cid-uAvR6C1j1z .line {
  background-color: #a7822a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uAvR6CtGEA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uAvR6CtGEA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAvR6CtGEA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAvR6CtGEA .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-uAvR6CtGEA .panel-group {
  border: none;
}
.cid-uAvR6CtGEA .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAvR6CtGEA .panel-body,
.cid-uAvR6CtGEA .card-header {
  padding: 1rem 0;
}
.cid-uAvR6CtGEA .panel-title-edit {
  color: #000000;
}
.cid-uAvR6CtGEA .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uAvR6DHgQZ .icon-bar {
  z-index: 100002;
  right: 1%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uAvR6DHgQZ .icon-bar a:hover {
  background-color: #e59e4d;
  margin-left: -50px;
  width: 100px;
}
.cid-uAvR6DHgQZ .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 18px;
}
.cid-uAvR6DHgQZ .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-uAvR6DHgQZ .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-uAvR6DHgQZ .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-uAvR6DHgQZ .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-uAvR6DHgQZ .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-uAvR6DHgQZ .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-uAvR6DHgQZ .custom1 {
  background: #a7822a;
  color: white;
  width: 50px;
}
.cid-uAvR6DHgQZ .custom2 {
  background: #0e1b28;
  color: white;
  width: 50px;
}
.cid-uAvR6DHgQZ .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uAvR6DHgQZ .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#e43f3f, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-uAvR6DHgQZ .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #e43f3f);
}
.cid-uAvR6DHgQZ .corner-ribbon.top-zen {
  top: auto;
  bottom: 25px;
  left: -50px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: fixed;
}
.cid-uAvR6DHgQZ P {
  color: #232323;
}
.cid-uAvR6DHgQZ DIV {
  color: #ffffff;
}
.cid-uAvR6DHgQZ H10 {
  color: #767676;
}
.cid-uAvR6DHgQZ .hidden {
  display: none;
}
.cid-uAvR6DHgQZ div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uAvR6EqQxh.popup-builder {
  background-color: #ffffff;
}
.cid-uAvR6EqQxh.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAvR6EqQxh.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAvR6EqQxh .modal-content,
.cid-uAvR6EqQxh .modal-dialog {
  height: auto;
}
.cid-uAvR6EqQxh .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAvR6EqQxh .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAvR6EqQxh .form-wrapper .mbr-form .form-group,
  .cid-uAvR6EqQxh .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAvR6EqQxh .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAvR6EqQxh .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAvR6EqQxh .mbr-text {
  text-align: center;
}
.cid-uAvR6EqQxh .pt-0 {
  padding-top: 0 !important;
}
.cid-uAvR6EqQxh .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAvR6EqQxh .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAvR6EqQxh .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAvR6EqQxh .modal-open {
  overflow: hidden;
}
.cid-uAvR6EqQxh .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAvR6EqQxh .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAvR6EqQxh .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAvR6EqQxh .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uAvR6EqQxh .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAvR6EqQxh .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAvR6EqQxh .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAvR6EqQxh .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uAvR6EqQxh .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAvR6EqQxh .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAvR6EqQxh .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAvR6EqQxh .modal-backdrop.show {
  opacity: .5;
}
.cid-uAvR6EqQxh .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uAvR6EqQxh .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAvR6EqQxh .modal-header {
    padding: 1rem;
  }
}
.cid-uAvR6EqQxh .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAvR6EqQxh .modal-header .close svg {
  fill: #353535;
}
.cid-uAvR6EqQxh .modal-header .close:hover {
  opacity: 1;
}
.cid-uAvR6EqQxh .modal-header .close:focus {
  outline: none;
}
.cid-uAvR6EqQxh .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uAvR6EqQxh .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAvR6EqQxh .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAvR6EqQxh .modal-body {
    padding: 1rem;
  }
}
.cid-uAvR6EqQxh .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uAvR6EqQxh .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAvR6EqQxh .modal-footer {
    padding: 1rem;
  }
}
.cid-uAvR6EqQxh .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAvR6EqQxh .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAvR6EqQxh .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAvR6EqQxh .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAvR6EqQxh .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAvR6EqQxh .modal-lg,
  .cid-uAvR6EqQxh .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAvR6EqQxh .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAvR6EqQxh .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAvR6EqQxh .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uAvR6EqQxh .form-group {
  margin-bottom: 1rem;
}
.cid-uAvR6EqQxh .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAvR6EqQxh .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAvR6EqQxh .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uAvR6EqQxh .mbr-section-btn {
  margin: 0;
}
.cid-uAvR6EqQxh .mbr-section-btn .btn {
  margin: 0;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-uwL4SKrrAe {
  background-image: url("../../../assets/images/dsc00970-modifica-2000x1334.webp");
}
.cid-uwL4SKrrAe .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uwL4SKrrAe .mbr-section-title a {
  font-weight: 600;
}
.cid-uwL4SKrrAe .mbr-section-title a:hover {
  background: none !important;
}
.cid-uwL4SKrrAe .mbr-text,
.cid-uwL4SKrrAe .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uwL4SKrrAe .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uwLde7zood {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uwLde7zood .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLde7zood .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLcXVUi0b {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uwLcXVUi0b H1 {
  color: #57468b;
}
.cid-uwLcXVUi0b .mbr-text,
.cid-uwLcXVUi0b .mbr-section-btn {
  color: #716c80;
}
.cid-uwLcXVUi0b img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-uwLcXVUi0b .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uwLcXVUi0b img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uwLcXVUi0b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLcXVUi0b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLeaNGFm9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uwLeaNGFm9 H1 {
  color: #57468b;
}
.cid-uwLeaNGFm9 .mbr-text,
.cid-uwLeaNGFm9 .mbr-section-btn {
  color: #716c80;
}
.cid-uwLeaNGFm9 img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-uwLeaNGFm9 .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uwLeaNGFm9 img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uwLeaNGFm9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLeaNGFm9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLevAU6bn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uwLevAU6bn H1 {
  color: #57468b;
}
.cid-uwLevAU6bn .mbr-text,
.cid-uwLevAU6bn .mbr-section-btn {
  color: #716c80;
}
.cid-uwLevAU6bn img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-uwLevAU6bn .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uwLevAU6bn img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uwLevAU6bn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLevAU6bn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLeUNTJcy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uwLeUNTJcy H1 {
  color: #57468b;
}
.cid-uwLeUNTJcy .mbr-text,
.cid-uwLeUNTJcy .mbr-section-btn {
  color: #716c80;
}
.cid-uwLeUNTJcy img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-uwLeUNTJcy .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uwLeUNTJcy img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uwLeUNTJcy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLeUNTJcy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLfCACs0N {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uwLfCACs0N H1 {
  color: #57468b;
}
.cid-uwLfCACs0N .mbr-text,
.cid-uwLfCACs0N .mbr-section-btn {
  color: #716c80;
}
.cid-uwLfCACs0N img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-uwLfCACs0N .col-lg-6 {
    padding: 0 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uwLfCACs0N img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uwLfCACs0N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLfCACs0N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLgV961Q0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #15171a;
}
.cid-uwLgV961Q0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLgV961Q0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLgV961Q0 .items-wrapper {
  justify-content: flex-end;
}
.cid-uwLgV961Q0 .items-wrapper .card {
  justify-content: center;
}
.cid-uwLgV961Q0 .content-wrapper {
  padding-right: 120px;
}
@media (max-width: 1440px) {
  .cid-uwLgV961Q0 .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uwLgV961Q0 .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uwLgV961Q0 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uwLgV961Q0 .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uwLgV961Q0 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uwLgV961Q0 .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uwLgV961Q0 .content-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwLgV961Q0 .image-wrapper {
  display: grid;
  grid-template-columns: .5fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .cid-uwLgV961Q0 .image-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uwLgV961Q0 .image-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-uwLgV961Q0 .image-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uwLgV961Q0 .image-wrapper .item .item-wrapper .item-img img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.cid-uwLgV961Q0 .mbr-section-title {
  color: #ffffff;
}
.cid-uwLgV961Q0 .mbr-text {
  color: #b9b9b9;
}
.cid-uwL4SNmTUS {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uwL4SOfau5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uwL4SOfau5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwL4SOfau5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwL4SOfau5 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-uwL4SOfau5 .panel-group {
  border: none;
}
.cid-uwL4SOfau5 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uwL4SOfau5 .panel-body,
.cid-uwL4SOfau5 .card-header {
  padding: 1rem 0;
}
.cid-uwL4SOfau5 .panel-title-edit {
  color: #000000;
}
.cid-uwL4SOfau5 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }.cid-uPHX3hrfcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPHX3hrfcI .display-2 {
  font-size: 2rem;
}
.cid-uPHX3hrfcI .navbar-collapse {
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uPHX3hrfcI .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .dropdown-item:hover {
    color: #000000 !important;
    background: #cccccc !important;
  }
  .cid-uPHX3hrfcI .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uPHX3hrfcI.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uPHX3hrfcI.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uPHX3hrfcI.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uPHX3hrfcI .navbar .topLineDivSettings {
    display: none;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar .navbar-brand {
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPHX3hrfcI.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu {
    top: 0;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uPHX3hrfcI .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPHX3hrfcI .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(239, 239, 239, 0.95);
    text-align: center;
  }
  .cid-uPHX3hrfcI .navbar-brand {
    min-height: 80px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPHX3hrfcI .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPHX3hrfcI .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 175px;
  }
}
@media (min-width: 576px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 310px;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 345px;
  }
}
@media (min-width: 1200px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 305px;
  }
}
@media (max-width: 370px) {
  .cid-uPHX3hrfcI .navbar-caption-wrap {
    word-break: normal;
    display: none !important;
  }
}
.cid-uPHX3hrfcI .container {
  width: 100%;
  max-width: 1660px !important;
  display: flex;
  margin: auto;
}
.cid-uPHX3hrfcI .navbar {
  box-shadow: 0 8px 20px 0 rgba(35, 35, 35, 0.4), inset 0 -7px 9px -7px #cccccc;
  min-height: 80px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: rgba(255, 255, 255, 0.95) !important;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar.navbar-short {
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    height: 3.8rem !important;
  }
  .cid-uPHX3hrfcI .navbar.navbar-short .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #b3b3b3;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-width: 0.5px;
    border-color: #767676;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uPHX3hrfcI .navbar .dropdown-item:hover {
    color: #ffffff !important;
    background: #767676 !important;
  }
}
.cid-uPHX3hrfcI .navbar.opened {
  transition: all .3s;
}
.cid-uPHX3hrfcI .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uPHX3hrfcI .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPHX3hrfcI .nav-link:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .nav-link:hover:before {
  color: #cc2952 !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: -10px;
  width: 100%;
}
.cid-uPHX3hrfcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .icons-menu {
    min-width: 180px;
    width: 180px;
    display: unset;
    line-height: 1;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uPHX3hrfcI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    min-width: 5rem;
    padding-top: 1.75rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 2em !important;
    padding: 0.3em 0.3em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
}
.cid-uPHX3hrfcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uPHX3hrfcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPHX3hrfcI .navbar-caption {
  padding-right: 1rem;
}
.cid-uPHX3hrfcI .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown-menu,
  .cid-uPHX3hrfcI .navbar.opened {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}
.cid-uPHX3hrfcI .nav-item:focus,
.cid-uPHX3hrfcI .nav-link:focus {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPHX3hrfcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uPHX3hrfcI .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uPHX3hrfcI .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uPHX3hrfcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPHX3hrfcI .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(239, 239, 239, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uPHX3hrfcI .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #000000 !important;
  background: #cccccc !important;
}
.cid-uPHX3hrfcI .navbar-brand {
  min-height: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPHX3hrfcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPHX3hrfcI .dropdown-item.active,
.cid-uPHX3hrfcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uPHX3hrfcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 400;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPHX3hrfcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uPHX3hrfcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPHX3hrfcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPHX3hrfcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uPHX3hrfcI .navbar-buttons {
    text-align: right;
    min-width: 450px;
    width: 450px;
  }
}
.cid-uPHX3hrfcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPHX3hrfcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPHX3hrfcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPHX3hrfcI .navbar-dropdown {
  padding: .0rem 0rem;
  position: fixed;
}
.cid-uPHX3hrfcI a.nav-link {
  display: flex;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPHX3hrfcI .navbar-brand span {
  display: inline-block;
}
.cid-uPHX3hrfcI .navbar-brand a {
  font-weight: 400;
}
.cid-uPHX3hrfcI .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #767676;
}
.cid-uPHX3hrfcI .btn-sm {
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
  padding-top: 0.4rem;
  padding-right: 1rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  border-radius: 3px;
  font-weight: 400;
}
.cid-uPHX3hrfcI .btn .mbr-iconfont,
.cid-uPHX3hrfcI .btn.btn-sm .mbr-iconfont {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
}
.cid-uPHX3hrfcI .topLineDivSettings {
  z-index: 1;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #b23926;
  border-top-color: #b23926;
  background: #b23926 !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #232323;
}
.cid-uPHX3hrfcI .topLineDivSettings span {
  font-weight: 400 !important;
}
.cid-uPHX3hrfcI .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uPHX3hrfcI .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uPHX3hrfcI .topline-msg {
  -moz-animation: Pulse 2.7s ease-out;
  -moz-animation-iteration-count: 30;
  -webkit-animation: Pulse 2.7s ease-out;
  -webkit-animation-iteration-count: 30;
  animation: Pulse 2.7s ease-out;
  animation-iteration-count: 30;
}
@-moz-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes Pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-uPHX3hrfcI img {
  width: auto;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uPHX3hrfcI .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uPHX3hrfcI a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uPHX3hrfcI .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 2px;
}
.cid-uPHX3hrfcI .socicon {
  line-height: inherit;
}
.cid-uPHX3hrfcI .btn:hover {
  -webkit-transform: translateY(-5px) !important;
  transform: translateY(-5px);
}
.cid-uM1PlQ0ZBb {
  padding-top: 180px;
  background-image: url("../../../assets/images/dsc00970-modifica-2000x1334.webp");
}
.cid-uM1PlQ0ZBb .container {
  margin-bottom: 15%;
}
.cid-uM1PlQ0ZBb .content-container .btn-bgr {
  z-index: 0;
}
.cid-uM1PlQ0ZBb .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-uM1PlQ0ZBb .icon-block-top span {
  background-color: #a7822a;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-uM1PlQ0ZBb .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-uM1PlQ0ZBb .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-uM1PlQ0ZBb .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-uM1PlQ0ZBb .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-uM1PlQ0ZBb .box-item-text,
.cid-uM1PlQ0ZBb .mbr-section-btn {
  color: #8d97ad;
}
.cid-uM1PlQ0ZBb .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-uM1PlQ0ZBb .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-uM1PlQ0ZBb .box-list li:last-child {
  border-bottom: none;
}
.cid-uM1PlQ0ZBb .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-uM1PlQ0ZBb .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-uM1PlQ0ZBb .mbr-section-btn {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.cid-uM1PlQ0ZBb .mbr-section-btn > .btn-underline {
  padding: .5rem;
}
@media (min-width: 992px) {
  .cid-uM1PlQ0ZBb .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uM1PlQ0ZBb .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uM1PlQ0ZBb .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-uM1PlQ0ZBb .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-uM1PlQ0ZBb .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-uM1PlQ0ZBb .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-uM1PlQ0ZBb .mbr-text {
  color: #ffffff;
}
.cid-uM1PlQ0ZBb H1 {
  color: #ffffff;
}
.cid-uM1PlQmytU {
  background-image: url("../../../assets/images/my-fantasea-benetti-b.now-50m.webp");
}
.cid-uM1PlQmytU .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-uM1PlQmytU .text-content {
  z-index: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 50%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM1PlQmytU .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-uM1PlQmytU .text-content {
    width: 100%;
  }
}
.cid-uM1PlQmytU .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-uM1PlQmytU .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-uM1PlQmytU .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uM1PlQmytU .mbr-section-btn {
  margin-left: -4.5px;
}
@media (max-width: 767px) {
  .cid-uM1PlQmytU .mbr-text {
    text-align: center;
  }
}
.cid-uM1PlQmytU .mbr-section-subtitle {
  text-align: left;
}
.cid-uM1PlQmytU .mbr-section-btn,
.cid-uM1PlQmytU .mbr-section-title {
  text-align: left;
}
.cid-uM1PlQmytU P {
  text-align: left;
}
.cid-uM1PlQmytU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM1PlQmytU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM1PlQDc5R {
  background-image: url("../../../assets/images/1-1-e-avvenice-primerent-luxury-car-rental-exclusive-milano-roma-firenze-venezia-supercar-the-best-supercar-italy-europe-italia-ferrari-aston-martin-db-11-1920x1047.webp");
}
.cid-uM1PlQDc5R .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-uM1PlQDc5R .text-content {
  z-index: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 50%;
  margin-left: auto;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uM1PlQDc5R .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-uM1PlQDc5R .text-content {
    width: 100%;
  }
}
.cid-uM1PlQDc5R .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-uM1PlQDc5R .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-uM1PlQDc5R .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uM1PlQDc5R .mbr-section-btn {
  margin-left: -4.5px;
}
@media (max-width: 767px) {
  .cid-uM1PlQDc5R .mbr-text {
    text-align: center;
  }
}
.cid-uM1PlQDc5R .mbr-section-subtitle {
  text-align: left;
}
.cid-uM1PlQDc5R .mbr-section-btn,
.cid-uM1PlQDc5R .mbr-section-title {
  text-align: left;
}
.cid-uM1PlQDc5R P {
  text-align: left;
}
.cid-uM1PlQDc5R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM1PlQDc5R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM1PlQUaQI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uM1PlQUaQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM1PlQUaQI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM1PlQUaQI .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-uM1PlQUaQI .panel-group {
  border: none;
}
.cid-uM1PlQUaQI .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uM1PlQUaQI .panel-body,
.cid-uM1PlQUaQI .card-header {
  padding: 1rem 0;
}
.cid-uM1PlQUaQI .panel-title-edit {
  color: #000000;
}
.cid-uM1PlQUaQI .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uM1PlRFA7y.popup-builder {
  background-color: #ffffff;
}
.cid-uM1PlRFA7y.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uM1PlRFA7y.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uM1PlRFA7y .modal-content,
.cid-uM1PlRFA7y .modal-dialog {
  height: auto;
}
.cid-uM1PlRFA7y .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uM1PlRFA7y .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uM1PlRFA7y .form-wrapper .mbr-form .form-group,
  .cid-uM1PlRFA7y .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uM1PlRFA7y .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uM1PlRFA7y .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uM1PlRFA7y .mbr-text {
  text-align: center;
}
.cid-uM1PlRFA7y .pt-0 {
  padding-top: 0 !important;
}
.cid-uM1PlRFA7y .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uM1PlRFA7y .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uM1PlRFA7y .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uM1PlRFA7y .modal-open {
  overflow: hidden;
}
.cid-uM1PlRFA7y .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uM1PlRFA7y .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uM1PlRFA7y .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uM1PlRFA7y .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uM1PlRFA7y .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uM1PlRFA7y .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uM1PlRFA7y .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uM1PlRFA7y .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uM1PlRFA7y .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uM1PlRFA7y .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uM1PlRFA7y .modal-backdrop.fade {
  opacity: 0;
}
.cid-uM1PlRFA7y .modal-backdrop.show {
  opacity: .5;
}
.cid-uM1PlRFA7y .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uM1PlRFA7y .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uM1PlRFA7y .modal-header {
    padding: 1rem;
  }
}
.cid-uM1PlRFA7y .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uM1PlRFA7y .modal-header .close svg {
  fill: #353535;
}
.cid-uM1PlRFA7y .modal-header .close:hover {
  opacity: 1;
}
.cid-uM1PlRFA7y .modal-header .close:focus {
  outline: none;
}
.cid-uM1PlRFA7y .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uM1PlRFA7y .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uM1PlRFA7y .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM1PlRFA7y .modal-body {
    padding: 1rem;
  }
}
.cid-uM1PlRFA7y .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uM1PlRFA7y .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uM1PlRFA7y .modal-footer {
    padding: 1rem;
  }
}
.cid-uM1PlRFA7y .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uM1PlRFA7y .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uM1PlRFA7y .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uM1PlRFA7y .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uM1PlRFA7y .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uM1PlRFA7y .modal-lg,
  .cid-uM1PlRFA7y .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uM1PlRFA7y .modal-xl {
    max-width: 1140px;
  }
}
.cid-uM1PlRFA7y .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uM1PlRFA7y .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uM1PlRFA7y .form-group {
  margin-bottom: 1rem;
}
.cid-uM1PlRFA7y .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uM1PlRFA7y .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uM1PlRFA7y .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uM1PlRFA7y .mbr-section-btn {
  margin: 0;
}
.cid-uM1PlRFA7y .mbr-section-btn .btn {
  margin: 0;
}
.cid-uM1PlSjeTg .icon-bar {
  z-index: 100002;
  right: 1%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uM1PlSjeTg .icon-bar a:hover {
  background-color: #e59e4d;
  margin-left: -50px;
  width: 100px;
}
.cid-uM1PlSjeTg .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 18px;
}
.cid-uM1PlSjeTg .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-uM1PlSjeTg .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-uM1PlSjeTg .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-uM1PlSjeTg .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-uM1PlSjeTg .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-uM1PlSjeTg .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-uM1PlSjeTg .custom1 {
  background: #a7822a;
  color: white;
  width: 50px;
}
.cid-uM1PlSjeTg .custom2 {
  background: #0e1b28;
  color: white;
  width: 50px;
}
.cid-uM1PlSjeTg .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uM1PlSjeTg .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#e43f3f, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-uM1PlSjeTg .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #e43f3f);
}
.cid-uM1PlSjeTg .corner-ribbon.top-zen {
  top: auto;
  bottom: 25px;
  left: -50px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: fixed;
}
.cid-uM1PlSjeTg P {
  color: #232323;
}
.cid-uM1PlSjeTg DIV {
  color: #ffffff;
}
.cid-uM1PlSjeTg H10 {
  color: #767676;
}
.cid-uM1PlSjeTg .hidden {
  display: none;
}
.cid-uM1PlSjeTg div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uPHX6lpOPV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-uPHX6lpOPV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPHX6lpOPV .row {
    text-align: center;
  }
  .cid-uPHX6lpOPV .row > div {
    margin: auto;
  }
  .cid-uPHX6lpOPV .social-row {
    justify-content: center;
  }
}
.cid-uPHX6lpOPV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPHX6lpOPV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPHX6lpOPV .list {
    margin-bottom: 0rem;
  }
}
.cid-uPHX6lpOPV .mbr-text {
  color: #bbbbbb;
}
.cid-uPHX6lpOPV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uPHX6lpOPV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uPHX6lpOPV div > *:last-child {
    margin-top: 0 !important;
  }
}
.lang-links {
                    position: fixed;
                    left: 15px;
                    bottom: 15px;
                }

                .lang-links .language-wrapper {
                    background-color: #ffffff;
                    border-radius: 25px;
                    width: 0px;
                    height: 50px;
                    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
                    display: flex;
                }

                .lang-links .language {
                    width: 48px;
                    height: 48px;
                    border-radius: 25px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 4px;
                }

                .lang-links .language:hover {
                    width: 50px;
                    height: 50px;
                    border-radius: 25px;
                    background-color: #efefef;
                }