body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Montserrat', 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.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((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: #6592e6 !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: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !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: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !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: #205ac5 !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: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.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_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', 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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', 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: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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='%236592e6' %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-uSnoLMdXoY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uSnoLMdXoY nav.navbar {
  position: fixed;
}
.cid-uSnoLMdXoY .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-uSnoLMdXoY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSnoLMdXoY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSnoLMdXoY .dropdown-item:hover,
.cid-uSnoLMdXoY .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uSnoLMdXoY .dropdown-item:hover span {
  color: white;
}
.cid-uSnoLMdXoY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSnoLMdXoY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSnoLMdXoY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSnoLMdXoY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSnoLMdXoY .nav-link {
  position: relative;
}
.cid-uSnoLMdXoY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSnoLMdXoY .container {
    flex-wrap: nowrap;
  }
}
.cid-uSnoLMdXoY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSnoLMdXoY .dropdown-menu,
.cid-uSnoLMdXoY .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uSnoLMdXoY .nav-item:focus,
.cid-uSnoLMdXoY .nav-link:focus {
  outline: none;
}
.cid-uSnoLMdXoY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSnoLMdXoY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSnoLMdXoY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSnoLMdXoY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSnoLMdXoY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSnoLMdXoY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSnoLMdXoY .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: #f2f3f7;
}
.cid-uSnoLMdXoY .navbar.opened {
  transition: all 0.3s;
}
.cid-uSnoLMdXoY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSnoLMdXoY .navbar .navbar-logo img {
  width: auto;
}
.cid-uSnoLMdXoY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSnoLMdXoY .navbar.collapsed {
  justify-content: center;
}
.cid-uSnoLMdXoY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSnoLMdXoY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSnoLMdXoY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSnoLMdXoY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSnoLMdXoY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSnoLMdXoY .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-uSnoLMdXoY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSnoLMdXoY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSnoLMdXoY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSnoLMdXoY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSnoLMdXoY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSnoLMdXoY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSnoLMdXoY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSnoLMdXoY .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-uSnoLMdXoY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSnoLMdXoY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSnoLMdXoY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSnoLMdXoY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSnoLMdXoY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSnoLMdXoY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSnoLMdXoY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSnoLMdXoY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSnoLMdXoY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSnoLMdXoY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSnoLMdXoY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSnoLMdXoY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSnoLMdXoY .dropdown-item.active,
.cid-uSnoLMdXoY .dropdown-item:active {
  background-color: transparent;
}
.cid-uSnoLMdXoY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSnoLMdXoY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSnoLMdXoY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSnoLMdXoY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uSnoLMdXoY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSnoLMdXoY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSnoLMdXoY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSnoLMdXoY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSnoLMdXoY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSnoLMdXoY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uSnoLMdXoY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSnoLMdXoY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSnoLMdXoY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSnoLMdXoY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSnoLMdXoY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSnoLMdXoY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSnoLMdXoY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSnoLMdXoY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSnoLMdXoY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSnoLMdXoY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSnoLMdXoY .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-uSnoLMdXoY .navbar {
    height: 70px;
  }
  .cid-uSnoLMdXoY .navbar.opened {
    height: auto;
  }
  .cid-uSnoLMdXoY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSnl1x03xm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSnl1x03xm .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSnl1x03xm .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uSnl1x03xm .mbr-section-title {
  text-align: center;
  color: #4479d9;
}
.cid-uSnl1x03xm .mbr-text,
.cid-uSnl1x03xm .mbr-section-btn {
  color: #4479d9;
}
.cid-uSpqIQ1ImH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/98911ae6-01f6-45a8-b45c-1da4a2253aa2-1024x1024.png");
}
.cid-uSpqIQ1ImH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSpqIQ1ImH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSpqIQ1ImH .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uSpqIQ1ImH .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uSpqIQ1ImH .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uSpqIQ1ImH .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uSpqIQ1ImH .container {
    padding: 0 24px;
  }
}
.cid-uSpqIQ1ImH .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uSpqIQ1ImH .content-wrapper {
    padding: 0;
  }
}
.cid-uSpqIQ1ImH .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uSpqIQ1ImH .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #f2f3f7;
  opacity: .12;
  pointer-events: none;
}
.cid-uSpqIQ1ImH .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #f2f3f7;
  opacity: .09;
  pointer-events: none;
}
.cid-uSpqIQ1ImH .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uSpqIQ1ImH .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  max-width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uSpqIQ1ImH .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uSpqIQ1ImH .mbr-section-title {
  color: #ffffff;
}
.cid-uSpqIQ1ImH .mbr-desc,
.cid-uSpqIQ1ImH .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uSpqIQ1ImH .mbr-text,
.cid-uSpqIQ1ImH .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uSpqIQ1ImH .mbr-section-title,
.cid-uSpqIQ1ImH .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uSpJeEgKNI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSpJeEgKNI img,
.cid-uSpJeEgKNI .item-img {
  border-radius: 2rem;
  transition: all 0.3s;
  overflow: hidden;
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uSpJeEgKNI .item:focus,
.cid-uSpJeEgKNI span:focus {
  outline: none;
}
.cid-uSpJeEgKNI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSpJeEgKNI .item-wrapper {
  position: relative;
  padding: 1rem;
  border-radius: 3rem;
  background: #f2f3f7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-uSpJeEgKNI .item-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-uSpJeEgKNI .item-wrapper {
    border-radius: 2rem;
  }
}
.cid-uSpJeEgKNI .item-content {
  padding: 1.5rem 1rem;
}
@media (max-width: 767px) {
  .cid-uSpJeEgKNI .item-content {
    padding: 1rem 0;
  }
}
.cid-uSpJeEgKNI .mbr-section-title {
  color: #4479d9;
}
.cid-uSpJeEgKNI .item-title {
  color: #4479d9;
}
.cid-uSpJeEgKNI .item-subtitle {
  color: #bec2cf;
}
.cid-uSpJeEgKNI .mbr-text,
.cid-uSpJeEgKNI .mbr-section-btn {
  color: #4479d9;
}
.cid-uSpJeEgKNI .mbr-link {
  color: #4479d9;
  display: block;
}
.cid-uSpJeEgKNI .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uSpJdllkrE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSpJdllkrE .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #0196e3;
  margin-bottom: 1.5rem;
}
.cid-uSpJdllkrE .col-lg-4,
.cid-uSpJdllkrE .col-12 {
  padding: 0 2rem;
}
.cid-uSpJdllkrE .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uSpJdllkrE .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uSpJdllkrE .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uSpJdllkrE .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-uSpJdllkrE .card-title,
.cid-uSpJdllkrE .iconfont-wrapper {
  color: #4479d9;
  text-align: center;
}
.cid-uSpJdllkrE .card-text {
  color: #4479d9;
  text-align: center;
}
.cid-uSpJdllkrE .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uSpJdllkrE .mbr-section-title {
  color: #4479d9;
}
.cid-uSpJdllkrE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSpJdllkrE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSI3wgL90g {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSI3wgL90g .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uSI3wgL90g .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uSI3wgL90g .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uSI3wgL90g .card {
    margin-bottom: 2rem;
  }
  .cid-uSI3wgL90g .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uSI3wgL90g .card-title,
.cid-uSI3wgL90g .card-box {
  color: #4479d9;
}
.cid-uSI3wgL90g .icon-title {
  color: #4479d9;
}
.cid-uSI3wgL90g .icon-text {
  color: #4479d9;
}
.cid-uSIwvM4CNf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uSIwvM4CNf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIwvM4CNf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIwvM4CNf .row {
  justify-content: center;
}
.cid-uSIwvM4CNf .content-wrapper {
  padding-right: 68px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uSIwvM4CNf .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uSIwvM4CNf .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uSIwvM4CNf .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSIwvM4CNf .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 22px 0 0 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uSIwvM4CNf .content-wrapper .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 12px 12px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uSIwvM4CNf .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-uSIwvM4CNf .content-wrapper .nav-wrapper .list .item-wrap:focus {
  background-image: linear-gradient(90deg, #e43f3f, #ffe161 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uSIwvM4CNf .content-wrapper .social {
  margin-top: 22px;
}
.cid-uSIwvM4CNf .content-wrapper .social .mbr-desc {
  margin-bottom: 16px;
}
.cid-uSIwvM4CNf .content-wrapper .social .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uSIwvM4CNf .content-wrapper .social .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uSIwvM4CNf .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uSIwvM4CNf .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-image: linear-gradient(135deg, #a78aff, #ff398a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uSIwvM4CNf .content-wrapper .social .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #4479d9;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  margin: 0 26px 16px 0;
}
.cid-uSIwvM4CNf .image-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uSIwvM4CNf .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uSIwvM4CNf .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uSIwvM4CNf .mbr-copy {
  position: relative;
  margin-bottom: 0;
  padding-top: 22px;
  color: #4479d9;
  text-align: center;
}
.cid-uSIwvM4CNf .mbr-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #bbbbbb 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-uSIwvM4CNf .mbr-section-title {
  color: #4479d9;
}
.cid-uSIwvM4CNf .mbr-text {
  color: #ffffff;
}
.cid-uSIwvM4CNf .mbr-desc {
  color: #ffffff;
}
.cid-uSIwvM4CNf .list {
  color: #ffffff;
}
.cid-uSIwvM4CNf .mbr-text,
.cid-uSIwvM4CNf .text-wrapper {
  color: #4479d9;
}
.cid-uSIwvM4CNf .list,
.cid-uSIwvM4CNf .item-wrap,
.cid-uSIwvM4CNf .nav-wrapper {
  color: #4479d9;
  text-align: left;
}
.cid-uSIwvM4CNf .mbr-desc,
.cid-uSIwvM4CNf .social-wrapper {
  color: #4479d9;
}
.cid-uSIJTd5rbH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uSIJTd5rbH nav.navbar {
  position: fixed;
}
.cid-uSIJTd5rbH .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-uSIJTd5rbH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSIJTd5rbH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSIJTd5rbH .dropdown-item:hover,
.cid-uSIJTd5rbH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uSIJTd5rbH .dropdown-item:hover span {
  color: white;
}
.cid-uSIJTd5rbH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSIJTd5rbH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSIJTd5rbH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSIJTd5rbH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSIJTd5rbH .nav-link {
  position: relative;
}
.cid-uSIJTd5rbH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSIJTd5rbH .container {
    flex-wrap: nowrap;
  }
}
.cid-uSIJTd5rbH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSIJTd5rbH .dropdown-menu,
.cid-uSIJTd5rbH .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uSIJTd5rbH .nav-item:focus,
.cid-uSIJTd5rbH .nav-link:focus {
  outline: none;
}
.cid-uSIJTd5rbH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSIJTd5rbH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSIJTd5rbH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSIJTd5rbH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSIJTd5rbH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSIJTd5rbH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSIJTd5rbH .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: #f2f3f7;
}
.cid-uSIJTd5rbH .navbar.opened {
  transition: all 0.3s;
}
.cid-uSIJTd5rbH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSIJTd5rbH .navbar .navbar-logo img {
  width: auto;
}
.cid-uSIJTd5rbH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSIJTd5rbH .navbar.collapsed {
  justify-content: center;
}
.cid-uSIJTd5rbH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSIJTd5rbH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSIJTd5rbH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSIJTd5rbH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSIJTd5rbH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSIJTd5rbH .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-uSIJTd5rbH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSIJTd5rbH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSIJTd5rbH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSIJTd5rbH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSIJTd5rbH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSIJTd5rbH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSIJTd5rbH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSIJTd5rbH .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-uSIJTd5rbH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSIJTd5rbH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSIJTd5rbH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSIJTd5rbH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSIJTd5rbH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSIJTd5rbH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSIJTd5rbH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSIJTd5rbH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSIJTd5rbH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSIJTd5rbH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSIJTd5rbH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSIJTd5rbH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSIJTd5rbH .dropdown-item.active,
.cid-uSIJTd5rbH .dropdown-item:active {
  background-color: transparent;
}
.cid-uSIJTd5rbH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSIJTd5rbH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSIJTd5rbH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSIJTd5rbH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uSIJTd5rbH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSIJTd5rbH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSIJTd5rbH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSIJTd5rbH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSIJTd5rbH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSIJTd5rbH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uSIJTd5rbH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSIJTd5rbH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSIJTd5rbH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSIJTd5rbH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSIJTd5rbH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSIJTd5rbH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSIJTd5rbH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSIJTd5rbH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSIJTd5rbH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSIJTd5rbH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSIJTd5rbH .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-uSIJTd5rbH .navbar {
    height: 70px;
  }
  .cid-uSIJTd5rbH .navbar.opened {
    height: auto;
  }
  .cid-uSIJTd5rbH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSIKYojQAS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/roldere-r-logo-208x195.png");
}
.cid-uSIKYojQAS .mbr-section-title {
  color: #4479d9;
}
.cid-uSIKYojQAS .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uSIMhHkjRB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uSIMhHkjRB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIMhHkjRB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIMhHkjRB .card-wrapper {
  position: relative;
  background-color: #f2f3f7;
  padding: 160px 64px;
  margin: 6px 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 1440px) {
  .cid-uSIMhHkjRB .card-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uSIMhHkjRB .card-wrapper {
    padding: 48px 24px;
    margin: 3px 0;
  }
}
.cid-uSIMhHkjRB .card-wrapper .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
}
@media (max-width: 1540px) {
  .cid-uSIMhHkjRB .card-wrapper .content-wrapper {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uSIMhHkjRB .card-wrapper .content-wrapper {
    display: block;
  }
}
.cid-uSIMhHkjRB .card-wrapper .content-wrapper .image-wrapper {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uSIMhHkjRB .card-wrapper .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uSIMhHkjRB .card-wrapper .content-wrapper .image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSIMhHkjRB .card-wrapper .content-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-uSIMhHkjRB .card-wrapper .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uSIMhHkjRB .card-wrapper .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uSIMhHkjRB .card-wrapper .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 1440px) {
  .cid-uSIMhHkjRB .card-wrapper .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uSIMhHkjRB .card-wrapper .content-wrapper .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 1440px) {
  .cid-uSIMhHkjRB .card-wrapper .content-wrapper .content-wrap .text-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uSIMhHkjRB .card-wrapper .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uSIMhHkjRB .mbr-section-title {
  color: #000000;
}
.cid-uSIMhHkjRB .mbr-text,
.cid-uSIMhHkjRB .text-wrapper {
  color: #4479d9;
}
.cid-uSIMhHkjRB .mbr-section-title,
.cid-uSIMhHkjRB .mbr-section-btn {
  color: #4479d9;
}
.cid-uSJWJzAT2y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSJWJzAT2y .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-uSJWJzAT2y .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uSJWJzAT2y .img1 {
  background: #4479d9;
}
.cid-uSJWJzAT2y .img2 {
  background: #6592e6;
}
.cid-uSJWJzAT2y .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-uSJWJzAT2y .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-uSJWJzAT2y .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uSJWJzAT2y .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uSJWJzAT2y .card-wrapper {
    flex-direction: column;
  }
  .cid-uSJWJzAT2y .card-box {
    padding: 1rem;
  }
  .cid-uSJWJzAT2y .card-box,
  .cid-uSJWJzAT2y .img-wrapper {
    width: 100%;
  }
  .cid-uSJWJzAT2y .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-uSJWJzAT2y .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-uSJWJzAT2y .card-subtitle {
  color: #0077ff;
}
.cid-uSJWJzAT2y .mbr-text,
.cid-uSJWJzAT2y .link-wrap {
  color: #555555;
}
.cid-uSJWJzAT2y .card-title,
.cid-uSJWJzAT2y .card-box {
  color: #4479d9;
}
.cid-uSJWJzAT2y .mbr-text,
.cid-uSJWJzAT2y .mbr-section-btn {
  color: #4479d9;
}
.cid-uSJSrUV5zs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSJSrUV5zs .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uSJSrUV5zs .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uSJSrUV5zs .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uSJSrUV5zs .card {
    margin-bottom: 2rem;
  }
  .cid-uSJSrUV5zs .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uSJSrUV5zs .card-title,
.cid-uSJSrUV5zs .card-box {
  color: #4479d9;
}
.cid-uSJSrUV5zs .icon-title {
  color: #4479d9;
}
.cid-uSJSrUV5zs .icon-text {
  color: #4479d9;
}
.cid-uSIMmtYMwO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-image: url("../../../assets/images/london-1020x770.png");
}
.cid-uSIMmtYMwO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIMmtYMwO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIMmtYMwO .card {
  justify-content: flex-end;
}
.cid-uSIMmtYMwO .content {
  padding: 150px 90px 150px 0;
}
@media (max-width: 992px) {
  .cid-uSIMmtYMwO .content {
    padding: 80px 0 30px 0;
  }
}
.cid-uSIMmtYMwO .title-wrapper {
  margin-bottom: 400px;
}
@media (max-width: 992px) {
  .cid-uSIMmtYMwO .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uSIMmtYMwO .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #4479d9;
}
.cid-uSIMmtYMwO .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSIMmtYMwO .title-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uSIMmtYMwO .content-wrapper {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 992px) {
  .cid-uSIMmtYMwO .content-wrapper {
    display: block;
  }
}
.cid-uSIMmtYMwO .content-wrapper .mbr-number {
  margin-bottom: 0;
  min-width: 150px;
  padding-right: 30px;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  text-stroke: 1px #ffffff;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uSIMmtYMwO .content-wrapper .mbr-number {
    padding-right: 0;
    margin-bottom: 20px;
    min-width: auto;
  }
}
.cid-uSIMmtYMwO .content-wrapper .content-wrap {
  width: 100%;
}
.cid-uSIMmtYMwO .content-wrapper .content-wrap .desc-wrapper {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
.cid-uSIMmtYMwO .content-wrapper .content-wrap .desc-wrapper .desc-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uSIMmtYMwO .content-wrapper .content-wrap .desc-wrapper .desc-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 10px;
}
.cid-uSIMmtYMwO .content-wrapper .content-wrap .desc-wrapper .desc-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 20px;
  color: #e4ed64;
  display: inline-flex;
}
.cid-uSIMmtYMwO .content-wrapper .content-wrap .desc-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uSIMmtYMwO .content-wrapper .content-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uSIMmtYMwO .image-wrapper {
  height: 100%;
  position: relative;
}
.cid-uSIMmtYMwO .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uSIMmtYMwO .image-wrapper img {
    position: static;
    height: 300px;
    width: 100%;
    margin-bottom: 80px;
  }
}
.cid-uSIMmtYMwO .mbr-label,
.cid-uSIMmtYMwO .label-wrapper {
  color: #4479d9;
}
.cid-uSIMmtYMwO .mbr-section-title {
  color: #4479d9;
}
.cid-uSIMmtYMwO .mbr-number {
  color: #4479d9;
}
.cid-uSIMmtYMwO .mbr-desc {
  color: #ffffff;
}
.cid-uSIMmtYMwO .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uSIMmtYMwO .mbr-desc,
.cid-uSIMmtYMwO .desc-wrapper {
  color: #4479d9;
}
.cid-uSIMNzc6vg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uSIMNzc6vg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIMNzc6vg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIMNzc6vg .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uSIMNzc6vg .content-wrapper {
    padding: 0;
  }
}
.cid-uSIMNzc6vg .content-wrapper .rating-wrapper {
  margin-bottom: 24px;
}
.cid-uSIMNzc6vg .content-wrapper .rating-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  justify-content: center;
}
.cid-uSIMNzc6vg .content-wrapper .rating-wrapper .list .item-wrap {
  padding: 12px;
  -webkit-text-stroke-width: .15rem;
  -webkit-text-stroke-color: #050f0f;
  margin-bottom: 0;
}
.cid-uSIMNzc6vg .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 75%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uSIMNzc6vg .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-uSIMNzc6vg .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uSIMNzc6vg .list {
  color: #ffe66d;
  text-align: center;
}
.cid-uSIMNzc6vg .mbr-text,
.cid-uSIMNzc6vg .text-wrapper {
  color: #050f0f;
}
.cid-uSIMNzc6vg .mbr-desc {
  color: #4479d9;
  text-align: center;
}
.cid-uSIMNzc6vg .mbr-text,
.cid-uSIMNzc6vg .text-wrapper,
.cid-uSIMNzc6vg .rating-wrapper {
  text-align: center;
  color: #4479d9;
}
.cid-uSIMNzc6vg .list,
.cid-uSIMNzc6vg .item-wrap {
  color: #ffffff;
}
.cid-uSIJTi3vNM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uSIJTi3vNM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIJTi3vNM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIJTi3vNM .row {
  justify-content: center;
}
.cid-uSIJTi3vNM .content-wrapper {
  padding-right: 68px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uSIJTi3vNM .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uSIJTi3vNM .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uSIJTi3vNM .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSIJTi3vNM .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 22px 0 0 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uSIJTi3vNM .content-wrapper .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 12px 12px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uSIJTi3vNM .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-uSIJTi3vNM .content-wrapper .nav-wrapper .list .item-wrap:focus {
  background-image: linear-gradient(90deg, #e43f3f, #ffe161 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uSIJTi3vNM .content-wrapper .social {
  margin-top: 22px;
}
.cid-uSIJTi3vNM .content-wrapper .social .mbr-desc {
  margin-bottom: 16px;
}
.cid-uSIJTi3vNM .content-wrapper .social .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uSIJTi3vNM .content-wrapper .social .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uSIJTi3vNM .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uSIJTi3vNM .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-image: linear-gradient(135deg, #a78aff, #ff398a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uSIJTi3vNM .content-wrapper .social .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #4479d9;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  margin: 0 26px 16px 0;
}
.cid-uSIJTi3vNM .image-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uSIJTi3vNM .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uSIJTi3vNM .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uSIJTi3vNM .mbr-copy {
  position: relative;
  margin-bottom: 0;
  padding-top: 22px;
  color: #4479d9;
  text-align: center;
}
.cid-uSIJTi3vNM .mbr-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #bbbbbb 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-uSIJTi3vNM .mbr-section-title {
  color: #4479d9;
}
.cid-uSIJTi3vNM .mbr-text {
  color: #ffffff;
}
.cid-uSIJTi3vNM .mbr-desc {
  color: #ffffff;
}
.cid-uSIJTi3vNM .list {
  color: #ffffff;
}
.cid-uSIJTi3vNM .mbr-text,
.cid-uSIJTi3vNM .text-wrapper {
  color: #4479d9;
}
.cid-uSIJTi3vNM .list,
.cid-uSIJTi3vNM .item-wrap,
.cid-uSIJTi3vNM .nav-wrapper {
  color: #4479d9;
  text-align: left;
}
.cid-uSIJTi3vNM .mbr-desc,
.cid-uSIJTi3vNM .social-wrapper {
  color: #4479d9;
}
.cid-uTaf22chxv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uTaf22chxv nav.navbar {
  position: fixed;
}
.cid-uTaf22chxv .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-uTaf22chxv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTaf22chxv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTaf22chxv .dropdown-item:hover,
.cid-uTaf22chxv .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uTaf22chxv .dropdown-item:hover span {
  color: white;
}
.cid-uTaf22chxv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTaf22chxv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTaf22chxv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTaf22chxv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTaf22chxv .nav-link {
  position: relative;
}
.cid-uTaf22chxv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uTaf22chxv .container {
    flex-wrap: nowrap;
  }
}
.cid-uTaf22chxv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uTaf22chxv .dropdown-menu,
.cid-uTaf22chxv .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uTaf22chxv .nav-item:focus,
.cid-uTaf22chxv .nav-link:focus {
  outline: none;
}
.cid-uTaf22chxv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTaf22chxv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTaf22chxv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTaf22chxv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTaf22chxv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTaf22chxv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTaf22chxv .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: #f2f3f7;
}
.cid-uTaf22chxv .navbar.opened {
  transition: all 0.3s;
}
.cid-uTaf22chxv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTaf22chxv .navbar .navbar-logo img {
  width: auto;
}
.cid-uTaf22chxv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTaf22chxv .navbar.collapsed {
  justify-content: center;
}
.cid-uTaf22chxv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTaf22chxv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTaf22chxv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uTaf22chxv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTaf22chxv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTaf22chxv .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-uTaf22chxv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTaf22chxv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTaf22chxv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTaf22chxv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTaf22chxv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTaf22chxv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTaf22chxv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTaf22chxv .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-uTaf22chxv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTaf22chxv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTaf22chxv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTaf22chxv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTaf22chxv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTaf22chxv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTaf22chxv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uTaf22chxv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTaf22chxv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTaf22chxv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uTaf22chxv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uTaf22chxv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTaf22chxv .dropdown-item.active,
.cid-uTaf22chxv .dropdown-item:active {
  background-color: transparent;
}
.cid-uTaf22chxv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTaf22chxv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTaf22chxv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTaf22chxv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uTaf22chxv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTaf22chxv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTaf22chxv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTaf22chxv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uTaf22chxv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTaf22chxv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uTaf22chxv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTaf22chxv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTaf22chxv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTaf22chxv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTaf22chxv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTaf22chxv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTaf22chxv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTaf22chxv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTaf22chxv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uTaf22chxv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTaf22chxv .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-uTaf22chxv .navbar {
    height: 70px;
  }
  .cid-uTaf22chxv .navbar.opened {
    height: auto;
  }
  .cid-uTaf22chxv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTaf22FT9m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/roldere-r-logo-208x195.png");
}
.cid-uTaf22FT9m .mbr-section-title {
  color: #4479d9;
}
.cid-uTaf22FT9m .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uTaf232FnL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uTaf232FnL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTaf232FnL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTaf232FnL .card-wrapper {
  position: relative;
  background-color: #f2f3f7;
  padding: 160px 64px;
  margin: 6px 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 1440px) {
  .cid-uTaf232FnL .card-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uTaf232FnL .card-wrapper {
    padding: 48px 24px;
    margin: 3px 0;
  }
}
.cid-uTaf232FnL .card-wrapper .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
}
@media (max-width: 1540px) {
  .cid-uTaf232FnL .card-wrapper .content-wrapper {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uTaf232FnL .card-wrapper .content-wrapper {
    display: block;
  }
}
.cid-uTaf232FnL .card-wrapper .content-wrapper .image-wrapper {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uTaf232FnL .card-wrapper .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uTaf232FnL .card-wrapper .content-wrapper .image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uTaf232FnL .card-wrapper .content-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-uTaf232FnL .card-wrapper .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uTaf232FnL .card-wrapper .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uTaf232FnL .card-wrapper .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 1440px) {
  .cid-uTaf232FnL .card-wrapper .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTaf232FnL .card-wrapper .content-wrapper .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 1440px) {
  .cid-uTaf232FnL .card-wrapper .content-wrapper .content-wrap .text-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uTaf232FnL .card-wrapper .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uTaf232FnL .mbr-section-title {
  color: #000000;
}
.cid-uTaf232FnL .mbr-text,
.cid-uTaf232FnL .text-wrapper {
  color: #4479d9;
}
.cid-uTaf232FnL .mbr-section-title,
.cid-uTaf232FnL .mbr-section-btn {
  color: #4479d9;
}
.cid-uTaf23tlBg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uTaf23tlBg .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-uTaf23tlBg .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uTaf23tlBg .img1 {
  background: #4479d9;
}
.cid-uTaf23tlBg .img2 {
  background: #6592e6;
}
.cid-uTaf23tlBg .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-uTaf23tlBg .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-uTaf23tlBg .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uTaf23tlBg .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uTaf23tlBg .card-wrapper {
    flex-direction: column;
  }
  .cid-uTaf23tlBg .card-box {
    padding: 1rem;
  }
  .cid-uTaf23tlBg .card-box,
  .cid-uTaf23tlBg .img-wrapper {
    width: 100%;
  }
  .cid-uTaf23tlBg .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-uTaf23tlBg .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-uTaf23tlBg .card-subtitle {
  color: #0077ff;
}
.cid-uTaf23tlBg .mbr-text,
.cid-uTaf23tlBg .link-wrap {
  color: #555555;
}
.cid-uTaf23tlBg .card-title,
.cid-uTaf23tlBg .card-box {
  color: #4479d9;
}
.cid-uTaf23tlBg .mbr-text,
.cid-uTaf23tlBg .mbr-section-btn {
  color: #4479d9;
}
.cid-uTahbomqvQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uTahbomqvQ img,
.cid-uTahbomqvQ .item-img {
  border-radius: 2rem;
  transition: all 0.3s;
  overflow: hidden;
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uTahbomqvQ .item:focus,
.cid-uTahbomqvQ span:focus {
  outline: none;
}
.cid-uTahbomqvQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uTahbomqvQ .item-wrapper {
  position: relative;
  padding: 1rem;
  border-radius: 3rem;
  background: #f2f3f7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-uTahbomqvQ .item-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-uTahbomqvQ .item-wrapper {
    border-radius: 2rem;
  }
}
.cid-uTahbomqvQ .item-content {
  padding: 1.5rem 1rem;
}
@media (max-width: 767px) {
  .cid-uTahbomqvQ .item-content {
    padding: 1rem 0;
  }
}
.cid-uTahbomqvQ .mbr-section-title {
  color: #4479d9;
}
.cid-uTahbomqvQ .item-title {
  color: #4479d9;
}
.cid-uTahbomqvQ .item-subtitle {
  color: #bec2cf;
}
.cid-uTahbomqvQ .mbr-text,
.cid-uTahbomqvQ .mbr-section-btn {
  color: #4479d9;
}
.cid-uTahbomqvQ .mbr-link {
  color: #4479d9;
  display: block;
}
.cid-uTahbomqvQ .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uTahcrl4bI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uTahcrl4bI .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #0196e3;
  margin-bottom: 1.5rem;
}
.cid-uTahcrl4bI .col-lg-4,
.cid-uTahcrl4bI .col-12 {
  padding: 0 2rem;
}
.cid-uTahcrl4bI .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uTahcrl4bI .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uTahcrl4bI .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uTahcrl4bI .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-uTahcrl4bI .card-title,
.cid-uTahcrl4bI .iconfont-wrapper {
  color: #4479d9;
  text-align: center;
}
.cid-uTahcrl4bI .card-text {
  color: #4479d9;
  text-align: center;
}
.cid-uTahcrl4bI .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uTahcrl4bI .mbr-section-title {
  color: #4479d9;
}
.cid-uTahcrl4bI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTahcrl4bI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTau2y6hnl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uTau2y6hnl blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #f2f3f7;
}
.cid-uTau2y6hnl .mbr-section-title {
  color: #4479d9;
}
.cid-uTau2y6hnl .mbr-text {
  color: #4479d9;
}
.cid-uTaf23UWNp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uTaf23UWNp .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uTaf23UWNp .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uTaf23UWNp .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uTaf23UWNp .card {
    margin-bottom: 2rem;
  }
  .cid-uTaf23UWNp .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uTaf23UWNp .card-title,
