.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #1aab54 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1aab54 !important;
  border-color: #1aab54 !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: #0f602f !important;
  border-color: #0f602f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0f602f !important;
  border-color: #0f602f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #1aab54;
  color: #1aab54;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0f602f !important;
  background-color: transparent!important;
  border-color: #0f602f !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1aab54 !important;
  border-color: #1aab54 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  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: #ff5f0f !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: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #1aab54 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0d5229 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #1aab54;
}
.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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1aab54;
  border-color: #1aab54;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #1aab54;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #5ee795;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #1aab54 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #1aab54;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1aab54;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1aab54;
}
.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: #1aab54;
  border-bottom-color: #1aab54;
}
.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: #1aab54 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%231aab54' %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-snuKvfs62h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-snuKvfs62h nav.navbar {
  position: fixed;
}
.cid-snuKvfs62h .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-snuKvfs62h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-snuKvfs62h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snuKvfs62h .dropdown-item:hover,
.cid-snuKvfs62h .dropdown-item:focus {
  background: #1aab54 !important;
  color: white !important;
}
.cid-snuKvfs62h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-snuKvfs62h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-snuKvfs62h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-snuKvfs62h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snuKvfs62h .nav-link {
  position: relative;
}
.cid-snuKvfs62h .container {
  display: flex;
  margin: auto;
}
.cid-snuKvfs62h .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snuKvfs62h .dropdown-menu,
.cid-snuKvfs62h .navbar.opened {
  background: #ffffff !important;
}
.cid-snuKvfs62h .nav-item:focus,
.cid-snuKvfs62h .nav-link:focus {
  outline: none;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snuKvfs62h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snuKvfs62h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snuKvfs62h .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-snuKvfs62h .navbar.opened {
  transition: all 0.3s;
}
.cid-snuKvfs62h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-snuKvfs62h .navbar .navbar-logo img {
  width: auto;
}
.cid-snuKvfs62h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snuKvfs62h .navbar.collapsed {
  justify-content: center;
}
.cid-snuKvfs62h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snuKvfs62h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snuKvfs62h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-snuKvfs62h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snuKvfs62h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snuKvfs62h .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-snuKvfs62h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snuKvfs62h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snuKvfs62h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snuKvfs62h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snuKvfs62h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snuKvfs62h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snuKvfs62h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snuKvfs62h .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-snuKvfs62h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-snuKvfs62h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snuKvfs62h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snuKvfs62h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snuKvfs62h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snuKvfs62h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snuKvfs62h .navbar.navbar-short {
  min-height: 60px;
}
.cid-snuKvfs62h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-snuKvfs62h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-snuKvfs62h .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snuKvfs62h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snuKvfs62h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snuKvfs62h .dropdown-item.active,
.cid-snuKvfs62h .dropdown-item:active {
  background-color: transparent;
}
.cid-snuKvfs62h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snuKvfs62h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snuKvfs62h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snuKvfs62h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-snuKvfs62h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snuKvfs62h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snuKvfs62h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snuKvfs62h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snuKvfs62h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snuKvfs62h .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-snuKvfs62h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snuKvfs62h .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-snuKvfs62h .navbar {
    height: 70px;
  }
  .cid-snuKvfs62h .navbar.opened {
    height: auto;
  }
  .cid-snuKvfs62h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snuKvLobc8 {
  display: flex;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/frente-1058x416.jpeg");
}
.cid-snuKvLobc8 .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-snuKvLobc8 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-snuKvLobc8 {
    align-items: flex-end;
  }
  .cid-snuKvLobc8 .row {
    justify-content: center;
  }
  .cid-snuKvLobc8 .content-wrap {
    width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-snuKvLobc8 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-snuKvLobc8 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-snuKvLobc8 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-snuKvLobc8 .content-wrap {
    width: 100%;
  }
}
.cid-so9YJyro2W {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-so9YJyro2W img,
.cid-so9YJyro2W .item-img {
  width: 100%;
}
.cid-so9YJyro2W .item:focus,
.cid-so9YJyro2W span:focus {
  outline: none;
}
.cid-so9YJyro2W .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-so9YJyro2W .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-so9YJyro2W .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-so9YJyro2W .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-so9YJyro2W .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-so9YJyro2W .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-so9YJyro2W .mbr-section-btn {
  margin-top: auto !important;
}
.cid-so9YJyro2W .mbr-section-title {
  color: #232323;
}
.cid-so9YJyro2W .mbr-text,
.cid-so9YJyro2W .mbr-section-btn {
  text-align: left;
}
.cid-so9YJyro2W .item-title {
  text-align: left;
}
.cid-so9YJyro2W .item-subtitle {
  text-align: left;
}
.cid-so407IJJP7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/gestoria-800x533.jpeg");
}
.cid-so407IJJP7 .mbr-text,
.cid-so407IJJP7 .mbr-section-btn {
  color: #232323;
}
.cid-so407IJJP7 .card-title,
.cid-so407IJJP7 .card-box {
  color: #ffffff;
}
.cid-so407IJJP7 .mbr-text,
.cid-so407IJJP7 .link-wrap {
  color: #ffffff;
}
.cid-so40jvRh5Q {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-so40jvRh5Q .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-so40jvRh5Q .bg-facebook:hover {
  background: #0b60cb;
}
.cid-so40jvRh5Q .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-so40jvRh5Q .bg-instagram:hover {
  background: #bd005c;
}
.cid-so40jvRh5Q .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-so40jvRh5Q [class^="socicon-"]:before,
.cid-so40jvRh5Q [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-so40jvRh5Q .mbr-section-title,
.cid-so40jvRh5Q .social-list {
  text-align: left;
}
.cid-snuKCKJL9K {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-snuKCKJL9K .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-snuKCKJL9K .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-snuKCKJL9K .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-snuKCKJL9K .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-snuKCKJL9K .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-snuKCKJL9K .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-snuKCKJL9K .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-snuKvfs62h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-snuKvfs62h nav.navbar {
  position: fixed;
}
.cid-snuKvfs62h .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-snuKvfs62h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-snuKvfs62h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snuKvfs62h .dropdown-item:hover,
.cid-snuKvfs62h .dropdown-item:focus {
  background: #1aab54 !important;
  color: white !important;
}
.cid-snuKvfs62h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-snuKvfs62h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-snuKvfs62h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-snuKvfs62h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snuKvfs62h .nav-link {
  position: relative;
}
.cid-snuKvfs62h .container {
  display: flex;
  margin: auto;
}
.cid-snuKvfs62h .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snuKvfs62h .dropdown-menu,
.cid-snuKvfs62h .navbar.opened {
  background: #ffffff !important;
}
.cid-snuKvfs62h .nav-item:focus,
.cid-snuKvfs62h .nav-link:focus {
  outline: none;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snuKvfs62h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snuKvfs62h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snuKvfs62h .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-snuKvfs62h .navbar.opened {
  transition: all 0.3s;
}
.cid-snuKvfs62h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-snuKvfs62h .navbar .navbar-logo img {
  width: auto;
}
.cid-snuKvfs62h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snuKvfs62h .navbar.collapsed {
  justify-content: center;
}
.cid-snuKvfs62h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snuKvfs62h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snuKvfs62h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-snuKvfs62h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snuKvfs62h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snuKvfs62h .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-snuKvfs62h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snuKvfs62h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snuKvfs62h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snuKvfs62h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snuKvfs62h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snuKvfs62h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snuKvfs62h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snuKvfs62h .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-snuKvfs62h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-snuKvfs62h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snuKvfs62h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snuKvfs62h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snuKvfs62h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snuKvfs62h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snuKvfs62h .navbar.navbar-short {
  min-height: 60px;
}
.cid-snuKvfs62h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-snuKvfs62h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-snuKvfs62h .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snuKvfs62h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snuKvfs62h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snuKvfs62h .dropdown-item.active,
.cid-snuKvfs62h .dropdown-item:active {
  background-color: transparent;
}
.cid-snuKvfs62h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snuKvfs62h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snuKvfs62h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snuKvfs62h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-snuKvfs62h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snuKvfs62h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snuKvfs62h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snuKvfs62h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snuKvfs62h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snuKvfs62h .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-snuKvfs62h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snuKvfs62h .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-snuKvfs62h .navbar {
    height: 70px;
  }
  .cid-snuKvfs62h .navbar.opened {
    height: auto;
  }
  .cid-snuKvfs62h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-so4qPKcp90 {
  background-image: url("../../../assets/images/contacto-1900x1500.jpeg");
}
.cid-so4qPKcp90 .mbr-text,
.cid-so4qPKcp90 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-so4qPKcp90 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-so4oQ86zCU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-so4oQ86zCU .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-so4oQ86zCU .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-so4oQ86zCU .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-so4oQ86zCU .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-so4oQ86zCU .mbr-iconfont {
  font-size: 4rem;
  padding-right: 1.5rem;
  color: #1aab54;
}
.cid-snuKCKJL9K {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-snuKCKJL9K .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-snuKCKJL9K .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-snuKCKJL9K .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-snuKCKJL9K .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-snuKCKJL9K .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-snuKCKJL9K .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-snuKCKJL9K .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-snuKvfs62h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-snuKvfs62h nav.navbar {
  position: fixed;
}
.cid-snuKvfs62h .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-snuKvfs62h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-snuKvfs62h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snuKvfs62h .dropdown-item:hover,
.cid-snuKvfs62h .dropdown-item:focus {
  background: #1aab54 !important;
  color: white !important;
}
.cid-snuKvfs62h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-snuKvfs62h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-snuKvfs62h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-snuKvfs62h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snuKvfs62h .nav-link {
  position: relative;
}
.cid-snuKvfs62h .container {
  display: flex;
  margin: auto;
}
.cid-snuKvfs62h .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snuKvfs62h .dropdown-menu,
.cid-snuKvfs62h .navbar.opened {
  background: #ffffff !important;
}
.cid-snuKvfs62h .nav-item:focus,
.cid-snuKvfs62h .nav-link:focus {
  outline: none;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snuKvfs62h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snuKvfs62h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snuKvfs62h .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-snuKvfs62h .navbar.opened {
  transition: all 0.3s;
}
.cid-snuKvfs62h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-snuKvfs62h .navbar .navbar-logo img {
  width: auto;
}
.cid-snuKvfs62h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snuKvfs62h .navbar.collapsed {
  justify-content: center;
}
.cid-snuKvfs62h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snuKvfs62h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snuKvfs62h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-snuKvfs62h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snuKvfs62h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snuKvfs62h .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-snuKvfs62h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snuKvfs62h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snuKvfs62h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snuKvfs62h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snuKvfs62h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snuKvfs62h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snuKvfs62h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snuKvfs62h .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-snuKvfs62h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-snuKvfs62h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snuKvfs62h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snuKvfs62h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snuKvfs62h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snuKvfs62h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snuKvfs62h .navbar.navbar-short {
  min-height: 60px;
}
.cid-snuKvfs62h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-snuKvfs62h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-snuKvfs62h .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snuKvfs62h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snuKvfs62h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snuKvfs62h .dropdown-item.active,
.cid-snuKvfs62h .dropdown-item:active {
  background-color: transparent;
}
.cid-snuKvfs62h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snuKvfs62h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snuKvfs62h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snuKvfs62h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-snuKvfs62h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snuKvfs62h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snuKvfs62h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snuKvfs62h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snuKvfs62h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snuKvfs62h .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-snuKvfs62h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snuKvfs62h .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-snuKvfs62h .navbar {
    height: 70px;
  }
  .cid-snuKvfs62h .navbar.opened {
    height: auto;
  }
  .cid-snuKvfs62h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-so4crdztYU {
  background-image: url("../../../assets/images/gestoria-800x533.jpeg");
}
.cid-so4crdztYU .mbr-text,
.cid-so4crdztYU .mbr-section-btn {
  text-align: left;
}
.cid-so4crdztYU .mbr-section-title {
  text-align: left;
}
.cid-so4cBDmmhL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-so4etcGgok {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-so4etcGgok .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1aab54;
  margin-bottom: 2rem;
}
.cid-so4etcGgok .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-so4etcGgok .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-so4etcGgok .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-so4etcGgok .link {
  color: #1aab54;
}
.cid-snuKCKJL9K {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-snuKCKJL9K .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-snuKCKJL9K .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-snuKCKJL9K .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-snuKCKJL9K .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-snuKCKJL9K .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-snuKCKJL9K .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-snuKCKJL9K .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-snuKvfs62h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-snuKvfs62h nav.navbar {
  position: fixed;
}
.cid-snuKvfs62h .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-snuKvfs62h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-snuKvfs62h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-snuKvfs62h .dropdown-item:hover,
.cid-snuKvfs62h .dropdown-item:focus {
  background: #1aab54 !important;
  color: white !important;
}
.cid-snuKvfs62h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-snuKvfs62h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-snuKvfs62h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-snuKvfs62h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-snuKvfs62h .nav-link {
  position: relative;
}
.cid-snuKvfs62h .container {
  display: flex;
  margin: auto;
}
.cid-snuKvfs62h .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-snuKvfs62h .dropdown-menu,
.cid-snuKvfs62h .navbar.opened {
  background: #ffffff !important;
}
.cid-snuKvfs62h .nav-item:focus,
.cid-snuKvfs62h .nav-link:focus {
  outline: none;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-snuKvfs62h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-snuKvfs62h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snuKvfs62h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snuKvfs62h .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-snuKvfs62h .navbar.opened {
  transition: all 0.3s;
}
.cid-snuKvfs62h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-snuKvfs62h .navbar .navbar-logo img {
  width: auto;
}
.cid-snuKvfs62h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-snuKvfs62h .navbar.collapsed {
  justify-content: center;
}
.cid-snuKvfs62h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snuKvfs62h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-snuKvfs62h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-snuKvfs62h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snuKvfs62h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snuKvfs62h .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-snuKvfs62h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snuKvfs62h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-snuKvfs62h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-snuKvfs62h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snuKvfs62h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snuKvfs62h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snuKvfs62h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snuKvfs62h .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-snuKvfs62h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-snuKvfs62h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snuKvfs62h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snuKvfs62h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-snuKvfs62h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-snuKvfs62h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-snuKvfs62h .navbar.navbar-short {
  min-height: 60px;
}
.cid-snuKvfs62h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-snuKvfs62h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-snuKvfs62h .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snuKvfs62h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snuKvfs62h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snuKvfs62h .dropdown-item.active,
.cid-snuKvfs62h .dropdown-item:active {
  background-color: transparent;
}
.cid-snuKvfs62h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snuKvfs62h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snuKvfs62h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snuKvfs62h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-snuKvfs62h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snuKvfs62h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-snuKvfs62h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-snuKvfs62h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-snuKvfs62h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-snuKvfs62h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-snuKvfs62h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-snuKvfs62h .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-snuKvfs62h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snuKvfs62h .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-snuKvfs62h .navbar {
    height: 70px;
  }
  .cid-snuKvfs62h .navbar.opened {
    height: auto;
  }
  .cid-snuKvfs62h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-so459giLpS {
  background-image: url("../../../assets/images/20210420-92944-2000x1125.jpg");
}
.cid-so459giLpS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-so459giLpS .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-soa9nhHzOY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-soa9nhHzOY img,
.cid-soa9nhHzOY .item-img {
  width: 100%;
}
.cid-soa9nhHzOY .item:focus,
.cid-soa9nhHzOY span:focus {
  outline: none;
}
.cid-soa9nhHzOY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-soa9nhHzOY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-soa9nhHzOY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-soa9nhHzOY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-soa9nhHzOY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-soa9nhHzOY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-soa9nhHzOY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-soa9nhHzOY .mbr-section-title {
  color: #232323;
}
.cid-soa9nhHzOY .mbr-text,
.cid-soa9nhHzOY .mbr-section-btn {
  text-align: left;
}
.cid-soa9nhHzOY .item-title {
  text-align: left;
}
.cid-soa9nhHzOY .item-subtitle {
  text-align: left;
}
.cid-snuKCKJL9K {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-snuKCKJL9K .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-snuKCKJL9K .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-snuKCKJL9K .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-snuKCKJL9K .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-snuKCKJL9K .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-snuKCKJL9K .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-snuKCKJL9K .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-snuKCKJL9K .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-so4vzGRCjm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-so4vzGRCjm nav.navbar {
  position: fixed;
}
.cid-so4vzGRCjm .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-so4vzGRCjm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-so4vzGRCjm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-so4vzGRCjm .dropdown-item:hover,
.cid-so4vzGRCjm .dropdown-item:focus {
  background: #1aab54 !important;
  color: white !important;
}
.cid-so4vzGRCjm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-so4vzGRCjm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-so4vzGRCjm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-so4vzGRCjm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-so4vzGRCjm .nav-link {
  position: relative;
}
.cid-so4vzGRCjm .container {
  display: flex;
  margin: auto;
}
.cid-so4vzGRCjm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-so4vzGRCjm .dropdown-menu,
.cid-so4vzGRCjm .navbar.opened {
  background: #ffffff !important;
}
.cid-so4vzGRCjm .nav-item:focus,
.cid-so4vzGRCjm .nav-link:focus {
  outline: none;
}
.cid-so4vzGRCjm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-so4vzGRCjm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-so4vzGRCjm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-so4vzGRCjm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-so4vzGRCjm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-so4vzGRCjm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-so4vzGRCjm .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-so4vzGRCjm .navbar.opened {
  transition: all 0.3s;
}
.cid-so4vzGRCjm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-so4vzGRCjm .navbar .navbar-logo img {
  width: auto;
}
.cid-so4vzGRCjm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-so4vzGRCjm .navbar.collapsed {
  justify-content: center;
}
.cid-so4vzGRCjm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-so4vzGRCjm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-so4vzGRCjm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-so4vzGRCjm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-so4vzGRCjm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-so4vzGRCjm .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-so4vzGRCjm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-so4vzGRCjm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-so4vzGRCjm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-so4vzGRCjm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-so4vzGRCjm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-so4vzGRCjm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-so4vzGRCjm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-so4vzGRCjm .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-so4vzGRCjm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-so4vzGRCjm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-so4vzGRCjm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-so4vzGRCjm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-so4vzGRCjm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-so4vzGRCjm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-so4vzGRCjm .navbar.navbar-short {
  min-height: 60px;
}
.cid-so4vzGRCjm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-so4vzGRCjm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-so4vzGRCjm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-so4vzGRCjm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-so4vzGRCjm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-so4vzGRCjm .dropdown-item.active,
.cid-so4vzGRCjm .dropdown-item:active {
  background-color: transparent;
}
.cid-so4vzGRCjm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-so4vzGRCjm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-so4vzGRCjm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-so4vzGRCjm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-so4vzGRCjm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-so4vzGRCjm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-so4vzGRCjm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-so4vzGRCjm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-so4vzGRCjm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-so4vzGRCjm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-so4vzGRCjm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-so4vzGRCjm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-so4vzGRCjm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-so4vzGRCjm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-so4vzGRCjm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-so4vzGRCjm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-so4vzGRCjm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-so4vzGRCjm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-so4vzGRCjm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-so4vzGRCjm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-so4vzGRCjm .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-so4vzGRCjm .navbar {
    height: 70px;
  }
  .cid-so4vzGRCjm .navbar.opened {
    height: auto;
  }
  .cid-so4vzGRCjm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-so4vzIeXgL {
  background-image: url("../../../assets/images/1000170444-2000x1125.jpg");
}
.cid-so4vzIeXgL .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-so4vzIeXgL .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-soacUnyMSg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUZtcAIXFv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uUZtcAIXFv img,
.cid-uUZtcAIXFv .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uUZtcAIXFv .item:focus,
.cid-uUZtcAIXFv span:focus {
  outline: none;
}
.cid-uUZtcAIXFv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uUZtcAIXFv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uUZtcAIXFv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUZtcAIXFv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uUZtcAIXFv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uUZtcAIXFv .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uUZtcAIXFv .mbr-section-subtitle {
  text-align: left;
}
.cid-uUZteMwgYP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uUZCDfJ7Js {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uUZCDfJ7Js img,
.cid-uUZCDfJ7Js .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uUZCDfJ7Js .item:focus,
.cid-uUZCDfJ7Js span:focus {
  outline: none;
}
.cid-uUZCDfJ7Js .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uUZCDfJ7Js .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uUZCDfJ7Js .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUZCDfJ7Js .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uUZCDfJ7Js .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uUZCDfJ7Js .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uUZCDfJ7Js .mbr-section-subtitle {
  text-align: left;
}
.cid-uUZCEC5EYL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP33neljFP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP33neljFP img,
.cid-uP33neljFP .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP33neljFP .item:focus,
.cid-uP33neljFP span:focus {
  outline: none;
}
.cid-uP33neljFP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uP33neljFP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uP33neljFP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uP33neljFP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uP33neljFP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uP33neljFP .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uP33neljFP .mbr-section-subtitle {
  text-align: left;
}
.cid-uP33xNI2i1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP33vCslDN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP33vCslDN img,
.cid-uP33vCslDN .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP33vCslDN .item:focus,
.cid-uP33vCslDN span:focus {
  outline: none;
}
.cid-uP33vCslDN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uP33vCslDN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uP33vCslDN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uP33vCslDN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uP33vCslDN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uP33vCslDN .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uP33vCslDN .mbr-section-subtitle {
  text-align: left;
}
.cid-uP33zPx4cJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP33tZxZoF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP33tZxZoF img,
.cid-uP33tZxZoF .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP33tZxZoF .item:focus,
.cid-uP33tZxZoF span:focus {
  outline: none;
}
.cid-uP33tZxZoF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uP33tZxZoF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uP33tZxZoF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uP33tZxZoF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uP33tZxZoF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uP33tZxZoF .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uP33tZxZoF .mbr-section-subtitle {
  text-align: left;
}
.cid-uP33BF2e55 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKkuT2eQRC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKkuT2eQRC img,
.cid-uKkuT2eQRC .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uKkuT2eQRC .item:focus,
.cid-uKkuT2eQRC span:focus {
  outline: none;
}
.cid-uKkuT2eQRC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uKkuT2eQRC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uKkuT2eQRC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uKkuT2eQRC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uKkuT2eQRC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uKkuT2eQRC .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uKkuT2eQRC .mbr-section-subtitle {
  text-align: left;
}
.cid-uKkv0vGCQf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKkuXV5HJd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKkuXV5HJd img,
.cid-uKkuXV5HJd .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uKkuXV5HJd .item:focus,
.cid-uKkuXV5HJd span:focus {
  outline: none;
}
.cid-uKkuXV5HJd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uKkuXV5HJd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uKkuXV5HJd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uKkuXV5HJd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uKkuXV5HJd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uKkuXV5HJd .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uKkuXV5HJd .mbr-section-subtitle {
  text-align: left;
}
.cid-uKkv1Wdxlp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKkuWrxF9p {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKkuWrxF9p img,
.cid-uKkuWrxF9p .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uKkuWrxF9p .item:focus,
.cid-uKkuWrxF9p span:focus {
  outline: none;
}
.cid-uKkuWrxF9p .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uKkuWrxF9p .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uKkuWrxF9p .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uKkuWrxF9p .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uKkuWrxF9p .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uKkuWrxF9p .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uKkuWrxF9p .mbr-section-subtitle {
  text-align: left;
}
.cid-uKkv2PBp14 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKkuVdn4Vx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKkuVdn4Vx img,
.cid-uKkuVdn4Vx .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uKkuVdn4Vx .item:focus,
.cid-uKkuVdn4Vx span:focus {
  outline: none;
}
.cid-uKkuVdn4Vx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uKkuVdn4Vx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uKkuVdn4Vx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uKkuVdn4Vx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uKkuVdn4Vx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uKkuVdn4Vx .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uKkuVdn4Vx .mbr-section-subtitle {
  text-align: left;
}
.cid-uKkv3KGXwG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJ6QfXvIwW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJ6QfXvIwW img,
.cid-uJ6QfXvIwW .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJ6QfXvIwW .item:focus,
.cid-uJ6QfXvIwW span:focus {
  outline: none;
}
.cid-uJ6QfXvIwW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJ6QfXvIwW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJ6QfXvIwW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJ6QfXvIwW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJ6QfXvIwW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJ6QfXvIwW .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uJ6QfXvIwW .mbr-section-subtitle {
  text-align: left;
}
.cid-uJ6QokaYLm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJ6Qhjs101 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJ6Qhjs101 img,
.cid-uJ6Qhjs101 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJ6Qhjs101 .item:focus,
.cid-uJ6Qhjs101 span:focus {
  outline: none;
}
.cid-uJ6Qhjs101 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJ6Qhjs101 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJ6Qhjs101 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJ6Qhjs101 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJ6Qhjs101 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJ6Qhjs101 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uJ6Qhjs101 .mbr-section-subtitle {
  text-align: left;
}
.cid-uJ6QmqCf68 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJ6QdXGFrD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJ6QdXGFrD img,
.cid-uJ6QdXGFrD .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJ6QdXGFrD .item:focus,
.cid-uJ6QdXGFrD span:focus {
  outline: none;
}
.cid-uJ6QdXGFrD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJ6QdXGFrD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJ6QdXGFrD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJ6QdXGFrD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJ6QdXGFrD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJ6QdXGFrD .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uJ6QdXGFrD .mbr-section-subtitle {
  text-align: left;
}
.cid-uJ6QjVKiXU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uImDjuCp5N {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uImDjuCp5N img,
.cid-uImDjuCp5N .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uImDjuCp5N .item:focus,
.cid-uImDjuCp5N span:focus {
  outline: none;
}
.cid-uImDjuCp5N .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uImDjuCp5N .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uImDjuCp5N .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uImDjuCp5N .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uImDjuCp5N .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uImDjuCp5N .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uImDjuCp5N .mbr-section-subtitle {
  text-align: left;
}
.cid-uImDmGK0eL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uImDknwgid {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uImDknwgid img,
.cid-uImDknwgid .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uImDknwgid .item:focus,
.cid-uImDknwgid span:focus {
  outline: none;
}
.cid-uImDknwgid .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uImDknwgid .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uImDknwgid .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uImDknwgid .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uImDknwgid .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uImDknwgid .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uImDknwgid .mbr-section-subtitle {
  text-align: left;
}
.cid-uImDll08lV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2qfWBHM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2qfWBHM img,
.cid-uGt2qfWBHM .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uGt2qfWBHM .item:focus,
.cid-uGt2qfWBHM span:focus {
  outline: none;
}
.cid-uGt2qfWBHM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGt2qfWBHM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGt2qfWBHM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGt2qfWBHM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uGt2qfWBHM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGt2qfWBHM .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uGt2qfWBHM .mbr-section-subtitle {
  text-align: left;
}
.cid-uGt2Irxcz2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2vpDwsY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2vpDwsY img,
.cid-uGt2vpDwsY .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uGt2vpDwsY .item:focus,
.cid-uGt2vpDwsY span:focus {
  outline: none;
}
.cid-uGt2vpDwsY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGt2vpDwsY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGt2vpDwsY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGt2vpDwsY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uGt2vpDwsY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGt2vpDwsY .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uGt2vpDwsY .mbr-section-subtitle {
  text-align: left;
}
.cid-uGt2H7QdrB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2rBCsf7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2rBCsf7 img,
.cid-uGt2rBCsf7 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uGt2rBCsf7 .item:focus,
.cid-uGt2rBCsf7 span:focus {
  outline: none;
}
.cid-uGt2rBCsf7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGt2rBCsf7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGt2rBCsf7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGt2rBCsf7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uGt2rBCsf7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGt2rBCsf7 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uGt2rBCsf7 .mbr-section-subtitle {
  text-align: left;
}
.cid-uGt2FIH24k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2tq45hp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2tq45hp img,
.cid-uGt2tq45hp .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uGt2tq45hp .item:focus,
.cid-uGt2tq45hp span:focus {
  outline: none;
}
.cid-uGt2tq45hp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGt2tq45hp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGt2tq45hp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGt2tq45hp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uGt2tq45hp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGt2tq45hp .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uGt2tq45hp .mbr-section-subtitle {
  text-align: left;
}
.cid-uGt2EcEUAE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2wzV01y {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2wzV01y img,
.cid-uGt2wzV01y .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uGt2wzV01y .item:focus,
.cid-uGt2wzV01y span:focus {
  outline: none;
}
.cid-uGt2wzV01y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGt2wzV01y .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGt2wzV01y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGt2wzV01y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uGt2wzV01y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGt2wzV01y .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uGt2wzV01y .mbr-section-subtitle {
  text-align: left;
}
.cid-uGt2CLI0u9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2omJuJ1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2omJuJ1 img,
.cid-uGt2omJuJ1 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uGt2omJuJ1 .item:focus,
.cid-uGt2omJuJ1 span:focus {
  outline: none;
}
.cid-uGt2omJuJ1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGt2omJuJ1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGt2omJuJ1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGt2omJuJ1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uGt2omJuJ1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGt2omJuJ1 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uGt2omJuJ1 .mbr-section-subtitle {
  text-align: left;
}
.cid-uGt2B9bo11 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2xTQITA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGt2xTQITA img,
.cid-uGt2xTQITA .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uGt2xTQITA .item:focus,
.cid-uGt2xTQITA span:focus {
  outline: none;
}
.cid-uGt2xTQITA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGt2xTQITA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGt2xTQITA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGt2xTQITA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uGt2xTQITA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGt2xTQITA .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uGt2xTQITA .mbr-section-subtitle {
  text-align: left;
}
.cid-uGt2zBoRtd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uC2hfXW2PU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uC2hfXW2PU img,
.cid-uC2hfXW2PU .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uC2hfXW2PU .item:focus,
.cid-uC2hfXW2PU span:focus {
  outline: none;
}
.cid-uC2hfXW2PU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uC2hfXW2PU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uC2hfXW2PU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uC2hfXW2PU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uC2hfXW2PU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uC2hfXW2PU .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uC2hfXW2PU .mbr-section-subtitle {
  text-align: left;
}
.cid-uC2hpxyf3h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uC2hgZYX2j {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uC2hgZYX2j img,
.cid-uC2hgZYX2j .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uC2hgZYX2j .item:focus,
.cid-uC2hgZYX2j span:focus {
  outline: none;
}
.cid-uC2hgZYX2j .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uC2hgZYX2j .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uC2hgZYX2j .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uC2hgZYX2j .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uC2hgZYX2j .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uC2hgZYX2j .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uC2hgZYX2j .mbr-section-subtitle {
  text-align: left;
}
.cid-uC2ho4DME2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uC2hjK0QWF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uC2hjK0QWF img,
.cid-uC2hjK0QWF .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uC2hjK0QWF .item:focus,
.cid-uC2hjK0QWF span:focus {
  outline: none;
}
.cid-uC2hjK0QWF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uC2hjK0QWF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uC2hjK0QWF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uC2hjK0QWF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uC2hjK0QWF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uC2hjK0QWF .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uC2hjK0QWF .mbr-section-subtitle {
  text-align: left;
}
.cid-uC2hlJMCJy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uB5jy7ALRO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uB5jy7ALRO img,
.cid-uB5jy7ALRO .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uB5jy7ALRO .item:focus,
.cid-uB5jy7ALRO span:focus {
  outline: none;
}
.cid-uB5jy7ALRO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uB5jy7ALRO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uB5jy7ALRO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uB5jy7ALRO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uB5jy7ALRO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uB5jy7ALRO .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uB5jy7ALRO .mbr-section-subtitle {
  text-align: left;
}
.cid-uB5jthOsup {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uB5jvy1Kdm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uB5jvy1Kdm img,
.cid-uB5jvy1Kdm .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uB5jvy1Kdm .item:focus,
.cid-uB5jvy1Kdm span:focus {
  outline: none;
}
.cid-uB5jvy1Kdm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uB5jvy1Kdm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uB5jvy1Kdm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uB5jvy1Kdm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uB5jvy1Kdm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uB5jvy1Kdm .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uB5jvy1Kdm .mbr-section-subtitle {
  text-align: left;
}
.cid-uB5jrE3haa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAIQ4p1mUF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAIQ4p1mUF img,
.cid-uAIQ4p1mUF .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uAIQ4p1mUF .item:focus,
.cid-uAIQ4p1mUF span:focus {
  outline: none;
}
.cid-uAIQ4p1mUF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uAIQ4p1mUF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAIQ4p1mUF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAIQ4p1mUF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAIQ4p1mUF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAIQ4p1mUF .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uAIQ4p1mUF .mbr-section-subtitle {
  text-align: left;
}
.cid-uAIQ7LspAK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAIQ64Mbsv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAIQ64Mbsv img,
.cid-uAIQ64Mbsv .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uAIQ64Mbsv .item:focus,
.cid-uAIQ64Mbsv span:focus {
  outline: none;
}
.cid-uAIQ64Mbsv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uAIQ64Mbsv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAIQ64Mbsv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAIQ64Mbsv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAIQ64Mbsv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAIQ64Mbsv .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uAIQ64Mbsv .mbr-section-subtitle {
  text-align: left;
}
.cid-uAIQ8CVfT5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzMm54FXq5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzMm54FXq5 img,
.cid-uzMm54FXq5 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uzMm54FXq5 .item:focus,
.cid-uzMm54FXq5 span:focus {
  outline: none;
}
.cid-uzMm54FXq5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uzMm54FXq5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uzMm54FXq5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzMm54FXq5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uzMm54FXq5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uzMm54FXq5 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uzMm54FXq5 .mbr-section-subtitle {
  text-align: left;
}
.cid-uzMm73PLXI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uvOGIQia5g {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uvOGIQia5g img,
.cid-uvOGIQia5g .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uvOGIQia5g .item:focus,
.cid-uvOGIQia5g span:focus {
  outline: none;
}
.cid-uvOGIQia5g .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvOGIQia5g .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvOGIQia5g .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvOGIQia5g .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uvOGIQia5g .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvOGIQia5g .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uvOGIQia5g .mbr-section-subtitle {
  text-align: left;
}
.cid-uvOGKYwAth {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utlA3GiwGK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utlA3GiwGK img,
.cid-utlA3GiwGK .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-utlA3GiwGK .item:focus,
.cid-utlA3GiwGK span:focus {
  outline: none;
}
.cid-utlA3GiwGK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-utlA3GiwGK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-utlA3GiwGK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utlA3GiwGK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-utlA3GiwGK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-utlA3GiwGK .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-utlA3GiwGK .mbr-section-subtitle {
  text-align: left;
}
.cid-utlA7jzRAX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utlA21cGpZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utlA21cGpZ img,
.cid-utlA21cGpZ .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-utlA21cGpZ .item:focus,
.cid-utlA21cGpZ span:focus {
  outline: none;
}
.cid-utlA21cGpZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-utlA21cGpZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-utlA21cGpZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utlA21cGpZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-utlA21cGpZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-utlA21cGpZ .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-utlA21cGpZ .mbr-section-subtitle {
  text-align: left;
}
.cid-utlA5E2f9p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upjs8214RG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upjs8214RG img,
.cid-upjs8214RG .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-upjs8214RG .item:focus,
.cid-upjs8214RG span:focus {
  outline: none;
}
.cid-upjs8214RG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-upjs8214RG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-upjs8214RG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-upjs8214RG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-upjs8214RG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-upjs8214RG .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-upjs8214RG .mbr-section-subtitle {
  text-align: left;
}
.cid-upjspyAjeG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upjs8XkLF4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upjs8XkLF4 img,
.cid-upjs8XkLF4 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-upjs8XkLF4 .item:focus,
.cid-upjs8XkLF4 span:focus {
  outline: none;
}
.cid-upjs8XkLF4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-upjs8XkLF4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-upjs8XkLF4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-upjs8XkLF4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-upjs8XkLF4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-upjs8XkLF4 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-upjs8XkLF4 .mbr-section-subtitle {
  text-align: left;
}
.cid-upjsnqx31d {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upjs9KaiUu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upjs9KaiUu img,
.cid-upjs9KaiUu .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-upjs9KaiUu .item:focus,
.cid-upjs9KaiUu span:focus {
  outline: none;
}
.cid-upjs9KaiUu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-upjs9KaiUu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-upjs9KaiUu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-upjs9KaiUu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-upjs9KaiUu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-upjs9KaiUu .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-upjs9KaiUu .mbr-section-subtitle {
  text-align: left;
}
.cid-upjso5OdVN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upjsas1rGK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upjsas1rGK img,
.cid-upjsas1rGK .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-upjsas1rGK .item:focus,
.cid-upjsas1rGK span:focus {
  outline: none;
}
.cid-upjsas1rGK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-upjsas1rGK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-upjsas1rGK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-upjsas1rGK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-upjsas1rGK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-upjsas1rGK .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-upjsas1rGK .mbr-section-subtitle {
  text-align: left;
}
.cid-upjsfdpQhi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upjsb9WeWi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upjsb9WeWi img,
.cid-upjsb9WeWi .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-upjsb9WeWi .item:focus,
.cid-upjsb9WeWi span:focus {
  outline: none;
}
.cid-upjsb9WeWi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-upjsb9WeWi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-upjsb9WeWi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-upjsb9WeWi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-upjsb9WeWi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-upjsb9WeWi .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-upjsb9WeWi .mbr-section-subtitle {
  text-align: left;
}
.cid-upjsd9IXa1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umyEoxTCGf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umyEoxTCGf img,
.cid-umyEoxTCGf .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-umyEoxTCGf .item:focus,
.cid-umyEoxTCGf span:focus {
  outline: none;
}
.cid-umyEoxTCGf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-umyEoxTCGf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-umyEoxTCGf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-umyEoxTCGf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-umyEoxTCGf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-umyEoxTCGf .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-umyEoxTCGf .mbr-section-subtitle {
  text-align: left;
}
.cid-umyEsvKbNU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umyEqDACD8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umyEqDACD8 img,
.cid-umyEqDACD8 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-umyEqDACD8 .item:focus,
.cid-umyEqDACD8 span:focus {
  outline: none;
}
.cid-umyEqDACD8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-umyEqDACD8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-umyEqDACD8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-umyEqDACD8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-umyEqDACD8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-umyEqDACD8 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-umyEqDACD8 .mbr-section-subtitle {
  text-align: left;
}
.cid-umyEtX4SFv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulwfbtUU5X {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulwfbtUU5X img,
.cid-ulwfbtUU5X .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulwfbtUU5X .item:focus,
.cid-ulwfbtUU5X span:focus {
  outline: none;
}
.cid-ulwfbtUU5X .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ulwfbtUU5X .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ulwfbtUU5X .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulwfbtUU5X .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ulwfbtUU5X .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ulwfbtUU5X .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-ulwfbtUU5X .mbr-section-subtitle {
  text-align: left;
}
.cid-ulwffPYYVd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulwfdHgtYm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulwfdHgtYm img,
.cid-ulwfdHgtYm .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ulwfdHgtYm .item:focus,
.cid-ulwfdHgtYm span:focus {
  outline: none;
}
.cid-ulwfdHgtYm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ulwfdHgtYm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ulwfdHgtYm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulwfdHgtYm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ulwfdHgtYm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ulwfdHgtYm .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-ulwfdHgtYm .mbr-section-subtitle {
  text-align: left;
}
.cid-ulwfh3PYfw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uc5iIU52Jx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uc5iIU52Jx img,
.cid-uc5iIU52Jx .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uc5iIU52Jx .item:focus,
.cid-uc5iIU52Jx span:focus {
  outline: none;
}
.cid-uc5iIU52Jx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uc5iIU52Jx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uc5iIU52Jx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uc5iIU52Jx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uc5iIU52Jx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uc5iIU52Jx .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uc5iIU52Jx .mbr-section-subtitle {
  text-align: left;
}
.cid-uc5iSeHX0b {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uc5iLvZRxG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uc5iLvZRxG img,
.cid-uc5iLvZRxG .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uc5iLvZRxG .item:focus,
.cid-uc5iLvZRxG span:focus {
  outline: none;
}
.cid-uc5iLvZRxG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uc5iLvZRxG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uc5iLvZRxG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uc5iLvZRxG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uc5iLvZRxG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uc5iLvZRxG .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uc5iLvZRxG .mbr-section-subtitle {
  text-align: left;
}
.cid-uc5iQmr4GL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uc5iCicGVw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uc5iCicGVw img,
.cid-uc5iCicGVw .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uc5iCicGVw .item:focus,
.cid-uc5iCicGVw span:focus {
  outline: none;
}
.cid-uc5iCicGVw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uc5iCicGVw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uc5iCicGVw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uc5iCicGVw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uc5iCicGVw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uc5iCicGVw .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uc5iCicGVw .mbr-section-subtitle {
  text-align: left;
}
.cid-uc5iOvX1JV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u94Xgvbeqj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u94Xgvbeqj img,
.cid-u94Xgvbeqj .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u94Xgvbeqj .item:focus,
.cid-u94Xgvbeqj span:focus {
  outline: none;
}
.cid-u94Xgvbeqj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u94Xgvbeqj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u94Xgvbeqj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u94Xgvbeqj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u94Xgvbeqj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u94Xgvbeqj .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-u94Xgvbeqj .mbr-section-subtitle {
  text-align: left;
}
.cid-u94XiWH4bY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u63RNWYav8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u63RNWYav8 img,
.cid-u63RNWYav8 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u63RNWYav8 .item:focus,
.cid-u63RNWYav8 span:focus {
  outline: none;
}
.cid-u63RNWYav8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u63RNWYav8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u63RNWYav8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u63RNWYav8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u63RNWYav8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u63RNWYav8 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-u63RNWYav8 .mbr-section-subtitle {
  text-align: left;
}
.cid-u63RZ7SO8A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u63ROW55tc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u63ROW55tc img,
.cid-u63ROW55tc .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u63ROW55tc .item:focus,
.cid-u63ROW55tc span:focus {
  outline: none;
}
.cid-u63ROW55tc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u63ROW55tc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u63ROW55tc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u63ROW55tc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u63ROW55tc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u63ROW55tc .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-u63ROW55tc .mbr-section-subtitle {
  text-align: left;
}
.cid-u63RTqwEja {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u63RQ5dylH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u63RQ5dylH img,
.cid-u63RQ5dylH .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u63RQ5dylH .item:focus,
.cid-u63RQ5dylH span:focus {
  outline: none;
}
.cid-u63RQ5dylH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u63RQ5dylH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u63RQ5dylH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u63RQ5dylH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u63RQ5dylH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u63RQ5dylH .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-u63RQ5dylH .mbr-section-subtitle {
  text-align: left;
}
.cid-u63RREmvem {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4JWV1iqMy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4JWV1iqMy img,
.cid-u4JWV1iqMy .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u4JWV1iqMy .item:focus,
.cid-u4JWV1iqMy span:focus {
  outline: none;
}
.cid-u4JWV1iqMy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4JWV1iqMy .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4JWV1iqMy .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4JWV1iqMy .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u4JWV1iqMy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4JWV1iqMy .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-u4JWV1iqMy .mbr-section-subtitle {
  text-align: left;
}
.cid-u4JX3hYYrH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4JWXopC2X {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4JWXopC2X img,
.cid-u4JWXopC2X .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u4JWXopC2X .item:focus,
.cid-u4JWXopC2X span:focus {
  outline: none;
}
.cid-u4JWXopC2X .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4JWXopC2X .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4JWXopC2X .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4JWXopC2X .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u4JWXopC2X .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4JWXopC2X .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-u4JWXopC2X .mbr-section-subtitle {
  text-align: left;
}
.cid-u4JX5i4opK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4JWZeAJNo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4JWZeAJNo img,
.cid-u4JWZeAJNo .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u4JWZeAJNo .item:focus,
.cid-u4JWZeAJNo span:focus {
  outline: none;
}
.cid-u4JWZeAJNo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4JWZeAJNo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4JWZeAJNo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4JWZeAJNo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u4JWZeAJNo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4JWZeAJNo .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-u4JWZeAJNo .mbr-section-subtitle {
  text-align: left;
}
.cid-u4JX1q0eSP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2Stu5Do6Z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2Stu5Do6Z img,
.cid-u2Stu5Do6Z .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2Stu5Do6Z .item:focus,
.cid-u2Stu5Do6Z span:focus {
  outline: none;
}
.cid-u2Stu5Do6Z .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u2Stu5Do6Z .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2Stu5Do6Z .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2Stu5Do6Z .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2Stu5Do6Z .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2Stu5Do6Z .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-u2Stu5Do6Z .mbr-section-subtitle {
  text-align: left;
}
.cid-u2Stwhv3qv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2StrSNsKx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2StrSNsKx img,
.cid-u2StrSNsKx .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2StrSNsKx .item:focus,
.cid-u2StrSNsKx span:focus {
  outline: none;
}
.cid-u2StrSNsKx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u2StrSNsKx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2StrSNsKx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2StrSNsKx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2StrSNsKx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2StrSNsKx .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-u2StrSNsKx .mbr-section-subtitle {
  text-align: left;
}
.cid-u2StxGOFf2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jKUt8l7L {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jKUt8l7L img,
.cid-u0jKUt8l7L .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u0jKUt8l7L .item:focus,
.cid-u0jKUt8l7L span:focus {
  outline: none;
}
.cid-u0jKUt8l7L .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0jKUt8l7L .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u0jKUt8l7L .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u0jKUt8l7L .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u0jKUt8l7L .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u0jKUt8l7L .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-u0jKUt8l7L .mbr-section-subtitle {
  text-align: left;
}
.cid-u0jKX7CrXU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jKSah7hU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jKSah7hU img,
.cid-u0jKSah7hU .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u0jKSah7hU .item:focus,
.cid-u0jKSah7hU span:focus {
  outline: none;
}
.cid-u0jKSah7hU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0jKSah7hU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u0jKSah7hU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u0jKSah7hU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u0jKSah7hU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u0jKSah7hU .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-u0jKSah7hU .mbr-section-subtitle {
  text-align: left;
}
.cid-u0jKYiMYii {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVuGgRqztf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVuGgRqztf img,
.cid-tVuGgRqztf .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tVuGgRqztf .item:focus,
.cid-tVuGgRqztf span:focus {
  outline: none;
}
.cid-tVuGgRqztf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tVuGgRqztf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVuGgRqztf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVuGgRqztf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tVuGgRqztf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVuGgRqztf .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tVuGgRqztf .mbr-section-subtitle {
  text-align: left;
}
.cid-tVuGivu1bS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7YXllWBIC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7YXllWBIC img,
.cid-t7YXllWBIC .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t7YXllWBIC .item:focus,
.cid-t7YXllWBIC span:focus {
  outline: none;
}
.cid-t7YXllWBIC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t7YXllWBIC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t7YXllWBIC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t7YXllWBIC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t7YXllWBIC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t7YXllWBIC .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-t7YXllWBIC .mbr-section-subtitle {
  text-align: left;
}
.cid-t7YXnPmKar {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUNDrLJbaS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sUNDrLJbaS img,
.cid-sUNDrLJbaS .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sUNDrLJbaS .item:focus,
.cid-sUNDrLJbaS span:focus {
  outline: none;
}
.cid-sUNDrLJbaS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sUNDrLJbaS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sUNDrLJbaS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sUNDrLJbaS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sUNDrLJbaS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sUNDrLJbaS .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-sUNDrLJbaS .mbr-section-subtitle {
  text-align: left;
}
.cid-sOaXezzaq8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-so4vzL2Yfn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-so4vzL2Yfn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-so4vzL2Yfn .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-so4vzL2Yfn .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-so4vzL2Yfn .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-so4vzL2Yfn .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-so4vzL2Yfn .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-so4vzL2Yfn .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-so4vzL2Yfn .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-so4vzL2Yfn .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-so4vzL2Yfn .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-so4vzL2Yfn .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
