body {
  font-family: Jost;
    text-align: justify;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Roboto Serif', serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Roboto Serif', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Roboto Serif', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #e43f3f !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a61717 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #e43f3f !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFF0SGinka {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/doni-7.jpg");
}
.cid-sFF0SGinka .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sFF0SGinka .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sFF0SGinka .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sFF0SGinka .mbr-section-title {
  color: #ffffff;
}
.cid-sFF0SGinka .mbr-text,
.cid-sFF0SGinka .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sFF0SGinka .mbr-section-title DIV {
  text-align: center;
}
.cid-tH3SSipEso {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFF3kfZheU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/germn-a-caballo-2000x1397.jpg");
}
.cid-sFF3kfZheU .item {
  padding-bottom: 2rem;
}
.cid-sFF3kfZheU .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-sFF3kfZheU .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sFF3kfZheU .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sFF3kfZheU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sFF3kfZheU .carousel-control,
.cid-sFF3kfZheU .close {
  background: #1b1b1b;
}
.cid-sFF3kfZheU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sFF3kfZheU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sFF3kfZheU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sFF3kfZheU .carousel-control-next span {
  margin-left: 5px;
}
.cid-sFF3kfZheU .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sFF3kfZheU .close::before {
  content: '\e91a';
}
.cid-sFF3kfZheU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sFF3kfZheU .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sFF3kfZheU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFF3kfZheU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sFF3kfZheU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sFF3kfZheU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sFF3kfZheU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sFF3kfZheU .carousel-indicators li.active,
.cid-sFF3kfZheU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sFF3kfZheU .carousel-indicators li::after,
.cid-sFF3kfZheU .carousel-indicators li::before {
  content: none;
}
.cid-sFF3kfZheU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sFF3kfZheU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sFF3kfZheU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sFF3kfZheU .carousel-indicators {
    display: none;
  }
}
.cid-sFF3kfZheU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sFF3kfZheU .carousel-inner > .active {
  display: block;
}
.cid-sFF3kfZheU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFF3kfZheU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sFF3kfZheU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sFF3kfZheU .carousel-control,
  .cid-sFF3kfZheU .carousel-indicators,
  .cid-sFF3kfZheU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sFF3kfZheU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sFF3kfZheU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sFF3kfZheU .carousel-indicators .active,
.cid-sFF3kfZheU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sFF3kfZheU .carousel-indicators .active {
  background: #fff;
}
.cid-sFF3kfZheU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sFF3kfZheU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sFF3kfZheU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sFF3kfZheU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sFF3kfZheU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sFF3kfZheU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sFF3kfZheU .carousel {
  width: 100%;
}
.cid-sFF3kfZheU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sFF3kfZheU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sFF3kfZheU .modal.fade .modal-dialog,
.cid-sFF3kfZheU .modal.in .modal-dialog {
  transform: none;
}
.cid-sFF3kfZheU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sFF3kfZheU H6 {
  text-align: center;
  color: #ffffff;
}
.cid-sFF3kfZheU H4 {
  color: #8e8d8a;
}
.cid-sFF3kfZheU H3 {
  color: #e85a4f;
}
.cid-tKn7T9GQAP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/germn-a-caballo-2000x1397.jpg");
}
.cid-tKn7T9GQAP .item {
  padding-bottom: 2rem;
}
.cid-tKn7T9GQAP .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tKn7T9GQAP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tKn7T9GQAP .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tKn7T9GQAP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tKn7T9GQAP .carousel-control,
.cid-tKn7T9GQAP .close {
  background: #1b1b1b;
}
.cid-tKn7T9GQAP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tKn7T9GQAP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tKn7T9GQAP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tKn7T9GQAP .carousel-control-next span {
  margin-left: 5px;
}
.cid-tKn7T9GQAP .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tKn7T9GQAP .close::before {
  content: '\e91a';
}
.cid-tKn7T9GQAP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tKn7T9GQAP .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tKn7T9GQAP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tKn7T9GQAP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tKn7T9GQAP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tKn7T9GQAP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tKn7T9GQAP .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tKn7T9GQAP .carousel-indicators li.active,
.cid-tKn7T9GQAP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tKn7T9GQAP .carousel-indicators li::after,
.cid-tKn7T9GQAP .carousel-indicators li::before {
  content: none;
}
.cid-tKn7T9GQAP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tKn7T9GQAP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tKn7T9GQAP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tKn7T9GQAP .carousel-indicators {
    display: none;
  }
}
.cid-tKn7T9GQAP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tKn7T9GQAP .carousel-inner > .active {
  display: block;
}
.cid-tKn7T9GQAP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tKn7T9GQAP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tKn7T9GQAP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tKn7T9GQAP .carousel-control,
  .cid-tKn7T9GQAP .carousel-indicators,
  .cid-tKn7T9GQAP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tKn7T9GQAP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tKn7T9GQAP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tKn7T9GQAP .carousel-indicators .active,
