@import url(https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800&display=swap);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap);





body {
  font-family: Dosis;
}
.display-1 {
  font-family: 'Dosis', sans-serif;
  font-size: 3.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-2 {
  font-family: 'Dosis', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Dosis', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    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-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #8bd559 !important;
}
.bg-success {
  background-color: #8bd559 !important;
}
.bg-info {
  background-color: #ff4100 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #8bd559 !important;
  border-color: #8bd559 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #64b42e !important;
  border-color: #64b42e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #64b42e !important;
  border-color: #64b42e !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #8bd559 !important;
  border-color: #8bd559 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #64b42e !important;
  border-color: #64b42e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #64b42e !important;
  border-color: #64b42e !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #58a028;
  color: #58a028 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #8bd559;
  border-color: #8bd559;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #8bd559 !important;
  border-color: #8bd559 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #215f88;
  color: #215f88 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #3e97d1;
  border-color: #3e97d1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #992700;
  color: #992700 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #ff4100;
  border-color: #ff4100;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #58a028;
  color: #58a028 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #8bd559;
  border-color: #8bd559;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #8bd559 !important;
  border-color: #8bd559 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #111111;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #8bd559 !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #8bd559 !important;
}
.text-info {
  color: #ff4100 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #58a028 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #215f88 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #58a028 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #992700 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff4100;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #8bd559;
  border-color: #8bd559;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #8bd559;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdfefc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fdfefc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd9cc;
}
.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: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a {
  background: #444444;
}
#scrollToTop a i:before {
  background: #ffffff;
}
#scrollToTop a i:after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.mbr-arrow {
  background-color: #444444;
  opacity: .5;
  transition: .3s;
}
.mbr-arrow a {
  color: #ffffff;
}
.mbr-arrow:hover {
  opacity: .7;
}
.form-control {
  font-family: 'Dosis', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #8bd559;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #8bd559;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #8bd559;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #8bd559;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #8bd559;
  border-bottom-color: #8bd559;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #8bd559 !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: #3e97d1 !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%;
}
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='%238bd559' %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;
}
.cid-rzMzee4krn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rzMzee4krn .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rzMzee4krn .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-rzMzee4krn .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rzMzee4krn .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-rzMzee4krn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rzMzee4krn .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-rzMzee4krn .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-rzMzee4krn .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-rzMzee4krn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzMzee4krn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-rzMzee4krn .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-rzMzee4krn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzMzee4krn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rzMzee4krn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rzMzee4krn .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-rzMzee4krn .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-rzMzee4krn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzMzee4krn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-rzMzee4krn .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-rzMzee4krn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzMzee4krn .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-rzMzee4krn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzMzee4krn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rzMzee4krn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rzMzee4krn .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-rzMzee4krn .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-rzMzee4krn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzMzee4krn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzMzee4krn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-rzMzee4krn .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-rzMzee4krn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rzMzee4krn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rzMzee4krn .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rzMzee4krn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzMzee4krn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzMzee4krn .navbar-brand {
  -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;
}
.cid-rzMzee4krn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rzMzee4krn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzMzee4krn .dropdown-item.active,
.cid-rzMzee4krn .dropdown-item:active {
  background-color: transparent;
}
.cid-rzMzee4krn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rzMzee4krn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzMzee4krn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzMzee4krn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rzMzee4krn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-rzMzee4krn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzMzee4krn ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rzMzee4krn .navbar-buttons {
  text-align: center;
}
.cid-rzMzee4krn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzMzee4krn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-rzMzee4krn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzMzee4krn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMzee4krn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMzee4krn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzMzee4krn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMzee4krn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzMzee4krn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzMzee4krn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMzee4krn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzMzee4krn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-rzMzee4krn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rzMzee4krn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-rzMzee4krn .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-rzMzee4krn .nav-link:hover,
.cid-rzMzee4krn .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-stxlzi2wxf .modal-body .close {
  background: #1b1b1b;
}
.cid-stxlzi2wxf .modal-body .close span {
  font-style: normal;
}
.cid-stxlzi2wxf .carousel-inner > .active,
.cid-stxlzi2wxf .carousel-inner > .next,
.cid-stxlzi2wxf .carousel-inner > .prev {
  display: flex;
}
.cid-stxlzi2wxf .carousel-control .icon-next,
.cid-stxlzi2wxf .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-stxlzi2wxf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stxlzi2wxf .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-stxlzi2wxf .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-stxlzi2wxf .boxed-slider > div {
  position: relative;
}
.cid-stxlzi2wxf .container img {
  width: 100%;
}
.cid-stxlzi2wxf .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-stxlzi2wxf .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-stxlzi2wxf .mbr-table-cell {
  padding: 0;
}
.cid-stxlzi2wxf .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-stxlzi2wxf .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-stxlzi2wxf .mbr-overlay {
  z-index: 1;
}
.cid-stxlzi2wxf .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-stxlzi2wxf .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-stxlzi2wxf .carousel-item.active.right,
.cid-stxlzi2wxf .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-stxlzi2wxf .carousel-item.active.left,
.cid-stxlzi2wxf .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-stxlzi2wxf .carousel-item.active,
.cid-stxlzi2wxf .carousel-item.next.left,
.cid-stxlzi2wxf .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-stxlzi2wxf .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: #232323;
  opacity: .8;
  border-radius: 0;
  transition: all .3s;
  z-index: 11;
}
.cid-stxlzi2wxf .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 0;
}
.cid-stxlzi2wxf .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 0;
}
.cid-stxlzi2wxf .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
.cid-stxlzi2wxf .mbr-slider .carousel-control:hover {
  background-color: #8bd559;
}
@media (max-width: 767px) {
  .cid-stxlzi2wxf .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-stxlzi2wxf .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-stxlzi2wxf .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-stxlzi2wxf .mbr-slider .carousel-indicators li.active,
.cid-stxlzi2wxf .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
  background-color: #8bd559;
}
.cid-stxlzi2wxf .mbr-slider .carousel-indicators li::after,
.cid-stxlzi2wxf .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-stxlzi2wxf .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-stxlzi2wxf .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-stxlzi2wxf .mbr-slider > .container img {
  width: 100%;
}
.cid-stxlzi2wxf .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-stxlzi2wxf .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-stxlzi2wxf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-stxlzi2wxf .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-stxlzi2wxf .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-stxlzi2wxf .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-stxlzi2wxf .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-stxlzi2wxf .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-stxlzi2wxf .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-stxlzi2wxf .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-stxlzi2wxf .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-stxlzi2wxf .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-stxlzi2wxf .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-stZFyEmfCI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-stwT1iUJmI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-stwT1iUJmI .card-title {
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.cid-stwT1iUJmI .card {
  margin-bottom: 25px;
  overflow: hidden;
}
.cid-stwT1iUJmI .card .card-img {
  height: 100%;
}
.cid-stwT1iUJmI .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-stwT1iUJmI .card:hover .card-wrapper:before {
  opacity: 0.8;
  background: #c1c1c1;
}
.cid-stwT1iUJmI .card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-stwT1iUJmI .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-stwT1iUJmI .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.cid-stwT1iUJmI .card-wrapper {
  overflow: hidden;
  position: relative;
}
.cid-stwT1iUJmI .card-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: #232323;
  opacity: 0.4;
  z-index: 10;
  pointer-events: none;
}
.cid-stwT1iUJmI .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-stwT1iUJmI .card-box {
  position: absolute;
  overflow: hidden;
  height: fit-content;
  margin: auto;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-stwT1iUJmI .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-stwT1iUJmI .card-sub-title {
  text-align: center;
  font-weight: 500;
}
.cid-stwT1iUJmI .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-stwT1iUJmI .mbr-section-title,
.cid-stwT1iUJmI .line-wrap {
  color: #232323;
  text-align: center;
}
.cid-stwT1iUJmI .mbr-text {
  text-align: center;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-stwT1iUJmI .card-big {
    height: 200px;
  }
  .cid-stwT1iUJmI .card-img {
    margin-top: -15%;
  }
}
.cid-stZA9dtFDX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-stZA9dtFDX img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-stZA9dtFDX img:hover {
  transform: scale(1.1);
}
.cid-stZA9dtFDX .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-stZA9dtFDX h2 {
  padding: 0;
  margin: 0;
}
.cid-stZA9dtFDX .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stZA9dtFDX .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-stZA9dtFDX .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-stZA9dtFDX .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-stZA9dtFDX .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-stZA9dtFDX .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-stZA9dtFDX .mbr-iconfont {
  margin: 0!important;
}
.cid-stZA9dtFDX .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-stZA9dtFDX .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-stZA9dtFDX .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-stZA9dtFDX .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-stZA9dtFDX .text-col {
    padding: 2rem 1rem;
  }
}
.cid-stZA9dtFDX H2 {
  color: #333333;
}
.cid-stZA9dtFDX .mbr-text {
  color: #767676;
}
.cid-stCSX1PtaJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-stCSX1PtaJ .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-stCSX1PtaJ .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 1400px) {
  .cid-stCSX1PtaJ .card-wrapper {
    margin: 0rem;
  }
}
.cid-stCSX1PtaJ .card {
  height: fit-content;
}
@media (min-width: 767px) {
  .cid-stCSX1PtaJ .row {
    padding: 0 4rem;
  }
}
.cid-stCSX1PtaJ .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #8bd559;
}
.cid-stCSX1PtaJ .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-stCSX1PtaJ .card-box {
  padding: 3rem 3rem 4rem 3rem;
  width: 100%;
}
.cid-stCSX1PtaJ .card1 {
  background-color: #ffffff;
}
.cid-stCSX1PtaJ .card2 {
  background-color: #ffffff;
}
.cid-stCSX1PtaJ .card3 {
  background-color: #ffffff;
}
.cid-stCSX1PtaJ .card4 {
  background-color: #ffffff;
}
.cid-stCSX1PtaJ img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-stCSX1PtaJ .img-wrap {
  max-height: 200px;
  overflow: hidden;
}
.cid-stCSX1PtaJ .container {
  max-width: 1500px;
}
.cid-stCSX1PtaJ .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-stCSX1PtaJ .mbr-iconfont {
  font-size: 1.3rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
}
.cid-stCSX1PtaJ P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-stCSX1PtaJ .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-stCSX1PtaJ .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-stCSX1PtaJ .col2,
  .cid-stCSX1PtaJ .col3,
  .cid-stCSX1PtaJ .col4 {
    margin-top: 0rem;
  }
  .cid-stCSX1PtaJ .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .cid-stCSX1PtaJ .card-box {
    padding: 1rem 2rem 5rem 1rem;
  }
  .cid-stCSX1PtaJ .number {
    margin: auto;
  }
}
.cid-stCSX1PtaJ .mbr-text {
  color: #cccccc;
}
.cid-stCSX1PtaJ .text2 {
  color: #333333;
}
.cid-stCSX1PtaJ .text3 {
  color: #333333;
}
.cid-stCSX1PtaJ .title2 {
  color: #767676;
  text-align: center;
}
.cid-stCSX1PtaJ .title1 {
  color: #767676;
  text-align: center;
}
.cid-stCSX1PtaJ .title3 {
  color: #767676;
  text-align: center;
}
.cid-stCSX1PtaJ .title4 {
  color: #767676;
  text-align: center;
}
.cid-stCSX1PtaJ .text4 {
  color: #000000;
}
.cid-stCSX1PtaJ .text1 {
  color: #000000;
}
.cid-stCSX1PtaJ H1 {
  color: #333333;
}
.cid-stCe6FlTMW {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-stCe6FlTMW H1 {
  color: #232323;
}
.cid-stCe6FlTMW .mbr-text,
.cid-stCe6FlTMW .mbr-section-btn {
  color: #767676;
}
.cid-stCe6FlTMW .img-box {
  position: relative;
}
.cid-stCe6FlTMW .card-ico span {
  font-size: 96px;
  color: #8bd559;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-stCe6FlTMW .card-ico .ico1 {
  background-color: #8bd559;
}
.cid-stCe6FlTMW .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-stCe6FlTMW .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-stCe6FlTMW .img1 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 1;
}
.cid-stCe6FlTMW .img2 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 2;
}
.cid-stCe6FlTMW img {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(103, 173, 219, 0.35);
}
@media (max-width: 992px) {
  .cid-stCe6FlTMW .img-box {
    height: 500px;
  }
  .cid-stCe6FlTMW .img1 {
    left: 1rem;
  }
  .cid-stCe6FlTMW .img2 {
    right: 1rem;
  }
  .cid-stCe6FlTMW img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-stCe6FlTMW img {
    width: 60%;
  }
  .cid-stCe6FlTMW .img-box {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .cid-stCe6FlTMW .author-box {
    justify-content: center;
  }
  .cid-stCe6FlTMW .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-stCe6FlTMW .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-stCe6FlTMW .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-stCe6FlTMW .card-ico span {
    margin-right: 0rem;
  }
}
.cid-stCe6FlTMW .author-box {
  display: flex;
  flex-direction: row;
}
.cid-stCe6FlTMW .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-stCe6FlTMW .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-stCe6FlTMW h3,
.cid-stCe6FlTMW h4 {
  margin: 0;
  padding: 0;
}
.cid-stCe6FlTMW .card-title,
.cid-stCe6FlTMW .mbr-section-subtitle {
  color: #232323;
}
.cid-stCrZby6bf {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-stCrZby6bf H1 {
  color: #232323;
}
.cid-stCrZby6bf .mbr-text,
.cid-stCrZby6bf .mbr-section-btn {
  color: #767676;
}
.cid-stCrZby6bf .img-box {
  position: relative;
}
.cid-stCrZby6bf .card-ico span {
  font-size: 96px;
  color: #8bd559;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-stCrZby6bf .card-ico .ico1 {
  background-color: #8bd559;
}
.cid-stCrZby6bf .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-stCrZby6bf .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-stCrZby6bf .img1 {
  position: absolute;
  top: 0;
  right: 3rem;
  z-index: 1;
}
.cid-stCrZby6bf .img2 {
  position: absolute;
  bottom: 0;
  left: 3rem;
  z-index: 2;
}
.cid-stCrZby6bf img {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(103, 173, 219, 0.35);
}
@media (max-width: 992px) {
  .cid-stCrZby6bf .img-box {
    height: 500px;
  }
  .cid-stCrZby6bf .img2 {
    left: 1rem;
  }
  .cid-stCrZby6bf .img1 {
    right: 1rem;
  }
  .cid-stCrZby6bf img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-stCrZby6bf img {
    width: 60%;
  }
  .cid-stCrZby6bf .img-box {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .cid-stCrZby6bf .author-box {
    justify-content: center;
  }
  .cid-stCrZby6bf .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-stCrZby6bf .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-stCrZby6bf .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-stCrZby6bf .card-ico span {
    margin-right: 0rem;
  }
}
.cid-stCrZby6bf .author-box {
  display: flex;
  flex-direction: row;
}
.cid-stCrZby6bf .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-stCrZby6bf .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-stCrZby6bf h3,
.cid-stCrZby6bf h4 {
  margin: 0;
  padding: 0;
}
.cid-stCrZby6bf .card-title,
.cid-stCrZby6bf .mbr-section-subtitle {
  color: #232323;
}
.cid-stCEILaqzY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-stCEILaqzY H1 {
  color: #232323;
}
.cid-stCEILaqzY .mbr-text,
.cid-stCEILaqzY .mbr-section-btn {
  color: #767676;
}
.cid-stCEILaqzY .img-box {
  position: relative;
}
.cid-stCEILaqzY .card-ico span {
  font-size: 96px;
  color: #8bd559;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-stCEILaqzY .card-ico .ico1 {
  background-color: #8bd559;
}
.cid-stCEILaqzY .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-stCEILaqzY .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-stCEILaqzY .img1 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 1;
}
.cid-stCEILaqzY .img2 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 2;
}
.cid-stCEILaqzY img {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(103, 173, 219, 0.35);
}
@media (max-width: 992px) {
  .cid-stCEILaqzY .img-box {
    height: 500px;
  }
  .cid-stCEILaqzY .img1 {
    left: 1rem;
  }
  .cid-stCEILaqzY .img2 {
    right: 1rem;
  }
  .cid-stCEILaqzY img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-stCEILaqzY img {
    width: 60%;
  }
  .cid-stCEILaqzY .img-box {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .cid-stCEILaqzY .author-box {
    justify-content: center;
  }
  .cid-stCEILaqzY .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-stCEILaqzY .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-stCEILaqzY .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-stCEILaqzY .card-ico span {
    margin-right: 0rem;
  }
}
.cid-stCEILaqzY .author-box {
  display: flex;
  flex-direction: row;
}
.cid-stCEILaqzY .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-stCEILaqzY .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-stCEILaqzY h3,
.cid-stCEILaqzY h4 {
  margin: 0;
  padding: 0;
}
.cid-stCEILaqzY .card-title,
.cid-stCEILaqzY .mbr-section-subtitle {
  color: #232323;
}
.cid-supa7aHEEK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supa7aHEEK .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supa7aHEEK .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supa7aHEEK .card:hover {
  margin-top: -0.6rem;
}
.cid-supa7aHEEK .card-wrapper {
  position: relative;
}
.cid-supa7aHEEK .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supa7aHEEK .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supa7aHEEK .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supa7aHEEK .big {
  margin-top: -25%;
}
.cid-supa7aHEEK .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supa7aHEEK .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supa7aHEEK .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-stDeAOigXj {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-stDeAOigXj .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-stE3YdLlFP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-stE3YdLlFP .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-stE3YdLlFP .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-stE3YdLlFP .links-block ul li {
  margin: 0 1rem;
}
.cid-stE3YdLlFP .icons-block ul li {
  margin: 0 .5rem;
}
.cid-stE3YdLlFP .links-block ul,
.cid-stE3YdLlFP .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-tqQooBDsmG.popup-builder {
  background-color: #ffffff;
}
.cid-tqQooBDsmG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqQooBDsmG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqQooBDsmG .modal-content,
.cid-tqQooBDsmG .modal-dialog {
  height: auto;
}
.cid-tqQooBDsmG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqQooBDsmG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqQooBDsmG .form-wrapper .mbr-form .form-group,
  .cid-tqQooBDsmG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqQooBDsmG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqQooBDsmG .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-tqQooBDsmG .mbr-text {
  text-align: center;
}
.cid-tqQooBDsmG .pt-0 {
  padding-top: 0 !important;
}
.cid-tqQooBDsmG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqQooBDsmG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqQooBDsmG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqQooBDsmG .modal-open {
  overflow: hidden;
}
.cid-tqQooBDsmG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqQooBDsmG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqQooBDsmG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqQooBDsmG .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-tqQooBDsmG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqQooBDsmG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqQooBDsmG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqQooBDsmG .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-tqQooBDsmG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqQooBDsmG .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqQooBDsmG .modal-backdrop.show {
  opacity: .5;
}
.cid-tqQooBDsmG .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-tqQooBDsmG .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqQooBDsmG .modal-header .close:hover {
  opacity: 1;
}
.cid-tqQooBDsmG .modal-header .close:focus {
  outline: none;
}
.cid-tqQooBDsmG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqQooBDsmG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tqQooBDsmG .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-tqQooBDsmG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqQooBDsmG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqQooBDsmG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqQooBDsmG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqQooBDsmG .modal-sm {
    max-width: 300px;
  }
  .cid-tqQooBDsmG .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tqQooBDsmG .modal-lg,
  .cid-tqQooBDsmG .modal-xl {
    max-width: 800px;
  }
  .cid-tqQooBDsmG .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tqQooBDsmG .modal-xl {
    max-width: 1140px;
  }
  .cid-tqQooBDsmG .container {
    max-width: 1140px;
  }
}
.cid-tqQooBDsmG .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tqQooBDsmG .container {
    max-width: 720px;
  }
}
.cid-tqQooBDsmG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqQooBDsmG .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-tqQooBDsmG .form-group {
  margin-bottom: 1rem;
}
.cid-tqQooBDsmG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqQooBDsmG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqQooBDsmG .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-stEdkMp9m3 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-stEdkMp9m3 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-stEdkMp9m3 .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-stEdkMp9m3 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-stEdkMp9m3 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-stEdkMp9m3 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-stEdkMp9m3 .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-stEdkMp9m3 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-stEdkMp9m3 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-stEdkMp9m3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stEdkMp9m3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-stEdkMp9m3 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-stEdkMp9m3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stEdkMp9m3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stEdkMp9m3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-stEdkMp9m3 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-stEdkMp9m3 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-stEdkMp9m3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stEdkMp9m3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-stEdkMp9m3 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-stEdkMp9m3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stEdkMp9m3 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-stEdkMp9m3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stEdkMp9m3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stEdkMp9m3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-stEdkMp9m3 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-stEdkMp9m3 .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-stEdkMp9m3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stEdkMp9m3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stEdkMp9m3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-stEdkMp9m3 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-stEdkMp9m3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stEdkMp9m3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-stEdkMp9m3 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-stEdkMp9m3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stEdkMp9m3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stEdkMp9m3 .navbar-brand {
  -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;
}
.cid-stEdkMp9m3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stEdkMp9m3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stEdkMp9m3 .dropdown-item.active,
.cid-stEdkMp9m3 .dropdown-item:active {
  background-color: transparent;
}
.cid-stEdkMp9m3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stEdkMp9m3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stEdkMp9m3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stEdkMp9m3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stEdkMp9m3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-stEdkMp9m3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stEdkMp9m3 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-stEdkMp9m3 .navbar-buttons {
  text-align: center;
}
.cid-stEdkMp9m3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-stEdkMp9m3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-stEdkMp9m3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stEdkMp9m3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stEdkMp9m3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stEdkMp9m3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stEdkMp9m3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stEdkMp9m3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stEdkMp9m3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stEdkMp9m3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stEdkMp9m3 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stEdkMp9m3 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-stEdkMp9m3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stEdkMp9m3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-stEdkMp9m3 .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-stEdkMp9m3 .nav-link:hover,
.cid-stEdkMp9m3 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-stEdkNlWoX .modal-body .close {
  background: #1b1b1b;
}
.cid-stEdkNlWoX .modal-body .close span {
  font-style: normal;
}
.cid-stEdkNlWoX .carousel-inner > .active,
.cid-stEdkNlWoX .carousel-inner > .next,
.cid-stEdkNlWoX .carousel-inner > .prev {
  display: flex;
}
.cid-stEdkNlWoX .carousel-control .icon-next,
.cid-stEdkNlWoX .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-stEdkNlWoX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stEdkNlWoX .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-stEdkNlWoX .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-stEdkNlWoX .boxed-slider > div {
  position: relative;
}
.cid-stEdkNlWoX .container img {
  width: 100%;
}
.cid-stEdkNlWoX .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-stEdkNlWoX .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-stEdkNlWoX .mbr-table-cell {
  padding: 0;
}
.cid-stEdkNlWoX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-stEdkNlWoX .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-stEdkNlWoX .mbr-overlay {
  z-index: 1;
}
.cid-stEdkNlWoX .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-stEdkNlWoX .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-stEdkNlWoX .carousel-item.active.right,
.cid-stEdkNlWoX .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-stEdkNlWoX .carousel-item.active.left,
.cid-stEdkNlWoX .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-stEdkNlWoX .carousel-item.active,
.cid-stEdkNlWoX .carousel-item.next.left,
.cid-stEdkNlWoX .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-stEdkNlWoX .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: #232323;
  opacity: .8;
  border-radius: 0;
  transition: all .3s;
  z-index: 11;
}
.cid-stEdkNlWoX .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 0;
}
.cid-stEdkNlWoX .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 0;
}
.cid-stEdkNlWoX .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
.cid-stEdkNlWoX .mbr-slider .carousel-control:hover {
  background-color: #8bd559;
}
@media (max-width: 767px) {
  .cid-stEdkNlWoX .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-stEdkNlWoX .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-stEdkNlWoX .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-stEdkNlWoX .mbr-slider .carousel-indicators li.active,
.cid-stEdkNlWoX .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
  background-color: #8bd559;
}
.cid-stEdkNlWoX .mbr-slider .carousel-indicators li::after,
.cid-stEdkNlWoX .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-stEdkNlWoX .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-stEdkNlWoX .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-stEdkNlWoX .mbr-slider > .container img {
  width: 100%;
}
.cid-stEdkNlWoX .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-stEdkNlWoX .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-stEdkNlWoX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-stEdkNlWoX .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-stEdkNlWoX .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-stEdkNlWoX .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-stEdkNlWoX .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-stEdkNlWoX .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-stEdkNlWoX .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-stEdkNlWoX .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-stEdkNlWoX .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-stEdkNlWoX .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-stEdkNlWoX .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-stEdW5CD8U {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-stEdW5CD8U .card-title {
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.cid-stEdW5CD8U .card {
  margin-bottom: 25px;
  overflow: hidden;
}
.cid-stEdW5CD8U .card .card-img {
  height: 100%;
}
.cid-stEdW5CD8U .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-stEdW5CD8U .card:hover .card-wrapper:before {
  opacity: 0.8;
  background: #c1c1c1;
}
.cid-stEdW5CD8U .card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-stEdW5CD8U .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-stEdW5CD8U .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.cid-stEdW5CD8U .card-wrapper {
  overflow: hidden;
  position: relative;
}
.cid-stEdW5CD8U .card-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: #232323;
  opacity: 0.4;
  z-index: 10;
  pointer-events: none;
}
.cid-stEdW5CD8U .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-stEdW5CD8U .card-box {
  position: absolute;
  overflow: hidden;
  height: fit-content;
  margin: auto;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-stEdW5CD8U .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-stEdW5CD8U .card-sub-title {
  text-align: center;
  font-weight: 500;
}
.cid-stEdW5CD8U .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-stEdW5CD8U .mbr-section-title,
.cid-stEdW5CD8U .line-wrap {
  color: #232323;
  text-align: center;
}
.cid-stEdW5CD8U .mbr-text {
  text-align: center;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-stEdW5CD8U .card-big {
    height: 200px;
  }
  .cid-stEdW5CD8U .card-img {
    margin-top: -15%;
  }
}
.cid-stEdkP2yl6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-stEdkP2yl6 .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-stEdkP2yl6 .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 1400px) {
  .cid-stEdkP2yl6 .card-wrapper {
    margin: 0rem;
  }
}
.cid-stEdkP2yl6 .card {
  height: fit-content;
}
@media (min-width: 767px) {
  .cid-stEdkP2yl6 .row {
    padding: 0 4rem;
  }
}
.cid-stEdkP2yl6 .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #8bd559;
}
.cid-stEdkP2yl6 .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-stEdkP2yl6 .card-box {
  padding: 3rem 3rem 4rem 3rem;
  width: 100%;
}
.cid-stEdkP2yl6 .card1 {
  background-color: #ffffff;
}
.cid-stEdkP2yl6 .card2 {
  background-color: #ffffff;
}
.cid-stEdkP2yl6 .card3 {
  background-color: #ffffff;
}
.cid-stEdkP2yl6 .card4 {
  background-color: #ffffff;
}
.cid-stEdkP2yl6 img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-stEdkP2yl6 .img-wrap {
  max-height: 200px;
  overflow: hidden;
}
.cid-stEdkP2yl6 .container {
  max-width: 1500px;
}
.cid-stEdkP2yl6 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-stEdkP2yl6 .mbr-iconfont {
  font-size: 1.3rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
}
.cid-stEdkP2yl6 P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-stEdkP2yl6 .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-stEdkP2yl6 .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-stEdkP2yl6 .col2,
  .cid-stEdkP2yl6 .col3,
  .cid-stEdkP2yl6 .col4 {
    margin-top: 0rem;
  }
  .cid-stEdkP2yl6 .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .cid-stEdkP2yl6 .card-box {
    padding: 1rem 2rem 5rem 1rem;
  }
  .cid-stEdkP2yl6 .number {
    margin: auto;
  }
}
.cid-stEdkP2yl6 .mbr-text {
  color: #cccccc;
}
.cid-stEdkP2yl6 .text2 {
  color: #333333;
}
.cid-stEdkP2yl6 .text3 {
  color: #333333;
}
.cid-stEdkP2yl6 .title2 {
  color: #767676;
  text-align: center;
}
.cid-stEdkP2yl6 .title1 {
  color: #767676;
  text-align: center;
}
.cid-stEdkP2yl6 .title3 {
  color: #767676;
  text-align: center;
}
.cid-stEdkP2yl6 .title4 {
  color: #767676;
  text-align: center;
}
.cid-stEdkP2yl6 .text4 {
  color: #000000;
}
.cid-stEdkP2yl6 .text1 {
  color: #000000;
}
.cid-stEdkP2yl6 H1 {
  color: #333333;
}
.cid-supcj9yQPY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supcj9yQPY .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supcj9yQPY .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supcj9yQPY .card:hover {
  margin-top: -0.6rem;
}
.cid-supcj9yQPY .card-wrapper {
  position: relative;
}
.cid-supcj9yQPY .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supcj9yQPY .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supcj9yQPY .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supcj9yQPY .big {
  margin-top: -25%;
}
.cid-supcj9yQPY .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supcj9yQPY .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supcj9yQPY .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-stEdkUQqNI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-stEdkUQqNI .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-stEdkUQqNI .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-stEdkUQqNI .links-block ul li {
  margin: 0 1rem;
}
.cid-stEdkUQqNI .icons-block ul li {
  margin: 0 .5rem;
}
.cid-stEdkUQqNI .links-block ul,
.cid-stEdkUQqNI .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-su1zxPpUUa .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-su1zxPpUUa .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-su1zxPpUUa .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-su1zxPpUUa .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-su1zxPpUUa .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-su1zxPpUUa .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-su1zxPpUUa .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-su1zxPpUUa .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-su1zxPpUUa .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-su1zxPpUUa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-su1zxPpUUa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-su1zxPpUUa .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-su1zxPpUUa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-su1zxPpUUa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-su1zxPpUUa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-su1zxPpUUa .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-su1zxPpUUa .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-su1zxPpUUa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-su1zxPpUUa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-su1zxPpUUa .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-su1zxPpUUa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-su1zxPpUUa .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-su1zxPpUUa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-su1zxPpUUa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-su1zxPpUUa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-su1zxPpUUa .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-su1zxPpUUa .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-su1zxPpUUa .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-su1zxPpUUa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-su1zxPpUUa .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-su1zxPpUUa .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-su1zxPpUUa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-su1zxPpUUa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-su1zxPpUUa .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-su1zxPpUUa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-su1zxPpUUa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-su1zxPpUUa .navbar-brand {
  -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;
}
.cid-su1zxPpUUa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-su1zxPpUUa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-su1zxPpUUa .dropdown-item.active,
.cid-su1zxPpUUa .dropdown-item:active {
  background-color: transparent;
}
.cid-su1zxPpUUa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-su1zxPpUUa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-su1zxPpUUa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-su1zxPpUUa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-su1zxPpUUa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-su1zxPpUUa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-su1zxPpUUa ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-su1zxPpUUa .navbar-buttons {
  text-align: center;
}
.cid-su1zxPpUUa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-su1zxPpUUa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-su1zxPpUUa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-su1zxPpUUa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-su1zxPpUUa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-su1zxPpUUa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-su1zxPpUUa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-su1zxPpUUa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-su1zxPpUUa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-su1zxPpUUa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-su1zxPpUUa .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-su1zxPpUUa a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-su1zxPpUUa .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-su1zxPpUUa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-su1zxPpUUa .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-su1zxPpUUa .nav-link:hover,
.cid-su1zxPpUUa .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-su1zxQSzcF {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-su1zxQSzcF .container {
  max-width: 1500px;
}
.cid-su1zxQSzcF img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-su1zxQSzcF img:hover {
  transform: scale(1.1);
}
.cid-su1zxQSzcF .row {
  background: #ffffff;
}
.cid-su1zxQSzcF .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-su1zxQSzcF h2 {
  padding: 0;
  margin: 0;
}
.cid-su1zxQSzcF .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-su1zxQSzcF .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-su1zxQSzcF .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-su1zxQSzcF .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-su1zxQSzcF .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-su1zxQSzcF .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-su1zxQSzcF .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-su1zxQSzcF .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-su1zxQSzcF .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-su1zxQSzcF .row {
    margin: 0rem;
  }
  .cid-su1zxQSzcF .text-col {
    padding: 2rem 1rem;
  }
  .cid-su1zxQSzcF .number {
    margin-right: 2rem;
  }
  .cid-su1zxQSzcF .img-col {
    margin-bottom: 3rem;
  }
}
.cid-su1zxQSzcF H2 {
  color: #333333;
  text-align: left;
}
.cid-su1zxQSzcF .mbr-text {
  color: #000000;
}
.cid-su1zxRxeyw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-su1zxRxeyw .text-content .btn-bgr {
  z-index: 0;
}
.cid-su1zxRxeyw .mbr-overlay {
  background: #d7e8f6;
}
.cid-su1zxRxeyw .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
}
.cid-su1zxRxeyw .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-su1zxRxeyw .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-su1zxRxeyw .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-su1zxRxeyw .text-content {
    margin-bottom: 2rem;
  }
}
.cid-su1zxRxeyw .mbr-section-btn,
.cid-su1zxRxeyw .mbr-section-title {
  text-align: center;
}
.cid-su1zxRxeyw P {
  text-align: center;
}
.cid-su1zxSoPoJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-su1zxSoPoJ img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-su1zxSoPoJ img:hover {
  transform: scale(1.1);
}
.cid-su1zxSoPoJ .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-su1zxSoPoJ h2 {
  padding: 0;
  margin: 0;
}
.cid-su1zxSoPoJ .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-su1zxSoPoJ .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-su1zxSoPoJ .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-su1zxSoPoJ .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-su1zxSoPoJ .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-su1zxSoPoJ .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-su1zxSoPoJ .mbr-iconfont {
  margin: 0!important;
}
.cid-su1zxSoPoJ .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-su1zxSoPoJ .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-su1zxSoPoJ .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-su1zxSoPoJ .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-su1zxSoPoJ .text-col {
    padding: 2rem 1rem;
  }
}
.cid-su1zxSoPoJ H2 {
  color: #333333;
}
.cid-su1zxSoPoJ .mbr-text {
  color: #000000;
}
.cid-su1zxSU0a8 {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #f4f8fa);
}
.cid-su1zxSU0a8 .nav {
  border: none;
}
.cid-su1zxSU0a8 .nav-tabs {
  display: table;
  width: 100%;
}
.cid-su1zxSU0a8 .nav-tabs .nav-item {
  display: table-cell;
}
.cid-su1zxSU0a8 .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
}
.cid-su1zxSU0a8 .tab-content {
  margin-top: 3rem;
}
.cid-su1zxSU0a8 .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-su1zxSU0a8 .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #deeaf0;
  margin: 0px;
  border-radius: 0px !important;
  transition: font-weight, background, color 0.3s;
}
.cid-su1zxSU0a8 .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-su1zxSU0a8 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-su1zxSU0a8 .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-su1zxSU0a8 .nav-item {
    display: table-row !important;
  }
}
.cid-su1zxSU0a8 .mbr-section-subtitle,
.cid-su1zxSU0a8 .mbr-text,
.cid-su1zxSU0a8 .mbr-section-btn {
  color: #8d97ad;
}
.cid-su1zxSU0a8 .mbr-text,
.cid-su1zxSU0a8 .mbr-section-btn {
  color: #000000;
}
.cid-su1zxU8qyQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-su1zxU8qyQ img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-su1zxU8qyQ img:hover {
  transform: scale(1.1);
}
.cid-su1zxU8qyQ .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-su1zxU8qyQ h2 {
  padding: 0;
  margin: 0;
}
.cid-su1zxU8qyQ .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-su1zxU8qyQ .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-su1zxU8qyQ .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-su1zxU8qyQ .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-su1zxU8qyQ .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-su1zxU8qyQ .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-su1zxU8qyQ .mbr-iconfont {
  margin: 0!important;
}
.cid-su1zxU8qyQ .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-su1zxU8qyQ .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-su1zxU8qyQ .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-su1zxU8qyQ .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-su1zxU8qyQ .text-col {
    padding: 2rem 1rem;
  }
}
.cid-su1zxU8qyQ H2 {
  color: #333333;
}
.cid-su1zxU8qyQ .mbr-text {
  color: #000000;
}
.cid-su1zxU8qyQ H1 {
  color: #000000;
}
.cid-su1zxULeGn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-su1zxULeGn .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-su1zxULeGn .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-su1zxULeGn .list-img {
  width: 100px;
}
.cid-su1zxULeGn .ico2 {
  color: #767676;
  font-size: 1.1rem;
}
.cid-su1zxULeGn .btn {
  margin: 0px !important;
}
.cid-su1zxULeGn .text-box {
  padding: 1rem;
}
.cid-su1zxULeGn .text-box p {
  margin: 0;
}
.cid-su1zxULeGn .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-su1zxULeGn .ico-box p {
  margin: 0;
}
.cid-su1zxULeGn .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-su1zxULeGn .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-su1zxULeGn .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-su1zxULeGn .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-su1zxULeGn .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-su1zxULeGn .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-su1zxULeGn .carousel-indicators li {
  display: inline-block;
}
.cid-su1zxULeGn .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-su1zxULeGn .carousel-indicators li.active {
  border: 0px;
}
.cid-su1zxULeGn .li1,
.cid-su1zxULeGn .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/01-v908-ledro-sfeer-2000x1139.jpeg");
}
.cid-su1zxULeGn .li2,
.cid-su1zxULeGn .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/v908-ledro-1-1040x780.jpeg");
}
.cid-su1zxULeGn .li3,
.cid-su1zxULeGn .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/04-v920-riva-v610-oslo-vs716lr-2000x1333.jpeg");
}
.cid-su1zxULeGn .li4,
.cid-su1zxULeGn .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/06-v920-riva-v610-oslo-vs716lr-2000x1333.jpeg");
}
.cid-su1zxULeGn .li5,
.cid-su1zxULeGn .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/19-v920-riva-v610-oslo-vs716lr-2000x3000.jpeg");
}
.cid-su1zxULeGn .li6,
.cid-su1zxULeGn .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/01-riva-3d-render-2000x1500.jpeg");
}
@media (max-width: 992px) {
  .cid-su1zxULeGn .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-su1zxULeGn .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-su1zxULeGn .card-title2 {
  color: #149dcc;
}
.cid-su1zxULeGn .sq {
  color: #767676;
}
.cid-su1zxULeGn .item {
  color: #767676;
}
.cid-supc6ZNzrJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supc6ZNzrJ .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supc6ZNzrJ .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supc6ZNzrJ .card:hover {
  margin-top: -0.6rem;
}
.cid-supc6ZNzrJ .card-wrapper {
  position: relative;
}
.cid-supc6ZNzrJ .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supc6ZNzrJ .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supc6ZNzrJ .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supc6ZNzrJ .big {
  margin-top: -25%;
}
.cid-supc6ZNzrJ .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supc6ZNzrJ .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supc6ZNzrJ .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-su1zxYJqWX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-su1zxYJqWX .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-su1zxYJqWX .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-su1zxYJqWX .links-block ul li {
  margin: 0 1rem;
}
.cid-su1zxYJqWX .icons-block ul li {
  margin: 0 .5rem;
}
.cid-su1zxYJqWX .links-block ul,
.cid-su1zxYJqWX .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-suhx0jQUFM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-suhx0jQUFM .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-suhx0jQUFM .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-suhx0jQUFM .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suhx0jQUFM .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suhx0jQUFM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-suhx0jQUFM .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-suhx0jQUFM .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-suhx0jQUFM .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suhx0jQUFM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suhx0jQUFM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-suhx0jQUFM .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suhx0jQUFM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suhx0jQUFM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suhx0jQUFM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suhx0jQUFM .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suhx0jQUFM .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-suhx0jQUFM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suhx0jQUFM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suhx0jQUFM .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suhx0jQUFM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suhx0jQUFM .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suhx0jQUFM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suhx0jQUFM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suhx0jQUFM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suhx0jQUFM .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suhx0jQUFM .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-suhx0jQUFM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suhx0jQUFM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suhx0jQUFM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-suhx0jQUFM .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suhx0jQUFM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-suhx0jQUFM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-suhx0jQUFM .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-suhx0jQUFM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suhx0jQUFM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-suhx0jQUFM .navbar-brand {
  -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;
}
.cid-suhx0jQUFM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suhx0jQUFM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suhx0jQUFM .dropdown-item.active,
.cid-suhx0jQUFM .dropdown-item:active {
  background-color: transparent;
}
.cid-suhx0jQUFM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suhx0jQUFM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suhx0jQUFM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suhx0jQUFM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suhx0jQUFM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suhx0jQUFM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suhx0jQUFM ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suhx0jQUFM .navbar-buttons {
  text-align: center;
}
.cid-suhx0jQUFM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suhx0jQUFM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-suhx0jQUFM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suhx0jQUFM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suhx0jQUFM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suhx0jQUFM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suhx0jQUFM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suhx0jQUFM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-suhx0jQUFM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-suhx0jQUFM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suhx0jQUFM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-suhx0jQUFM a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-suhx0jQUFM .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suhx0jQUFM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suhx0jQUFM .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-suhx0jQUFM .nav-link:hover,
.cid-suhx0jQUFM .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suhx0kYsFc {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-suhx0kYsFc .container {
  max-width: 1500px;
}
.cid-suhx0kYsFc img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-suhx0kYsFc img:hover {
  transform: scale(1.1);
}
.cid-suhx0kYsFc .row {
  background: #ffffff;
}
.cid-suhx0kYsFc .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-suhx0kYsFc h2 {
  padding: 0;
  margin: 0;
}
.cid-suhx0kYsFc .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suhx0kYsFc .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-suhx0kYsFc .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-suhx0kYsFc .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-suhx0kYsFc .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-suhx0kYsFc .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-suhx0kYsFc .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-suhx0kYsFc .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-suhx0kYsFc .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-suhx0kYsFc .row {
    margin: 0rem;
  }
  .cid-suhx0kYsFc .text-col {
    padding: 2rem 1rem;
  }
  .cid-suhx0kYsFc .number {
    margin-right: 2rem;
  }
  .cid-suhx0kYsFc .img-col {
    margin-bottom: 3rem;
  }
}
.cid-suhx0kYsFc H2 {
  color: #333333;
  text-align: left;
}
.cid-suhx0kYsFc .mbr-text {
  color: #000000;
}
.cid-suhx0lKKWf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-suhx0lKKWf .text-content .btn-bgr {
  z-index: 0;
}
.cid-suhx0lKKWf .mbr-overlay {
  background: #d7e8f6;
}
.cid-suhx0lKKWf .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
}
.cid-suhx0lKKWf .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-suhx0lKKWf .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-suhx0lKKWf .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-suhx0lKKWf .text-content {
    margin-bottom: 2rem;
  }
}
.cid-suhx0lKKWf .mbr-section-btn,
.cid-suhx0lKKWf .mbr-section-title {
  text-align: center;
}
.cid-suhx0lKKWf P {
  text-align: center;
}
.cid-suhx0mkA85 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-suhx0mkA85 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-suhx0mkA85 img:hover {
  transform: scale(1.1);
}
.cid-suhx0mkA85 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-suhx0mkA85 h2 {
  padding: 0;
  margin: 0;
}
.cid-suhx0mkA85 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suhx0mkA85 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-suhx0mkA85 .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-suhx0mkA85 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-suhx0mkA85 .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-suhx0mkA85 .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-suhx0mkA85 .mbr-iconfont {
  margin: 0!important;
}
.cid-suhx0mkA85 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suhx0mkA85 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-suhx0mkA85 .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-suhx0mkA85 .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-suhx0mkA85 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-suhx0mkA85 H2 {
  color: #333333;
}
.cid-suhx0mkA85 .mbr-text {
  color: #000000;
}
.cid-suhx0mkA85 H1 {
  text-align: left;
}
.cid-suhx0mUtod {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #f4f8fa);
}
.cid-suhx0mUtod .nav {
  border: none;
}
.cid-suhx0mUtod .nav-tabs {
  display: table;
  width: 100%;
}
.cid-suhx0mUtod .nav-tabs .nav-item {
  display: table-cell;
}
.cid-suhx0mUtod .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
}
.cid-suhx0mUtod .tab-content {
  margin-top: 3rem;
}
.cid-suhx0mUtod .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-suhx0mUtod .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #deeaf0;
  margin: 0px;
  border-radius: 0px !important;
  transition: font-weight, background, color 0.3s;
}
.cid-suhx0mUtod .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-suhx0mUtod .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-suhx0mUtod .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-suhx0mUtod .nav-item {
    display: table-row !important;
  }
}
.cid-suhx0mUtod .mbr-section-subtitle,
.cid-suhx0mUtod .mbr-text,
.cid-suhx0mUtod .mbr-section-btn {
  color: #8d97ad;
}
.cid-suhx0mUtod .mbr-text,
.cid-suhx0mUtod .mbr-section-btn {
  color: #000000;
}
.cid-suhx0o2izW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-suhx0o2izW img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-suhx0o2izW img:hover {
  transform: scale(1.1);
}
.cid-suhx0o2izW .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-suhx0o2izW h2 {
  padding: 0;
  margin: 0;
}
.cid-suhx0o2izW .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suhx0o2izW .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-suhx0o2izW .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-suhx0o2izW .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-suhx0o2izW .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-suhx0o2izW .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-suhx0o2izW .mbr-iconfont {
  margin: 0!important;
}
.cid-suhx0o2izW .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suhx0o2izW .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-suhx0o2izW .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-suhx0o2izW .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-suhx0o2izW .text-col {
    padding: 2rem 1rem;
  }
}
.cid-suhx0o2izW H2 {
  color: #333333;
}
.cid-suhx0o2izW .mbr-text {
  color: #000000;
}
.cid-suhx0o2izW H1 {
  color: #000000;
  text-align: left;
}
.cid-suhB1r69LG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suhB1r69LG .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-suhB1r69LG .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-suhB1r69LG .list-img {
  width: 100px;
}
.cid-suhB1r69LG .ico2 {
  color: #767676;
  font-size: 1.1rem;
}
.cid-suhB1r69LG .btn {
  margin: 0px !important;
}
.cid-suhB1r69LG .text-box {
  padding: 1rem;
}
.cid-suhB1r69LG .text-box p {
  margin: 0;
}
.cid-suhB1r69LG .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-suhB1r69LG .ico-box p {
  margin: 0;
}
.cid-suhB1r69LG .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-suhB1r69LG .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-suhB1r69LG .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-suhB1r69LG .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-suhB1r69LG .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-suhB1r69LG .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-suhB1r69LG .carousel-indicators li {
  display: inline-block;
}
.cid-suhB1r69LG .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-suhB1r69LG .carousel-indicators li.active {
  border: 0px;
}
.cid-suhB1r69LG .li1,
.cid-suhB1r69LG .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/01-screen-sfeer.jpeg");
}
.cid-suhB1r69LG .li2,
.cid-suhB1r69LG .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/02-sfeerb-ritz-screen-1.jpeg");
}
.cid-suhB1r69LG .li3,
.cid-suhB1r69LG .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/07-sfeerb-ritz-screen.jpeg");
}
.cid-suhB1r69LG .li4,
.cid-suhB1r69LG .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/03-ritzscreens-1.jpeg");
}
.cid-suhB1r69LG .li5,
.cid-suhB1r69LG .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/v5xx-screenbak.jpeg");
}
.cid-suhB1r69LG .li6,
.cid-suhB1r69LG .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/06-sfeerb-ritz-screen-2.jpeg");
}
@media (max-width: 992px) {
  .cid-suhB1r69LG .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-suhB1r69LG .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-suhB1r69LG .card-title2 {
  color: #149dcc;
}
.cid-suhB1r69LG .sq {
  color: #767676;
}
.cid-suhB1r69LG .item {
  color: #767676;
}
.cid-supbHfzv7w {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supbHfzv7w .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supbHfzv7w .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supbHfzv7w .card:hover {
  margin-top: -0.6rem;
}
.cid-supbHfzv7w .card-wrapper {
  position: relative;
}
.cid-supbHfzv7w .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supbHfzv7w .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supbHfzv7w .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supbHfzv7w .big {
  margin-top: -25%;
}
.cid-supbHfzv7w .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supbHfzv7w .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supbHfzv7w .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-suhx0sDcF8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-suhx0sDcF8 .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-suhx0sDcF8 .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-suhx0sDcF8 .links-block ul li {
  margin: 0 1rem;
}
.cid-suhx0sDcF8 .icons-block ul li {
  margin: 0 .5rem;
}
.cid-suhx0sDcF8 .links-block ul,
.cid-suhx0sDcF8 .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-suomlvg6ye .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-suomlvg6ye .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-suomlvg6ye .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-suomlvg6ye .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suomlvg6ye .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suomlvg6ye .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-suomlvg6ye .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-suomlvg6ye .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-suomlvg6ye .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suomlvg6ye .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suomlvg6ye .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-suomlvg6ye .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suomlvg6ye .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suomlvg6ye .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suomlvg6ye .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suomlvg6ye .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suomlvg6ye .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-suomlvg6ye .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suomlvg6ye .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suomlvg6ye .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suomlvg6ye .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suomlvg6ye .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suomlvg6ye .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suomlvg6ye .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suomlvg6ye .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suomlvg6ye .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suomlvg6ye .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-suomlvg6ye .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suomlvg6ye .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suomlvg6ye .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-suomlvg6ye .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suomlvg6ye .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-suomlvg6ye .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-suomlvg6ye .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-suomlvg6ye .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suomlvg6ye .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-suomlvg6ye .navbar-brand {
  -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;
}
.cid-suomlvg6ye .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suomlvg6ye .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suomlvg6ye .dropdown-item.active,
.cid-suomlvg6ye .dropdown-item:active {
  background-color: transparent;
}
.cid-suomlvg6ye .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suomlvg6ye .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suomlvg6ye .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suomlvg6ye .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suomlvg6ye .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suomlvg6ye .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suomlvg6ye ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suomlvg6ye .navbar-buttons {
  text-align: center;
}
.cid-suomlvg6ye button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suomlvg6ye button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-suomlvg6ye button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suomlvg6ye button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suomlvg6ye button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suomlvg6ye button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suomlvg6ye nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suomlvg6ye nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-suomlvg6ye nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-suomlvg6ye nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suomlvg6ye .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-suomlvg6ye a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-suomlvg6ye .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suomlvg6ye .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suomlvg6ye .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-suomlvg6ye .nav-link:hover,
.cid-suomlvg6ye .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suomEMUr2g {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-supc047JYN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supc047JYN .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supc047JYN .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supc047JYN .card:hover {
  margin-top: -0.6rem;
}
.cid-supc047JYN .card-wrapper {
  position: relative;
}
.cid-supc047JYN .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supc047JYN .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supc047JYN .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supc047JYN .big {
  margin-top: -25%;
}
.cid-supc047JYN .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supc047JYN .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supc047JYN .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-suomlzAFPi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-suomlzAFPi .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-suomlzAFPi .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-suomlzAFPi .links-block ul li {
  margin: 0 1rem;
}
.cid-suomlzAFPi .icons-block ul li {
  margin: 0 .5rem;
}
.cid-suomlzAFPi .links-block ul,
.cid-suomlzAFPi .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-su6Z7lDlKw .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-su6Z7lDlKw .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-su6Z7lDlKw .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-su6Z7lDlKw .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-su6Z7lDlKw .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-su6Z7lDlKw .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-su6Z7lDlKw .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-su6Z7lDlKw .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-su6Z7lDlKw .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-su6Z7lDlKw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-su6Z7lDlKw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-su6Z7lDlKw .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-su6Z7lDlKw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-su6Z7lDlKw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-su6Z7lDlKw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-su6Z7lDlKw .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-su6Z7lDlKw .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-su6Z7lDlKw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-su6Z7lDlKw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-su6Z7lDlKw .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-su6Z7lDlKw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-su6Z7lDlKw .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-su6Z7lDlKw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-su6Z7lDlKw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-su6Z7lDlKw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-su6Z7lDlKw .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-su6Z7lDlKw .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-su6Z7lDlKw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-su6Z7lDlKw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-su6Z7lDlKw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-su6Z7lDlKw .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-su6Z7lDlKw .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-su6Z7lDlKw .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-su6Z7lDlKw .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-su6Z7lDlKw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-su6Z7lDlKw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-su6Z7lDlKw .navbar-brand {
  -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;
}
.cid-su6Z7lDlKw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-su6Z7lDlKw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-su6Z7lDlKw .dropdown-item.active,
.cid-su6Z7lDlKw .dropdown-item:active {
  background-color: transparent;
}
.cid-su6Z7lDlKw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-su6Z7lDlKw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-su6Z7lDlKw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-su6Z7lDlKw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-su6Z7lDlKw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-su6Z7lDlKw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-su6Z7lDlKw ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-su6Z7lDlKw .navbar-buttons {
  text-align: center;
}
.cid-su6Z7lDlKw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-su6Z7lDlKw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-su6Z7lDlKw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-su6Z7lDlKw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-su6Z7lDlKw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-su6Z7lDlKw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-su6Z7lDlKw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-su6Z7lDlKw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-su6Z7lDlKw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-su6Z7lDlKw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-su6Z7lDlKw .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-su6Z7lDlKw a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-su6Z7lDlKw .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-su6Z7lDlKw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-su6Z7lDlKw .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-su6Z7lDlKw .nav-link:hover,
.cid-su6Z7lDlKw .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-su6Z7n6Yog {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-su6Z7n6Yog .container {
  max-width: 1500px;
}
.cid-su6Z7n6Yog img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-su6Z7n6Yog img:hover {
  transform: scale(1.1);
}
.cid-su6Z7n6Yog .row {
  background: #ffffff;
}
.cid-su6Z7n6Yog .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-su6Z7n6Yog h2 {
  padding: 0;
  margin: 0;
}
.cid-su6Z7n6Yog .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-su6Z7n6Yog .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-su6Z7n6Yog .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-su6Z7n6Yog .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-su6Z7n6Yog .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-su6Z7n6Yog .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-su6Z7n6Yog .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-su6Z7n6Yog .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-su6Z7n6Yog .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-su6Z7n6Yog .row {
    margin: 0rem;
  }
  .cid-su6Z7n6Yog .text-col {
    padding: 2rem 1rem;
  }
  .cid-su6Z7n6Yog .number {
    margin-right: 2rem;
  }
  .cid-su6Z7n6Yog .img-col {
    margin-bottom: 3rem;
  }
}
.cid-su6Z7n6Yog H2 {
  color: #333333;
  text-align: left;
}
.cid-su6Z7n6Yog .mbr-text {
  color: #000000;
}
.cid-su6Z7nz6No {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-su6Z7nz6No .text-content .btn-bgr {
  z-index: 0;
}
.cid-su6Z7nz6No .mbr-overlay {
  background: #d7e8f6;
}
.cid-su6Z7nz6No .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
}
.cid-su6Z7nz6No .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-su6Z7nz6No .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-su6Z7nz6No .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-su6Z7nz6No .text-content {
    margin-bottom: 2rem;
  }
}
.cid-su6Z7nz6No .mbr-section-btn,
.cid-su6Z7nz6No .mbr-section-title {
  text-align: center;
}
.cid-su6Z7nz6No P {
  text-align: center;
}
.cid-su6Z7o6A5A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-su6Z7o6A5A img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-su6Z7o6A5A img:hover {
  transform: scale(1.1);
}
.cid-su6Z7o6A5A .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-su6Z7o6A5A h2 {
  padding: 0;
  margin: 0;
}
.cid-su6Z7o6A5A .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-su6Z7o6A5A .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-su6Z7o6A5A .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-su6Z7o6A5A .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-su6Z7o6A5A .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-su6Z7o6A5A .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-su6Z7o6A5A .mbr-iconfont {
  margin: 0!important;
}
.cid-su6Z7o6A5A .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-su6Z7o6A5A .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-su6Z7o6A5A .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-su6Z7o6A5A .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-su6Z7o6A5A .text-col {
    padding: 2rem 1rem;
  }
}
.cid-su6Z7o6A5A H2 {
  color: #333333;
}
.cid-su6Z7o6A5A .mbr-text {
  color: #000000;
}
.cid-su6Z7o6A5A H1 {
  text-align: left;
}
.cid-su6Z7oBLQa {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #f4f8fa);
}
.cid-su6Z7oBLQa .nav {
  border: none;
}
.cid-su6Z7oBLQa .nav-tabs {
  display: table;
  width: 100%;
}
.cid-su6Z7oBLQa .nav-tabs .nav-item {
  display: table-cell;
}
.cid-su6Z7oBLQa .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
}
.cid-su6Z7oBLQa .tab-content {
  margin-top: 3rem;
}
.cid-su6Z7oBLQa .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-su6Z7oBLQa .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #deeaf0;
  margin: 0px;
  border-radius: 0px !important;
  transition: font-weight, background, color 0.3s;
}
.cid-su6Z7oBLQa .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-su6Z7oBLQa .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-su6Z7oBLQa .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-su6Z7oBLQa .nav-item {
    display: table-row !important;
  }
}
.cid-su6Z7oBLQa .mbr-section-subtitle,
.cid-su6Z7oBLQa .mbr-text,
.cid-su6Z7oBLQa .mbr-section-btn {
  color: #8d97ad;
}
.cid-su6Z7oBLQa .mbr-text,
.cid-su6Z7oBLQa .mbr-section-btn {
  color: #000000;
}
.cid-su6Z7pyV6Z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-su6Z7pyV6Z img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-su6Z7pyV6Z img:hover {
  transform: scale(1.1);
}
.cid-su6Z7pyV6Z .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-su6Z7pyV6Z h2 {
  padding: 0;
  margin: 0;
}
.cid-su6Z7pyV6Z .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-su6Z7pyV6Z .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-su6Z7pyV6Z .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-su6Z7pyV6Z .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-su6Z7pyV6Z .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-su6Z7pyV6Z .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-su6Z7pyV6Z .mbr-iconfont {
  margin: 0!important;
}
.cid-su6Z7pyV6Z .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-su6Z7pyV6Z .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-su6Z7pyV6Z .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-su6Z7pyV6Z .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-su6Z7pyV6Z .text-col {
    padding: 2rem 1rem;
  }
}
.cid-su6Z7pyV6Z H2 {
  color: #333333;
}
.cid-su6Z7pyV6Z .mbr-text {
  color: #000000;
}
.cid-su6Z7pyV6Z H1 {
  color: #000000;
  text-align: left;
}
.cid-su6Z7pXLDJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-su6Z7pXLDJ .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-su6Z7pXLDJ .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-su6Z7pXLDJ .list-img {
  width: 100px;
}
.cid-su6Z7pXLDJ .ico2 {
  color: #767676;
  font-size: 1.1rem;
}
.cid-su6Z7pXLDJ .btn {
  margin: 0px !important;
}
.cid-su6Z7pXLDJ .text-box {
  padding: 1rem;
}
.cid-su6Z7pXLDJ .text-box p {
  margin: 0;
}
.cid-su6Z7pXLDJ .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-su6Z7pXLDJ .ico-box p {
  margin: 0;
}
.cid-su6Z7pXLDJ .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-su6Z7pXLDJ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-su6Z7pXLDJ .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-su6Z7pXLDJ .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-su6Z7pXLDJ .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-su6Z7pXLDJ .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-su6Z7pXLDJ .carousel-indicators li {
  display: inline-block;
}
.cid-su6Z7pXLDJ .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-su6Z7pXLDJ .carousel-indicators li.active {
  border: 0px;
}
.cid-su6Z7pXLDJ .li1,
.cid-su6Z7pXLDJ .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/terrassana-kadeco-510a-3.jpeg");
}
.cid-su6Z7pXLDJ .li2,
.cid-su6Z7pXLDJ .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/terrassana-kadeco-markise-510a-wintergarten-seite.jpeg");
}
.cid-su6Z7pXLDJ .li3,
.cid-su6Z7pXLDJ .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/terrassana-kadeco-markise-510a-wintergarten-grau-4.jpeg");
}
.cid-su6Z7pXLDJ .li4,
.cid-su6Z7pXLDJ .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/terrassana-kadecomarkise-510a-1.jpeg");
}
.cid-su6Z7pXLDJ .li5,
.cid-su6Z7pXLDJ .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/terrassana-zubehoer-kadeco.jpeg");
}
.cid-su6Z7pXLDJ .li6,
.cid-su6Z7pXLDJ .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/terrassana-kadeco-510a-6.jpeg");
}
@media (max-width: 992px) {
  .cid-su6Z7pXLDJ .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-su6Z7pXLDJ .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-su6Z7pXLDJ .card-title2 {
  color: #149dcc;
}
.cid-su6Z7pXLDJ .sq {
  color: #767676;
}
.cid-su6Z7pXLDJ .item {
  color: #767676;
}
.cid-supbl9eZZU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supbl9eZZU .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supbl9eZZU .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supbl9eZZU .card:hover {
  margin-top: -0.6rem;
}
.cid-supbl9eZZU .card-wrapper {
  position: relative;
}
.cid-supbl9eZZU .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supbl9eZZU .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supbl9eZZU .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supbl9eZZU .big {
  margin-top: -25%;
}
.cid-supbl9eZZU .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supbl9eZZU .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supbl9eZZU .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-su6Z7t0Y0I {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-su6Z7t0Y0I .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-su6Z7t0Y0I .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-su6Z7t0Y0I .links-block ul li {
  margin: 0 1rem;
}
.cid-su6Z7t0Y0I .icons-block ul li {
  margin: 0 .5rem;
}
.cid-su6Z7t0Y0I .links-block ul,
.cid-su6Z7t0Y0I .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-suc0c6BA0H .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-suc0c6BA0H .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-suc0c6BA0H .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-suc0c6BA0H .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suc0c6BA0H .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suc0c6BA0H .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-suc0c6BA0H .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-suc0c6BA0H .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-suc0c6BA0H .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suc0c6BA0H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suc0c6BA0H .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-suc0c6BA0H .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suc0c6BA0H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suc0c6BA0H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suc0c6BA0H .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suc0c6BA0H .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suc0c6BA0H .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-suc0c6BA0H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suc0c6BA0H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suc0c6BA0H .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suc0c6BA0H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suc0c6BA0H .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suc0c6BA0H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suc0c6BA0H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suc0c6BA0H .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suc0c6BA0H .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suc0c6BA0H .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-suc0c6BA0H .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suc0c6BA0H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suc0c6BA0H .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-suc0c6BA0H .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suc0c6BA0H .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-suc0c6BA0H .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-suc0c6BA0H .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-suc0c6BA0H .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suc0c6BA0H .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-suc0c6BA0H .navbar-brand {
  -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;
}
.cid-suc0c6BA0H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suc0c6BA0H .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suc0c6BA0H .dropdown-item.active,
.cid-suc0c6BA0H .dropdown-item:active {
  background-color: transparent;
}
.cid-suc0c6BA0H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suc0c6BA0H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suc0c6BA0H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suc0c6BA0H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suc0c6BA0H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suc0c6BA0H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suc0c6BA0H ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suc0c6BA0H .navbar-buttons {
  text-align: center;
}
.cid-suc0c6BA0H button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suc0c6BA0H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-suc0c6BA0H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suc0c6BA0H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suc0c6BA0H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suc0c6BA0H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suc0c6BA0H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suc0c6BA0H nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-suc0c6BA0H nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-suc0c6BA0H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suc0c6BA0H .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-suc0c6BA0H a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-suc0c6BA0H .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suc0c6BA0H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suc0c6BA0H .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-suc0c6BA0H .nav-link:hover,
.cid-suc0c6BA0H .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suc0c7rL8O {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-suc0c7rL8O .container {
  max-width: 1500px;
}
.cid-suc0c7rL8O img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-suc0c7rL8O img:hover {
  transform: scale(1.1);
}
.cid-suc0c7rL8O .row {
  background: #ffffff;
}
.cid-suc0c7rL8O .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-suc0c7rL8O h2 {
  padding: 0;
  margin: 0;
}
.cid-suc0c7rL8O .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suc0c7rL8O .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-suc0c7rL8O .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-suc0c7rL8O .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-suc0c7rL8O .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-suc0c7rL8O .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-suc0c7rL8O .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-suc0c7rL8O .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-suc0c7rL8O .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-suc0c7rL8O .row {
    margin: 0rem;
  }
  .cid-suc0c7rL8O .text-col {
    padding: 2rem 1rem;
  }
  .cid-suc0c7rL8O .number {
    margin-right: 2rem;
  }
  .cid-suc0c7rL8O .img-col {
    margin-bottom: 3rem;
  }
}
.cid-suc0c7rL8O H2 {
  color: #333333;
  text-align: left;
}
.cid-suc0c7rL8O .mbr-text {
  color: #000000;
}
.cid-suc0c85ktw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-suc0c85ktw .text-content .btn-bgr {
  z-index: 0;
}
.cid-suc0c85ktw .mbr-overlay {
  background: #d7e8f6;
}
.cid-suc0c85ktw .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
}
.cid-suc0c85ktw .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-suc0c85ktw .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-suc0c85ktw .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-suc0c85ktw .text-content {
    margin-bottom: 2rem;
  }
}
.cid-suc0c85ktw .mbr-section-btn,
.cid-suc0c85ktw .mbr-section-title {
  text-align: center;
}
.cid-suc0c85ktw P {
  text-align: center;
}
.cid-suc0c8L05P {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-suc0c8L05P img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-suc0c8L05P img:hover {
  transform: scale(1.1);
}
.cid-suc0c8L05P .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-suc0c8L05P h2 {
  padding: 0;
  margin: 0;
}
.cid-suc0c8L05P .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suc0c8L05P .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-suc0c8L05P .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-suc0c8L05P .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-suc0c8L05P .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-suc0c8L05P .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-suc0c8L05P .mbr-iconfont {
  margin: 0!important;
}
.cid-suc0c8L05P .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suc0c8L05P .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-suc0c8L05P .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-suc0c8L05P .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-suc0c8L05P .text-col {
    padding: 2rem 1rem;
  }
}
.cid-suc0c8L05P H2 {
  color: #333333;
}
.cid-suc0c8L05P .mbr-text {
  color: #000000;
}
.cid-suc0c8L05P H1 {
  text-align: left;
}
.cid-suc0c9b2hn {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #f4f8fa);
}
.cid-suc0c9b2hn .nav {
  border: none;
}
.cid-suc0c9b2hn .nav-tabs {
  display: table;
  width: 100%;
}
.cid-suc0c9b2hn .nav-tabs .nav-item {
  display: table-cell;
}
.cid-suc0c9b2hn .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
}
.cid-suc0c9b2hn .tab-content {
  margin-top: 3rem;
}
.cid-suc0c9b2hn .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-suc0c9b2hn .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #deeaf0;
  margin: 0px;
  border-radius: 0px !important;
  transition: font-weight, background, color 0.3s;
}
.cid-suc0c9b2hn .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-suc0c9b2hn .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-suc0c9b2hn .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-suc0c9b2hn .nav-item {
    display: table-row !important;
  }
}
.cid-suc0c9b2hn .mbr-section-subtitle,
.cid-suc0c9b2hn .mbr-text,
.cid-suc0c9b2hn .mbr-section-btn {
  color: #8d97ad;
}
.cid-suc0c9b2hn .mbr-text,
.cid-suc0c9b2hn .mbr-section-btn {
  color: #000000;
}
.cid-suc0cafgBh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-suc0cafgBh img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-suc0cafgBh img:hover {
  transform: scale(1.1);
}
.cid-suc0cafgBh .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-suc0cafgBh h2 {
  padding: 0;
  margin: 0;
}
.cid-suc0cafgBh .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suc0cafgBh .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-suc0cafgBh .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-suc0cafgBh .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-suc0cafgBh .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-suc0cafgBh .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-suc0cafgBh .mbr-iconfont {
  margin: 0!important;
}
.cid-suc0cafgBh .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suc0cafgBh .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-suc0cafgBh .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-suc0cafgBh .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-suc0cafgBh .text-col {
    padding: 2rem 1rem;
  }
}
.cid-suc0cafgBh H2 {
  color: #333333;
}
.cid-suc0cafgBh .mbr-text {
  color: #000000;
}
.cid-suc0cafgBh H1 {
  color: #000000;
  text-align: left;
}
.cid-suc0caFFAw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suc0caFFAw .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-suc0caFFAw .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-suc0caFFAw .list-img {
  width: 100px;
}
.cid-suc0caFFAw .ico2 {
  color: #767676;
  font-size: 1.1rem;
}
.cid-suc0caFFAw .btn {
  margin: 0px !important;
}
.cid-suc0caFFAw .text-box {
  padding: 1rem;
}
.cid-suc0caFFAw .text-box p {
  margin: 0;
}
.cid-suc0caFFAw .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-suc0caFFAw .ico-box p {
  margin: 0;
}
.cid-suc0caFFAw .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-suc0caFFAw .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-suc0caFFAw .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-suc0caFFAw .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-suc0caFFAw .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-suc0caFFAw .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-suc0caFFAw .carousel-indicators li {
  display: inline-block;
}
.cid-suc0caFFAw .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-suc0caFFAw .carousel-indicators li.active {
  border: 0px;
}
.cid-suc0caFFAw .li1,
.cid-suc0caFFAw .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/510b-8.jpeg");
}
.cid-suc0caFFAw .li2,
.cid-suc0caFFAw .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/510b-1.jpeg");
}
.cid-suc0caFFAw .li3,
.cid-suc0caFFAw .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/510b-4.jpeg");
}
.cid-suc0caFFAw .li4,
.cid-suc0caFFAw .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/510b-9.jpeg");
}
.cid-suc0caFFAw .li5,
.cid-suc0caFFAw .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/zubehoer-kadeco-2000x1531.jpeg");
}
.cid-suc0caFFAw .li6,
.cid-suc0caFFAw .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/510b-10.jpeg");
}
@media (max-width: 992px) {
  .cid-suc0caFFAw .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-suc0caFFAw .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-suc0caFFAw .card-title2 {
  color: #149dcc;
}
.cid-suc0caFFAw .sq {
  color: #767676;
}
.cid-suc0caFFAw .item {
  color: #767676;
}
.cid-supbrn1KyX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supbrn1KyX .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supbrn1KyX .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supbrn1KyX .card:hover {
  margin-top: -0.6rem;
}
.cid-supbrn1KyX .card-wrapper {
  position: relative;
}
.cid-supbrn1KyX .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supbrn1KyX .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supbrn1KyX .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supbrn1KyX .big {
  margin-top: -25%;
}
.cid-supbrn1KyX .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supbrn1KyX .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supbrn1KyX .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-suc0cebVnv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-suc0cebVnv .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-suc0cebVnv .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-suc0cebVnv .links-block ul li {
  margin: 0 1rem;
}
.cid-suc0cebVnv .icons-block ul li {
  margin: 0 .5rem;
}
.cid-suc0cebVnv .links-block ul,
.cid-suc0cebVnv .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-su5pl9sAoa .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-su5pl9sAoa .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-su5pl9sAoa .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-su5pl9sAoa .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-su5pl9sAoa .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-su5pl9sAoa .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-su5pl9sAoa .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-su5pl9sAoa .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-su5pl9sAoa .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-su5pl9sAoa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-su5pl9sAoa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-su5pl9sAoa .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-su5pl9sAoa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-su5pl9sAoa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-su5pl9sAoa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-su5pl9sAoa .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-su5pl9sAoa .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-su5pl9sAoa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-su5pl9sAoa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-su5pl9sAoa .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-su5pl9sAoa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-su5pl9sAoa .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-su5pl9sAoa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-su5pl9sAoa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-su5pl9sAoa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-su5pl9sAoa .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-su5pl9sAoa .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-su5pl9sAoa .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-su5pl9sAoa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-su5pl9sAoa .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-su5pl9sAoa .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-su5pl9sAoa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-su5pl9sAoa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-su5pl9sAoa .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-su5pl9sAoa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-su5pl9sAoa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-su5pl9sAoa .navbar-brand {
  -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;
}
.cid-su5pl9sAoa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-su5pl9sAoa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-su5pl9sAoa .dropdown-item.active,
.cid-su5pl9sAoa .dropdown-item:active {
  background-color: transparent;
}
.cid-su5pl9sAoa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-su5pl9sAoa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-su5pl9sAoa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-su5pl9sAoa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-su5pl9sAoa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-su5pl9sAoa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-su5pl9sAoa ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-su5pl9sAoa .navbar-buttons {
  text-align: center;
}
.cid-su5pl9sAoa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-su5pl9sAoa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-su5pl9sAoa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-su5pl9sAoa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-su5pl9sAoa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-su5pl9sAoa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-su5pl9sAoa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-su5pl9sAoa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-su5pl9sAoa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-su5pl9sAoa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-su5pl9sAoa .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-su5pl9sAoa a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-su5pl9sAoa .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-su5pl9sAoa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-su5pl9sAoa .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-su5pl9sAoa .nav-link:hover,
.cid-su5pl9sAoa .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-su5plan2HP {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-su5plan2HP .container {
  max-width: 1500px;
}
.cid-su5plan2HP img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-su5plan2HP img:hover {
  transform: scale(1.1);
}
.cid-su5plan2HP .row {
  background: #ffffff;
}
.cid-su5plan2HP .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-su5plan2HP h2 {
  padding: 0;
  margin: 0;
}
.cid-su5plan2HP .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-su5plan2HP .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-su5plan2HP .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-su5plan2HP .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-su5plan2HP .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-su5plan2HP .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-su5plan2HP .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-su5plan2HP .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-su5plan2HP .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-su5plan2HP .row {
    margin: 0rem;
  }
  .cid-su5plan2HP .text-col {
    padding: 2rem 1rem;
  }
  .cid-su5plan2HP .number {
    margin-right: 2rem;
  }
  .cid-su5plan2HP .img-col {
    margin-bottom: 3rem;
  }
}
.cid-su5plan2HP H2 {
  color: #333333;
  text-align: left;
}
.cid-su5plan2HP .mbr-text {
  color: #000000;
}
.cid-su5plaVOUH {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-su5plaVOUH .text-content .btn-bgr {
  z-index: 0;
}
.cid-su5plaVOUH .mbr-overlay {
  background: #d7e8f6;
}
.cid-su5plaVOUH .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
}
.cid-su5plaVOUH .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-su5plaVOUH .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-su5plaVOUH .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-su5plaVOUH .text-content {
    margin-bottom: 2rem;
  }
}
.cid-su5plaVOUH .mbr-section-btn,
.cid-su5plaVOUH .mbr-section-title {
  text-align: center;
}
.cid-su5plaVOUH P {
  text-align: center;
}
.cid-su5plbnEnb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-su5plbnEnb img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-su5plbnEnb img:hover {
  transform: scale(1.1);
}
.cid-su5plbnEnb .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-su5plbnEnb h2 {
  padding: 0;
  margin: 0;
}
.cid-su5plbnEnb .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-su5plbnEnb .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-su5plbnEnb .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-su5plbnEnb .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-su5plbnEnb .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-su5plbnEnb .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-su5plbnEnb .mbr-iconfont {
  margin: 0!important;
}
.cid-su5plbnEnb .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-su5plbnEnb .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-su5plbnEnb .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-su5plbnEnb .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-su5plbnEnb .text-col {
    padding: 2rem 1rem;
  }
}
.cid-su5plbnEnb H2 {
  color: #333333;
}
.cid-su5plbnEnb .mbr-text {
  color: #000000;
}
.cid-su5plbnEnb H1 {
  text-align: left;
}
.cid-su5plbJ3tA {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #f4f8fa);
}
.cid-su5plbJ3tA .nav {
  border: none;
}
.cid-su5plbJ3tA .nav-tabs {
  display: table;
  width: 100%;
}
.cid-su5plbJ3tA .nav-tabs .nav-item {
  display: table-cell;
}
.cid-su5plbJ3tA .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
}
.cid-su5plbJ3tA .tab-content {
  margin-top: 3rem;
}
.cid-su5plbJ3tA .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-su5plbJ3tA .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #deeaf0;
  margin: 0px;
  border-radius: 0px !important;
  transition: font-weight, background, color 0.3s;
}
.cid-su5plbJ3tA .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-su5plbJ3tA .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-su5plbJ3tA .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-su5plbJ3tA .nav-item {
    display: table-row !important;
  }
}
.cid-su5plbJ3tA .mbr-section-subtitle,
.cid-su5plbJ3tA .mbr-text,
.cid-su5plbJ3tA .mbr-section-btn {
  color: #8d97ad;
}
.cid-su5plbJ3tA .mbr-text,
.cid-su5plbJ3tA .mbr-section-btn {
  color: #000000;
}
.cid-su5plcGwZO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-su5plcGwZO img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-su5plcGwZO img:hover {
  transform: scale(1.1);
}
.cid-su5plcGwZO .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-su5plcGwZO h2 {
  padding: 0;
  margin: 0;
}
.cid-su5plcGwZO .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-su5plcGwZO .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-su5plcGwZO .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-su5plcGwZO .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-su5plcGwZO .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-su5plcGwZO .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-su5plcGwZO .mbr-iconfont {
  margin: 0!important;
}
.cid-su5plcGwZO .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-su5plcGwZO .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-su5plcGwZO .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-su5plcGwZO .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-su5plcGwZO .text-col {
    padding: 2rem 1rem;
  }
}
.cid-su5plcGwZO H2 {
  color: #333333;
}
.cid-su5plcGwZO .mbr-text {
  color: #000000;
}
.cid-su5plcGwZO H1 {
  color: #000000;
  text-align: center;
}
.cid-su5pld6TDp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-su5pld6TDp .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-su5pld6TDp .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-su5pld6TDp .list-img {
  width: 100px;
}
.cid-su5pld6TDp .ico2 {
  color: #767676;
  font-size: 1.1rem;
}
.cid-su5pld6TDp .btn {
  margin: 0px !important;
}
.cid-su5pld6TDp .text-box {
  padding: 1rem;
}
.cid-su5pld6TDp .text-box p {
  margin: 0;
}
.cid-su5pld6TDp .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-su5pld6TDp .ico-box p {
  margin: 0;
}
.cid-su5pld6TDp .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-su5pld6TDp .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-su5pld6TDp .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-su5pld6TDp .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-su5pld6TDp .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-su5pld6TDp .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-su5pld6TDp .carousel-indicators li {
  display: inline-block;
}
.cid-su5pld6TDp .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-su5pld6TDp .carousel-indicators li.active {
  border: 0px;
}
.cid-su5pld6TDp .li1,
.cid-su5pld6TDp .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/kadeco-520-6-1948x1290.jpeg");
}
.cid-su5pld6TDp .li2,
.cid-su5pld6TDp .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/kadeco-520-2-2000x1137.jpeg");
}
.cid-su5pld6TDp .li3,
.cid-su5pld6TDp .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/kadeco-520-4-2000x1437.jpeg");
}
.cid-su5pld6TDp .li4,
.cid-su5pld6TDp .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/kadeco-520-1-2000x1127.jpeg");
}
.cid-su5pld6TDp .li5,
.cid-su5pld6TDp .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/zubehoer-kadeco-2000x1531.jpeg");
}
.cid-su5pld6TDp .li6,
.cid-su5pld6TDp .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/kadeco-520-6-1929x1092.jpeg");
}
@media (max-width: 992px) {
  .cid-su5pld6TDp .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-su5pld6TDp .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-su5pld6TDp .card-title2 {
  color: #149dcc;
}
.cid-su5pld6TDp .sq {
  color: #767676;
}
.cid-su5pld6TDp .item {
  color: #767676;
}
.cid-supbfuh8Og {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supbfuh8Og .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supbfuh8Og .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supbfuh8Og .card:hover {
  margin-top: -0.6rem;
}
.cid-supbfuh8Og .card-wrapper {
  position: relative;
}
.cid-supbfuh8Og .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supbfuh8Og .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supbfuh8Og .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supbfuh8Og .big {
  margin-top: -25%;
}
.cid-supbfuh8Og .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supbfuh8Og .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supbfuh8Og .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-su5plghn2m {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-su5plghn2m .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-su5plghn2m .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-su5plghn2m .links-block ul li {
  margin: 0 1rem;
}
.cid-su5plghn2m .icons-block ul li {
  margin: 0 .5rem;
}
.cid-su5plghn2m .links-block ul,
.cid-su5plghn2m .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-sucImowVwa .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sucImowVwa .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sucImowVwa .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-sucImowVwa .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sucImowVwa .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sucImowVwa .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sucImowVwa .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-sucImowVwa .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-sucImowVwa .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sucImowVwa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sucImowVwa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-sucImowVwa .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sucImowVwa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sucImowVwa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sucImowVwa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sucImowVwa .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-sucImowVwa .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-sucImowVwa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sucImowVwa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-sucImowVwa .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-sucImowVwa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sucImowVwa .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sucImowVwa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sucImowVwa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sucImowVwa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sucImowVwa .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-sucImowVwa .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-sucImowVwa .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sucImowVwa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sucImowVwa .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-sucImowVwa .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sucImowVwa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sucImowVwa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sucImowVwa .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sucImowVwa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sucImowVwa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sucImowVwa .navbar-brand {
  -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;
}
.cid-sucImowVwa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sucImowVwa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sucImowVwa .dropdown-item.active,
.cid-sucImowVwa .dropdown-item:active {
  background-color: transparent;
}
.cid-sucImowVwa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sucImowVwa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sucImowVwa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sucImowVwa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sucImowVwa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sucImowVwa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sucImowVwa ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sucImowVwa .navbar-buttons {
  text-align: center;
}
.cid-sucImowVwa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sucImowVwa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-sucImowVwa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sucImowVwa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sucImowVwa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sucImowVwa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sucImowVwa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sucImowVwa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sucImowVwa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sucImowVwa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sucImowVwa .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sucImowVwa a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-sucImowVwa .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sucImowVwa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-sucImowVwa .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-sucImowVwa .nav-link:hover,
.cid-sucImowVwa .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sucImpZMSX {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sucImpZMSX .container {
  max-width: 1500px;
}
.cid-sucImpZMSX img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sucImpZMSX img:hover {
  transform: scale(1.1);
}
.cid-sucImpZMSX .row {
  background: #ffffff;
}
.cid-sucImpZMSX .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-sucImpZMSX h2 {
  padding: 0;
  margin: 0;
}
.cid-sucImpZMSX .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sucImpZMSX .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-sucImpZMSX .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-sucImpZMSX .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-sucImpZMSX .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-sucImpZMSX .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-sucImpZMSX .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sucImpZMSX .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sucImpZMSX .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-sucImpZMSX .row {
    margin: 0rem;
  }
  .cid-sucImpZMSX .text-col {
    padding: 2rem 1rem;
  }
  .cid-sucImpZMSX .number {
    margin-right: 2rem;
  }
  .cid-sucImpZMSX .img-col {
    margin-bottom: 3rem;
  }
}
.cid-sucImpZMSX H2 {
  color: #333333;
  text-align: left;
}
.cid-sucImpZMSX .mbr-text {
  color: #000000;
}
.cid-sucImqvMls {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sucImqvMls .text-content .btn-bgr {
  z-index: 0;
}
.cid-sucImqvMls .mbr-overlay {
  background: #d7e8f6;
}
.cid-sucImqvMls .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
}
.cid-sucImqvMls .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sucImqvMls .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-sucImqvMls .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sucImqvMls .text-content {
    margin-bottom: 2rem;
  }
}
.cid-sucImqvMls .mbr-section-btn,
.cid-sucImqvMls .mbr-section-title {
  text-align: center;
}
.cid-sucImqvMls P {
  text-align: center;
}
.cid-sucImqYWhN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sucImqYWhN img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sucImqYWhN img:hover {
  transform: scale(1.1);
}
.cid-sucImqYWhN .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sucImqYWhN h2 {
  padding: 0;
  margin: 0;
}
.cid-sucImqYWhN .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sucImqYWhN .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sucImqYWhN .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-sucImqYWhN .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-sucImqYWhN .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-sucImqYWhN .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-sucImqYWhN .mbr-iconfont {
  margin: 0!important;
}
.cid-sucImqYWhN .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sucImqYWhN .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sucImqYWhN .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-sucImqYWhN .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-sucImqYWhN .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sucImqYWhN H2 {
  color: #333333;
}
.cid-sucImqYWhN .mbr-text {
  color: #000000;
}
.cid-sucImqYWhN H1 {
  text-align: left;
}
.cid-sucImrHeXh {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #f4f8fa);
}
.cid-sucImrHeXh .nav {
  border: none;
}
.cid-sucImrHeXh .nav-tabs {
  display: table;
  width: 100%;
}
.cid-sucImrHeXh .nav-tabs .nav-item {
  display: table-cell;
}
.cid-sucImrHeXh .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
}
.cid-sucImrHeXh .tab-content {
  margin-top: 3rem;
}
.cid-sucImrHeXh .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-sucImrHeXh .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #deeaf0;
  margin: 0px;
  border-radius: 0px !important;
  transition: font-weight, background, color 0.3s;
}
.cid-sucImrHeXh .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sucImrHeXh .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-sucImrHeXh .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sucImrHeXh .nav-item {
    display: table-row !important;
  }
}
.cid-sucImrHeXh .mbr-section-subtitle,
.cid-sucImrHeXh .mbr-text,
.cid-sucImrHeXh .mbr-section-btn {
  color: #8d97ad;
}
.cid-sucImrHeXh .mbr-text,
.cid-sucImrHeXh .mbr-section-btn {
  color: #000000;
}
.cid-sucImsIA1a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sucImsIA1a img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sucImsIA1a img:hover {
  transform: scale(1.1);
}
.cid-sucImsIA1a .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sucImsIA1a h2 {
  padding: 0;
  margin: 0;
}
.cid-sucImsIA1a .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sucImsIA1a .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sucImsIA1a .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-sucImsIA1a .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-sucImsIA1a .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-sucImsIA1a .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-sucImsIA1a .mbr-iconfont {
  margin: 0!important;
}
.cid-sucImsIA1a .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sucImsIA1a .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sucImsIA1a .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-sucImsIA1a .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-sucImsIA1a .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sucImsIA1a H2 {
  color: #333333;
}
.cid-sucImsIA1a .mbr-text {
  color: #000000;
}
.cid-sucImsIA1a H1 {
  color: #000000;
  text-align: left;
}
.cid-sucImtb0Eh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sucImtb0Eh .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sucImtb0Eh .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-sucImtb0Eh .list-img {
  width: 100px;
}
.cid-sucImtb0Eh .ico2 {
  color: #767676;
  font-size: 1.1rem;
}
.cid-sucImtb0Eh .btn {
  margin: 0px !important;
}
.cid-sucImtb0Eh .text-box {
  padding: 1rem;
}
.cid-sucImtb0Eh .text-box p {
  margin: 0;
}
.cid-sucImtb0Eh .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-sucImtb0Eh .ico-box p {
  margin: 0;
}
.cid-sucImtb0Eh .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sucImtb0Eh .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sucImtb0Eh .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sucImtb0Eh .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-sucImtb0Eh .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-sucImtb0Eh .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-sucImtb0Eh .carousel-indicators li {
  display: inline-block;
}
.cid-sucImtb0Eh .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-sucImtb0Eh .carousel-indicators li.active {
  border: 0px;
}
.cid-sucImtb0Eh .li1,
.cid-sucImtb0Eh .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/unterglasmarkise-527.jpeg");
}
.cid-sucImtb0Eh .li2,
.cid-sucImtb0Eh .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/525-1.jpeg");
}
.cid-sucImtb0Eh .li3,
.cid-sucImtb0Eh .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/unterglasmarkise-528.jpeg");
}
.cid-sucImtb0Eh .li4,
.cid-sucImtb0Eh .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/unterglasmarkise-529.jpeg");
}
.cid-sucImtb0Eh .li5,
.cid-sucImtb0Eh .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/zubehoer-kadeco-2000x1531.jpeg");
}
.cid-sucImtb0Eh .li6,
.cid-sucImtb0Eh .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/510b-10.jpeg");
}
@media (max-width: 992px) {
  .cid-sucImtb0Eh .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-sucImtb0Eh .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-sucImtb0Eh .card-title2 {
  color: #149dcc;
}
.cid-sucImtb0Eh .sq {
  color: #767676;
}
.cid-sucImtb0Eh .item {
  color: #767676;
}
.cid-supbwgCCYe {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supbwgCCYe .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supbwgCCYe .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supbwgCCYe .card:hover {
  margin-top: -0.6rem;
}
.cid-supbwgCCYe .card-wrapper {
  position: relative;
}
.cid-supbwgCCYe .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supbwgCCYe .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supbwgCCYe .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supbwgCCYe .big {
  margin-top: -25%;
}
.cid-supbwgCCYe .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supbwgCCYe .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supbwgCCYe .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-sucImwSIDF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-sucImwSIDF .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-sucImwSIDF .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-sucImwSIDF .links-block ul li {
  margin: 0 1rem;
}
.cid-sucImwSIDF .icons-block ul li {
  margin: 0 .5rem;
}
.cid-sucImwSIDF .links-block ul,
.cid-sucImwSIDF .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-sud1qkRgUH .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sud1qkRgUH .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sud1qkRgUH .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-sud1qkRgUH .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sud1qkRgUH .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sud1qkRgUH .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sud1qkRgUH .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-sud1qkRgUH .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-sud1qkRgUH .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sud1qkRgUH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sud1qkRgUH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-sud1qkRgUH .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sud1qkRgUH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sud1qkRgUH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sud1qkRgUH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sud1qkRgUH .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-sud1qkRgUH .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-sud1qkRgUH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sud1qkRgUH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-sud1qkRgUH .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-sud1qkRgUH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sud1qkRgUH .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sud1qkRgUH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sud1qkRgUH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sud1qkRgUH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sud1qkRgUH .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-sud1qkRgUH .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-sud1qkRgUH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sud1qkRgUH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sud1qkRgUH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-sud1qkRgUH .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sud1qkRgUH .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sud1qkRgUH .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sud1qkRgUH .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sud1qkRgUH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sud1qkRgUH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sud1qkRgUH .navbar-brand {
  -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;
}
.cid-sud1qkRgUH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sud1qkRgUH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sud1qkRgUH .dropdown-item.active,
.cid-sud1qkRgUH .dropdown-item:active {
  background-color: transparent;
}
.cid-sud1qkRgUH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sud1qkRgUH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sud1qkRgUH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sud1qkRgUH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sud1qkRgUH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sud1qkRgUH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sud1qkRgUH ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sud1qkRgUH .navbar-buttons {
  text-align: center;
}
.cid-sud1qkRgUH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sud1qkRgUH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-sud1qkRgUH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sud1qkRgUH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sud1qkRgUH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sud1qkRgUH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sud1qkRgUH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sud1qkRgUH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sud1qkRgUH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sud1qkRgUH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sud1qkRgUH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sud1qkRgUH a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-sud1qkRgUH .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sud1qkRgUH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-sud1qkRgUH .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-sud1qkRgUH .nav-link:hover,
.cid-sud1qkRgUH .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sud1qmdqKS {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sud1qmdqKS .container {
  max-width: 1500px;
}
.cid-sud1qmdqKS img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sud1qmdqKS img:hover {
  transform: scale(1.1);
}
.cid-sud1qmdqKS .row {
  background: #ffffff;
}
.cid-sud1qmdqKS .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-sud1qmdqKS h2 {
  padding: 0;
  margin: 0;
}
.cid-sud1qmdqKS .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sud1qmdqKS .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-sud1qmdqKS .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-sud1qmdqKS .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-sud1qmdqKS .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-sud1qmdqKS .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-sud1qmdqKS .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sud1qmdqKS .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sud1qmdqKS .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-sud1qmdqKS .row {
    margin: 0rem;
  }
  .cid-sud1qmdqKS .text-col {
    padding: 2rem 1rem;
  }
  .cid-sud1qmdqKS .number {
    margin-right: 2rem;
  }
  .cid-sud1qmdqKS .img-col {
    margin-bottom: 3rem;
  }
}
.cid-sud1qmdqKS H2 {
  color: #333333;
  text-align: left;
}
.cid-sud1qmdqKS .mbr-text {
  color: #000000;
}
.cid-sud1qmWno8 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sud1qmWno8 .text-content .btn-bgr {
  z-index: 0;
}
.cid-sud1qmWno8 .mbr-overlay {
  background: #d7e8f6;
}
.cid-sud1qmWno8 .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
}
.cid-sud1qmWno8 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sud1qmWno8 .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-sud1qmWno8 .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sud1qmWno8 .text-content {
    margin-bottom: 2rem;
  }
}
.cid-sud1qmWno8 .mbr-section-btn,
.cid-sud1qmWno8 .mbr-section-title {
  text-align: center;
}
.cid-sud1qmWno8 P {
  text-align: center;
}
.cid-sud1qnwOYI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sud1qnwOYI img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sud1qnwOYI img:hover {
  transform: scale(1.1);
}
.cid-sud1qnwOYI .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sud1qnwOYI h2 {
  padding: 0;
  margin: 0;
}
.cid-sud1qnwOYI .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sud1qnwOYI .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sud1qnwOYI .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-sud1qnwOYI .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-sud1qnwOYI .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-sud1qnwOYI .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-sud1qnwOYI .mbr-iconfont {
  margin: 0!important;
}
.cid-sud1qnwOYI .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sud1qnwOYI .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sud1qnwOYI .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-sud1qnwOYI .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-sud1qnwOYI .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sud1qnwOYI H2 {
  color: #333333;
}
.cid-sud1qnwOYI .mbr-text {
  color: #000000;
}
.cid-sud1qnwOYI H1 {
  text-align: left;
}
.cid-sud1qo8Plf {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #f4f8fa);
}
.cid-sud1qo8Plf .nav {
  border: none;
}
.cid-sud1qo8Plf .nav-tabs {
  display: table;
  width: 100%;
}
.cid-sud1qo8Plf .nav-tabs .nav-item {
  display: table-cell;
}
.cid-sud1qo8Plf .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
}
.cid-sud1qo8Plf .tab-content {
  margin-top: 3rem;
}
.cid-sud1qo8Plf .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-sud1qo8Plf .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #deeaf0;
  margin: 0px;
  border-radius: 0px !important;
  transition: font-weight, background, color 0.3s;
}
.cid-sud1qo8Plf .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sud1qo8Plf .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-sud1qo8Plf .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sud1qo8Plf .nav-item {
    display: table-row !important;
  }
}
.cid-sud1qo8Plf .mbr-section-subtitle,
.cid-sud1qo8Plf .mbr-text,
.cid-sud1qo8Plf .mbr-section-btn {
  color: #8d97ad;
}
.cid-sud1qo8Plf .mbr-text,
.cid-sud1qo8Plf .mbr-section-btn {
  color: #000000;
}
.cid-sud1qpdHcP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sud1qpdHcP img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sud1qpdHcP img:hover {
  transform: scale(1.1);
}
.cid-sud1qpdHcP .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sud1qpdHcP h2 {
  padding: 0;
  margin: 0;
}
.cid-sud1qpdHcP .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sud1qpdHcP .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sud1qpdHcP .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-sud1qpdHcP .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-sud1qpdHcP .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-sud1qpdHcP .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-sud1qpdHcP .mbr-iconfont {
  margin: 0!important;
}
.cid-sud1qpdHcP .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sud1qpdHcP .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sud1qpdHcP .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-sud1qpdHcP .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-sud1qpdHcP .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sud1qpdHcP H2 {
  color: #333333;
}
.cid-sud1qpdHcP .mbr-text {
  color: #000000;
}
.cid-sud1qpdHcP H1 {
  color: #000000;
  text-align: left;
}
.cid-supbBebdEG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supbBebdEG .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supbBebdEG .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supbBebdEG .card:hover {
  margin-top: -0.6rem;
}
.cid-supbBebdEG .card-wrapper {
  position: relative;
}
.cid-supbBebdEG .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supbBebdEG .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supbBebdEG .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supbBebdEG .big {
  margin-top: -25%;
}
.cid-supbBebdEG .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supbBebdEG .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supbBebdEG .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-sud1qtop5r {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-sud1qtop5r .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-sud1qtop5r .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-sud1qtop5r .links-block ul li {
  margin: 0 1rem;
}
.cid-sud1qtop5r .icons-block ul li {
  margin: 0 .5rem;
}
.cid-sud1qtop5r .links-block ul,
.cid-sud1qtop5r .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-stVZOPS8Yy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-stVZOPS8Yy .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-stVZOPS8Yy .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-stVZOPS8Yy .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-stVZOPS8Yy .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-stVZOPS8Yy .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-stVZOPS8Yy .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-stVZOPS8Yy .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-stVZOPS8Yy .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-stVZOPS8Yy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stVZOPS8Yy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-stVZOPS8Yy .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-stVZOPS8Yy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stVZOPS8Yy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stVZOPS8Yy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-stVZOPS8Yy .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-stVZOPS8Yy .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-stVZOPS8Yy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stVZOPS8Yy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-stVZOPS8Yy .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-stVZOPS8Yy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stVZOPS8Yy .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-stVZOPS8Yy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stVZOPS8Yy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stVZOPS8Yy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-stVZOPS8Yy .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-stVZOPS8Yy .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-stVZOPS8Yy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stVZOPS8Yy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stVZOPS8Yy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-stVZOPS8Yy .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-stVZOPS8Yy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stVZOPS8Yy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-stVZOPS8Yy .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-stVZOPS8Yy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stVZOPS8Yy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stVZOPS8Yy .navbar-brand {
  -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;
}
.cid-stVZOPS8Yy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stVZOPS8Yy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stVZOPS8Yy .dropdown-item.active,
.cid-stVZOPS8Yy .dropdown-item:active {
  background-color: transparent;
}
.cid-stVZOPS8Yy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stVZOPS8Yy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stVZOPS8Yy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stVZOPS8Yy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stVZOPS8Yy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-stVZOPS8Yy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stVZOPS8Yy ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-stVZOPS8Yy .navbar-buttons {
  text-align: center;
}
.cid-stVZOPS8Yy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-stVZOPS8Yy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-stVZOPS8Yy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stVZOPS8Yy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stVZOPS8Yy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stVZOPS8Yy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stVZOPS8Yy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stVZOPS8Yy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stVZOPS8Yy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stVZOPS8Yy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stVZOPS8Yy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stVZOPS8Yy a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-stVZOPS8Yy .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stVZOPS8Yy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-stVZOPS8Yy .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-stVZOPS8Yy .nav-link:hover,
.cid-stVZOPS8Yy .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-stVZOR5E8T {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-stVZOR5E8T .container {
  max-width: 1500px;
}
.cid-stVZOR5E8T img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-stVZOR5E8T img:hover {
  transform: scale(1.1);
}
.cid-stVZOR5E8T .row {
  background: #ffffff;
}
.cid-stVZOR5E8T .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-stVZOR5E8T h2 {
  padding: 0;
  margin: 0;
}
.cid-stVZOR5E8T .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stVZOR5E8T .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-stVZOR5E8T .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-stVZOR5E8T .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-stVZOR5E8T .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-stVZOR5E8T .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-stVZOR5E8T .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-stVZOR5E8T .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-stVZOR5E8T .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-stVZOR5E8T .row {
    margin: 0rem;
  }
  .cid-stVZOR5E8T .text-col {
    padding: 2rem 1rem;
  }
  .cid-stVZOR5E8T .number {
    margin-right: 2rem;
  }
  .cid-stVZOR5E8T .img-col {
    margin-bottom: 3rem;
  }
}
.cid-stVZOR5E8T H2 {
  color: #333333;
}
.cid-stVZOR5E8T .mbr-text {
  color: #000000;
}
.cid-stVZORA0kd {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-stVZORA0kd .text-content .btn-bgr {
  z-index: 0;
}
.cid-stVZORA0kd .mbr-overlay {
  background: #d7e8f6;
}
.cid-stVZORA0kd .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
}
.cid-stVZORA0kd .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-stVZORA0kd .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-stVZORA0kd .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-stVZORA0kd .text-content {
    margin-bottom: 2rem;
  }
}
.cid-stVZORA0kd .mbr-section-btn,
.cid-stVZORA0kd .mbr-section-title {
  text-align: center;
}
.cid-stVZORA0kd P {
  text-align: center;
}
.cid-stVZOS3tXR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-stVZOS3tXR img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-stVZOS3tXR img:hover {
  transform: scale(1.1);
}
.cid-stVZOS3tXR .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-stVZOS3tXR h2 {
  padding: 0;
  margin: 0;
}
.cid-stVZOS3tXR .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stVZOS3tXR .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-stVZOS3tXR .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-stVZOS3tXR .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-stVZOS3tXR .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-stVZOS3tXR .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-stVZOS3tXR .mbr-iconfont {
  margin: 0!important;
}
.cid-stVZOS3tXR .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-stVZOS3tXR .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-stVZOS3tXR .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-stVZOS3tXR .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-stVZOS3tXR .text-col {
    padding: 2rem 1rem;
  }
}
.cid-stVZOS3tXR H2 {
  color: #333333;
}
.cid-stVZOS3tXR .mbr-text {
  color: #000000;
}
.cid-stVZOSyQP4 {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #f4f8fa);
}
.cid-stVZOSyQP4 .nav {
  border: none;
}
.cid-stVZOSyQP4 .nav-tabs {
  display: table;
  width: 100%;
}
.cid-stVZOSyQP4 .nav-tabs .nav-item {
  display: table-cell;
}
.cid-stVZOSyQP4 .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
}
.cid-stVZOSyQP4 .tab-content {
  margin-top: 3rem;
}
.cid-stVZOSyQP4 .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-stVZOSyQP4 .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #deeaf0;
  margin: 0px;
  border-radius: 0px !important;
  transition: font-weight, background, color 0.3s;
}
.cid-stVZOSyQP4 .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-stVZOSyQP4 .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stVZOSyQP4 .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-stVZOSyQP4 .nav-item {
    display: table-row !important;
  }
}
.cid-stVZOSyQP4 .mbr-section-subtitle,
.cid-stVZOSyQP4 .mbr-text,
.cid-stVZOSyQP4 .mbr-section-btn {
  color: #8d97ad;
}
.cid-stVZOSyQP4 .mbr-text,
.cid-stVZOSyQP4 .mbr-section-btn {
  color: #000000;
}
.cid-stVZOTvGAF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-stVZOTvGAF img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-stVZOTvGAF img:hover {
  transform: scale(1.1);
}
.cid-stVZOTvGAF .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-stVZOTvGAF h2 {
  padding: 0;
  margin: 0;
}
.cid-stVZOTvGAF .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stVZOTvGAF .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-stVZOTvGAF .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-stVZOTvGAF .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-stVZOTvGAF .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-stVZOTvGAF .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-stVZOTvGAF .mbr-iconfont {
  margin: 0!important;
}
.cid-stVZOTvGAF .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-stVZOTvGAF .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-stVZOTvGAF .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-stVZOTvGAF .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-stVZOTvGAF .text-col {
    padding: 2rem 1rem;
  }
}
.cid-stVZOTvGAF H2 {
  color: #333333;
}
.cid-stVZOTvGAF .mbr-text {
  color: #000000;
}
.cid-stVZOTvGAF H1 {
  color: #000000;
}
.cid-stVZOU7ciQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-stVZOU7ciQ .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-stVZOU7ciQ .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-stVZOU7ciQ .list-img {
  width: 100px;
}
.cid-stVZOU7ciQ .ico2 {
  color: #767676;
  font-size: 1.1rem;
}
.cid-stVZOU7ciQ .btn {
  margin: 0px !important;
}
.cid-stVZOU7ciQ .text-box {
  padding: 1rem;
}
.cid-stVZOU7ciQ .text-box p {
  margin: 0;
}
.cid-stVZOU7ciQ .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-stVZOU7ciQ .ico-box p {
  margin: 0;
}
.cid-stVZOU7ciQ .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stVZOU7ciQ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stVZOU7ciQ .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-stVZOU7ciQ .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-stVZOU7ciQ .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-stVZOU7ciQ .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-stVZOU7ciQ .carousel-indicators li {
  display: inline-block;
}
.cid-stVZOU7ciQ .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-stVZOU7ciQ .carousel-indicators li.active {
  border: 0px;
}
.cid-stVZOU7ciQ .li1,
.cid-stVZOU7ciQ .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/01-riva-3d-2000x1500.jpeg");
}
.cid-stVZOU7ciQ .li2,
.cid-stVZOU7ciQ .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/05-v920-riva-sfeer-1-2000x1018.jpeg");
}
.cid-stVZOU7ciQ .li3,
.cid-stVZOU7ciQ .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/04-v920-riva-v610-oslo-vs716lr-2000x1333.jpeg");
}
.cid-stVZOU7ciQ .li4,
.cid-stVZOU7ciQ .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/06-v920-riva-v610-oslo-vs716lr-2000x1333.jpeg");
}
.cid-stVZOU7ciQ .li5,
.cid-stVZOU7ciQ .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/19-v920-riva-v610-oslo-vs716lr-2000x3000.jpeg");
}
.cid-stVZOU7ciQ .li6,
.cid-stVZOU7ciQ .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/01-riva-3d-render-2000x1500.jpeg");
}
@media (max-width: 992px) {
  .cid-stVZOU7ciQ .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-stVZOU7ciQ .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-stVZOU7ciQ .card-title2 {
  color: #149dcc;
}
.cid-stVZOU7ciQ .sq {
  color: #767676;
}
.cid-stVZOU7ciQ .item {
  color: #767676;
}
.cid-supbamzDuE {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supbamzDuE .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supbamzDuE .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supbamzDuE .card:hover {
  margin-top: -0.6rem;
}
.cid-supbamzDuE .card-wrapper {
  position: relative;
}
.cid-supbamzDuE .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supbamzDuE .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supbamzDuE .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supbamzDuE .big {
  margin-top: -25%;
}
.cid-supbamzDuE .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supbamzDuE .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supbamzDuE .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-stVZOXixE4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-stVZOXixE4 .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-stVZOXixE4 .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-stVZOXixE4 .links-block ul li {
  margin: 0 1rem;
}
.cid-stVZOXixE4 .icons-block ul li {
  margin: 0 .5rem;
}
.cid-stVZOXixE4 .links-block ul,
.cid-stVZOXixE4 .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-stElP02X2a .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-stElP02X2a .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-stElP02X2a .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-stElP02X2a .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-stElP02X2a .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-stElP02X2a .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-stElP02X2a .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-stElP02X2a .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-stElP02X2a .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-stElP02X2a .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stElP02X2a .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-stElP02X2a .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-stElP02X2a .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stElP02X2a .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stElP02X2a .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-stElP02X2a .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-stElP02X2a .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-stElP02X2a .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stElP02X2a .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-stElP02X2a .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-stElP02X2a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stElP02X2a .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-stElP02X2a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stElP02X2a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stElP02X2a .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-stElP02X2a .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-stElP02X2a .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-stElP02X2a .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stElP02X2a .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stElP02X2a .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-stElP02X2a .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-stElP02X2a .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stElP02X2a .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-stElP02X2a .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-stElP02X2a .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stElP02X2a .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stElP02X2a .navbar-brand {
  -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;
}
.cid-stElP02X2a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stElP02X2a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stElP02X2a .dropdown-item.active,
.cid-stElP02X2a .dropdown-item:active {
  background-color: transparent;
}
.cid-stElP02X2a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stElP02X2a .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stElP02X2a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stElP02X2a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stElP02X2a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-stElP02X2a .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stElP02X2a ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-stElP02X2a .navbar-buttons {
  text-align: center;
}
.cid-stElP02X2a button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-stElP02X2a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-stElP02X2a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stElP02X2a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stElP02X2a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stElP02X2a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stElP02X2a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stElP02X2a nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stElP02X2a nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stElP02X2a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stElP02X2a .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stElP02X2a a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-stElP02X2a .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stElP02X2a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-stElP02X2a .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-stElP02X2a .nav-link:hover,
.cid-stElP02X2a .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-stEnLEVe0u {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-stEnLEVe0u .container {
  max-width: 1500px;
}
.cid-stEnLEVe0u img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-stEnLEVe0u img:hover {
  transform: scale(1.1);
}
.cid-stEnLEVe0u .row {
  background: #ffffff;
}
.cid-stEnLEVe0u .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-stEnLEVe0u h2 {
  padding: 0;
  margin: 0;
}
.cid-stEnLEVe0u .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stEnLEVe0u .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-stEnLEVe0u .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-stEnLEVe0u .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-stEnLEVe0u .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-stEnLEVe0u .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-stEnLEVe0u .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-stEnLEVe0u .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-stEnLEVe0u .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-stEnLEVe0u .row {
    margin: 0rem;
  }
  .cid-stEnLEVe0u .text-col {
    padding: 2rem 1rem;
  }
  .cid-stEnLEVe0u .number {
    margin-right: 2rem;
  }
  .cid-stEnLEVe0u .img-col {
    margin-bottom: 3rem;
  }
}
.cid-stEnLEVe0u H2 {
  color: #333333;
  text-align: left;
}
.cid-stEnLEVe0u .mbr-text {
  color: #000000;
}
.cid-stEnm7feTX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-stEnm7feTX .text-content .btn-bgr {
  z-index: 0;
}
.cid-stEnm7feTX .mbr-overlay {
  background: #d7e8f6;
}
.cid-stEnm7feTX .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
}
.cid-stEnm7feTX .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-stEnm7feTX .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-stEnm7feTX .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-stEnm7feTX .text-content {
    margin-bottom: 2rem;
  }
}
.cid-stEnm7feTX .mbr-section-btn,
.cid-stEnm7feTX .mbr-section-title {
  text-align: center;
}
.cid-stEnm7feTX P {
  text-align: center;
}
.cid-stTZYOcwHn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-stTZYOcwHn img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-stTZYOcwHn img:hover {
  transform: scale(1.1);
}
.cid-stTZYOcwHn .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-stTZYOcwHn h2 {
  padding: 0;
  margin: 0;
}
.cid-stTZYOcwHn .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stTZYOcwHn .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-stTZYOcwHn .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-stTZYOcwHn .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-stTZYOcwHn .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-stTZYOcwHn .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-stTZYOcwHn .mbr-iconfont {
  margin: 0!important;
}
.cid-stTZYOcwHn .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-stTZYOcwHn .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-stTZYOcwHn .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-stTZYOcwHn .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-stTZYOcwHn .text-col {
    padding: 2rem 1rem;
  }
}
.cid-stTZYOcwHn H2 {
  color: #333333;
}
.cid-stTZYOcwHn .mbr-text {
  color: #000000;
}
.cid-stTZYOcwHn H1 {
  text-align: left;
}
.cid-stEABlfq5f {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #f4f8fa);
}
.cid-stEABlfq5f .nav {
  border: none;
}
.cid-stEABlfq5f .nav-tabs {
  display: table;
  width: 100%;
}
.cid-stEABlfq5f .nav-tabs .nav-item {
  display: table-cell;
}
.cid-stEABlfq5f .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
}
.cid-stEABlfq5f .tab-content {
  margin-top: 3rem;
}
.cid-stEABlfq5f .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-stEABlfq5f .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #deeaf0;
  margin: 0px;
  border-radius: 0px !important;
  transition: font-weight, background, color 0.3s;
}
.cid-stEABlfq5f .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-stEABlfq5f .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stEABlfq5f .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-stEABlfq5f .nav-item {
    display: table-row !important;
  }
}
.cid-stEABlfq5f .mbr-section-subtitle,
.cid-stEABlfq5f .mbr-text,
.cid-stEABlfq5f .mbr-section-btn {
  color: #8d97ad;
}
.cid-stEABlfq5f .mbr-text,
.cid-stEABlfq5f .mbr-section-btn {
  color: #000000;
}
.cid-stViNm1O9i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-stViNm1O9i img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-stViNm1O9i img:hover {
  transform: scale(1.1);
}
.cid-stViNm1O9i .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-stViNm1O9i h2 {
  padding: 0;
  margin: 0;
}
.cid-stViNm1O9i .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stViNm1O9i .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-stViNm1O9i .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-stViNm1O9i .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-stViNm1O9i .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-stViNm1O9i .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-stViNm1O9i .mbr-iconfont {
  margin: 0!important;
}
.cid-stViNm1O9i .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-stViNm1O9i .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-stViNm1O9i .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-stViNm1O9i .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-stViNm1O9i .text-col {
    padding: 2rem 1rem;
  }
}
.cid-stViNm1O9i H2 {
  color: #333333;
}
.cid-stViNm1O9i .mbr-text {
  color: #000000;
}
.cid-stViNm1O9i H1 {
  color: #000000;
}
.cid-stTZreIt3i {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-stTZreIt3i .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-stTZreIt3i .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-stTZreIt3i .list-img {
  width: 100px;
}
.cid-stTZreIt3i .ico2 {
  color: #767676;
  font-size: 1.1rem;
}
.cid-stTZreIt3i .btn {
  margin: 0px !important;
}
.cid-stTZreIt3i .text-box {
  padding: 1rem;
}
.cid-stTZreIt3i .text-box p {
  margin: 0;
}
.cid-stTZreIt3i .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-stTZreIt3i .ico-box p {
  margin: 0;
}
.cid-stTZreIt3i .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stTZreIt3i .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stTZreIt3i .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-stTZreIt3i .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-stTZreIt3i .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-stTZreIt3i .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-stTZreIt3i .carousel-indicators li {
  display: inline-block;
}
.cid-stTZreIt3i .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-stTZreIt3i .carousel-indicators li.active {
  border: 0px;
}
.cid-stTZreIt3i .li1,
.cid-stTZreIt3i .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/arezzo-3-800x800.jpg");
}
.cid-stTZreIt3i .li2,
.cid-stTZreIt3i .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/v870-arezzo-7-1996x1748.jpeg");
}
.cid-stTZreIt3i .li3,
.cid-stTZreIt3i .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/arezzo-2-800x800.jpeg");
}
.cid-stTZreIt3i .li4,
.cid-stTZreIt3i .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/banner-arezzo-terrassana-2-2000x1283.jpg");
}
.cid-stTZreIt3i .li5,
.cid-stTZreIt3i .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/banner-arezzo-terrassana-4-2000x1290.jpg");
}
.cid-stTZreIt3i .li6,
.cid-stTZreIt3i .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/banner-arezzo-terrassana-1916x1289.jpg");
}
@media (max-width: 992px) {
  .cid-stTZreIt3i .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-stTZreIt3i .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-stTZreIt3i .card-title2 {
  color: #149dcc;
}
.cid-stTZreIt3i .sq {
  color: #767676;
}
.cid-stTZreIt3i .item {
  color: #767676;
}
.cid-supb3OLpuA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supb3OLpuA .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supb3OLpuA .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supb3OLpuA .card:hover {
  margin-top: -0.6rem;
}
.cid-supb3OLpuA .card-wrapper {
  position: relative;
}
.cid-supb3OLpuA .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supb3OLpuA .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supb3OLpuA .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supb3OLpuA .big {
  margin-top: -25%;
}
.cid-supb3OLpuA .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supb3OLpuA .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supb3OLpuA .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-stElP5AT4Z {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-stElP5AT4Z .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-stElP5AT4Z .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-stElP5AT4Z .links-block ul li {
  margin: 0 1rem;
}
.cid-stElP5AT4Z .icons-block ul li {
  margin: 0 .5rem;
}
.cid-stElP5AT4Z .links-block ul,
.cid-stElP5AT4Z .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-suoB68zfvi .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-suoB68zfvi .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-suoB68zfvi .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-suoB68zfvi .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-suoB68zfvi .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-suoB68zfvi .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-suoB68zfvi .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-suoB68zfvi .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-suoB68zfvi .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-suoB68zfvi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suoB68zfvi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-suoB68zfvi .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-suoB68zfvi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suoB68zfvi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suoB68zfvi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suoB68zfvi .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-suoB68zfvi .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-suoB68zfvi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suoB68zfvi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-suoB68zfvi .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-suoB68zfvi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suoB68zfvi .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-suoB68zfvi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suoB68zfvi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suoB68zfvi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-suoB68zfvi .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-suoB68zfvi .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-suoB68zfvi .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suoB68zfvi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suoB68zfvi .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-suoB68zfvi .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-suoB68zfvi .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-suoB68zfvi .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-suoB68zfvi .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-suoB68zfvi .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suoB68zfvi .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-suoB68zfvi .navbar-brand {
  -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;
}
.cid-suoB68zfvi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suoB68zfvi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suoB68zfvi .dropdown-item.active,
.cid-suoB68zfvi .dropdown-item:active {
  background-color: transparent;
}
.cid-suoB68zfvi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suoB68zfvi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suoB68zfvi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suoB68zfvi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-suoB68zfvi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-suoB68zfvi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suoB68zfvi ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-suoB68zfvi .navbar-buttons {
  text-align: center;
}
.cid-suoB68zfvi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suoB68zfvi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-suoB68zfvi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suoB68zfvi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suoB68zfvi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suoB68zfvi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suoB68zfvi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suoB68zfvi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-suoB68zfvi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-suoB68zfvi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suoB68zfvi .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-suoB68zfvi a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-suoB68zfvi .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suoB68zfvi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-suoB68zfvi .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-suoB68zfvi .nav-link:hover,
.cid-suoB68zfvi .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-suoB69qbYQ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-suoB69qbYQ .container {
  max-width: 1500px;
}
.cid-suoB69qbYQ img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-suoB69qbYQ img:hover {
  transform: scale(1.1);
}
.cid-suoB69qbYQ .row {
  background: #ffffff;
}
.cid-suoB69qbYQ .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-suoB69qbYQ h2 {
  padding: 0;
  margin: 0;
}
.cid-suoB69qbYQ .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suoB69qbYQ .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-suoB69qbYQ .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-suoB69qbYQ .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-suoB69qbYQ .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-suoB69qbYQ .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-suoB69qbYQ .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-suoB69qbYQ .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-suoB69qbYQ .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-suoB69qbYQ .row {
    margin: 0rem;
  }
  .cid-suoB69qbYQ .text-col {
    padding: 2rem 1rem;
  }
  .cid-suoB69qbYQ .number {
    margin-right: 2rem;
  }
  .cid-suoB69qbYQ .img-col {
    margin-bottom: 3rem;
  }
}
.cid-suoB69qbYQ H2 {
  color: #333333;
  text-align: left;
}
.cid-suoB69qbYQ .mbr-text {
  color: #000000;
}
.cid-suoB69TFPe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-suoB69TFPe .text-content .btn-bgr {
  z-index: 0;
}
.cid-suoB69TFPe .mbr-overlay {
  background: #d7e8f6;
}
.cid-suoB69TFPe .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
}
.cid-suoB69TFPe .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-suoB69TFPe .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-suoB69TFPe .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-suoB69TFPe .text-content {
    margin-bottom: 2rem;
  }
}
.cid-suoB69TFPe .mbr-section-btn,
.cid-suoB69TFPe .mbr-section-title {
  text-align: center;
}
.cid-suoB69TFPe P {
  text-align: center;
}
.cid-suoB6ajfbS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-suoB6ajfbS img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-suoB6ajfbS img:hover {
  transform: scale(1.1);
}
.cid-suoB6ajfbS .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-suoB6ajfbS h2 {
  padding: 0;
  margin: 0;
}
.cid-suoB6ajfbS .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suoB6ajfbS .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-suoB6ajfbS .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-suoB6ajfbS .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-suoB6ajfbS .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-suoB6ajfbS .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-suoB6ajfbS .mbr-iconfont {
  margin: 0!important;
}
.cid-suoB6ajfbS .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suoB6ajfbS .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-suoB6ajfbS .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-suoB6ajfbS .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-suoB6ajfbS .text-col {
    padding: 2rem 1rem;
  }
}
.cid-suoB6ajfbS H2 {
  color: #333333;
}
.cid-suoB6ajfbS .mbr-text {
  color: #000000;
}
.cid-suoB6ajfbS H1 {
  text-align: left;
}
.cid-suoB6aH2sA {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #f4f8fa);
}
.cid-suoB6aH2sA .nav {
  border: none;
}
.cid-suoB6aH2sA .nav-tabs {
  display: table;
  width: 100%;
}
.cid-suoB6aH2sA .nav-tabs .nav-item {
  display: table-cell;
}
.cid-suoB6aH2sA .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
}
.cid-suoB6aH2sA .tab-content {
  margin-top: 3rem;
}
.cid-suoB6aH2sA .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-suoB6aH2sA .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #deeaf0;
  margin: 0px;
  border-radius: 0px !important;
  transition: font-weight, background, color 0.3s;
}
.cid-suoB6aH2sA .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-suoB6aH2sA .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-suoB6aH2sA .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-suoB6aH2sA .nav-item {
    display: table-row !important;
  }
}
.cid-suoB6aH2sA .mbr-section-subtitle,
.cid-suoB6aH2sA .mbr-text,
.cid-suoB6aH2sA .mbr-section-btn {
  color: #8d97ad;
}
.cid-suoB6aH2sA .mbr-text,
.cid-suoB6aH2sA .mbr-section-btn {
  color: #000000;
}
.cid-suoB6btJS4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-suoB6btJS4 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-suoB6btJS4 img:hover {
  transform: scale(1.1);
}
.cid-suoB6btJS4 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-suoB6btJS4 h2 {
  padding: 0;
  margin: 0;
}
.cid-suoB6btJS4 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-suoB6btJS4 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-suoB6btJS4 .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-suoB6btJS4 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-suoB6btJS4 .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-suoB6btJS4 .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-suoB6btJS4 .mbr-iconfont {
  margin: 0!important;
}
.cid-suoB6btJS4 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-suoB6btJS4 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-suoB6btJS4 .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-suoB6btJS4 .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-suoB6btJS4 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-suoB6btJS4 H2 {
  color: #333333;
}
.cid-suoB6btJS4 .mbr-text {
  color: #000000;
}
.cid-suoB6btJS4 H1 {
  color: #000000;
  text-align: left;
}
.cid-suoB6bUIfh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-suoB6bUIfh .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-suoB6bUIfh .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-suoB6bUIfh .list-img {
  width: 100px;
}
.cid-suoB6bUIfh .ico2 {
  color: #767676;
  font-size: 1.1rem;
}
.cid-suoB6bUIfh .btn {
  margin: 0px !important;
}
.cid-suoB6bUIfh .text-box {
  padding: 1rem;
}
.cid-suoB6bUIfh .text-box p {
  margin: 0;
}
.cid-suoB6bUIfh .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-suoB6bUIfh .ico-box p {
  margin: 0;
}
.cid-suoB6bUIfh .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-suoB6bUIfh .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-suoB6bUIfh .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-suoB6bUIfh .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-suoB6bUIfh .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-suoB6bUIfh .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-suoB6bUIfh .carousel-indicators li {
  display: inline-block;
}
.cid-suoB6bUIfh .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-suoB6bUIfh .carousel-indicators li.active {
  border: 0px;
}
.cid-suoB6bUIfh .li1,
.cid-suoB6bUIfh .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/14765388px996x560-1.jpeg");
}
.cid-suoB6bUIfh .li2,
.cid-suoB6bUIfh .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/glaswand-schuifwand-paroi-vitre-v785-serena-1.jpeg");
}
.cid-suoB6bUIfh .li3,
.cid-suoB6bUIfh .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/paroi-vitre-glaswand-v762-talamanca-atracietstructuur-3.jpeg");
}
.cid-suoB6bUIfh .li4,
.cid-suoB6bUIfh .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/paroi-vitre-glaswand-schuifwand-v860-halsteren-1.jpeg");
}
.cid-suoB6bUIfh .li5,
.cid-suoB6bUIfh .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/schuifwand-glaswand-paroi-vitre-v755-nova-wit-1.jpeg");
}
.cid-suoB6bUIfh .li6,
.cid-suoB6bUIfh .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/v870-arezzo-5.jpeg");
}
@media (max-width: 992px) {
  .cid-suoB6bUIfh .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-suoB6bUIfh .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-suoB6bUIfh .card-title2 {
  color: #149dcc;
}
.cid-suoB6bUIfh .sq {
  color: #767676;
}
.cid-suoB6bUIfh .item {
  color: #767676;
}
.cid-supbMD7ybX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supbMD7ybX .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supbMD7ybX .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supbMD7ybX .card:hover {
  margin-top: -0.6rem;
}
.cid-supbMD7ybX .card-wrapper {
  position: relative;
}
.cid-supbMD7ybX .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supbMD7ybX .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supbMD7ybX .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supbMD7ybX .big {
  margin-top: -25%;
}
.cid-supbMD7ybX .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supbMD7ybX .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supbMD7ybX .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-suoB6eYg0C {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-suoB6eYg0C .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-suoB6eYg0C .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-suoB6eYg0C .links-block ul li {
  margin: 0 1rem;
}
.cid-suoB6eYg0C .icons-block ul li {
  margin: 0 .5rem;
}
.cid-suoB6eYg0C .links-block ul,
.cid-suoB6eYg0C .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-sudZnaHQcF .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sudZnaHQcF .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sudZnaHQcF .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-sudZnaHQcF .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sudZnaHQcF .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-sudZnaHQcF .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sudZnaHQcF .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-sudZnaHQcF .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-sudZnaHQcF .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-sudZnaHQcF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sudZnaHQcF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-sudZnaHQcF .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-sudZnaHQcF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sudZnaHQcF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sudZnaHQcF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sudZnaHQcF .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-sudZnaHQcF .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-sudZnaHQcF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sudZnaHQcF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-sudZnaHQcF .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-sudZnaHQcF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sudZnaHQcF .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-sudZnaHQcF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sudZnaHQcF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sudZnaHQcF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sudZnaHQcF .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-sudZnaHQcF .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-sudZnaHQcF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sudZnaHQcF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sudZnaHQcF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-sudZnaHQcF .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-sudZnaHQcF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sudZnaHQcF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sudZnaHQcF .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sudZnaHQcF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sudZnaHQcF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sudZnaHQcF .navbar-brand {
  -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;
}
.cid-sudZnaHQcF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sudZnaHQcF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sudZnaHQcF .dropdown-item.active,
.cid-sudZnaHQcF .dropdown-item:active {
  background-color: transparent;
}
.cid-sudZnaHQcF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sudZnaHQcF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sudZnaHQcF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sudZnaHQcF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sudZnaHQcF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-sudZnaHQcF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sudZnaHQcF ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-sudZnaHQcF .navbar-buttons {
  text-align: center;
}
.cid-sudZnaHQcF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sudZnaHQcF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-sudZnaHQcF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sudZnaHQcF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sudZnaHQcF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sudZnaHQcF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sudZnaHQcF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sudZnaHQcF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sudZnaHQcF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sudZnaHQcF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sudZnaHQcF .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sudZnaHQcF a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-sudZnaHQcF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sudZnaHQcF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-sudZnaHQcF .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-sudZnaHQcF .nav-link:hover,
.cid-sudZnaHQcF .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sue0lIUICa {
  padding-top: 90px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/05-v920-riva-sfeer.jpeg");
}
.cid-sue0lIUICa .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #efeeee;
}
.cid-sue0lIUICa .block {
  background-color: #8bd559;
}
.cid-sue0lIUICa img {
  width: 100%;
}
.cid-sue0lIUICa .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
  display: flex;
  justify-content: flex-end;
}
.cid-sue0lIUICa .content {
  max-width: 600px;
}
.cid-sue0lIUICa h4 {
  position: absolute;
  transform: rotate(270deg);
  transform-origin: bottom left;
  left: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-sue0lIUICa .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-sue0lIUICa h4 {
    left: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-sue0lIUICa .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-sue0lIUICa h4 {
    left: 2rem;
    bottom: 30%;
  }
  .cid-sue0lIUICa .content-wrapper {
    padding-left: 3rem;
  }
}
.cid-sue0lIUICa .mbr-text,
.cid-sue0lIUICa .mbr-section-btn {
  text-align: left;
}
.cid-sue3zpDVvo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-sue3zpDVvo .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sue3zpDVvo .panel-group {
  width: 100%;
}
.cid-sue3zpDVvo .panel-text,
.cid-sue3zpDVvo .header-text,
.cid-sue3zpDVvo .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sue3zpDVvo .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-sue3zpDVvo .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-sue3zpDVvo .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-sue3zpDVvo .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sue3zpDVvo .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-sue3zpDVvo .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-sue3zpDVvo .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #8bd559;
}
.cid-sue3zpDVvo .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #000000 !important;
}
.cid-sue3zpDVvo .card .panel-body {
  background: #ffffff;
}
.cid-sue3zpDVvo .sign {
  color: #232323;
}
.cid-supbTzdrte {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supbTzdrte .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supbTzdrte .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supbTzdrte .card:hover {
  margin-top: -0.6rem;
}
.cid-supbTzdrte .card-wrapper {
  position: relative;
}
.cid-supbTzdrte .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supbTzdrte .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supbTzdrte .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supbTzdrte .big {
  margin-top: -25%;
}
.cid-supbTzdrte .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supbTzdrte .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supbTzdrte .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-sudZni10iH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-sudZni10iH .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-sudZni10iH .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-sudZni10iH .links-block ul li {
  margin: 0 1rem;
}
.cid-sudZni10iH .icons-block ul li {
  margin: 0 .5rem;
}
.cid-sudZni10iH .links-block ul,
.cid-sudZni10iH .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-stVD5OS7hR .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-stVD5OS7hR .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-stVD5OS7hR .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #2b2b2b;
  color: #ffffff !important;
  background: #444444 !important;
}
.cid-stVD5OS7hR .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-stVD5OS7hR .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-stVD5OS7hR .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-stVD5OS7hR .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-stVD5OS7hR .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #8bd559;
}
.cid-stVD5OS7hR .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-stVD5OS7hR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stVD5OS7hR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.01428571vh;
  }
}
.cid-stVD5OS7hR .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-stVD5OS7hR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stVD5OS7hR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stVD5OS7hR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-stVD5OS7hR .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-stVD5OS7hR .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-stVD5OS7hR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stVD5OS7hR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-stVD5OS7hR .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-stVD5OS7hR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stVD5OS7hR .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-stVD5OS7hR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stVD5OS7hR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stVD5OS7hR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-stVD5OS7hR .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-stVD5OS7hR .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-stVD5OS7hR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stVD5OS7hR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stVD5OS7hR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-stVD5OS7hR .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-stVD5OS7hR .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stVD5OS7hR .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-stVD5OS7hR .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-stVD5OS7hR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stVD5OS7hR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stVD5OS7hR .navbar-brand {
  -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;
}
.cid-stVD5OS7hR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stVD5OS7hR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stVD5OS7hR .dropdown-item.active,
.cid-stVD5OS7hR .dropdown-item:active {
  background-color: transparent;
}
.cid-stVD5OS7hR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stVD5OS7hR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stVD5OS7hR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stVD5OS7hR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stVD5OS7hR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-stVD5OS7hR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stVD5OS7hR ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-stVD5OS7hR .navbar-buttons {
  text-align: center;
}
.cid-stVD5OS7hR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-stVD5OS7hR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c1c1c1;
}
.cid-stVD5OS7hR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stVD5OS7hR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stVD5OS7hR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stVD5OS7hR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stVD5OS7hR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stVD5OS7hR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stVD5OS7hR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stVD5OS7hR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stVD5OS7hR .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stVD5OS7hR a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-stVD5OS7hR .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stVD5OS7hR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-stVD5OS7hR .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-stVD5OS7hR .nav-link:hover,
.cid-stVD5OS7hR .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-stVD5QmvL9 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-stVD5QmvL9 .container {
  max-width: 1500px;
}
.cid-stVD5QmvL9 img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-stVD5QmvL9 img:hover {
  transform: scale(1.1);
}
.cid-stVD5QmvL9 .row {
  background: #ffffff;
}
.cid-stVD5QmvL9 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-stVD5QmvL9 h2 {
  padding: 0;
  margin: 0;
}
.cid-stVD5QmvL9 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stVD5QmvL9 .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-stVD5QmvL9 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-stVD5QmvL9 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-stVD5QmvL9 .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-stVD5QmvL9 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-stVD5QmvL9 .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-stVD5QmvL9 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-stVD5QmvL9 .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-stVD5QmvL9 .row {
    margin: 0rem;
  }
  .cid-stVD5QmvL9 .text-col {
    padding: 2rem 1rem;
  }
  .cid-stVD5QmvL9 .number {
    margin-right: 2rem;
  }
  .cid-stVD5QmvL9 .img-col {
    margin-bottom: 3rem;
  }
}
.cid-stVD5QmvL9 H2 {
  color: #333333;
}
.cid-stVD5QmvL9 .mbr-text {
  color: #000000;
}
.cid-stVD5QXQke {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-stVD5QXQke .text-content .btn-bgr {
  z-index: 0;
}
.cid-stVD5QXQke .mbr-overlay {
  background: #d7e8f6;
}
.cid-stVD5QXQke .text-content {
  padding: 2rem 0rem;
  background-color: #ffffff;
}
.cid-stVD5QXQke .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-stVD5QXQke .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-stVD5QXQke .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-stVD5QXQke .text-content {
    margin-bottom: 2rem;
  }
}
.cid-stVD5QXQke .mbr-section-btn,
.cid-stVD5QXQke .mbr-section-title {
  text-align: center;
}
.cid-stVD5QXQke P {
  text-align: center;
}
.cid-stVD5RCQOy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-stVD5RCQOy img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-stVD5RCQOy img:hover {
  transform: scale(1.1);
}
.cid-stVD5RCQOy .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-stVD5RCQOy h2 {
  padding: 0;
  margin: 0;
}
.cid-stVD5RCQOy .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stVD5RCQOy .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-stVD5RCQOy .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-stVD5RCQOy .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-stVD5RCQOy .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-stVD5RCQOy .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-stVD5RCQOy .mbr-iconfont {
  margin: 0!important;
}
.cid-stVD5RCQOy .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-stVD5RCQOy .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-stVD5RCQOy .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-stVD5RCQOy .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-stVD5RCQOy .text-col {
    padding: 2rem 1rem;
  }
}
.cid-stVD5RCQOy H2 {
  color: #333333;
}
.cid-stVD5RCQOy .mbr-text {
  color: #000000;
}
.cid-stVD5ScfmC {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #f4f8fa);
}
.cid-stVD5ScfmC .nav {
  border: none;
}
.cid-stVD5ScfmC .nav-tabs {
  display: table;
  width: 100%;
}
.cid-stVD5ScfmC .nav-tabs .nav-item {
  display: table-cell;
}
.cid-stVD5ScfmC .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
}
.cid-stVD5ScfmC .tab-content {
  margin-top: 3rem;
}
.cid-stVD5ScfmC .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-stVD5ScfmC .nav-tabs .nav-link {
  display: flex;
  color: #000000;
  box-sizing: border-box;
  font-style: normal;
  background: #f4f8fa;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #deeaf0;
  margin: 0px;
  border-radius: 0px !important;
  transition: font-weight, background, color 0.3s;
}
.cid-stVD5ScfmC .nav-tabs .nav-link:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-stVD5ScfmC .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #000000;
  font-style: normal;
  background: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stVD5ScfmC .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-stVD5ScfmC .nav-item {
    display: table-row !important;
  }
}
.cid-stVD5ScfmC .mbr-section-subtitle,
.cid-stVD5ScfmC .mbr-text,
.cid-stVD5ScfmC .mbr-section-btn {
  color: #8d97ad;
}
.cid-stVD5ScfmC .mbr-text,
.cid-stVD5ScfmC .mbr-section-btn {
  color: #000000;
}
.cid-stVD5ThEES {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-stVD5ThEES img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-stVD5ThEES img:hover {
  transform: scale(1.1);
}
.cid-stVD5ThEES .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-stVD5ThEES h2 {
  padding: 0;
  margin: 0;
}
.cid-stVD5ThEES .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stVD5ThEES .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-stVD5ThEES .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-stVD5ThEES .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-stVD5ThEES .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-stVD5ThEES .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-stVD5ThEES .mbr-iconfont {
  margin: 0!important;
}
.cid-stVD5ThEES .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-stVD5ThEES .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-stVD5ThEES .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-stVD5ThEES .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-stVD5ThEES .text-col {
    padding: 2rem 1rem;
  }
}
.cid-stVD5ThEES H2 {
  color: #333333;
}
.cid-stVD5ThEES .mbr-text {
  color: #000000;
}
.cid-stVD5ThEES H1 {
  color: #000000;
}
.cid-stVD5TRRC9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-stVD5TRRC9 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-stVD5TRRC9 .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-stVD5TRRC9 .list-img {
  width: 100px;
}
.cid-stVD5TRRC9 .ico2 {
  color: #767676;
  font-size: 1.1rem;
}
.cid-stVD5TRRC9 .btn {
  margin: 0px !important;
}
.cid-stVD5TRRC9 .text-box {
  padding: 1rem;
}
.cid-stVD5TRRC9 .text-box p {
  margin: 0;
}
.cid-stVD5TRRC9 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-stVD5TRRC9 .ico-box p {
  margin: 0;
}
.cid-stVD5TRRC9 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stVD5TRRC9 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stVD5TRRC9 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-stVD5TRRC9 .carousel-item .wrap-img {
  text-align: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  width: auto;
  height: 500px;
}
.cid-stVD5TRRC9 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-stVD5TRRC9 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-stVD5TRRC9 .carousel-indicators li {
  display: inline-block;
}
.cid-stVD5TRRC9 .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-stVD5TRRC9 .carousel-indicators li.active {
  border: 0px;
}
.cid-stVD5TRRC9 .li1,
.cid-stVD5TRRC9 .carousel-item:nth-child(1) .wrap-img {
  background-image: url("../../../assets/images/12-06727-2021.jpeg");
}
.cid-stVD5TRRC9 .li2,
.cid-stVD5TRRC9 .carousel-item:nth-child(2) .wrap-img {
  background-image: url("../../../assets/images/pergola-zonwering-terras-1.jpeg");
}
.cid-stVD5TRRC9 .li3,
.cid-stVD5TRRC9 .carousel-item:nth-child(3) .wrap-img {
  background-image: url("../../../assets/images/pergola-zonwering-pergolazonwering-v642-tumba-1.jpeg");
}
.cid-stVD5TRRC9 .li4,
.cid-stVD5TRRC9 .carousel-item:nth-child(4) .wrap-img {
  background-image: url("../../../assets/images/unbenannt2-1.jpeg");
}
.cid-stVD5TRRC9 .li5,
.cid-stVD5TRRC9 .carousel-item:nth-child(5) .wrap-img {
  background-image: url("../../../assets/images/unbenannt-2.jpeg");
}
.cid-stVD5TRRC9 .li6,
.cid-stVD5TRRC9 .carousel-item:nth-child(6) .wrap-img {
  background-image: url("../../../assets/images/12-06727-2022.jpeg");
}
@media (max-width: 992px) {
  .cid-stVD5TRRC9 .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-stVD5TRRC9 .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-stVD5TRRC9 .card-title2 {
  color: #149dcc;
}
.cid-stVD5TRRC9 .sq {
  color: #767676;
}
.cid-stVD5TRRC9 .item {
  color: #767676;
}
.cid-supccedGcM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-supccedGcM .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-supccedGcM .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-supccedGcM .card:hover {
  margin-top: -0.6rem;
}
.cid-supccedGcM .card-wrapper {
  position: relative;
}
.cid-supccedGcM .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-supccedGcM .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-supccedGcM .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-supccedGcM .big {
  margin-top: -25%;
}
.cid-supccedGcM .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-supccedGcM .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-supccedGcM .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-stVD5X5m7o {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333333;
}
.cid-stVD5X5m7o .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #efefef;
  opacity: .5;
}
.cid-stVD5X5m7o .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-stVD5X5m7o .links-block ul li {
  margin: 0 1rem;
}
.cid-stVD5X5m7o .icons-block ul li {
  margin: 0 .5rem;
}
.cid-stVD5X5m7o .links-block ul,
.cid-stVD5X5m7o .icons-block ul {
  margin-bottom: 1.5rem;
}