.cid-uTaf23UWNp .card-box {
  color: #4479d9;
}
.cid-uTaf23UWNp .icon-title {
  color: #4479d9;
}
.cid-uTaf23UWNp .icon-text {
  color: #4479d9;
}
.cid-uTaf25kamj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uTaf25kamj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTaf25kamj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTaf25kamj .row {
  justify-content: center;
}
.cid-uTaf25kamj .content-wrapper {
  padding-right: 68px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uTaf25kamj .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uTaf25kamj .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uTaf25kamj .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTaf25kamj .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 22px 0 0 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uTaf25kamj .content-wrapper .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 12px 12px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uTaf25kamj .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-uTaf25kamj .content-wrapper .nav-wrapper .list .item-wrap:focus {
  background-image: linear-gradient(90deg, #e43f3f, #ffe161 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTaf25kamj .content-wrapper .social {
  margin-top: 22px;
}
.cid-uTaf25kamj .content-wrapper .social .mbr-desc {
  margin-bottom: 16px;
}
.cid-uTaf25kamj .content-wrapper .social .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uTaf25kamj .content-wrapper .social .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uTaf25kamj .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uTaf25kamj .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-image: linear-gradient(135deg, #a78aff, #ff398a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTaf25kamj .content-wrapper .social .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #4479d9;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  margin: 0 26px 16px 0;
}
.cid-uTaf25kamj .image-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uTaf25kamj .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uTaf25kamj .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uTaf25kamj .mbr-copy {
  position: relative;
  margin-bottom: 0;
  padding-top: 22px;
  color: #4479d9;
  text-align: center;
}
.cid-uTaf25kamj .mbr-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #bbbbbb 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-uTaf25kamj .mbr-section-title {
  color: #4479d9;
}
.cid-uTaf25kamj .mbr-text {
  color: #ffffff;
}
.cid-uTaf25kamj .mbr-desc {
  color: #ffffff;
}
.cid-uTaf25kamj .list {
  color: #ffffff;
}
.cid-uTaf25kamj .mbr-text,
.cid-uTaf25kamj .text-wrapper {
  color: #4479d9;
}
.cid-uTaf25kamj .list,
.cid-uTaf25kamj .item-wrap,
.cid-uTaf25kamj .nav-wrapper {
  color: #4479d9;
  text-align: left;
}
.cid-uTaf25kamj .mbr-desc,
.cid-uTaf25kamj .social-wrapper {
  color: #4479d9;
}
.cid-uTaIwKS83t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uTaIwKS83t nav.navbar {
  position: fixed;
}
.cid-uTaIwKS83t .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-uTaIwKS83t .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTaIwKS83t .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTaIwKS83t .dropdown-item:hover,
.cid-uTaIwKS83t .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uTaIwKS83t .dropdown-item:hover span {
  color: white;
}
.cid-uTaIwKS83t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTaIwKS83t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTaIwKS83t .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTaIwKS83t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTaIwKS83t .nav-link {
  position: relative;
}
.cid-uTaIwKS83t .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uTaIwKS83t .container {
    flex-wrap: nowrap;
  }
}
.cid-uTaIwKS83t .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uTaIwKS83t .dropdown-menu,
.cid-uTaIwKS83t .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uTaIwKS83t .nav-item:focus,
.cid-uTaIwKS83t .nav-link:focus {
  outline: none;
}
.cid-uTaIwKS83t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTaIwKS83t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTaIwKS83t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTaIwKS83t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTaIwKS83t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTaIwKS83t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTaIwKS83t .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: #f2f3f7;
}
.cid-uTaIwKS83t .navbar.opened {
  transition: all 0.3s;
}
.cid-uTaIwKS83t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTaIwKS83t .navbar .navbar-logo img {
  width: auto;
}
.cid-uTaIwKS83t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTaIwKS83t .navbar.collapsed {
  justify-content: center;
}
.cid-uTaIwKS83t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTaIwKS83t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTaIwKS83t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uTaIwKS83t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTaIwKS83t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTaIwKS83t .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-uTaIwKS83t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTaIwKS83t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTaIwKS83t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTaIwKS83t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTaIwKS83t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTaIwKS83t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTaIwKS83t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTaIwKS83t .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-uTaIwKS83t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTaIwKS83t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTaIwKS83t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTaIwKS83t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTaIwKS83t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTaIwKS83t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTaIwKS83t .navbar.navbar-short {
  min-height: 60px;
}
.cid-uTaIwKS83t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTaIwKS83t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTaIwKS83t .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uTaIwKS83t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uTaIwKS83t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTaIwKS83t .dropdown-item.active,
.cid-uTaIwKS83t .dropdown-item:active {
  background-color: transparent;
}
.cid-uTaIwKS83t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTaIwKS83t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTaIwKS83t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTaIwKS83t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uTaIwKS83t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTaIwKS83t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTaIwKS83t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTaIwKS83t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uTaIwKS83t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTaIwKS83t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uTaIwKS83t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTaIwKS83t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTaIwKS83t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTaIwKS83t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTaIwKS83t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTaIwKS83t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTaIwKS83t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTaIwKS83t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTaIwKS83t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uTaIwKS83t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTaIwKS83t .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-uTaIwKS83t .navbar {
    height: 70px;
  }
  .cid-uTaIwKS83t .navbar.opened {
    height: auto;
  }
  .cid-uTaIwKS83t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTaIwLjjGO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/roldere-r-logo-208x195.png");
}
.cid-uTaIwLjjGO .mbr-section-title {
  color: #4479d9;
}
.cid-uTaIwLjjGO .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uTaIwLGpEe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uTaIwLGpEe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTaIwLGpEe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTaIwLGpEe .card-wrapper {
  position: relative;
  background-color: #f2f3f7;
  padding: 160px 64px;
  margin: 6px 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 1440px) {
  .cid-uTaIwLGpEe .card-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uTaIwLGpEe .card-wrapper {
    padding: 48px 24px;
    margin: 3px 0;
  }
}
.cid-uTaIwLGpEe .card-wrapper .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
}
@media (max-width: 1540px) {
  .cid-uTaIwLGpEe .card-wrapper .content-wrapper {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uTaIwLGpEe .card-wrapper .content-wrapper {
    display: block;
  }
}
.cid-uTaIwLGpEe .card-wrapper .content-wrapper .image-wrapper {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uTaIwLGpEe .card-wrapper .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uTaIwLGpEe .card-wrapper .content-wrapper .image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uTaIwLGpEe .card-wrapper .content-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-uTaIwLGpEe .card-wrapper .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uTaIwLGpEe .card-wrapper .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uTaIwLGpEe .card-wrapper .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 1440px) {
  .cid-uTaIwLGpEe .card-wrapper .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTaIwLGpEe .card-wrapper .content-wrapper .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 1440px) {
  .cid-uTaIwLGpEe .card-wrapper .content-wrapper .content-wrap .text-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uTaIwLGpEe .card-wrapper .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uTaIwLGpEe .mbr-section-title {
  color: #000000;
}
.cid-uTaIwLGpEe .mbr-text,
.cid-uTaIwLGpEe .text-wrapper {
  color: #4479d9;
}
.cid-uTaIwLGpEe .mbr-section-title,
.cid-uTaIwLGpEe .mbr-section-btn {
  color: #4479d9;
}
.cid-uTaIwOv52L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uTaIwOv52L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTaIwOv52L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTaIwOv52L .row {
  justify-content: center;
}
.cid-uTaIwOv52L .content-wrapper {
  padding-right: 68px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uTaIwOv52L .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uTaIwOv52L .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uTaIwOv52L .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTaIwOv52L .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 22px 0 0 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uTaIwOv52L .content-wrapper .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 12px 12px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uTaIwOv52L .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-uTaIwOv52L .content-wrapper .nav-wrapper .list .item-wrap:focus {
  background-image: linear-gradient(90deg, #e43f3f, #ffe161 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTaIwOv52L .content-wrapper .social {
  margin-top: 22px;
}
.cid-uTaIwOv52L .content-wrapper .social .mbr-desc {
  margin-bottom: 16px;
}
.cid-uTaIwOv52L .content-wrapper .social .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uTaIwOv52L .content-wrapper .social .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uTaIwOv52L .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uTaIwOv52L .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-image: linear-gradient(135deg, #a78aff, #ff398a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTaIwOv52L .content-wrapper .social .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #4479d9;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  margin: 0 26px 16px 0;
}
.cid-uTaIwOv52L .image-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uTaIwOv52L .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uTaIwOv52L .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uTaIwOv52L .mbr-copy {
  position: relative;
  margin-bottom: 0;
  padding-top: 22px;
  color: #4479d9;
  text-align: center;
}
.cid-uTaIwOv52L .mbr-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #bbbbbb 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-uTaIwOv52L .mbr-section-title {
  color: #4479d9;
}
.cid-uTaIwOv52L .mbr-text {
  color: #ffffff;
}
.cid-uTaIwOv52L .mbr-desc {
  color: #ffffff;
}
.cid-uTaIwOv52L .list {
  color: #ffffff;
}
.cid-uTaIwOv52L .mbr-text,
.cid-uTaIwOv52L .text-wrapper {
  color: #4479d9;
}
.cid-uTaIwOv52L .list,
.cid-uTaIwOv52L .item-wrap,
.cid-uTaIwOv52L .nav-wrapper {
  color: #4479d9;
  text-align: left;
}
.cid-uTaIwOv52L .mbr-desc,
.cid-uTaIwOv52L .social-wrapper {
  color: #4479d9;
}
.cid-uTaImqxsM3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uTaImqxsM3 nav.navbar {
  position: fixed;
}
.cid-uTaImqxsM3 .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-uTaImqxsM3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTaImqxsM3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTaImqxsM3 .dropdown-item:hover,
.cid-uTaImqxsM3 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uTaImqxsM3 .dropdown-item:hover span {
  color: white;
}
.cid-uTaImqxsM3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTaImqxsM3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTaImqxsM3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTaImqxsM3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTaImqxsM3 .nav-link {
  position: relative;
}
.cid-uTaImqxsM3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uTaImqxsM3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uTaImqxsM3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uTaImqxsM3 .dropdown-menu,
.cid-uTaImqxsM3 .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uTaImqxsM3 .nav-item:focus,
.cid-uTaImqxsM3 .nav-link:focus {
  outline: none;
}
.cid-uTaImqxsM3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTaImqxsM3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTaImqxsM3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTaImqxsM3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTaImqxsM3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTaImqxsM3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTaImqxsM3 .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: #f2f3f7;
}
.cid-uTaImqxsM3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uTaImqxsM3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTaImqxsM3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uTaImqxsM3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTaImqxsM3 .navbar.collapsed {
  justify-content: center;
}
.cid-uTaImqxsM3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTaImqxsM3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTaImqxsM3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uTaImqxsM3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTaImqxsM3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTaImqxsM3 .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-uTaImqxsM3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTaImqxsM3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTaImqxsM3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTaImqxsM3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTaImqxsM3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTaImqxsM3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTaImqxsM3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTaImqxsM3 .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-uTaImqxsM3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTaImqxsM3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTaImqxsM3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTaImqxsM3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTaImqxsM3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTaImqxsM3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTaImqxsM3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uTaImqxsM3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTaImqxsM3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTaImqxsM3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uTaImqxsM3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uTaImqxsM3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTaImqxsM3 .dropdown-item.active,
.cid-uTaImqxsM3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uTaImqxsM3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTaImqxsM3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTaImqxsM3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTaImqxsM3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uTaImqxsM3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTaImqxsM3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTaImqxsM3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTaImqxsM3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uTaImqxsM3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTaImqxsM3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uTaImqxsM3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTaImqxsM3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTaImqxsM3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTaImqxsM3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTaImqxsM3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTaImqxsM3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTaImqxsM3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTaImqxsM3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTaImqxsM3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uTaImqxsM3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTaImqxsM3 .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-uTaImqxsM3 .navbar {
    height: 70px;
  }
  .cid-uTaImqxsM3 .navbar.opened {
    height: auto;
  }
  .cid-uTaImqxsM3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTaImrhr2n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/roldere-r-logo-208x195.png");
}
.cid-uTaImrhr2n .mbr-section-title {
  color: #4479d9;
}
.cid-uTaImrhr2n .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uTaImrNX9I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uTaImrNX9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTaImrNX9I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTaImrNX9I .card-wrapper {
  position: relative;
  background-color: #f2f3f7;
  padding: 160px 64px;
  margin: 6px 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 1440px) {
  .cid-uTaImrNX9I .card-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uTaImrNX9I .card-wrapper {
    padding: 48px 24px;
    margin: 3px 0;
  }
}
.cid-uTaImrNX9I .card-wrapper .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
}
@media (max-width: 1540px) {
  .cid-uTaImrNX9I .card-wrapper .content-wrapper {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uTaImrNX9I .card-wrapper .content-wrapper {
    display: block;
  }
}
.cid-uTaImrNX9I .card-wrapper .content-wrapper .image-wrapper {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uTaImrNX9I .card-wrapper .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uTaImrNX9I .card-wrapper .content-wrapper .image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uTaImrNX9I .card-wrapper .content-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-uTaImrNX9I .card-wrapper .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uTaImrNX9I .card-wrapper .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uTaImrNX9I .card-wrapper .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 1440px) {
  .cid-uTaImrNX9I .card-wrapper .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTaImrNX9I .card-wrapper .content-wrapper .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 1440px) {
  .cid-uTaImrNX9I .card-wrapper .content-wrapper .content-wrap .text-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uTaImrNX9I .card-wrapper .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uTaImrNX9I .mbr-section-title {
  color: #000000;
}
.cid-uTaImrNX9I .mbr-text,
.cid-uTaImrNX9I .text-wrapper {
  color: #4479d9;
}
.cid-uTaImrNX9I .mbr-section-title,
.cid-uTaImrNX9I .mbr-section-btn {
  color: #4479d9;
}
.cid-uTaL1xyivB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uTaL1xyivB blockquote {
  border-color: #4479d9;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uTaL1xyivB .mbr-section-title {
  color: #4479d9;
}
.cid-uTaL1xyivB .mbr-text {
  color: #4479d9;
}
.cid-uTaImuSHHH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uTaImuSHHH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTaImuSHHH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTaImuSHHH .row {
  justify-content: center;
}
.cid-uTaImuSHHH .content-wrapper {
  padding-right: 68px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uTaImuSHHH .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uTaImuSHHH .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uTaImuSHHH .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTaImuSHHH .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 22px 0 0 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uTaImuSHHH .content-wrapper .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 12px 12px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uTaImuSHHH .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-uTaImuSHHH .content-wrapper .nav-wrapper .list .item-wrap:focus {
  background-image: linear-gradient(90deg, #e43f3f, #ffe161 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTaImuSHHH .content-wrapper .social {
  margin-top: 22px;
}
.cid-uTaImuSHHH .content-wrapper .social .mbr-desc {
  margin-bottom: 16px;
}
.cid-uTaImuSHHH .content-wrapper .social .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uTaImuSHHH .content-wrapper .social .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uTaImuSHHH .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uTaImuSHHH .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-image: linear-gradient(135deg, #a78aff, #ff398a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTaImuSHHH .content-wrapper .social .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #4479d9;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  margin: 0 26px 16px 0;
}
.cid-uTaImuSHHH .image-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uTaImuSHHH .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uTaImuSHHH .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uTaImuSHHH .mbr-copy {
  position: relative;
  margin-bottom: 0;
  padding-top: 22px;
  color: #4479d9;
  text-align: center;
}
.cid-uTaImuSHHH .mbr-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #bbbbbb 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-uTaImuSHHH .mbr-section-title {
  color: #4479d9;
}
.cid-uTaImuSHHH .mbr-text {
  color: #ffffff;
}
.cid-uTaImuSHHH .mbr-desc {
  color: #ffffff;
}
.cid-uTaImuSHHH .list {
  color: #ffffff;
}
.cid-uTaImuSHHH .mbr-text,
.cid-uTaImuSHHH .text-wrapper {
  color: #4479d9;
}
.cid-uTaImuSHHH .list,
.cid-uTaImuSHHH .item-wrap,
.cid-uTaImuSHHH .nav-wrapper {
  color: #4479d9;
  text-align: left;
}
.cid-uTaImuSHHH .mbr-desc,
.cid-uTaImuSHHH .social-wrapper {
  color: #4479d9;
}
.cid-uTaItjO8tu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uTaItjO8tu nav.navbar {
  position: fixed;
}
.cid-uTaItjO8tu .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-uTaItjO8tu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTaItjO8tu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTaItjO8tu .dropdown-item:hover,
.cid-uTaItjO8tu .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uTaItjO8tu .dropdown-item:hover span {
  color: white;
}
.cid-uTaItjO8tu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTaItjO8tu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTaItjO8tu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTaItjO8tu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTaItjO8tu .nav-link {
  position: relative;
}
.cid-uTaItjO8tu .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uTaItjO8tu .container {
    flex-wrap: nowrap;
  }
}
.cid-uTaItjO8tu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uTaItjO8tu .dropdown-menu,
.cid-uTaItjO8tu .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uTaItjO8tu .nav-item:focus,
.cid-uTaItjO8tu .nav-link:focus {
  outline: none;
}
.cid-uTaItjO8tu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTaItjO8tu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTaItjO8tu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTaItjO8tu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTaItjO8tu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTaItjO8tu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTaItjO8tu .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: #f2f3f7;
}
.cid-uTaItjO8tu .navbar.opened {
  transition: all 0.3s;
}
.cid-uTaItjO8tu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTaItjO8tu .navbar .navbar-logo img {
  width: auto;
}
.cid-uTaItjO8tu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTaItjO8tu .navbar.collapsed {
  justify-content: center;
}
.cid-uTaItjO8tu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTaItjO8tu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTaItjO8tu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uTaItjO8tu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTaItjO8tu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTaItjO8tu .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-uTaItjO8tu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTaItjO8tu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTaItjO8tu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTaItjO8tu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTaItjO8tu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTaItjO8tu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTaItjO8tu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTaItjO8tu .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-uTaItjO8tu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTaItjO8tu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTaItjO8tu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTaItjO8tu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTaItjO8tu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTaItjO8tu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTaItjO8tu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uTaItjO8tu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTaItjO8tu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTaItjO8tu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uTaItjO8tu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uTaItjO8tu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTaItjO8tu .dropdown-item.active,
.cid-uTaItjO8tu .dropdown-item:active {
  background-color: transparent;
}
.cid-uTaItjO8tu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTaItjO8tu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTaItjO8tu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTaItjO8tu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uTaItjO8tu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTaItjO8tu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTaItjO8tu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTaItjO8tu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uTaItjO8tu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTaItjO8tu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uTaItjO8tu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTaItjO8tu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTaItjO8tu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTaItjO8tu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTaItjO8tu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTaItjO8tu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTaItjO8tu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTaItjO8tu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTaItjO8tu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uTaItjO8tu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTaItjO8tu .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-uTaItjO8tu .navbar {
    height: 70px;
  }
  .cid-uTaItjO8tu .navbar.opened {
    height: auto;
  }
  .cid-uTaItjO8tu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTaItkfioD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/roldere-r-logo-208x195.png");
}
.cid-uTaItkfioD .mbr-section-title {
  color: #4479d9;
}
.cid-uTaItkfioD .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uTaItkDU6M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uTaItkDU6M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTaItkDU6M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTaItkDU6M .card-wrapper {
  position: relative;
  background-color: #f2f3f7;
  padding: 160px 64px;
  margin: 6px 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 1440px) {
  .cid-uTaItkDU6M .card-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uTaItkDU6M .card-wrapper {
    padding: 48px 24px;
    margin: 3px 0;
  }
}
.cid-uTaItkDU6M .card-wrapper .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
}
@media (max-width: 1540px) {
  .cid-uTaItkDU6M .card-wrapper .content-wrapper {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uTaItkDU6M .card-wrapper .content-wrapper {
    display: block;
  }
}
.cid-uTaItkDU6M .card-wrapper .content-wrapper .image-wrapper {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uTaItkDU6M .card-wrapper .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uTaItkDU6M .card-wrapper .content-wrapper .image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uTaItkDU6M .card-wrapper .content-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-uTaItkDU6M .card-wrapper .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uTaItkDU6M .card-wrapper .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uTaItkDU6M .card-wrapper .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 54px;
}
@media (max-width: 1440px) {
  .cid-uTaItkDU6M .card-wrapper .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uTaItkDU6M .card-wrapper .content-wrapper .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 1440px) {
  .cid-uTaItkDU6M .card-wrapper .content-wrapper .content-wrap .text-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uTaItkDU6M .card-wrapper .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uTaItkDU6M .mbr-section-title {
  color: #000000;
}
.cid-uTaItkDU6M .mbr-text,
.cid-uTaItkDU6M .text-wrapper {
  color: #4479d9;
}
.cid-uTaItkDU6M .mbr-section-title,
.cid-uTaItkDU6M .mbr-section-btn {
  color: #4479d9;
}
.cid-uTaOHHvlJF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uTaOHHvlJF .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uTaOHHvlJF form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-uTaOHHvlJF form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-uTaOHHvlJF form.mbr-form {
    padding: 1rem;
  }
}
.cid-uTaOHHvlJF form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uTaOHHvlJF form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-uTaOHHvlJF .mbr-section-title {
  color: #4479d9;
}
.cid-uTaOHHvlJF P {
  color: #4479d9;
}
.cid-uTaMHyI4AS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-image: url("../../../assets/images/london-1020x770.png");
}
.cid-uTaMHyI4AS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTaMHyI4AS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTaMHyI4AS .card {
  justify-content: flex-end;
}
.cid-uTaMHyI4AS .content {
  padding: 150px 90px 150px 0;
}
@media (max-width: 992px) {
  .cid-uTaMHyI4AS .content {
    padding: 80px 0 30px 0;
  }
}
.cid-uTaMHyI4AS .title-wrapper {
  margin-bottom: 400px;
}
@media (max-width: 992px) {
  .cid-uTaMHyI4AS .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uTaMHyI4AS .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #4479d9;
}
.cid-uTaMHyI4AS .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uTaMHyI4AS .title-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uTaMHyI4AS .content-wrapper {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 992px) {
  .cid-uTaMHyI4AS .content-wrapper {
    display: block;
  }
}
.cid-uTaMHyI4AS .content-wrapper .mbr-number {
  margin-bottom: 0;
  min-width: 150px;
  padding-right: 30px;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  text-stroke: 1px #ffffff;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-uTaMHyI4AS .content-wrapper .mbr-number {
    padding-right: 0;
    margin-bottom: 20px;
    min-width: auto;
  }
}
.cid-uTaMHyI4AS .content-wrapper .content-wrap {
  width: 100%;
}
.cid-uTaMHyI4AS .content-wrapper .content-wrap .desc-wrapper {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
.cid-uTaMHyI4AS .content-wrapper .content-wrap .desc-wrapper .desc-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uTaMHyI4AS .content-wrapper .content-wrap .desc-wrapper .desc-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 10px;
}
.cid-uTaMHyI4AS .content-wrapper .content-wrap .desc-wrapper .desc-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 20px;
  color: #e4ed64;
  display: inline-flex;
}
.cid-uTaMHyI4AS .content-wrapper .content-wrap .desc-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uTaMHyI4AS .content-wrapper .content-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uTaMHyI4AS .image-wrapper {
  height: 100%;
  position: relative;
}
.cid-uTaMHyI4AS .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uTaMHyI4AS .image-wrapper img {
    position: static;
    height: 300px;
    width: 100%;
    margin-bottom: 80px;
  }
}
.cid-uTaMHyI4AS .mbr-label,
.cid-uTaMHyI4AS .label-wrapper {
  color: #4479d9;
}
.cid-uTaMHyI4AS .mbr-section-title {
  color: #4479d9;
}
.cid-uTaMHyI4AS .mbr-number {
  color: #4479d9;
}
.cid-uTaMHyI4AS .mbr-desc {
  color: #ffffff;
}
.cid-uTaMHyI4AS .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uTaMHyI4AS .mbr-desc,
.cid-uTaMHyI4AS .desc-wrapper {
  color: #4479d9;
}
.cid-uTaItnFY2F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uTaItnFY2F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTaItnFY2F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTaItnFY2F .row {
  justify-content: center;
}
.cid-uTaItnFY2F .content-wrapper {
  padding-right: 68px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uTaItnFY2F .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uTaItnFY2F .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uTaItnFY2F .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTaItnFY2F .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 22px 0 0 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uTaItnFY2F .content-wrapper .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 12px 12px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uTaItnFY2F .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-uTaItnFY2F .content-wrapper .nav-wrapper .list .item-wrap:focus {
  background-image: linear-gradient(90deg, #e43f3f, #ffe161 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTaItnFY2F .content-wrapper .social {
  margin-top: 22px;
}
.cid-uTaItnFY2F .content-wrapper .social .mbr-desc {
  margin-bottom: 16px;
}
.cid-uTaItnFY2F .content-wrapper .social .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uTaItnFY2F .content-wrapper .social .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uTaItnFY2F .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uTaItnFY2F .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-image: linear-gradient(135deg, #a78aff, #ff398a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTaItnFY2F .content-wrapper .social .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #4479d9;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  margin: 0 26px 16px 0;
}
.cid-uTaItnFY2F .image-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uTaItnFY2F .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uTaItnFY2F .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uTaItnFY2F .mbr-copy {
  position: relative;
  margin-bottom: 0;
  padding-top: 22px;
  color: #4479d9;
  text-align: center;
}
.cid-uTaItnFY2F .mbr-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #bbbbbb 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-uTaItnFY2F .mbr-section-title {
  color: #4479d9;
}
.cid-uTaItnFY2F .mbr-text {
  color: #ffffff;
}
.cid-uTaItnFY2F .mbr-desc {
  color: #ffffff;
}
.cid-uTaItnFY2F .list {
  color: #ffffff;
}
.cid-uTaItnFY2F .mbr-text,
.cid-uTaItnFY2F .text-wrapper {
  color: #4479d9;
}
.cid-uTaItnFY2F .list,
.cid-uTaItnFY2F .item-wrap,
.cid-uTaItnFY2F .nav-wrapper {
  color: #4479d9;
  text-align: left;
}
.cid-uTaItnFY2F .mbr-desc,
.cid-uTaItnFY2F .social-wrapper {
  color: #4479d9;
}
.cid-uTaIG2qoCc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uTaIG2qoCc nav.navbar {
  position: fixed;
}
.cid-uTaIG2qoCc .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-uTaIG2qoCc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTaIG2qoCc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTaIG2qoCc .dropdown-item:hover,
.cid-uTaIG2qoCc .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uTaIG2qoCc .dropdown-item:hover span {
  color: white;
}
.cid-uTaIG2qoCc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTaIG2qoCc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTaIG2qoCc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTaIG2qoCc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTaIG2qoCc .nav-link {
  position: relative;
}
.cid-uTaIG2qoCc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uTaIG2qoCc .container {
    flex-wrap: nowrap;
  }
}
.cid-uTaIG2qoCc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uTaIG2qoCc .dropdown-menu,
.cid-uTaIG2qoCc .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uTaIG2qoCc .nav-item:focus,
.cid-uTaIG2qoCc .nav-link:focus {
  outline: none;
}
.cid-uTaIG2qoCc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTaIG2qoCc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTaIG2qoCc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTaIG2qoCc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTaIG2qoCc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTaIG2qoCc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTaIG2qoCc .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: #f2f3f7;
}
.cid-uTaIG2qoCc .navbar.opened {
  transition: all 0.3s;
}
.cid-uTaIG2qoCc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTaIG2qoCc .navbar .navbar-logo img {
  width: auto;
}
.cid-uTaIG2qoCc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTaIG2qoCc .navbar.collapsed {
  justify-content: center;
}
.cid-uTaIG2qoCc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTaIG2qoCc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTaIG2qoCc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uTaIG2qoCc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTaIG2qoCc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTaIG2qoCc .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-uTaIG2qoCc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTaIG2qoCc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTaIG2qoCc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTaIG2qoCc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTaIG2qoCc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTaIG2qoCc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTaIG2qoCc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTaIG2qoCc .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-uTaIG2qoCc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTaIG2qoCc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTaIG2qoCc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTaIG2qoCc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTaIG2qoCc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTaIG2qoCc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTaIG2qoCc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uTaIG2qoCc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTaIG2qoCc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTaIG2qoCc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uTaIG2qoCc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uTaIG2qoCc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTaIG2qoCc .dropdown-item.active,
.cid-uTaIG2qoCc .dropdown-item:active {
  background-color: transparent;
}
.cid-uTaIG2qoCc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTaIG2qoCc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTaIG2qoCc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTaIG2qoCc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uTaIG2qoCc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTaIG2qoCc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTaIG2qoCc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTaIG2qoCc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uTaIG2qoCc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTaIG2qoCc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uTaIG2qoCc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTaIG2qoCc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTaIG2qoCc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTaIG2qoCc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTaIG2qoCc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTaIG2qoCc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTaIG2qoCc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTaIG2qoCc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTaIG2qoCc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uTaIG2qoCc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTaIG2qoCc .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-uTaIG2qoCc .navbar {
    height: 70px;
  }
  .cid-uTaIG2qoCc .navbar.opened {
    height: auto;
  }
  .cid-uTaIG2qoCc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTaIG30Hko {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/roldere-r-logo-208x195.png");
}
.cid-uTaIG30Hko .mbr-section-title {
  color: #4479d9;
}
.cid-uTaIG30Hko .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uTaXxxtMaW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uTaXxxtMaW .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uTaXxxtMaW .mbr-text {
  color: #4479d9;
}
.cid-uTaIG73i2x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uTaIG73i2x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTaIG73i2x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTaIG73i2x .row {
  justify-content: center;
}
.cid-uTaIG73i2x .content-wrapper {
  padding-right: 68px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uTaIG73i2x .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uTaIG73i2x .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uTaIG73i2x .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTaIG73i2x .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 22px 0 0 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uTaIG73i2x .content-wrapper .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 12px 12px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uTaIG73i2x .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-uTaIG73i2x .content-wrapper .nav-wrapper .list .item-wrap:focus {
  background-image: linear-gradient(90deg, #e43f3f, #ffe161 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTaIG73i2x .content-wrapper .social {
  margin-top: 22px;
}
.cid-uTaIG73i2x .content-wrapper .social .mbr-desc {
  margin-bottom: 16px;
}
.cid-uTaIG73i2x .content-wrapper .social .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uTaIG73i2x .content-wrapper .social .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uTaIG73i2x .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uTaIG73i2x .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-image: linear-gradient(135deg, #a78aff, #ff398a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTaIG73i2x .content-wrapper .social .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #4479d9;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  margin: 0 26px 16px 0;
}
.cid-uTaIG73i2x .image-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uTaIG73i2x .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uTaIG73i2x .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uTaIG73i2x .mbr-copy {
  position: relative;
  margin-bottom: 0;
  padding-top: 22px;
  color: #4479d9;
  text-align: center;
}
.cid-uTaIG73i2x .mbr-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #bbbbbb 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-uTaIG73i2x .mbr-section-title {
  color: #4479d9;
}
.cid-uTaIG73i2x .mbr-text {
  color: #ffffff;
}
.cid-uTaIG73i2x .mbr-desc {
  color: #ffffff;
}
.cid-uTaIG73i2x .list {
  color: #ffffff;
}
.cid-uTaIG73i2x .mbr-text,
.cid-uTaIG73i2x .text-wrapper {
  color: #4479d9;
}
.cid-uTaIG73i2x .list,
.cid-uTaIG73i2x .item-wrap,
.cid-uTaIG73i2x .nav-wrapper {
  color: #4479d9;
  text-align: left;
}
.cid-uTaIG73i2x .mbr-desc,
.cid-uTaIG73i2x .social-wrapper {
  color: #4479d9;
}
.cid-uTaIBDZCur {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uTaIBDZCur nav.navbar {
  position: fixed;
}
.cid-uTaIBDZCur .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-uTaIBDZCur .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTaIBDZCur .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTaIBDZCur .dropdown-item:hover,
.cid-uTaIBDZCur .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uTaIBDZCur .dropdown-item:hover span {
  color: white;
}
.cid-uTaIBDZCur .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTaIBDZCur .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTaIBDZCur .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTaIBDZCur .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTaIBDZCur .nav-link {
  position: relative;
}
.cid-uTaIBDZCur .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uTaIBDZCur .container {
    flex-wrap: nowrap;
  }
}
.cid-uTaIBDZCur .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uTaIBDZCur .dropdown-menu,
.cid-uTaIBDZCur .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uTaIBDZCur .nav-item:focus,
.cid-uTaIBDZCur .nav-link:focus {
  outline: none;
}
.cid-uTaIBDZCur .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTaIBDZCur .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTaIBDZCur .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTaIBDZCur .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTaIBDZCur .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTaIBDZCur .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTaIBDZCur .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: #f2f3f7;
}
.cid-uTaIBDZCur .navbar.opened {
  transition: all 0.3s;
}
.cid-uTaIBDZCur .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTaIBDZCur .navbar .navbar-logo img {
  width: auto;
}
.cid-uTaIBDZCur .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTaIBDZCur .navbar.collapsed {
  justify-content: center;
}
.cid-uTaIBDZCur .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTaIBDZCur .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTaIBDZCur .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uTaIBDZCur .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTaIBDZCur .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTaIBDZCur .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-uTaIBDZCur .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTaIBDZCur .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTaIBDZCur .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTaIBDZCur .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTaIBDZCur .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTaIBDZCur .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTaIBDZCur .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTaIBDZCur .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-uTaIBDZCur .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTaIBDZCur .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTaIBDZCur .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTaIBDZCur .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTaIBDZCur .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTaIBDZCur .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTaIBDZCur .navbar.navbar-short {
  min-height: 60px;
}
.cid-uTaIBDZCur .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTaIBDZCur .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTaIBDZCur .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uTaIBDZCur .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uTaIBDZCur .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTaIBDZCur .dropdown-item.active,
.cid-uTaIBDZCur .dropdown-item:active {
  background-color: transparent;
}
.cid-uTaIBDZCur .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTaIBDZCur .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTaIBDZCur .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTaIBDZCur .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uTaIBDZCur .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTaIBDZCur .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTaIBDZCur ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTaIBDZCur .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uTaIBDZCur button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTaIBDZCur button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uTaIBDZCur button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTaIBDZCur button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTaIBDZCur button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTaIBDZCur button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTaIBDZCur nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTaIBDZCur nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTaIBDZCur nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTaIBDZCur nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTaIBDZCur .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uTaIBDZCur a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTaIBDZCur .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-uTaIBDZCur .navbar {
    height: 70px;
  }
  .cid-uTaIBDZCur .navbar.opened {
    height: auto;
  }
  .cid-uTaIBDZCur .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTaIBEDXYa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/roldere-r-logo-208x195.png");
}
.cid-uTaIBEDXYa .mbr-section-title {
  color: #4479d9;
}
.cid-uTaIBEDXYa .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uTaVadg2Mt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uTaVadg2Mt .mbr-section-subtitle {
  color: #4479d9;
}
.cid-uTaVadg2Mt .mbr-text {
  color: #4479d9;
}
.cid-uTaIBIIvbu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uTaIBIIvbu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTaIBIIvbu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTaIBIIvbu .row {
  justify-content: center;
}
.cid-uTaIBIIvbu .content-wrapper {
  padding-right: 68px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uTaIBIIvbu .content-wrapper {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.cid-uTaIBIIvbu .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uTaIBIIvbu .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uTaIBIIvbu .content-wrapper .nav-wrapper .list {
  padding: 0;
  margin: 22px 0 0 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uTaIBIIvbu .content-wrapper .nav-wrapper .list .item-wrap {
  position: relative;
  margin: 0 12px 12px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uTaIBIIvbu .content-wrapper .nav-wrapper .list .item-wrap:hover,
.cid-uTaIBIIvbu .content-wrapper .nav-wrapper .list .item-wrap:focus {
  background-image: linear-gradient(90deg, #e43f3f, #ffe161 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTaIBIIvbu .content-wrapper .social {
  margin-top: 22px;
}
.cid-uTaIBIIvbu .content-wrapper .social .mbr-desc {
  margin-bottom: 16px;
}
.cid-uTaIBIIvbu .content-wrapper .social .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uTaIBIIvbu .content-wrapper .social .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uTaIBIIvbu .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uTaIBIIvbu .content-wrapper .social .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-image: linear-gradient(135deg, #a78aff, #ff398a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uTaIBIIvbu .content-wrapper .social .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #4479d9;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
  margin: 0 26px 16px 0;
}
.cid-uTaIBIIvbu .image-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uTaIBIIvbu .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uTaIBIIvbu .image-wrapper img {
  height: 350px;
  object-fit: cover;
}
.cid-uTaIBIIvbu .mbr-copy {
  position: relative;
  margin-bottom: 0;
  padding-top: 22px;
  color: #4479d9;
  text-align: center;
}
.cid-uTaIBIIvbu .mbr-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #bbbbbb 0%, transparent 50%);
  height: 1px;
  width: 100%;
}
.cid-uTaIBIIvbu .mbr-section-title {
  color: #4479d9;
}
.cid-uTaIBIIvbu .mbr-text {
  color: #ffffff;
}
.cid-uTaIBIIvbu .mbr-desc {
  color: #ffffff;
}
.cid-uTaIBIIvbu .list {
  color: #ffffff;
}
.cid-uTaIBIIvbu .mbr-text,
.cid-uTaIBIIvbu .text-wrapper {
  color: #4479d9;
}
.cid-uTaIBIIvbu .list,
.cid-uTaIBIIvbu .item-wrap,
.cid-uTaIBIIvbu .nav-wrapper {
  color: #4479d9;
  text-align: left;
}
.cid-uTaIBIIvbu .mbr-desc,
.cid-uTaIBIIvbu .social-wrapper {
  color: #4479d9;
}