.cid-tKn7T9GQAP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tKn7T9GQAP .carousel-indicators .active {
  background: #fff;
}
.cid-tKn7T9GQAP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tKn7T9GQAP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tKn7T9GQAP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tKn7T9GQAP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tKn7T9GQAP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tKn7T9GQAP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tKn7T9GQAP .carousel {
  width: 100%;
}
.cid-tKn7T9GQAP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tKn7T9GQAP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tKn7T9GQAP .modal.fade .modal-dialog,
.cid-tKn7T9GQAP .modal.in .modal-dialog {
  transform: none;
}
.cid-tKn7T9GQAP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tKn7T9GQAP H6 {
  text-align: center;
  color: #ffffff;
}
.cid-tKn7T9GQAP H4 {
  color: #8e8d8a;
}
.cid-tKn7T9GQAP H3 {
  color: #e85a4f;
}
.cid-tHCoFGVbcU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tHCoFGVbcU .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tHCoFGVbcU form .mbr-section-btn {
  text-align: center;
  margin-bottom: 1.2rem;
}
.cid-tHCoFGVbcU form .mbr-section-btn .btn {
  width: 100%;
  height: 100%;
}
.cid-tHCoFGVbcU .mbr-section-title {
  text-align: center;
}
.cid-tHCouTmiXJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tHCouTmiXJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHCouTmiXJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHCouTmiXJ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tHCouTmiXJ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tHCouTmiXJ .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tHCouTmiXJ .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tHCouTmiXJ .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tHCouTmiXJ .bg-instagram:hover {
  background: #bd005c;
}
.cid-tHCouTmiXJ .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tHCouTmiXJ [class^="socicon-"]:before,
.cid-tHCouTmiXJ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tHCouTmiXJ .mbr-section-title,
.cid-tHCouTmiXJ .social-list {
  text-align: center;
}
.cid-sFF3CYc3p7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHCuslWXrL {
  display: flex;
  background-image: url("../../../assets/images/albumhelenasomolinos-germansomolinos-4aos-2000x1316.jpg");
}
.cid-tHCuslWXrL .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tHCuslWXrL .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tHCuslWXrL {
    align-items: center;
  }
  .cid-tHCuslWXrL .row {
    justify-content: flex-start;
  }
  .cid-tHCuslWXrL .content-wrap {
    width: 37%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tHCuslWXrL .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tHCuslWXrL {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tHCuslWXrL .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tHCuslWXrL .content-wrap {
    width: 100%;
  }
}
.cid-tHHYe4Lykb {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHHZR58MxO {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tHHZR58MxO .carousel {
    min-height: 600px;
  }
  .cid-tHHZR58MxO .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tHHZR58MxO .carousel {
    min-height: 390px;
  }
  .cid-tHHZR58MxO .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tHHZR58MxO .carousel {
    min-height: 330px;
  }
  .cid-tHHZR58MxO .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-tHHZR58MxO .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tHHZR58MxO .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tHHZR58MxO .carousel,
.cid-tHHZR58MxO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tHHZR58MxO .item-wrapper {
  width: 100%;
}
.cid-tHHZR58MxO .carousel-caption {
  bottom: 40px;
}
.cid-tHHZR58MxO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tHHZR58MxO .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tHHZR58MxO .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tHHZR58MxO .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tHHZR58MxO .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tHHZR58MxO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHHZR58MxO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tHHZR58MxO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tHHZR58MxO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tHHZR58MxO .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tHHZR58MxO .carousel-indicators li.active,
.cid-tHHZR58MxO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tHHZR58MxO .carousel-indicators li::after,
.cid-tHHZR58MxO .carousel-indicators li::before {
  content: none;
}
.cid-tHHZR58MxO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tHHZR58MxO .carousel-indicators {
    display: none !important;
  }
}
.cid-tHI5WpNJ8L {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tHI5WpNJ8L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHI5WpNJ8L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHI68UVekF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHI68UVekF .mbr-text {
  text-align: left;
}
.cid-tHIoVOTSFO {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tHIoVOTSFO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHIoVOTSFO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tHIoVOTSFO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tHIoVOTSFO .row {
  flex-direction: row-reverse;
}
.cid-tHIoVOTSFO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tHIoVOTSFO .text-wrapper {
    padding: 2rem;
  }
}
.cid-tHI9VrdrFW {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tHI9VrdrFW .carousel {
    min-height: 700px;
  }
  .cid-tHI9VrdrFW .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tHI9VrdrFW .carousel {
    min-height: 455px;
  }
  .cid-tHI9VrdrFW .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tHI9VrdrFW .carousel {
    min-height: 385px;
  }
  .cid-tHI9VrdrFW .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-tHI9VrdrFW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tHI9VrdrFW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tHI9VrdrFW .carousel,
.cid-tHI9VrdrFW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tHI9VrdrFW .item-wrapper {
  width: 100%;
}
.cid-tHI9VrdrFW .carousel-caption {
  bottom: 40px;
}
.cid-tHI9VrdrFW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tHI9VrdrFW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tHI9VrdrFW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tHI9VrdrFW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tHI9VrdrFW .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tHI9VrdrFW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHI9VrdrFW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tHI9VrdrFW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tHI9VrdrFW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tHI9VrdrFW .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tHI9VrdrFW .carousel-indicators li.active,
.cid-tHI9VrdrFW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tHI9VrdrFW .carousel-indicators li::after,
.cid-tHI9VrdrFW .carousel-indicators li::before {
  content: none;
}
.cid-tHI9VrdrFW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tHI9VrdrFW .carousel-indicators {
    display: none !important;
  }
}
.cid-tHI9VrdrFW P {
  color: #bbbbbb;
}
.cid-tHIJ0040XZ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tHIJ0040XZ img,
.cid-tHIJ0040XZ .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tHIJ0040XZ .item:focus,
.cid-tHIJ0040XZ span:focus {
  outline: none;
}
.cid-tHIJ0040XZ .item-wrapper {
  position: relative;
}
.cid-tHIJ0040XZ .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHIJ0040XZ .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHIJ0040XZ .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tHIJ0040XZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHIJ0040XZ .mbr-section-title {
  color: #232323;
}
.cid-tHIJ0040XZ .mbr-text,
.cid-tHIJ0040XZ .mbr-section-btn {
  text-align: left;
}
.cid-tHIJ0040XZ .item-title {
  text-align: left;
}
.cid-tHIJ0040XZ .item-subtitle {
  text-align: left;
}
.cid-tHIJ0040XZ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tHIJ0040XZ .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tHIJ0040XZ .embla__button--next,
.cid-tHIJ0040XZ .embla__button--prev {
  display: flex;
}
.cid-tHIJ0040XZ .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tHIJ0040XZ .embla__button {
    display: none;
  }
}
.cid-tHIJ0040XZ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tHIJ0040XZ .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tHIJ0040XZ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHIJ0040XZ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tHIJ0040XZ .embla__button {
    top: auto;
  }
}
.cid-tHIJ0040XZ .embla {
  position: relative;
  width: 100%;
}
.cid-tHIJ0040XZ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tHIJ0040XZ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tHIJ0040XZ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tHIJ0040XZ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tHNPKTbMa0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHNPKTbMa0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHNPKTbMa0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHNQ8LIcdi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHNR0QLT5K {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tHNR0QLT5K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHNR0QLT5K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tHNR0QLT5K .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tHNR0QLT5K img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tHNR0QLT5K .text-wrapper {
    padding: 2rem;
  }
}
.cid-tHNS9koH9l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tHNS9koH9l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHNS9koH9l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHNS9koH9l .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tHNS9koH9l .team-card:hover {
  transform: translateY(-10px);
}
.cid-tHNS9koH9l .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tHNS9koH9l .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tHNS9koH9l .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tHNS9koH9l .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tHNS9koH9l .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tHNS9koH9l .social-row {
  text-align: center;
}
.cid-tHNS9koH9l .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tHNS9koH9l .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tHNS9koH9l .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tHNS9koH9l .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tHNXvVuj9h {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHNXvVuj9h .mbr-section-subtitle {
  text-align: center;
}
.cid-tHO6TzRPHH {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tHO6TzRPHH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHO6TzRPHH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tHO6TzRPHH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tHO6TzRPHH .row {
  flex-direction: row-reverse;
}
.cid-tHO6TzRPHH img {
  width: 100%;
}
.cid-tHO6L35A8V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHNZzrGRH7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tHNZzrGRH7 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tHNZfZt9nN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHO0iYoONE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHO0iYoONE .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tHOcYGoWBm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tHOcYGoWBm .carousel {
    min-height: 800px;
  }
  .cid-tHOcYGoWBm .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tHOcYGoWBm .carousel {
    min-height: 520px;
  }
  .cid-tHOcYGoWBm .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tHOcYGoWBm .carousel {
    min-height: 440px;
  }
  .cid-tHOcYGoWBm .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tHOcYGoWBm .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tHOcYGoWBm .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tHOcYGoWBm .carousel,
.cid-tHOcYGoWBm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tHOcYGoWBm .item-wrapper {
  width: 100%;
}
.cid-tHOcYGoWBm .carousel-caption {
  bottom: 40px;
}
.cid-tHOcYGoWBm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tHOcYGoWBm .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tHOcYGoWBm .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tHOcYGoWBm .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tHOcYGoWBm .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tHOcYGoWBm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHOcYGoWBm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tHOcYGoWBm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tHOcYGoWBm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tHOcYGoWBm .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tHOcYGoWBm .carousel-indicators li.active,
.cid-tHOcYGoWBm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tHOcYGoWBm .carousel-indicators li::after,
.cid-tHOcYGoWBm .carousel-indicators li::before {
  content: none;
}
.cid-tHOcYGoWBm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tHOcYGoWBm .carousel-indicators {
    display: none !important;
  }
}
.cid-tHO0KcrIsH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tHO1ceakZb {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tHO1ceakZb blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tHNXWgLlEa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHNXWgLlEa .mbr-section-subtitle {
  text-align: center;
}
.cid-tHOl1psBLN {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tHOl1psBLN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHOl1psBLN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tHOl1psBLN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tHOl1psBLN .row {
  flex-direction: row-reverse;
}
.cid-tHOl1psBLN img {
  width: 100%;
}
.cid-tHOlrW0UJT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHOuIGFzBo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tHOuIGFzBo img,
.cid-tHOuIGFzBo .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tHOuIGFzBo .item:focus,
.cid-tHOuIGFzBo span:focus {
  outline: none;
}
.cid-tHOuIGFzBo .item-wrapper {
  position: relative;
}
.cid-tHOuIGFzBo .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHOuIGFzBo .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHOuIGFzBo .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tHOuIGFzBo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHOuIGFzBo .mbr-section-title {
  color: #232323;
}
.cid-tHOuIGFzBo .mbr-text,
.cid-tHOuIGFzBo .mbr-section-btn {
  text-align: left;
}
.cid-tHOuIGFzBo .item-title {
  text-align: left;
}
.cid-tHOuIGFzBo .item-subtitle {
  text-align: left;
}
.cid-tHOuIGFzBo .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tHOuIGFzBo .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tHOuIGFzBo .embla__button--next,
.cid-tHOuIGFzBo .embla__button--prev {
  display: flex;
}
.cid-tHOuIGFzBo .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tHOuIGFzBo .embla__button {
    display: none;
  }
}
.cid-tHOuIGFzBo .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tHOuIGFzBo .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tHOuIGFzBo .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHOuIGFzBo .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tHOuIGFzBo .embla__button {
    top: auto;
  }
}
.cid-tHOuIGFzBo .embla {
  position: relative;
  width: 100%;
}
.cid-tHOuIGFzBo .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tHOuIGFzBo .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tHOuIGFzBo .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tHOuIGFzBo .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tHOphmHmfC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHOzYMhjU5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHOzYMhjU5 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tHOzQxNtYh {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tHOADGdMpJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tHOADGdMpJ .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tHOAV0LwSr {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tHOAV0LwSr img,
.cid-tHOAV0LwSr .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tHOAV0LwSr .item:focus,
.cid-tHOAV0LwSr span:focus {
  outline: none;
}
.cid-tHOAV0LwSr .item-wrapper {
  position: relative;
}
.cid-tHOAV0LwSr .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHOAV0LwSr .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHOAV0LwSr .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tHOAV0LwSr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHOAV0LwSr .mbr-section-title {
  color: #232323;
}
.cid-tHOAV0LwSr .mbr-text,
.cid-tHOAV0LwSr .mbr-section-btn {
  text-align: left;
}
.cid-tHOAV0LwSr .item-title {
  text-align: left;
}
.cid-tHOAV0LwSr .item-subtitle {
  text-align: left;
}
.cid-tHOAV0LwSr .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tHOAV0LwSr .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tHOAV0LwSr .embla__button--next,
.cid-tHOAV0LwSr .embla__button--prev {
  display: flex;
}
.cid-tHOAV0LwSr .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tHOAV0LwSr .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tHOAV0LwSr .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tHOAV0LwSr .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHOAV0LwSr .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tHOAV0LwSr .embla__button {
    top: auto;
  }
}
.cid-tHOAV0LwSr .embla {
  position: relative;
  width: 100%;
}
.cid-tHOAV0LwSr .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tHOAV0LwSr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tHOAV0LwSr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tHOAV0LwSr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tHNYn3MM1X {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tHNYn3MM1X .mbr-section-subtitle {
  text-align: center;
}
.cid-tIhlmhhrnS {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tIhlmhhrnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhlmhhrnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhlmhhrnS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhlmhhrnS .row {
  flex-direction: row-reverse;
}
.cid-tIhlmhhrnS img {
  width: 100%;
}
.cid-tIhm1FInCS {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIhfkSU7Dj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhfkSU7Dj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhfkSU7Dj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhfkSU7Dj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhfkSU7Dj .row {
  flex-direction: row-reverse;
}
.cid-tIhfkSU7Dj img {
  width: 100%;
}
.cid-tIhfMLC28N {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tIhfMLC28N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhfMLC28N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhfMLC28N .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhfMLC28N .row {
  flex-direction: row-reverse;
}
.cid-tIhfMLC28N img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tIhfMLC28N .text-wrapper {
    padding: 2rem;
  }
}
.cid-tIhi5sN91w {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIhi5sN91w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhi5sN91w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhi5sN91w .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhi5sN91w .row {
  flex-direction: row-reverse;
}
.cid-tIhi5sN91w img {
  width: 100%;
}
.cid-tIhk8k2G3m {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIhcbhoMFg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-tIhcbhoMFg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhcbhoMFg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIhcbhoMFg .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tIhcbhoMFg .team-card:hover {
  transform: translateY(-10px);
}
.cid-tIhcbhoMFg .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tIhcbhoMFg .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tIhcbhoMFg .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tIhcbhoMFg .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tIhcbhoMFg .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tIhcbhoMFg .social-row {
  text-align: center;
}
.cid-tIhcbhoMFg .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tIhcbhoMFg .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-tIhcbhoMFg .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tIhcbhoMFg .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tIhcbhoMFg .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tIhcbhoMFg .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tIhcbhoMFg .embla__button--next,
.cid-tIhcbhoMFg .embla__button--prev {
  display: flex;
}
.cid-tIhcbhoMFg .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tIhcbhoMFg .embla__button {
    display: none;
  }
}
.cid-tIhcbhoMFg .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tIhcbhoMFg .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tIhcbhoMFg .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIhcbhoMFg .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIhcbhoMFg .embla__button {
    top: auto;
  }
}
.cid-tIhcbhoMFg .embla {
  position: relative;
  width: 100%;
}
.cid-tIhcbhoMFg .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tIhcbhoMFg .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tIhcbhoMFg .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tIhcbhoMFg .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tIhmmvzaXl {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIhmvVnMjw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhmvVnMjw .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIhmZZI2Au {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIhmZZI2Au .carousel {
    min-height: 800px;
  }
  .cid-tIhmZZI2Au .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIhmZZI2Au .carousel {
    min-height: 520px;
  }
  .cid-tIhmZZI2Au .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tIhmZZI2Au .carousel {
    min-height: 440px;
  }
  .cid-tIhmZZI2Au .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tIhmZZI2Au .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tIhmZZI2Au .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tIhmZZI2Au .carousel,
.cid-tIhmZZI2Au .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tIhmZZI2Au .item-wrapper {
  width: 100%;
}
.cid-tIhmZZI2Au .carousel-caption {
  bottom: 40px;
}
.cid-tIhmZZI2Au .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tIhmZZI2Au .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tIhmZZI2Au .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tIhmZZI2Au .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tIhmZZI2Au .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tIhmZZI2Au .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIhmZZI2Au .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIhmZZI2Au .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIhmZZI2Au .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tIhmZZI2Au .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tIhmZZI2Au .carousel-indicators li.active,
.cid-tIhmZZI2Au .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIhmZZI2Au .carousel-indicators li::after,
.cid-tIhmZZI2Au .carousel-indicators li::before {
  content: none;
}
.cid-tIhmZZI2Au .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tIhmZZI2Au .carousel-indicators {
    display: none !important;
  }
}
.cid-tIhnqRQbs8 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tIhnqRQbs8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhnqRQbs8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhnqRQbs8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhnqRQbs8 .row {
  flex-direction: row-reverse;
}
.cid-tIhnqRQbs8 img {
  width: 100%;
}
.cid-tHNTBzxHSo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tIhsevO2ez {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tIhsevO2ez nav.navbar {
  position: fixed;
}
.cid-tIhsevO2ez .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIhsevO2ez .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIhsevO2ez .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIhsevO2ez .dropdown-item:hover,
.cid-tIhsevO2ez .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tIhsevO2ez .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIhsevO2ez .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIhsevO2ez .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIhsevO2ez .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIhsevO2ez .nav-link {
  position: relative;
}
.cid-tIhsevO2ez .container {
  display: flex;
  margin: auto;
}
.cid-tIhsevO2ez .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIhsevO2ez .dropdown-menu,
.cid-tIhsevO2ez .navbar.opened {
  background: #ffffff !important;
}
.cid-tIhsevO2ez .nav-item:focus,
.cid-tIhsevO2ez .nav-link:focus {
  outline: none;
}
.cid-tIhsevO2ez .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIhsevO2ez .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIhsevO2ez .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIhsevO2ez .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIhsevO2ez .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIhsevO2ez .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIhsevO2ez .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tIhsevO2ez .navbar.opened {
  transition: all 0.3s;
}
.cid-tIhsevO2ez .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIhsevO2ez .navbar .navbar-logo img {
  width: auto;
}
.cid-tIhsevO2ez .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIhsevO2ez .navbar.collapsed {
  justify-content: center;
}
.cid-tIhsevO2ez .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIhsevO2ez .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tIhsevO2ez .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIhsevO2ez .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIhsevO2ez .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIhsevO2ez .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIhsevO2ez .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIhsevO2ez .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIhsevO2ez .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIhsevO2ez .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIhsevO2ez .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIhsevO2ez .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIhsevO2ez .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIhsevO2ez .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIhsevO2ez .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIhsevO2ez .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIhsevO2ez .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIhsevO2ez .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIhsevO2ez .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tIhsevO2ez .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIhsevO2ez .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIhsevO2ez .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIhsevO2ez .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIhsevO2ez .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIhsevO2ez .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIhsevO2ez .dropdown-item.active,
.cid-tIhsevO2ez .dropdown-item:active {
  background-color: transparent;
}
.cid-tIhsevO2ez .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIhsevO2ez .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIhsevO2ez .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIhsevO2ez .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tIhsevO2ez .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIhsevO2ez .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIhsevO2ez ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIhsevO2ez .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIhsevO2ez button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIhsevO2ez button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tIhsevO2ez button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIhsevO2ez button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIhsevO2ez button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIhsevO2ez button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIhsevO2ez nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIhsevO2ez nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIhsevO2ez nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIhsevO2ez nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIhsevO2ez .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIhsevO2ez a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIhsevO2ez .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIhsevO2ez .navbar {
    height: 70px;
  }
  .cid-tIhsevO2ez .navbar.opened {
    height: auto;
  }
  .cid-tIhsevO2ez .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIhsey61ro {
  display: flex;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/misiones-principal-2000x1524.jpeg");
}

.cid-tIhsey61roS0 {
  display: flex;
  padding-top: 735px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/ATN_AGS_A06_137_r.jpg");

}

.cid-tIhsey61roACT {
  display: flex;
  padding-top: 735px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/doni_3.jpg");

}



.cid-tIhsey61ro .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tIhsey61ro .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tIhsey61ro {
    align-items: center;
  }
  .cid-tIhsey61ro .row {
    justify-content: flex-start;
  }
  .cid-tIhsey61ro .content-wrap {
    width: 36%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIhsey61ro .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tIhsey61ro {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tIhsey61ro .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tIhsey61ro .content-wrap {
    width: 100%;
  }
}
.cid-tIhsezyo0t {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKlG1eNvjb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tKlG1eNvjb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKlG1eNvjb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tKlG1eNvjb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tKlG1eNvjb .row {
  flex-direction: row-reverse;
}
.cid-tKlG1eNvjb img {
  width: 100%;
}
.cid-tIhyk7AAq0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhyCrbhlu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhyCrbhlu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhyCrbhlu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhyCrbhlu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhyCrbhlu .row {
  flex-direction: row-reverse;
}
.cid-tIhyCrbhlu img {
  width: 100%;
}
.cid-tJ8e2txucL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJ8e2txucL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ8e2txucL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tJ8e2txucL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tJ8e2txucL .row {
  flex-direction: row-reverse;
}
.cid-tJ8e2txucL img {
  width: 100%;
}
.cid-tIhzpGRRbi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhzY9Jpfp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tIhzY9Jpfp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhzY9Jpfp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIhzY9Jpfp .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tIhzY9Jpfp .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tIhzY9Jpfp .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-tIhzEtmlm1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhzEtmlm1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhzEtmlm1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhzEtmlm1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhzEtmlm1 .row {
  flex-direction: row-reverse;
}
.cid-tIhzEtmlm1 img {
  width: 100%;
}
.cid-tIhseD4oNM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhseD4oNM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhseD4oNM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIhseDLVgS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhseDLVgS .mbr-text {
  text-align: left;
}
.cid-tIhFU44iYZ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIhFU44iYZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhFU44iYZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhFU44iYZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhFU44iYZ .row {
  flex-direction: row-reverse;
}
.cid-tIhFU44iYZ img {
  width: 100%;
}
.cid-tIhseEj0NC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tIhseEj0NC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhseEj0NC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhseEj0NC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhseEj0NC .row {
  flex-direction: row-reverse;
}
.cid-tIhseEj0NC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tIhseEj0NC .text-wrapper {
    padding: 2rem;
  }
}
.cid-tInfobVIew {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tInfobVIew .mbr-fallback-image.disabled {
  display: none;
}
.cid-tInfobVIew .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tInfobVIew .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tInfobVIew .img-item {
  position: relative;
}
.cid-tInfobVIew .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tInfobVIew .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tInfobVIew .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tInfobVIew .text2 {
  color: #ffffff;
}
.cid-tImRsb5XHh {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIhKRoVcsf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhKRoVcsf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhKRoVcsf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhKRoVcsf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhKRoVcsf .row {
  flex-direction: row-reverse;
}
.cid-tIhKRoVcsf img {
  width: 100%;
}
.cid-tIhLukpr3N {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhLukpr3N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhLukpr3N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhLukpr3N .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhLukpr3N .row {
  flex-direction: row-reverse;
}
.cid-tIhLukpr3N img {
  width: 100%;
}
.cid-tImRHvgkhH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhseFdbnY {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIhseFdbnY .carousel {
    min-height: 700px;
  }
  .cid-tIhseFdbnY .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIhseFdbnY .carousel {
    min-height: 455px;
  }
  .cid-tIhseFdbnY .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tIhseFdbnY .carousel {
    min-height: 385px;
  }
  .cid-tIhseFdbnY .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-tIhseFdbnY .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tIhseFdbnY .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tIhseFdbnY .carousel,
.cid-tIhseFdbnY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tIhseFdbnY .item-wrapper {
  width: 100%;
}
.cid-tIhseFdbnY .carousel-caption {
  bottom: 40px;
}
.cid-tIhseFdbnY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tIhseFdbnY .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tIhseFdbnY .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tIhseFdbnY .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tIhseFdbnY .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tIhseFdbnY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIhseFdbnY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIhseFdbnY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIhseFdbnY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tIhseFdbnY .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tIhseFdbnY .carousel-indicators li.active,
.cid-tIhseFdbnY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIhseFdbnY .carousel-indicators li::after,
.cid-tIhseFdbnY .carousel-indicators li::before {
  content: none;
}
.cid-tIhseFdbnY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tIhseFdbnY .carousel-indicators {
    display: none !important;
  }
}
.cid-tIhseFdbnY P {
  color: #bbbbbb;
}
.cid-tIhseJg7BN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhseJg7BN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhseJg7BN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIhNHN74z3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIhNHN74z3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhNHN74z3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhNHN74z3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhNHN74z3 .row {
  flex-direction: row-reverse;
}
.cid-tIhNHN74z3 img {
  width: 100%;
}
.cid-tIhNHN74z3 .mbr-description {
  text-align: center;
}
.cid-tIhseK8k6l {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tIhOb6buJ2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tIhOb6buJ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIhOb6buJ2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIhOb6buJ2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIhOb6buJ2 .row {
  flex-direction: row-reverse;
}
.cid-tIhOb6buJ2 img {
  width: 100%;
}
.cid-tIn0QDxUY9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIn0QDxUY9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIn0QDxUY9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIn0QDxUY9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIn0QDxUY9 .row {
  flex-direction: row-reverse;
}
.cid-tIn0QDxUY9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tIn0QDxUY9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tIn8FYbSNC {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIn8FYbSNC .carousel {
    min-height: 800px;
  }
  .cid-tIn8FYbSNC .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIn8FYbSNC .carousel {
    min-height: 520px;
  }
  .cid-tIn8FYbSNC .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tIn8FYbSNC .carousel {
    min-height: 440px;
  }
  .cid-tIn8FYbSNC .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tIn8FYbSNC .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tIn8FYbSNC .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tIn8FYbSNC .carousel,
.cid-tIn8FYbSNC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tIn8FYbSNC .item-wrapper {
  width: 100%;
}
.cid-tIn8FYbSNC .carousel-caption {
  bottom: 40px;
}
.cid-tIn8FYbSNC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tIn8FYbSNC .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tIn8FYbSNC .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tIn8FYbSNC .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tIn8FYbSNC .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tIn8FYbSNC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIn8FYbSNC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIn8FYbSNC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIn8FYbSNC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tIn8FYbSNC .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tIn8FYbSNC .carousel-indicators li.active,
.cid-tIn8FYbSNC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIn8FYbSNC .carousel-indicators li::after,
.cid-tIn8FYbSNC .carousel-indicators li::before {
  content: none;
}
.cid-tIn8FYbSNC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tIn8FYbSNC .carousel-indicators {
    display: none !important;
  }
}
.cid-tIne0MGbeJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIne0MGbeJ .carousel {
    min-height: 800px;
  }
  .cid-tIne0MGbeJ .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIne0MGbeJ .carousel {
    min-height: 520px;
  }
  .cid-tIne0MGbeJ .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tIne0MGbeJ .carousel {
    min-height: 440px;
  }
  .cid-tIne0MGbeJ .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tIne0MGbeJ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tIne0MGbeJ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tIne0MGbeJ .carousel,
.cid-tIne0MGbeJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tIne0MGbeJ .item-wrapper {
  width: 100%;
}
.cid-tIne0MGbeJ .carousel-caption {
  bottom: 40px;
}
.cid-tIne0MGbeJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tIne0MGbeJ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tIne0MGbeJ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tIne0MGbeJ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tIne0MGbeJ .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tIne0MGbeJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIne0MGbeJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIne0MGbeJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIne0MGbeJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tIne0MGbeJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tIne0MGbeJ .carousel-indicators li.active,
.cid-tIne0MGbeJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIne0MGbeJ .carousel-indicators li::after,
.cid-tIne0MGbeJ .carousel-indicators li::before {
  content: none;
}
.cid-tIne0MGbeJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tIne0MGbeJ .carousel-indicators {
    display: none !important;
  }
}
.cid-tIsXADTcj1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIsXADTcj1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIsXADTcj1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIsXADTcj1 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tIsXADTcj1 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tIsXADTcj1 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-tImZWPkKU7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIncUcjSXv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIncUcjSXv blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tIhseGEcht {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIhseGEcht img,
.cid-tIhseGEcht .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tIhseGEcht .item:focus,
.cid-tIhseGEcht span:focus {
  outline: none;
}
.cid-tIhseGEcht .item-wrapper {
  position: relative;
}
.cid-tIhseGEcht .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tIhseGEcht .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tIhseGEcht .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tIhseGEcht .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tIhseGEcht .mbr-section-title {
  color: #232323;
}
.cid-tIhseGEcht .mbr-text,
.cid-tIhseGEcht .mbr-section-btn {
  text-align: left;
}
.cid-tIhseGEcht .item-title {
  text-align: left;
}
.cid-tIhseGEcht .item-subtitle {
  text-align: left;
}
.cid-tIhseGEcht .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tIhseGEcht .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tIhseGEcht .embla__button--next,
.cid-tIhseGEcht .embla__button--prev {
  display: flex;
}
.cid-tIhseGEcht .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tIhseGEcht .embla__button {
    display: none;
  }
}
.cid-tIhseGEcht .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tIhseGEcht .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tIhseGEcht .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIhseGEcht .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIhseGEcht .embla__button {
    top: auto;
  }
}
.cid-tIhseGEcht .embla {
  position: relative;
  width: 100%;
}
.cid-tIhseGEcht .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tIhseGEcht .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tIhseGEcht .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tIhseGEcht .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tIhsfkim1H {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tIt0Law2Ua {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tIt0Law2Ua nav.navbar {
  position: fixed;
}
.cid-tIt0Law2Ua .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIt0Law2Ua .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIt0Law2Ua .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIt0Law2Ua .dropdown-item:hover,
.cid-tIt0Law2Ua .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tIt0Law2Ua .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIt0Law2Ua .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIt0Law2Ua .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIt0Law2Ua .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIt0Law2Ua .nav-link {
  position: relative;
}
.cid-tIt0Law2Ua .container {
  display: flex;
  margin: auto;
}
.cid-tIt0Law2Ua .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIt0Law2Ua .dropdown-menu,
.cid-tIt0Law2Ua .navbar.opened {
  background: #ffffff !important;
}
.cid-tIt0Law2Ua .nav-item:focus,
.cid-tIt0Law2Ua .nav-link:focus {
  outline: none;
}
.cid-tIt0Law2Ua .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIt0Law2Ua .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIt0Law2Ua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIt0Law2Ua .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIt0Law2Ua .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIt0Law2Ua .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIt0Law2Ua .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tIt0Law2Ua .navbar.opened {
  transition: all 0.3s;
}
.cid-tIt0Law2Ua .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIt0Law2Ua .navbar .navbar-logo img {
  width: auto;
}
.cid-tIt0Law2Ua .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIt0Law2Ua .navbar.collapsed {
  justify-content: center;
}
.cid-tIt0Law2Ua .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIt0Law2Ua .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tIt0Law2Ua .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIt0Law2Ua .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIt0Law2Ua .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIt0Law2Ua .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIt0Law2Ua .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIt0Law2Ua .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIt0Law2Ua .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIt0Law2Ua .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIt0Law2Ua .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIt0Law2Ua .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIt0Law2Ua .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIt0Law2Ua .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIt0Law2Ua .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIt0Law2Ua .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIt0Law2Ua .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIt0Law2Ua .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIt0Law2Ua .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tIt0Law2Ua .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIt0Law2Ua .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIt0Law2Ua .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIt0Law2Ua .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIt0Law2Ua .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIt0Law2Ua .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIt0Law2Ua .dropdown-item.active,
.cid-tIt0Law2Ua .dropdown-item:active {
  background-color: transparent;
}
.cid-tIt0Law2Ua .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIt0Law2Ua .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIt0Law2Ua .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIt0Law2Ua .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tIt0Law2Ua .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIt0Law2Ua .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIt0Law2Ua ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIt0Law2Ua .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIt0Law2Ua button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIt0Law2Ua button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tIt0Law2Ua button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIt0Law2Ua button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIt0Law2Ua button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIt0Law2Ua button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIt0Law2Ua nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIt0Law2Ua nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIt0Law2Ua nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIt0Law2Ua nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIt0Law2Ua .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIt0Law2Ua a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIt0Law2Ua .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIt0Law2Ua .navbar {
    height: 70px;
  }
  .cid-tIt0Law2Ua .navbar.opened {
    height: auto;
  }
  .cid-tIt0Law2Ua .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIt0LbHW49 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/orla-somolinos-2000x1331.jpg");
}
.cid-tIt0LbHW49 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tIt0LbHW49 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tIt0LbHW49 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tIt0LbHW49 .mbr-section-title {
  color: #ffffff;
}
.cid-tIt0LbHW49 .mbr-text,
.cid-tIt0LbHW49 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tIt0LbHW49 .mbr-section-title DIV {
  text-align: center;
}
.cid-tIt0LcItLk {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIt5zeJZTW {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIt5zeJZTW .carousel {
    min-height: 800px;
  }
  .cid-tIt5zeJZTW .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIt5zeJZTW .carousel {
    min-height: 520px;
  }
  .cid-tIt5zeJZTW .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tIt5zeJZTW .carousel {
    min-height: 440px;
  }
  .cid-tIt5zeJZTW .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tIt5zeJZTW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tIt5zeJZTW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tIt5zeJZTW .carousel,
.cid-tIt5zeJZTW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tIt5zeJZTW .item-wrapper {
  width: 100%;
}
.cid-tIt5zeJZTW .carousel-caption {
  bottom: 40px;
}
.cid-tIt5zeJZTW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tIt5zeJZTW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tIt5zeJZTW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tIt5zeJZTW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tIt5zeJZTW .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tIt5zeJZTW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIt5zeJZTW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIt5zeJZTW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIt5zeJZTW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tIt5zeJZTW .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tIt5zeJZTW .carousel-indicators li.active,
.cid-tIt5zeJZTW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIt5zeJZTW .carousel-indicators li::after,
.cid-tIt5zeJZTW .carousel-indicators li::before {
  content: none;
}
.cid-tIt5zeJZTW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tIt5zeJZTW .carousel-indicators {
    display: none !important;
  }
}
.cid-tIt6pxx6Cf {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIt6pxx6Cf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIt6pxx6Cf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIt9gXYM7T {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tIt9gXYM7T .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIt9gXYM7T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIt9gXYM7T .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIt9gXYM7T img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tIt9gXYM7T .text-wrapper {
    padding: 2rem;
  }
}
.cid-tIt7fhbIOT {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tIt7fhbIOT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIt7fhbIOT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIt7fhbIOT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIt7fhbIOT .row {
  flex-direction: row-reverse;
}
.cid-tIt7fhbIOT img {
  width: 100%;
}
.cid-tIDp6r6i4N {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tIDp6r6i4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIDp6r6i4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIDp6r6i4N .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIDp6r6i4N .row {
  flex-direction: row-reverse;
}
.cid-tIDp6r6i4N img {
  width: 100%;
}
.cid-tItgREcH3a {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tItgREcH3a .carousel {
    min-height: 800px;
  }
  .cid-tItgREcH3a .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tItgREcH3a .carousel {
    min-height: 520px;
  }
  .cid-tItgREcH3a .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tItgREcH3a .carousel {
    min-height: 440px;
  }
  .cid-tItgREcH3a .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tItgREcH3a .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tItgREcH3a .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tItgREcH3a .carousel,
.cid-tItgREcH3a .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tItgREcH3a .item-wrapper {
  width: 100%;
}
.cid-tItgREcH3a .carousel-caption {
  bottom: 40px;
}
.cid-tItgREcH3a .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tItgREcH3a .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tItgREcH3a .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tItgREcH3a .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tItgREcH3a .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tItgREcH3a .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tItgREcH3a .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tItgREcH3a .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tItgREcH3a .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tItgREcH3a .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tItgREcH3a .carousel-indicators li.active,
.cid-tItgREcH3a .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tItgREcH3a .carousel-indicators li::after,
.cid-tItgREcH3a .carousel-indicators li::before {
  content: none;
}
.cid-tItgREcH3a .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tItgREcH3a .carousel-indicators {
    display: none !important;
  }
}
.cid-tItgREcH3a P {
  color: #ffffff;
}
.cid-tIte6qCLi8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tIte6qCLi8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIte6qCLi8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIte6qCLi8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIte6qCLi8 .row {
  flex-direction: row-reverse;
}
.cid-tIte6qCLi8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tIte6qCLi8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tItjTH5Y0N {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tItjTH5Y0N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tItjTH5Y0N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tItjTH5Y0N .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tItjTH5Y0N img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tItjTH5Y0N .text-wrapper {
    padding: 2rem;
  }
}
.cid-tItaPIMQkT {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tItaPIMQkT .carousel {
    min-height: 800px;
  }
  .cid-tItaPIMQkT .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tItaPIMQkT .carousel {
    min-height: 520px;
  }
  .cid-tItaPIMQkT .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tItaPIMQkT .carousel {
    min-height: 440px;
  }
  .cid-tItaPIMQkT .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tItaPIMQkT .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tItaPIMQkT .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tItaPIMQkT .carousel,
.cid-tItaPIMQkT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tItaPIMQkT .item-wrapper {
  width: 100%;
}
.cid-tItaPIMQkT .carousel-caption {
  bottom: 40px;
}
.cid-tItaPIMQkT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tItaPIMQkT .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tItaPIMQkT .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tItaPIMQkT .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tItaPIMQkT .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tItaPIMQkT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tItaPIMQkT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tItaPIMQkT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tItaPIMQkT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tItaPIMQkT .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tItaPIMQkT .carousel-indicators li.active,
.cid-tItaPIMQkT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tItaPIMQkT .carousel-indicators li::after,
.cid-tItaPIMQkT .carousel-indicators li::before {
  content: none;
}
.cid-tItaPIMQkT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tItaPIMQkT .carousel-indicators {
    display: none !important;
  }
}
.cid-tItaPIMQkT P {
  color: #e43f3f;
}
.cid-tIt6GX0tX6 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tIt6GX0tX6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIt6GX0tX6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tItlnIDP58 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tItlnIDP58 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tItlnIDP58 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tItlnIDP58 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tItlnIDP58 .row {
  flex-direction: row-reverse;
}
.cid-tItlnIDP58 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tItlnIDP58 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tIF72LYekX {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIF72LYekX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIF72LYekX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIF72LYekX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIF72LYekX .row {
  flex-direction: row-reverse;
}
.cid-tIF72LYekX img {
  width: 100%;
}
.cid-tIDrjqab27 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tItnBay49T {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tItnBay49T .carousel {
    min-height: 700px;
  }
  .cid-tItnBay49T .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tItnBay49T .carousel {
    min-height: 455px;
  }
  .cid-tItnBay49T .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tItnBay49T .carousel {
    min-height: 385px;
  }
  .cid-tItnBay49T .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-tItnBay49T .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tItnBay49T .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tItnBay49T .carousel,
.cid-tItnBay49T .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tItnBay49T .item-wrapper {
  width: 100%;
}
.cid-tItnBay49T .carousel-caption {
  bottom: 40px;
}
.cid-tItnBay49T .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tItnBay49T .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tItnBay49T .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tItnBay49T .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tItnBay49T .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tItnBay49T .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tItnBay49T .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tItnBay49T .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tItnBay49T .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tItnBay49T .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tItnBay49T .carousel-indicators li.active,
.cid-tItnBay49T .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tItnBay49T .carousel-indicators li::after,
.cid-tItnBay49T .carousel-indicators li::before {
  content: none;
}
.cid-tItnBay49T .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tItnBay49T .carousel-indicators {
    display: none !important;
  }
}
.cid-tItnBay49T P {
  color: #bbbbbb;
}
.cid-tItr4Q0y2L {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tItmp3CR2e {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tItmp3CR2e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tItmp3CR2e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tItmp3CR2e .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tItmp3CR2e .row {
  flex-direction: row-reverse;
}
.cid-tItmp3CR2e img {
  width: 100%;
}
.cid-tItuKQHkAK {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tIDtL0yok3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIDtL0yok3 .carousel {
    min-height: 800px;
  }
  .cid-tIDtL0yok3 .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIDtL0yok3 .carousel {
    min-height: 520px;
  }
  .cid-tIDtL0yok3 .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tIDtL0yok3 .carousel {
    min-height: 440px;
  }
  .cid-tIDtL0yok3 .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tIDtL0yok3 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tIDtL0yok3 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tIDtL0yok3 .carousel,
.cid-tIDtL0yok3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tIDtL0yok3 .item-wrapper {
  width: 100%;
}
.cid-tIDtL0yok3 .carousel-caption {
  bottom: 40px;
}
.cid-tIDtL0yok3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tIDtL0yok3 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tIDtL0yok3 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tIDtL0yok3 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tIDtL0yok3 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tIDtL0yok3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIDtL0yok3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIDtL0yok3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIDtL0yok3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tIDtL0yok3 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tIDtL0yok3 .carousel-indicators li.active,
.cid-tIDtL0yok3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIDtL0yok3 .carousel-indicators li::after,
.cid-tIDtL0yok3 .carousel-indicators li::before {
  content: none;
}
.cid-tIDtL0yok3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tIDtL0yok3 .carousel-indicators {
    display: none !important;
  }
}
.cid-tIDtL0yok3 P {
  color: #e43f3f;
}
.cid-tItlQk8KmG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tItlQk8KmG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tItlQk8KmG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tItlQk8KmG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tItlQk8KmG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tItlQk8KmG .text-wrapper {
    padding: 2rem;
  }
}
.cid-tIDv8FrTgt {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIDv8FrTgt .carousel {
    min-height: 600px;
  }
  .cid-tIDv8FrTgt .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIDv8FrTgt .carousel {
    min-height: 390px;
  }
  .cid-tIDv8FrTgt .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tIDv8FrTgt .carousel {
    min-height: 330px;
  }
  .cid-tIDv8FrTgt .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-tIDv8FrTgt .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tIDv8FrTgt .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tIDv8FrTgt .carousel,
.cid-tIDv8FrTgt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tIDv8FrTgt .item-wrapper {
  width: 100%;
}
.cid-tIDv8FrTgt .carousel-caption {
  bottom: 40px;
}
.cid-tIDv8FrTgt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tIDv8FrTgt .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tIDv8FrTgt .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tIDv8FrTgt .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tIDv8FrTgt .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tIDv8FrTgt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIDv8FrTgt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIDv8FrTgt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIDv8FrTgt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tIDv8FrTgt .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tIDv8FrTgt .carousel-indicators li.active,
.cid-tIDv8FrTgt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIDv8FrTgt .carousel-indicators li::after,
.cid-tIDv8FrTgt .carousel-indicators li::before {
  content: none;
}
.cid-tIDv8FrTgt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tIDv8FrTgt .carousel-indicators {
    display: none !important;
  }
}
.cid-tIts3MUtam {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIDwDHNCh8 {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tIDwDHNCh8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIDwDHNCh8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIDwDHNCh8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIDwDHNCh8 .row {
  flex-direction: row-reverse;
}
.cid-tIDwDHNCh8 img {
  width: 100%;
}
.cid-tIt0LgrPG2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tIDyMvB07F {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tIDyMvB07F nav.navbar {
  position: fixed;
}
.cid-tIDyMvB07F .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIDyMvB07F .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIDyMvB07F .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIDyMvB07F .dropdown-item:hover,
.cid-tIDyMvB07F .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tIDyMvB07F .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIDyMvB07F .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIDyMvB07F .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIDyMvB07F .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIDyMvB07F .nav-link {
  position: relative;
}
.cid-tIDyMvB07F .container {
  display: flex;
  margin: auto;
}
.cid-tIDyMvB07F .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIDyMvB07F .dropdown-menu,
.cid-tIDyMvB07F .navbar.opened {
  background: #ffffff !important;
}
.cid-tIDyMvB07F .nav-item:focus,
.cid-tIDyMvB07F .nav-link:focus {
  outline: none;
}
.cid-tIDyMvB07F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIDyMvB07F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIDyMvB07F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIDyMvB07F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIDyMvB07F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIDyMvB07F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIDyMvB07F .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tIDyMvB07F .navbar.opened {
  transition: all 0.3s;
}
.cid-tIDyMvB07F .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIDyMvB07F .navbar .navbar-logo img {
  width: auto;
}
.cid-tIDyMvB07F .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIDyMvB07F .navbar.collapsed {
  justify-content: center;
}
.cid-tIDyMvB07F .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIDyMvB07F .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tIDyMvB07F .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIDyMvB07F .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIDyMvB07F .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIDyMvB07F .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIDyMvB07F .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIDyMvB07F .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIDyMvB07F .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIDyMvB07F .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIDyMvB07F .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIDyMvB07F .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIDyMvB07F .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIDyMvB07F .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIDyMvB07F .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIDyMvB07F .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIDyMvB07F .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIDyMvB07F .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIDyMvB07F .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tIDyMvB07F .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIDyMvB07F .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIDyMvB07F .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIDyMvB07F .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIDyMvB07F .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIDyMvB07F .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIDyMvB07F .dropdown-item.active,
.cid-tIDyMvB07F .dropdown-item:active {
  background-color: transparent;
}
.cid-tIDyMvB07F .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIDyMvB07F .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIDyMvB07F .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIDyMvB07F .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tIDyMvB07F .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIDyMvB07F .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIDyMvB07F ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIDyMvB07F .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIDyMvB07F button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIDyMvB07F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tIDyMvB07F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIDyMvB07F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIDyMvB07F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIDyMvB07F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIDyMvB07F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIDyMvB07F nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIDyMvB07F nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIDyMvB07F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIDyMvB07F .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIDyMvB07F a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIDyMvB07F .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIDyMvB07F .navbar {
    height: 70px;
  }
  .cid-tIDyMvB07F .navbar.opened {
    height: auto;
  }
  .cid-tIDyMvB07F .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIDyMxperT {
  display: flex;
  background-image: url("../../../assets/images/doni-2-2000x1538.jpg");
}
.cid-tIDyMxperT .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tIDyMxperT .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tIDyMxperT {
    align-items: center;
  }
  .cid-tIDyMxperT .row {
    justify-content: flex-start;
  }
  .cid-tIDyMxperT .content-wrap {
    width: 34%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIDyMxperT .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tIDyMxperT {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tIDyMxperT .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tIDyMxperT .content-wrap {
    width: 100%;
  }
}
.cid-tIDyMzkTv6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIDLKM2nLP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIDLKM2nLP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIDLKM2nLP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIDLKM2nLP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIDLKM2nLP .row {
  flex-direction: row-reverse;
}
.cid-tIDLKM2nLP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tIDLKM2nLP .text-wrapper {
    padding: 2rem;
  }
}
.cid-tIDMUKM5eb {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tIDMUKM5eb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIDMUKM5eb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIDMUKM5eb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIDMUKM5eb .row {
  flex-direction: row-reverse;
}
.cid-tIDMUKM5eb img {
  width: 100%;
}
.cid-tIDMvIR8s0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIEi3FzpJu {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tIEi3FzpJu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEi3FzpJu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEi3FzpJu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEi3FzpJu .row {
  flex-direction: row-reverse;
}
.cid-tIEi3FzpJu img {
  width: 100%;
}
.cid-tIDyMCSX7o {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIDyMCSX7o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIDyMCSX7o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIDyMDRHqh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIDyMDRHqh .mbr-text {
  text-align: left;
}
.cid-tIEj0hxgdw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tIEj0hxgdw blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tIEjNAkYmi {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIEjNAkYmi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEjNAkYmi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEjNAkYmi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEjNAkYmi .row {
  flex-direction: row-reverse;
}
.cid-tIEjNAkYmi img {
  width: 100%;
}
.cid-tIDFN727nn {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIDFN727nn .carousel {
    min-height: 600px;
  }
  .cid-tIDFN727nn .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIDFN727nn .carousel {
    min-height: 390px;
  }
  .cid-tIDFN727nn .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tIDFN727nn .carousel {
    min-height: 330px;
  }
  .cid-tIDFN727nn .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-tIDFN727nn .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tIDFN727nn .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tIDFN727nn .carousel,
.cid-tIDFN727nn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tIDFN727nn .item-wrapper {
  width: 100%;
}
.cid-tIDFN727nn .carousel-caption {
  bottom: 40px;
}
.cid-tIDFN727nn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tIDFN727nn .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tIDFN727nn .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tIDFN727nn .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tIDFN727nn .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tIDFN727nn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIDFN727nn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIDFN727nn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIDFN727nn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tIDFN727nn .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tIDFN727nn .carousel-indicators li.active,
.cid-tIDFN727nn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIDFN727nn .carousel-indicators li::after,
.cid-tIDFN727nn .carousel-indicators li::before {
  content: none;
}
.cid-tIDFN727nn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tIDFN727nn .carousel-indicators {
    display: none !important;
  }
}
.cid-tIDFN727nn P {
  color: #e43f3f;
}
.cid-tIDyMEvyxb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIDyMEvyxb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIDyMEvyxb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIDyMEvyxb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIDyMEvyxb .row {
  flex-direction: row-reverse;
}
.cid-tIDyMEvyxb img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tIDyMEvyxb .text-wrapper {
    padding: 2rem;
  }
}
.cid-tIElhrvn5T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIElhrvn5T .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIElhrvn5T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIElhrvn5T .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIElhrvn5T img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tIElhrvn5T .text-wrapper {
    padding: 2rem;
  }
}
.cid-tIEmamW8xe {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tIEmamW8xe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEmamW8xe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEmamW8xe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEmamW8xe .row {
  flex-direction: row-reverse;
}
.cid-tIEmamW8xe img {
  width: 100%;
}
.cid-tIDB47HYqB {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tIEoQ5apnS {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tIEoQ5apnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEoQ5apnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEoQ5apnS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEoQ5apnS .row {
  flex-direction: row-reverse;
}
.cid-tIEoQ5apnS img {
  width: 100%;
}
.cid-tIEoMOxbEE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIEqfWSnLW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIEqfWSnLW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEqfWSnLW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEqfWSnLW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEqfWSnLW .row {
  flex-direction: row-reverse;
}
.cid-tIEqfWSnLW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tIEqfWSnLW .text-wrapper {
    padding: 2rem;
  }
}
.cid-tIEqOIgews {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tIEsEF0ZVq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIEsEF0ZVq img,
.cid-tIEsEF0ZVq .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tIEsEF0ZVq .item:focus,
.cid-tIEsEF0ZVq span:focus {
  outline: none;
}
.cid-tIEsEF0ZVq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tIEsEF0ZVq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tIEsEF0ZVq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tIEsEF0ZVq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tIEsEF0ZVq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tIEsEF0ZVq .mbr-section-title {
  color: #232323;
}
.cid-tIDyMJNfA8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIDyMJNfA8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIDyMJNfA8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIDyMKLIGz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIEvtWa6Sq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIEvtWa6Sq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEvtWa6Sq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEvtWa6Sq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEvtWa6Sq .row {
  flex-direction: row-reverse;
}
.cid-tIEvtWa6Sq img {
  width: 100%;
}
.cid-tIEuYeWjDG {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tIEwtpTfpP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIEwtpTfpP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEwtpTfpP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEwtpTfpP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEwtpTfpP .row {
  flex-direction: row-reverse;
}
.cid-tIEwtpTfpP img {
  width: 100%;
}
.cid-tIEw7WS7qt {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tIECq0pxUk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIECq0pxUk .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIECVm5oVt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIECVm5oVt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIECVm5oVt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIECVm5oVt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIECVm5oVt .row {
  flex-direction: row-reverse;
}
.cid-tIECVm5oVt img {
  width: 100%;
}
.cid-tIECyTQ66i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIEArZvJLt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIEArZvJLt .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIEDD7DxD2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tIEDD7DxD2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEDD7DxD2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEDD7DxD2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEDD7DxD2 .row {
  flex-direction: row-reverse;
}
.cid-tIEDD7DxD2 img {
  width: 100%;
}
.cid-tIEAl0Qxhg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIEQR78LY4 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIEQR78LY4 .carousel {
    min-height: 800px;
  }
  .cid-tIEQR78LY4 .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIEQR78LY4 .carousel {
    min-height: 520px;
  }
  .cid-tIEQR78LY4 .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tIEQR78LY4 .carousel {
    min-height: 440px;
  }
  .cid-tIEQR78LY4 .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tIEQR78LY4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tIEQR78LY4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tIEQR78LY4 .carousel,
.cid-tIEQR78LY4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tIEQR78LY4 .item-wrapper {
  width: 100%;
}
.cid-tIEQR78LY4 .carousel-caption {
  bottom: 40px;
}
.cid-tIEQR78LY4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tIEQR78LY4 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tIEQR78LY4 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tIEQR78LY4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tIEQR78LY4 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tIEQR78LY4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIEQR78LY4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIEQR78LY4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIEQR78LY4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tIEQR78LY4 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tIEQR78LY4 .carousel-indicators li.active,
.cid-tIEQR78LY4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIEQR78LY4 .carousel-indicators li::after,
.cid-tIEQR78LY4 .carousel-indicators li::before {
  content: none;
}
.cid-tIEQR78LY4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tIEQR78LY4 .carousel-indicators {
    display: none !important;
  }
}
.cid-tIEQR78LY4 P {
  color: #e43f3f;
}
.cid-tIEEyW3I7d {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tIEEyW3I7d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEEyW3I7d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEEyW3I7d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEEyW3I7d .row {
  flex-direction: row-reverse;
}
.cid-tIEEyW3I7d img {
  width: 100%;
}
.cid-tIEEvGO5LJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIEG9TGRQo {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIEG9TGRQo .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIEGNCbjOx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIEGNCbjOx .carousel {
    min-height: 700px;
  }
  .cid-tIEGNCbjOx .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIEGNCbjOx .carousel {
    min-height: 455px;
  }
  .cid-tIEGNCbjOx .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tIEGNCbjOx .carousel {
    min-height: 385px;
  }
  .cid-tIEGNCbjOx .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-tIEGNCbjOx .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tIEGNCbjOx .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tIEGNCbjOx .carousel,
.cid-tIEGNCbjOx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tIEGNCbjOx .item-wrapper {
  width: 100%;
}
.cid-tIEGNCbjOx .carousel-caption {
  bottom: 40px;
}
.cid-tIEGNCbjOx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tIEGNCbjOx .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tIEGNCbjOx .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tIEGNCbjOx .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tIEGNCbjOx .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tIEGNCbjOx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIEGNCbjOx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIEGNCbjOx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIEGNCbjOx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tIEGNCbjOx .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tIEGNCbjOx .carousel-indicators li.active,
.cid-tIEGNCbjOx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIEGNCbjOx .carousel-indicators li::after,
.cid-tIEGNCbjOx .carousel-indicators li::before {
  content: none;
}
.cid-tIEGNCbjOx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tIEGNCbjOx .carousel-indicators {
    display: none !important;
  }
}
.cid-tIDyMPsfx3 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIDyMPsfx3 .mbr-section-subtitle {
  text-align: center;
}
.cid-tIEIsdmp4Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIEIsdmp4Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEIsdmp4Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEIsdmp4Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEIsdmp4Q .row {
  flex-direction: row-reverse;
}
.cid-tIEIsdmp4Q img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tIEIsdmp4Q .text-wrapper {
    padding: 2rem;
  }
}
.cid-tIEKzV9Eg1 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIEKzV9Eg1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEKzV9Eg1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEKzV9Eg1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEKzV9Eg1 .row {
  flex-direction: row-reverse;
}
.cid-tIEKzV9Eg1 img {
  width: 100%;
}
.cid-tIDyMTBTWw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIDyMXoFnu {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tIEXi9Qhas {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tIEXi9Qhas .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEXi9Qhas .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEXi9Qhas .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEXi9Qhas .row {
  flex-direction: row-reverse;
}
.cid-tIEXi9Qhas img {
  width: 100%;
}
.cid-tIEWXdzCwc {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIENsiiwu8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIENsiiwu8 blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tIEUb3kCi2 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tIEUb3kCi2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIEUb3kCi2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIEUb3kCi2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIEUb3kCi2 .row {
  flex-direction: row-reverse;
}
.cid-tIEUb3kCi2 img {
  width: 100%;
}
.cid-tIEM83OLPP {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIEO6ACTn1 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tIEO6ACTn1 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIEOxlu5zp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIDyN0X8R4 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tIDyN0X8R4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIDyN0X8R4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tIDyN0X8R4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tIDyN0X8R4 .row {
  flex-direction: row-reverse;
}
.cid-tIDyN0X8R4 img {
  width: 100%;
}
.cid-tIEV5k75OQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tIEVsJ7Dn4 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIEVsJ7Dn4 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tIEVPlIino {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIEVPlIino .carousel {
    min-height: 800px;
  }
  .cid-tIEVPlIino .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tIEVPlIino .carousel {
    min-height: 520px;
  }
  .cid-tIEVPlIino .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tIEVPlIino .carousel {
    min-height: 440px;
  }
  .cid-tIEVPlIino .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tIEVPlIino .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tIEVPlIino .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tIEVPlIino .carousel,
.cid-tIEVPlIino .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tIEVPlIino .item-wrapper {
  width: 100%;
}
.cid-tIEVPlIino .carousel-caption {
  bottom: 40px;
}
.cid-tIEVPlIino .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tIEVPlIino .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tIEVPlIino .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tIEVPlIino .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tIEVPlIino .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tIEVPlIino .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tIEVPlIino .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tIEVPlIino .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tIEVPlIino .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tIEVPlIino .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tIEVPlIino .carousel-indicators li.active,
.cid-tIEVPlIino .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tIEVPlIino .carousel-indicators li::after,
.cid-tIEVPlIino .carousel-indicators li::before {
  content: none;
}
.cid-tIEVPlIino .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tIEVPlIino .carousel-indicators {
    display: none !important;
  }
}
.cid-tIEVPlIino P {
  color: #e43f3f;
}
.cid-tIDyNwS7Oj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tJ8jmSBhqw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJ8jmSBhqw nav.navbar {
  position: fixed;
}
.cid-tJ8jmSBhqw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJ8jmSBhqw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJ8jmSBhqw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJ8jmSBhqw .dropdown-item:hover,
.cid-tJ8jmSBhqw .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tJ8jmSBhqw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJ8jmSBhqw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJ8jmSBhqw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJ8jmSBhqw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJ8jmSBhqw .nav-link {
  position: relative;
}
.cid-tJ8jmSBhqw .container {
  display: flex;
  margin: auto;
}
.cid-tJ8jmSBhqw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJ8jmSBhqw .dropdown-menu,
.cid-tJ8jmSBhqw .navbar.opened {
  background: #ffffff !important;
}
.cid-tJ8jmSBhqw .nav-item:focus,
.cid-tJ8jmSBhqw .nav-link:focus {
  outline: none;
}
.cid-tJ8jmSBhqw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJ8jmSBhqw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJ8jmSBhqw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJ8jmSBhqw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJ8jmSBhqw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJ8jmSBhqw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJ8jmSBhqw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tJ8jmSBhqw .navbar.opened {
  transition: all 0.3s;
}
.cid-tJ8jmSBhqw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJ8jmSBhqw .navbar .navbar-logo img {
  width: auto;
}
.cid-tJ8jmSBhqw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJ8jmSBhqw .navbar.collapsed {
  justify-content: center;
}
.cid-tJ8jmSBhqw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJ8jmSBhqw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tJ8jmSBhqw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJ8jmSBhqw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJ8jmSBhqw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tJ8jmSBhqw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJ8jmSBhqw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJ8jmSBhqw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJ8jmSBhqw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJ8jmSBhqw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJ8jmSBhqw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJ8jmSBhqw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJ8jmSBhqw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tJ8jmSBhqw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJ8jmSBhqw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJ8jmSBhqw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJ8jmSBhqw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJ8jmSBhqw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJ8jmSBhqw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJ8jmSBhqw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJ8jmSBhqw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJ8jmSBhqw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJ8jmSBhqw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJ8jmSBhqw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJ8jmSBhqw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJ8jmSBhqw .dropdown-item.active,
.cid-tJ8jmSBhqw .dropdown-item:active {
  background-color: transparent;
}
.cid-tJ8jmSBhqw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJ8jmSBhqw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJ8jmSBhqw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJ8jmSBhqw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJ8jmSBhqw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJ8jmSBhqw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJ8jmSBhqw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJ8jmSBhqw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJ8jmSBhqw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJ8jmSBhqw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJ8jmSBhqw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJ8jmSBhqw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJ8jmSBhqw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJ8jmSBhqw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJ8jmSBhqw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJ8jmSBhqw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJ8jmSBhqw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJ8jmSBhqw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJ8jmSBhqw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJ8jmSBhqw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJ8jmSBhqw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJ8jmSBhqw .navbar {
    height: 70px;
  }
  .cid-tJ8jmSBhqw .navbar.opened {
    height: auto;
  }
  .cid-tJ8jmSBhqw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJ8jmUtmUm {
  display: flex;
  background-image: url("../../../assets/images/esquela-novedades-27-de-junio-2000x1428.jpg");
}
.cid-tJ8jmUtmUm .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tJ8jmUtmUm .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tJ8jmUtmUm {
    align-items: center;
  }
  .cid-tJ8jmUtmUm .row {
    justify-content: flex-start;
  }
  .cid-tJ8jmUtmUm .content-wrap {
    width: 54%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tJ8jmUtmUm .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tJ8jmUtmUm {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tJ8jmUtmUm .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tJ8jmUtmUm .content-wrap {
    width: 100%;
  }
}
.cid-tJ8jmW2DJ9 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJMxeEFoQa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJMxeEFoQa .carousel {
    min-height: 800px;
  }
  .cid-tJMxeEFoQa .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tJMxeEFoQa .carousel {
    min-height: 520px;
  }
  .cid-tJMxeEFoQa .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tJMxeEFoQa .carousel {
    min-height: 440px;
  }
  .cid-tJMxeEFoQa .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tJMxeEFoQa .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tJMxeEFoQa .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tJMxeEFoQa .carousel,
.cid-tJMxeEFoQa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tJMxeEFoQa .item-wrapper {
  width: 100%;
}
.cid-tJMxeEFoQa .carousel-caption {
  bottom: 40px;
}
.cid-tJMxeEFoQa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tJMxeEFoQa .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tJMxeEFoQa .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tJMxeEFoQa .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tJMxeEFoQa .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tJMxeEFoQa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJMxeEFoQa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tJMxeEFoQa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tJMxeEFoQa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tJMxeEFoQa .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tJMxeEFoQa .carousel-indicators li.active,
.cid-tJMxeEFoQa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tJMxeEFoQa .carousel-indicators li::after,
.cid-tJMxeEFoQa .carousel-indicators li::before {
  content: none;
}
.cid-tJMxeEFoQa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tJMxeEFoQa .carousel-indicators {
    display: none !important;
  }
}
.cid-tJMxeEFoQa P {
  color: #ffffff;
}
.cid-tJ8jmX2k1F {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJ8jmX2k1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ8jmX2k1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tJ8jmX2k1F .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tJ8jmX2k1F .row {
  flex-direction: row-reverse;
}
.cid-tJ8jmX2k1F img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tJ8jmX2k1F .text-wrapper {
    padding: 2rem;
  }
}
.cid-tJMzAD2X87 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJMzAD2X87 .carousel {
    min-height: 800px;
  }
  .cid-tJMzAD2X87 .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tJMzAD2X87 .carousel {
    min-height: 520px;
  }
  .cid-tJMzAD2X87 .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tJMzAD2X87 .carousel {
    min-height: 440px;
  }
  .cid-tJMzAD2X87 .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tJMzAD2X87 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tJMzAD2X87 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tJMzAD2X87 .carousel,
.cid-tJMzAD2X87 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tJMzAD2X87 .item-wrapper {
  width: 100%;
}
.cid-tJMzAD2X87 .carousel-caption {
  bottom: 40px;
}
.cid-tJMzAD2X87 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tJMzAD2X87 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tJMzAD2X87 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tJMzAD2X87 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tJMzAD2X87 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tJMzAD2X87 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJMzAD2X87 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tJMzAD2X87 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tJMzAD2X87 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tJMzAD2X87 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tJMzAD2X87 .carousel-indicators li.active,
.cid-tJMzAD2X87 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tJMzAD2X87 .carousel-indicators li::after,
.cid-tJMzAD2X87 .carousel-indicators li::before {
  content: none;
}
.cid-tJMzAD2X87 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tJMzAD2X87 .carousel-indicators {
    display: none !important;
  }
}
.cid-tJMzAD2X87 P {
  color: #bbbbbb;
}
.cid-tJ8jmYy45G {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tJMC7qvmOv {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJMC7qvmOv .carousel {
    min-height: 800px;
  }
  .cid-tJMC7qvmOv .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tJMC7qvmOv .carousel {
    min-height: 520px;
  }
  .cid-tJMC7qvmOv .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tJMC7qvmOv .carousel {
    min-height: 440px;
  }
  .cid-tJMC7qvmOv .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tJMC7qvmOv .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tJMC7qvmOv .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tJMC7qvmOv .carousel,
.cid-tJMC7qvmOv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tJMC7qvmOv .item-wrapper {
  width: 100%;
}
.cid-tJMC7qvmOv .carousel-caption {
  bottom: 40px;
}
.cid-tJMC7qvmOv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tJMC7qvmOv .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tJMC7qvmOv .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tJMC7qvmOv .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tJMC7qvmOv .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tJMC7qvmOv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJMC7qvmOv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tJMC7qvmOv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tJMC7qvmOv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tJMC7qvmOv .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tJMC7qvmOv .carousel-indicators li.active,
.cid-tJMC7qvmOv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tJMC7qvmOv .carousel-indicators li::after,
.cid-tJMC7qvmOv .carousel-indicators li::before {
  content: none;
}
.cid-tJMC7qvmOv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tJMC7qvmOv .carousel-indicators {
    display: none !important;
  }
}
.cid-tJMC7qvmOv P {
  color: #bbbbbb;
}
.cid-tJ8jn163tL {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tJ8jn163tL .mbr-text {
  text-align: left;
}
.cid-tJMEdajW0M {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJMEdajW0M .carousel {
    min-height: 800px;
  }
  .cid-tJMEdajW0M .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tJMEdajW0M .carousel {
    min-height: 520px;
  }
  .cid-tJMEdajW0M .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tJMEdajW0M .carousel {
    min-height: 440px;
  }
  .cid-tJMEdajW0M .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tJMEdajW0M .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tJMEdajW0M .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tJMEdajW0M .carousel,
.cid-tJMEdajW0M .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tJMEdajW0M .item-wrapper {
  width: 100%;
}
.cid-tJMEdajW0M .carousel-caption {
  bottom: 40px;
}
.cid-tJMEdajW0M .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tJMEdajW0M .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tJMEdajW0M .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tJMEdajW0M .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tJMEdajW0M .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tJMEdajW0M .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJMEdajW0M .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tJMEdajW0M .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tJMEdajW0M .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tJMEdajW0M .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tJMEdajW0M .carousel-indicators li.active,
.cid-tJMEdajW0M .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tJMEdajW0M .carousel-indicators li::after,
.cid-tJMEdajW0M .carousel-indicators li::before {
  content: none;
}
.cid-tJMEdajW0M .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tJMEdajW0M .carousel-indicators {
    display: none !important;
  }
}
.cid-tJMEdajW0M P {
  color: #bbbbbb;
}
.cid-tJ8jn7xRjX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tJMGmg36He {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJMGmg36He .carousel {
    min-height: 800px;
  }
  .cid-tJMGmg36He .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tJMGmg36He .carousel {
    min-height: 520px;
  }
  .cid-tJMGmg36He .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tJMGmg36He .carousel {
    min-height: 440px;
  }
  .cid-tJMGmg36He .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tJMGmg36He .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tJMGmg36He .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tJMGmg36He .carousel,
.cid-tJMGmg36He .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tJMGmg36He .item-wrapper {
  width: 100%;
}
.cid-tJMGmg36He .carousel-caption {
  bottom: 40px;
}
.cid-tJMGmg36He .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tJMGmg36He .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tJMGmg36He .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tJMGmg36He .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tJMGmg36He .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tJMGmg36He .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJMGmg36He .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tJMGmg36He .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tJMGmg36He .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tJMGmg36He .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tJMGmg36He .carousel-indicators li.active,
.cid-tJMGmg36He .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tJMGmg36He .carousel-indicators li::after,
.cid-tJMGmg36He .carousel-indicators li::before {
  content: none;
}
.cid-tJMGmg36He .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tJMGmg36He .carousel-indicators {
    display: none !important;
  }
}
.cid-tJMGmg36He P {
  color: #bbbbbb;
}
.cid-tJ8jn8Ldx2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tJMLFvSRVA {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJMLFvSRVA .carousel {
    min-height: 800px;
  }
  .cid-tJMLFvSRVA .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tJMLFvSRVA .carousel {
    min-height: 520px;
  }
  .cid-tJMLFvSRVA .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tJMLFvSRVA .carousel {
    min-height: 440px;
  }
  .cid-tJMLFvSRVA .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tJMLFvSRVA .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tJMLFvSRVA .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tJMLFvSRVA .carousel,
.cid-tJMLFvSRVA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tJMLFvSRVA .item-wrapper {
  width: 100%;
}
.cid-tJMLFvSRVA .carousel-caption {
  bottom: 40px;
}
.cid-tJMLFvSRVA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tJMLFvSRVA .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tJMLFvSRVA .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tJMLFvSRVA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tJMLFvSRVA .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tJMLFvSRVA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJMLFvSRVA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tJMLFvSRVA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tJMLFvSRVA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tJMLFvSRVA .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tJMLFvSRVA .carousel-indicators li.active,
.cid-tJMLFvSRVA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tJMLFvSRVA .carousel-indicators li::after,
.cid-tJMLFvSRVA .carousel-indicators li::before {
  content: none;
}
.cid-tJMLFvSRVA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tJMLFvSRVA .carousel-indicators {
    display: none !important;
  }
}
.cid-tJ8jna0CwS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJMMvdcLp4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJMMvdcLp4 .carousel {
    min-height: 800px;
  }
  .cid-tJMMvdcLp4 .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tJMMvdcLp4 .carousel {
    min-height: 520px;
  }
  .cid-tJMMvdcLp4 .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tJMMvdcLp4 .carousel {
    min-height: 440px;
  }
  .cid-tJMMvdcLp4 .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tJMMvdcLp4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tJMMvdcLp4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tJMMvdcLp4 .carousel,
.cid-tJMMvdcLp4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tJMMvdcLp4 .item-wrapper {
  width: 100%;
}
.cid-tJMMvdcLp4 .carousel-caption {
  bottom: 40px;
}
.cid-tJMMvdcLp4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tJMMvdcLp4 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tJMMvdcLp4 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tJMMvdcLp4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tJMMvdcLp4 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tJMMvdcLp4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJMMvdcLp4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tJMMvdcLp4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tJMMvdcLp4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tJMMvdcLp4 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tJMMvdcLp4 .carousel-indicators li.active,
.cid-tJMMvdcLp4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tJMMvdcLp4 .carousel-indicators li::after,
.cid-tJMMvdcLp4 .carousel-indicators li::before {
  content: none;
}
.cid-tJMMvdcLp4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tJMMvdcLp4 .carousel-indicators {
    display: none !important;
  }
}
.cid-tJ8jnc7pV9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJ8jnuNxBW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tJ8jnuNxBW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ8jnuNxBW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tJ8jnuNxBW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tJ8jnuNxBW .row {
  flex-direction: row-reverse;
}
.cid-tJ8jnuNxBW img {
  width: 100%;
}
.cid-tJ8jnEGPrm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tJN5FO8CJz {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/doni-2-2000x1538.jpg");
}
.cid-tJN5FO8CJz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJN5FO8CJz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJN5FO8CJz .mbr-section-title {
  color: #ffffff;
}
.cid-tIDyMvB07F {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tIDyMvB07F nav.navbar {
  position: fixed;
}
.cid-tIDyMvB07F .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIDyMvB07F .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIDyMvB07F .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIDyMvB07F .dropdown-item:hover,
.cid-tIDyMvB07F .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tIDyMvB07F .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIDyMvB07F .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIDyMvB07F .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIDyMvB07F .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIDyMvB07F .nav-link {
  position: relative;
}
.cid-tIDyMvB07F .container {
  display: flex;
  margin: auto;
}
.cid-tIDyMvB07F .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIDyMvB07F .dropdown-menu,
.cid-tIDyMvB07F .navbar.opened {
  background: #ffffff !important;
}
.cid-tIDyMvB07F .nav-item:focus,
.cid-tIDyMvB07F .nav-link:focus {
  outline: none;
}
.cid-tIDyMvB07F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIDyMvB07F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIDyMvB07F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIDyMvB07F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIDyMvB07F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIDyMvB07F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIDyMvB07F .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tIDyMvB07F .navbar.opened {
  transition: all 0.3s;
}
.cid-tIDyMvB07F .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIDyMvB07F .navbar .navbar-logo img {
  width: auto;
}
.cid-tIDyMvB07F .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIDyMvB07F .navbar.collapsed {
  justify-content: center;
}
.cid-tIDyMvB07F .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIDyMvB07F .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tIDyMvB07F .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIDyMvB07F .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIDyMvB07F .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIDyMvB07F .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIDyMvB07F .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIDyMvB07F .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIDyMvB07F .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIDyMvB07F .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIDyMvB07F .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIDyMvB07F .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIDyMvB07F .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIDyMvB07F .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIDyMvB07F .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIDyMvB07F .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIDyMvB07F .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIDyMvB07F .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIDyMvB07F .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tIDyMvB07F .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIDyMvB07F .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIDyMvB07F .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIDyMvB07F .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIDyMvB07F .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIDyMvB07F .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIDyMvB07F .dropdown-item.active,
.cid-tIDyMvB07F .dropdown-item:active {
  background-color: transparent;
}
.cid-tIDyMvB07F .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIDyMvB07F .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIDyMvB07F .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIDyMvB07F .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tIDyMvB07F .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIDyMvB07F .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIDyMvB07F ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIDyMvB07F .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIDyMvB07F button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIDyMvB07F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tIDyMvB07F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIDyMvB07F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIDyMvB07F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIDyMvB07F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIDyMvB07F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIDyMvB07F nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIDyMvB07F nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIDyMvB07F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIDyMvB07F .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIDyMvB07F a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIDyMvB07F .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIDyMvB07F .navbar {
    height: 70px;
  }
  .cid-tIDyMvB07F .navbar.opened {
    height: auto;
  }
  .cid-tIDyMvB07F .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJN6b7SbUZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIDyNwS7Oj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tJN4SNds38 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJN4SNds38 nav.navbar {
  position: fixed;
}
.cid-tJN4SNds38 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJN4SNds38 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJN4SNds38 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJN4SNds38 .dropdown-item:hover,
.cid-tJN4SNds38 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tJN4SNds38 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJN4SNds38 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJN4SNds38 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJN4SNds38 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJN4SNds38 .nav-link {
  position: relative;
}
.cid-tJN4SNds38 .container {
  display: flex;
  margin: auto;
}
.cid-tJN4SNds38 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJN4SNds38 .dropdown-menu,
.cid-tJN4SNds38 .navbar.opened {
  background: #ffffff !important;
}
.cid-tJN4SNds38 .nav-item:focus,
.cid-tJN4SNds38 .nav-link:focus {
  outline: none;
}
.cid-tJN4SNds38 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJN4SNds38 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJN4SNds38 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJN4SNds38 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJN4SNds38 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJN4SNds38 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJN4SNds38 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tJN4SNds38 .navbar.opened {
  transition: all 0.3s;
}
.cid-tJN4SNds38 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJN4SNds38 .navbar .navbar-logo img {
  width: auto;
}
.cid-tJN4SNds38 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJN4SNds38 .navbar.collapsed {
  justify-content: center;
}
.cid-tJN4SNds38 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJN4SNds38 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tJN4SNds38 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJN4SNds38 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJN4SNds38 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tJN4SNds38 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJN4SNds38 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJN4SNds38 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJN4SNds38 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJN4SNds38 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJN4SNds38 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJN4SNds38 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJN4SNds38 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tJN4SNds38 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJN4SNds38 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJN4SNds38 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJN4SNds38 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJN4SNds38 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJN4SNds38 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJN4SNds38 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJN4SNds38 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJN4SNds38 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJN4SNds38 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJN4SNds38 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJN4SNds38 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJN4SNds38 .dropdown-item.active,
.cid-tJN4SNds38 .dropdown-item:active {
  background-color: transparent;
}
.cid-tJN4SNds38 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJN4SNds38 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJN4SNds38 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJN4SNds38 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJN4SNds38 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJN4SNds38 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJN4SNds38 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJN4SNds38 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJN4SNds38 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJN4SNds38 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJN4SNds38 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJN4SNds38 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJN4SNds38 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJN4SNds38 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJN4SNds38 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJN4SNds38 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJN4SNds38 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJN4SNds38 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJN4SNds38 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJN4SNds38 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJN4SNds38 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJN4SNds38 .navbar {
    height: 70px;
  }
  .cid-tJN4SNds38 .navbar.opened {
    height: auto;
  }
  .cid-tJN4SNds38 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJNdhRmSAB {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/doni-2-2000x1538.jpg");
}
.cid-tJNdhRmSAB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJNdhRmSAB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJNdhRmSAB .mbr-section-title {
  color: #ffffff;
}
.cid-tJNdjuvgLJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tJN4SOW5AG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
}
