body {
  font-family: 'Syne', sans-serif;
}
.display-1 {
  font-family: 'Syne', sans-serif;
  font-size: 6.25rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.8125rem;
}
.display-2 {
  font-family: 'Syne', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  line-height: 1.14;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  line-height: 1.41;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.375rem;
    font-size: calc( 2.8375rem + (6.25 - 2.8375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.8375rem + (6.25 - 2.8375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.175rem + (1.5 - 1.175) * ((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.14 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.41 * (1rem + (1 - 1) * ((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: #ec2f2f !important;
}
.bg-success {
  background-color: #c298d3 !important;
}
.bg-info {
  background-color: #85c0d9 !important;
}
.bg-warning {
  background-color: #ffe885 !important;
}
.bg-danger {
  background-color: #e6c63b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ec2f2f !important;
  border-color: #ec2f2f !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: #b41010 !important;
  border-color: #b41010 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b41010 !important;
  border-color: #b41010 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #57b8e0 !important;
  border-color: #57b8e0 !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: #2390bd !important;
  border-color: #2390bd !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2390bd !important;
  border-color: #2390bd !important;
}
.btn-info,
.btn-info:active {
  background-color: #85c0d9 !important;
  border-color: #85c0d9 !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: #439ec4 !important;
  border-color: #439ec4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #439ec4 !important;
  border-color: #439ec4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #c298d3 !important;
  border-color: #c298d3 !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: #9e5bb9 !important;
  border-color: #9e5bb9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #9e5bb9 !important;
  border-color: #9e5bb9 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
  color: #856c00 !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: #2e2600 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #856c00 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !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: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !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: #000000 !important;
  border-color: #000000 !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: #ec2f2f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b41010 !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: #ec2f2f !important;
  border-color: #ec2f2f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #57b8e0;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2390bd !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: #57b8e0 !important;
  border-color: #57b8e0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #85c0d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #439ec4 !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: #85c0d9 !important;
  border-color: #85c0d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c298d3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #9e5bb9 !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: #c298d3 !important;
  border-color: #c298d3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe885;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd82e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #856c00 !important;
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6c63b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b39617 !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: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.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: #000000 !important;
  border-color: #000000 !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: #ec2f2f !important;
}
.text-secondary {
  color: #57b8e0 !important;
}
.text-success {
  color: #c298d3 !important;
}
.text-info {
  color: #85c0d9 !important;
}
.text-warning {
  color: #ffe885 !important;
}
.text-danger {
  color: #e6c63b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a60f0f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #2186b0 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #9851b4 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3b96bd !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffd51f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a68b15 !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: #ec2f2f;
}
.nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #85c0d9;
}
.alert-warning {
  background-color: #ffe885;
}
.alert-danger {
  background-color: #e6c63b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ec2f2f;
  border-color: #ec2f2f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ec2f2f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdeaea;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fdfbf0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: #ec2f2f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #ec2f2f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ec2f2f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ec2f2f;
}
.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: #ec2f2f;
  border-bottom-color: #ec2f2f;
}
.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: #ec2f2f !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: #57b8e0 !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='%23ec2f2f' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 100%;
  width: 86%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 801px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1025px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1201px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1441px) {
  .container {
    max-width: 1300px;
  }
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 190px;
  border-radius: 0;
  padding: 17px 48px 15px 50px;
  line-height: 1.33;
  font-weight: 500 !important;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
.mbr-section-btn .btn-primary {
  color: #ffffff !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary:hover {
  color: #000 !important;
  background: 0 0 !important;
}
.mbr-section-btn .btn-primary-outline {
  color: #000000 !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: 0 0;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary-outline:hover {
  color: #fff !important;
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
b {
  font-weight: 600 !important;
}
.cid-uGxVoPkmTO .navbar {
  background: #fafafa;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uGxVoPkmTO .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uGxVoPkmTO .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uGxVoPkmTO .navbar-dropdown.bg-color.transparent.opened {
  background: #fafafa;
}
.cid-uGxVoPkmTO .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uGxVoPkmTO .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uGxVoPkmTO .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uGxVoPkmTO .navbar-fixed-top.opened {
  position: relative;
}
.cid-uGxVoPkmTO a {
  font-style: normal;
}
.cid-uGxVoPkmTO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uGxVoPkmTO .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uGxVoPkmTO .nav-item .nav-link {
  color: #ffffff;
}
.cid-uGxVoPkmTO .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uGxVoPkmTO .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uGxVoPkmTO .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uGxVoPkmTO .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uGxVoPkmTO .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-right {
    display: none;
  }
}
.cid-uGxVoPkmTO .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uGxVoPkmTO .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uGxVoPkmTO .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uGxVoPkmTO .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #c298d3;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .right-box {
    display: none;
  }
}
.cid-uGxVoPkmTO .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uGxVoPkmTO .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uGxVoPkmTO .content-text {
  margin-bottom: 0;
}
.cid-uGxVoPkmTO .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ec2f2f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uGxVoPkmTO .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uGxVoPkmTO .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uGxVoPkmTO .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uGxVoPkmTO .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uGxVoPkmTO .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uGxVoPkmTO .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uGxVoPkmTO .nav-dropdown .link {
  font-weight: 600;
}
.cid-uGxVoPkmTO .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uGxVoPkmTO .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uGxVoPkmTO .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uGxVoPkmTO .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uGxVoPkmTO .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uGxVoPkmTO .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uGxVoPkmTO .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uGxVoPkmTO .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uGxVoPkmTO .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uGxVoPkmTO .menu-content-top.show {
  display: block;
}
.cid-uGxVoPkmTO .pre-header-right {
  align-self: center;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #e92c2c;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uGxVoPkmTO .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uGxVoPkmTO .navbar .menu-content-top {
    display: none;
  }
  .cid-uGxVoPkmTO .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uGxVoPkmTO .dropdown-item:before {
    display: none;
  }
  .cid-uGxVoPkmTO .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uGxVoPkmTO img {
    height: 3.8rem !important;
  }
  .cid-uGxVoPkmTO .btn {
    display: flex;
  }
  .cid-uGxVoPkmTO button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uGxVoPkmTO .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uGxVoPkmTO .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uGxVoPkmTO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing,
  .cid-uGxVoPkmTO .navbar-collapse.show {
    display: block !important;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-nav,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-buttons,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uGxVoPkmTO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uGxVoPkmTO .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uGxVoPkmTO .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uGxVoPkmTO .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uGxVoPkmTO .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uGxVoPkmTO .navbar {
    display: block;
    padding: 0;
  }
  .cid-uGxVoPkmTO .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uGxVoPkmTO .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uGxVoPkmTO .navbar-toggler {
    display: none;
  }
}
.cid-uGxVoPkmTO .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uGxVoPkmTO .menu-area-wrapper .menu-area {
  background-color: #ec2f2f;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uGxVoPkmTO .navbar-short {
  background: transparent;
}
.cid-uGxVoPkmTO .navbar-short .menu-content-top,
.cid-uGxVoPkmTO .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uGxVoPkmTO .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uGxVoPkmTO .dropdown {
  color: #c298d3 !important;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu {
  background: #fafafa;
  display: none;
  position: absolute;
  border-top: 3px solid #ec2f2f;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #c298d3 !important;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #e92c2c;
  color: #ffffff;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uGxVoPkmTO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uGxVoPkmTO .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uGxVoPkmTO button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uGxVoPkmTO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO button.navbar-toggler:focus {
  outline: none;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uGxVoPkmTO .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uGxVoPkmTO .collapsed .btn {
  display: flex;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.9rem  - 1rem);
  }
  .cid-uGxVoPkmTO .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uGxVoPkmTO .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGxVoPkmTO .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uGxVoPkmTO .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uGxVoPkmTO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uGxVoPkmTO .collapsed .dropdown-item:before {
  display: none;
}
.cid-uGxVoPkmTO .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uGxVoPkmTO .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uGxVoPkmTO .nav-link:focus {
  outline: none;
}
.cid-uGxVoPkmTO .navbar-toggler {
  position: relative;
}
.cid-uGxVoPkmTO .dropdown-item.active,
.cid-uGxVoPkmTO .dropdown-item:active {
  color: auto;
}
.cid-uGxVoPkmTO .dropdown-item:hover {
  color: #e92c2c;
}
.cid-uHSw0hKJT0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHSw0hKJT0 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uHSw0hKJT0 .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-uHSw0hKJT0 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uHSw0hKJT0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHSw0hKJT0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGrGtTei3o {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGrGtTei3o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGrGtTei3o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGrGtTei3o .container-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #ffffff;
}
.cid-uGrGtTei3o .title-wrapper {
  width: 100%;
  padding: 0 3rem;
}
@media (max-width: 992px) {
  .cid-uGrGtTei3o .title-wrapper {
    padding: 29px 12px 29px;
  }
}
.cid-uGrGtTei3o .title-wrapper .mbr-section-title {
  margin-bottom: 0;
  letter-spacing: .5rem;
}
.cid-uGrGtTei3o .image-wrapper {
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uGrGtTei3o .image-wrapper {
    padding: 0 12px;
  }
}
.cid-uGrGtTei3o .image-wrapper .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uGrGtTei3o .image-wrapper .img {
    height: 300px;
  }
}
.cid-uGrGtTei3o .mbr-section-title {
  color: #1c314e;
  text-align: center;
}
.cid-uGmOUC8b0X {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGmOUC8b0X .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-uGmOUC8b0X .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-uGmOUC8b0X .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uGmOUC8b0X .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-uGmOUC8b0X .item {
    padding: 0 3rem;
  }
}
.cid-uGmOUC8b0X img,
.cid-uGmOUC8b0X .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uGmOUC8b0X .item:focus,
.cid-uGmOUC8b0X span:focus {
  outline: none;
}
.cid-uGmOUC8b0X .mbr-section-title {
  color: #101112;
}
.cid-uGmOUC8b0X .mbr-text,
.cid-uGmOUC8b0X .mbr-section-btn {
  color: #353535;
}
.cid-uGmOUC8b0X .mbr-section-subtitle {
  color: #353535;
}
.cid-uGsi7EbpL8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGsi7EbpL8 .mbr-section-head {
  max-width: 800px;
}
@media (min-width: 1400px) {
  .cid-uGsi7EbpL8 .mbr-section-head {
    padding: 0 2rem;
  }
}
.cid-uGsi7EbpL8 .item-wrapper {
  border-top: 1px solid #efefef;
  padding-top: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uGsi7EbpL8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-uGsi7EbpL8 .item {
    padding: 0 3rem;
  }
}
.cid-uGsi7EbpL8 img,
.cid-uGsi7EbpL8 .item-img {
  width: 100%;
  padding-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uGsi7EbpL8 .item:focus,
.cid-uGsi7EbpL8 span:focus {
  outline: none;
}
.cid-uGsi7EbpL8 .mbr-section-title {
  color: #101112;
}
.cid-uGsi7EbpL8 .mbr-text,
.cid-uGsi7EbpL8 .mbr-section-btn {
  color: #353535;
}
.cid-uGsi7EbpL8 .mbr-section-subtitle {
  color: #353535;
}
.cid-uGDimSlCu6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uGDimSlCu6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDimSlCu6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDimSlCu6 .map-wrapper {
  height: 100%;
}
.cid-uGDimSlCu6 .card-wrapper {
  border: 1px solid #ec2f2f;
  padding: 3rem 2.25rem;
  background: #ffffff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uGDimSlCu6 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uGDimSlCu6 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uGDimSlCu6 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uGDimSlCu6 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uGDimSlCu6 .google-map {
  height: 100%;
  position: relative;
}
.cid-uGDimSlCu6 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uGDimSlCu6 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uGDimSlCu6 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGDimSlCu6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGDimSlCu6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGDimSlCu6 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uGDimSlCu6 .content-head {
  max-width: 800px;
}
.cid-uGDimSlCu6 .mbr-section-title {
  color: #221b35;
}
.cid-uGDimSlCu6 .cardTitle {
  color: #221b35;
}
.cid-uGDimSlCu6 .list,
.cid-uGDimSlCu6 .item-wrap {
  color: #221b35;
}
.cid-uHXJIRq7kc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3f3f3;
  overflow: hidden;
}
.cid-uHXJIRq7kc .mbr-text {
  color: #ffffff;
}
.cid-uHXJIRq7kc .media-container-row .mbr-text {
  color: #000000;
}
.cid-uGxVoPkmTO .navbar {
  background: #fafafa;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uGxVoPkmTO .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uGxVoPkmTO .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uGxVoPkmTO .navbar-dropdown.bg-color.transparent.opened {
  background: #fafafa;
}
.cid-uGxVoPkmTO .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uGxVoPkmTO .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uGxVoPkmTO .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uGxVoPkmTO .navbar-fixed-top.opened {
  position: relative;
}
.cid-uGxVoPkmTO a {
  font-style: normal;
}
.cid-uGxVoPkmTO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uGxVoPkmTO .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uGxVoPkmTO .nav-item .nav-link {
  color: #ffffff;
}
.cid-uGxVoPkmTO .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uGxVoPkmTO .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uGxVoPkmTO .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uGxVoPkmTO .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uGxVoPkmTO .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-right {
    display: none;
  }
}
.cid-uGxVoPkmTO .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uGxVoPkmTO .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uGxVoPkmTO .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uGxVoPkmTO .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #c298d3;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .right-box {
    display: none;
  }
}
.cid-uGxVoPkmTO .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uGxVoPkmTO .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uGxVoPkmTO .content-text {
  margin-bottom: 0;
}
.cid-uGxVoPkmTO .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ec2f2f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uGxVoPkmTO .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uGxVoPkmTO .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uGxVoPkmTO .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uGxVoPkmTO .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uGxVoPkmTO .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uGxVoPkmTO .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uGxVoPkmTO .nav-dropdown .link {
  font-weight: 600;
}
.cid-uGxVoPkmTO .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uGxVoPkmTO .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uGxVoPkmTO .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uGxVoPkmTO .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uGxVoPkmTO .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uGxVoPkmTO .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uGxVoPkmTO .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uGxVoPkmTO .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uGxVoPkmTO .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uGxVoPkmTO .menu-content-top.show {
  display: block;
}
.cid-uGxVoPkmTO .pre-header-right {
  align-self: center;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #e92c2c;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uGxVoPkmTO .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uGxVoPkmTO .navbar .menu-content-top {
    display: none;
  }
  .cid-uGxVoPkmTO .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uGxVoPkmTO .dropdown-item:before {
    display: none;
  }
  .cid-uGxVoPkmTO .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uGxVoPkmTO img {
    height: 3.8rem !important;
  }
  .cid-uGxVoPkmTO .btn {
    display: flex;
  }
  .cid-uGxVoPkmTO button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uGxVoPkmTO .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uGxVoPkmTO .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uGxVoPkmTO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing,
  .cid-uGxVoPkmTO .navbar-collapse.show {
    display: block !important;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-nav,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-buttons,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uGxVoPkmTO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uGxVoPkmTO .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uGxVoPkmTO .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uGxVoPkmTO .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uGxVoPkmTO .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uGxVoPkmTO .navbar {
    display: block;
    padding: 0;
  }
  .cid-uGxVoPkmTO .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uGxVoPkmTO .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uGxVoPkmTO .navbar-toggler {
    display: none;
  }
}
.cid-uGxVoPkmTO .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uGxVoPkmTO .menu-area-wrapper .menu-area {
  background-color: #ec2f2f;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uGxVoPkmTO .navbar-short {
  background: transparent;
}
.cid-uGxVoPkmTO .navbar-short .menu-content-top,
.cid-uGxVoPkmTO .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uGxVoPkmTO .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uGxVoPkmTO .dropdown {
  color: #c298d3 !important;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu {
  background: #fafafa;
  display: none;
  position: absolute;
  border-top: 3px solid #ec2f2f;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #c298d3 !important;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #e92c2c;
  color: #ffffff;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uGxVoPkmTO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uGxVoPkmTO .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uGxVoPkmTO button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uGxVoPkmTO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO button.navbar-toggler:focus {
  outline: none;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uGxVoPkmTO .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uGxVoPkmTO .collapsed .btn {
  display: flex;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.9rem  - 1rem);
  }
  .cid-uGxVoPkmTO .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uGxVoPkmTO .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGxVoPkmTO .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uGxVoPkmTO .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uGxVoPkmTO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uGxVoPkmTO .collapsed .dropdown-item:before {
  display: none;
}
.cid-uGxVoPkmTO .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uGxVoPkmTO .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uGxVoPkmTO .nav-link:focus {
  outline: none;
}
.cid-uGxVoPkmTO .navbar-toggler {
  position: relative;
}
.cid-uGxVoPkmTO .dropdown-item.active,
.cid-uGxVoPkmTO .dropdown-item:active {
  color: auto;
}
.cid-uGxVoPkmTO .dropdown-item:hover {
  color: #e92c2c;
}
.cid-uGKX8fECHr {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGKX8fECHr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGKX8fECHr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uGKX8fECHr .container {
    padding: 0 20px;
  }
}
.cid-uGKX8fECHr .card {
  justify-content: flex-end;
}
.cid-uGKX8fECHr .title-wrapper .mbr-section-title {
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uGKX8fECHr .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uGKX8fECHr .link-wrapper {
  display: block;
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uGKX8fECHr .link-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.cid-uGKX8fECHr .link-wrapper:hover .mbr-link::before,
.cid-uGKX8fECHr .link-wrapper:focus .mbr-link::before {
  width: 0;
}
.cid-uGKX8fECHr .link-wrapper .mbr-link {
  display: inline-flex;
  position: relative;
  margin-bottom: 0;
}
.cid-uGKX8fECHr .link-wrapper .mbr-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uGKX8fECHr .items-wrapper .item {
  border-top: 1px solid #dfe6ea;
  padding: 40px 0;
}
.cid-uGKX8fECHr .items-wrapper .item:last-child {
  border-bottom: 1px solid #dfe6ea;
}
.cid-uGKX8fECHr .items-wrapper .item .item-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uGKX8fECHr .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uGKX8fECHr .items-wrapper .item .item-wrapper .item-img {
  width: 210px;
}
@media (max-width: 992px) {
  .cid-uGKX8fECHr .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uGKX8fECHr .items-wrapper .item .item-wrapper .item-img img {
  display: inline-flex;
  width: 210px;
  height: 150px;
  border-radius: .75rem !important;
  object-fit: cover;
}
.cid-uGKX8fECHr .items-wrapper .item .item-wrapper .item-content {
  width: 65%;
  display: flex;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uGKX8fECHr .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    display: block;
    padding-right: 0;
  }
}
.cid-uGKX8fECHr .items-wrapper .item .item-wrapper .item-content .card-number {
  min-width: 100px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uGKX8fECHr .items-wrapper .item .item-wrapper .item-content .card-number {
    min-width: auto;
    margin-bottom: 16px;
  }
}
.cid-uGKX8fECHr .items-wrapper .item .item-wrapper .item-content .item-wrap .card-title {
  margin-bottom: 0;
}
.cid-uGKX8fECHr .items-wrapper .item .item-wrapper .item-content .item-wrap .card-text {
  margin: 24px 0 0 0;
}
.cid-uGKX8fECHr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uGKX8fECHr .mbr-link,
.cid-uGKX8fECHr .link-wrapper {
  color: #000000;
  text-align: right;
}
.cid-uGKX8fECHr .card-title {
  color: #000000;
}
.cid-uGKX8fECHr .card-text {
  color: #000000;
}
.cid-uGKX8fECHr .card-number {
  color: #000000;
}
.cid-uGKYZJARzd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGKYZJARzd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGKYZJARzd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uGKYZJARzd .container {
    padding: 0 20px;
  }
}
.cid-uGKYZJARzd .card {
  justify-content: flex-end;
}
.cid-uGKYZJARzd .title-wrapper .mbr-section-title {
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uGKYZJARzd .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uGKYZJARzd .link-wrapper {
  display: block;
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uGKYZJARzd .link-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.cid-uGKYZJARzd .link-wrapper:hover .mbr-link::before,
.cid-uGKYZJARzd .link-wrapper:focus .mbr-link::before {
  width: 0;
}
.cid-uGKYZJARzd .link-wrapper .mbr-link {
  display: inline-flex;
  position: relative;
  margin-bottom: 0;
}
.cid-uGKYZJARzd .link-wrapper .mbr-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uGKYZJARzd .items-wrapper .item {
  border-top: 1px solid #dfe6ea;
  padding: 40px 0;
}
.cid-uGKYZJARzd .items-wrapper .item:last-child {
  border-bottom: 1px solid #dfe6ea;
}
.cid-uGKYZJARzd .items-wrapper .item .item-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uGKYZJARzd .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uGKYZJARzd .items-wrapper .item .item-wrapper .item-img {
  width: 210px;
}
@media (max-width: 992px) {
  .cid-uGKYZJARzd .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uGKYZJARzd .items-wrapper .item .item-wrapper .item-img img {
  display: inline-flex;
  width: 210px;
  height: 150px;
  border-radius: .75rem !important;
  object-fit: cover;
}
.cid-uGKYZJARzd .items-wrapper .item .item-wrapper .item-content {
  width: 65%;
  display: flex;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uGKYZJARzd .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    display: block;
    padding-right: 0;
  }
}
.cid-uGKYZJARzd .items-wrapper .item .item-wrapper .item-content .card-number {
  min-width: 100px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uGKYZJARzd .items-wrapper .item .item-wrapper .item-content .card-number {
    min-width: auto;
    margin-bottom: 16px;
  }
}
.cid-uGKYZJARzd .items-wrapper .item .item-wrapper .item-content .item-wrap .card-title {
  margin-bottom: 0;
}
.cid-uGKYZJARzd .items-wrapper .item .item-wrapper .item-content .item-wrap .card-text {
  margin: 24px 0 0 0;
}
.cid-uGKYZJARzd .mbr-section-title {
  color: #000000;
}
.cid-uGKYZJARzd .mbr-link,
.cid-uGKYZJARzd .link-wrapper {
  color: #000000;
  text-align: right;
}
.cid-uGKYZJARzd .card-title {
  color: #000000;
}
.cid-uGKYZJARzd .card-text {
  color: #9a9a9a;
}
.cid-uGKYZJARzd .card-number {
  color: #000000;
}
.cid-uGLGDlP2I4 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uGLGDlP2I4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGLGDlP2I4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uGLGDlP2I4 .container {
    padding: 0 20px;
  }
}
.cid-uGLGDlP2I4 .card {
  justify-content: flex-end;
}
.cid-uGLGDlP2I4 .title-wrapper .mbr-section-title {
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uGLGDlP2I4 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uGLGDlP2I4 .link-wrapper {
  display: block;
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uGLGDlP2I4 .link-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.cid-uGLGDlP2I4 .link-wrapper:hover .mbr-link::before,
.cid-uGLGDlP2I4 .link-wrapper:focus .mbr-link::before {
  width: 0;
}
.cid-uGLGDlP2I4 .link-wrapper .mbr-link {
  display: inline-flex;
  position: relative;
  margin-bottom: 0;
}
.cid-uGLGDlP2I4 .link-wrapper .mbr-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.cid-uGLGDlP2I4 .items-wrapper .item {
  border-top: 1px solid #dfe6ea;
  padding: 40px 0;
}
.cid-uGLGDlP2I4 .items-wrapper .item:last-child {
  border-bottom: 1px solid #dfe6ea;
}
.cid-uGLGDlP2I4 .items-wrapper .item .item-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uGLGDlP2I4 .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uGLGDlP2I4 .items-wrapper .item .item-wrapper .item-img {
  width: 210px;
}
@media (max-width: 992px) {
  .cid-uGLGDlP2I4 .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uGLGDlP2I4 .items-wrapper .item .item-wrapper .item-img img {
  display: inline-flex;
  width: 210px;
  height: 150px;
  border-radius: .75rem !important;
  object-fit: cover;
}
.cid-uGLGDlP2I4 .items-wrapper .item .item-wrapper .item-content {
  width: 65%;
  display: flex;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uGLGDlP2I4 .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    display: block;
    padding-right: 0;
  }
}
.cid-uGLGDlP2I4 .items-wrapper .item .item-wrapper .item-content .card-number {
  min-width: 100px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uGLGDlP2I4 .items-wrapper .item .item-wrapper .item-content .card-number {
    min-width: auto;
    margin-bottom: 16px;
  }
}
.cid-uGLGDlP2I4 .items-wrapper .item .item-wrapper .item-content .item-wrap .card-title {
  margin-bottom: 0;
}
.cid-uGLGDlP2I4 .items-wrapper .item .item-wrapper .item-content .item-wrap .card-text {
  margin: 24px 0 0 0;
}
.cid-uGLGDlP2I4 .mbr-section-title {
  color: #000000;
}
.cid-uGLGDlP2I4 .mbr-link,
.cid-uGLGDlP2I4 .link-wrapper {
  color: #000000;
  text-align: right;
}
.cid-uGLGDlP2I4 .card-title {
  color: #000000;
}
.cid-uGLGDlP2I4 .card-text {
  color: #9a9a9a;
}
.cid-uGLGDlP2I4 .card-number {
  color: #000000;
}
.cid-uHXJIRq7kc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3f3f3;
  overflow: hidden;
}
.cid-uHXJIRq7kc .mbr-text {
  color: #ffffff;
}
.cid-uHXJIRq7kc .media-container-row .mbr-text {
  color: #000000;
}
.cid-uGxVoPkmTO .navbar {
  background: #fafafa;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uGxVoPkmTO .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uGxVoPkmTO .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uGxVoPkmTO .navbar-dropdown.bg-color.transparent.opened {
  background: #fafafa;
}
.cid-uGxVoPkmTO .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uGxVoPkmTO .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uGxVoPkmTO .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uGxVoPkmTO .navbar-fixed-top.opened {
  position: relative;
}
.cid-uGxVoPkmTO a {
  font-style: normal;
}
.cid-uGxVoPkmTO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uGxVoPkmTO .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uGxVoPkmTO .nav-item .nav-link {
  color: #ffffff;
}
.cid-uGxVoPkmTO .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uGxVoPkmTO .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uGxVoPkmTO .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uGxVoPkmTO .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uGxVoPkmTO .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-right {
    display: none;
  }
}
.cid-uGxVoPkmTO .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uGxVoPkmTO .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uGxVoPkmTO .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uGxVoPkmTO .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #c298d3;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .right-box {
    display: none;
  }
}
.cid-uGxVoPkmTO .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uGxVoPkmTO .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uGxVoPkmTO .content-text {
  margin-bottom: 0;
}
.cid-uGxVoPkmTO .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ec2f2f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uGxVoPkmTO .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uGxVoPkmTO .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uGxVoPkmTO .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uGxVoPkmTO .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uGxVoPkmTO .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uGxVoPkmTO .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uGxVoPkmTO .nav-dropdown .link {
  font-weight: 600;
}
.cid-uGxVoPkmTO .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uGxVoPkmTO .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uGxVoPkmTO .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uGxVoPkmTO .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uGxVoPkmTO .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uGxVoPkmTO .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uGxVoPkmTO .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uGxVoPkmTO .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uGxVoPkmTO .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uGxVoPkmTO .menu-content-top.show {
  display: block;
}
.cid-uGxVoPkmTO .pre-header-right {
  align-self: center;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #e92c2c;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uGxVoPkmTO .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uGxVoPkmTO .navbar .menu-content-top {
    display: none;
  }
  .cid-uGxVoPkmTO .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uGxVoPkmTO .dropdown-item:before {
    display: none;
  }
  .cid-uGxVoPkmTO .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uGxVoPkmTO img {
    height: 3.8rem !important;
  }
  .cid-uGxVoPkmTO .btn {
    display: flex;
  }
  .cid-uGxVoPkmTO button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uGxVoPkmTO .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uGxVoPkmTO .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uGxVoPkmTO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing,
  .cid-uGxVoPkmTO .navbar-collapse.show {
    display: block !important;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-nav,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-buttons,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uGxVoPkmTO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uGxVoPkmTO .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uGxVoPkmTO .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uGxVoPkmTO .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uGxVoPkmTO .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uGxVoPkmTO .navbar {
    display: block;
    padding: 0;
  }
  .cid-uGxVoPkmTO .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uGxVoPkmTO .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uGxVoPkmTO .navbar-toggler {
    display: none;
  }
}
.cid-uGxVoPkmTO .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uGxVoPkmTO .menu-area-wrapper .menu-area {
  background-color: #ec2f2f;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uGxVoPkmTO .navbar-short {
  background: transparent;
}
.cid-uGxVoPkmTO .navbar-short .menu-content-top,
.cid-uGxVoPkmTO .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uGxVoPkmTO .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uGxVoPkmTO .dropdown {
  color: #c298d3 !important;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu {
  background: #fafafa;
  display: none;
  position: absolute;
  border-top: 3px solid #ec2f2f;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #c298d3 !important;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #e92c2c;
  color: #ffffff;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uGxVoPkmTO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uGxVoPkmTO .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uGxVoPkmTO button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uGxVoPkmTO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO button.navbar-toggler:focus {
  outline: none;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uGxVoPkmTO .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uGxVoPkmTO .collapsed .btn {
  display: flex;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.9rem  - 1rem);
  }
  .cid-uGxVoPkmTO .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uGxVoPkmTO .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGxVoPkmTO .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uGxVoPkmTO .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uGxVoPkmTO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uGxVoPkmTO .collapsed .dropdown-item:before {
  display: none;
}
.cid-uGxVoPkmTO .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uGxVoPkmTO .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uGxVoPkmTO .nav-link:focus {
  outline: none;
}
.cid-uGxVoPkmTO .navbar-toggler {
  position: relative;
}
.cid-uGxVoPkmTO .dropdown-item.active,
.cid-uGxVoPkmTO .dropdown-item:active {
  color: auto;
}
.cid-uGxVoPkmTO .dropdown-item:hover {
  color: #e92c2c;
}
.cid-uGESVBPR2G {
  padding-top: 8rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #f3f3f3;
}
.cid-uGESVBPR2G .circle-wrap {
  position: absolute;
  top: 0;
  left: -9%;
  width: 1100px;
  height: 1100px;
  border-radius: 100%;
  border: 120px solid #ffffff;
  opacity: .6;
}
.cid-uGESVBPR2G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGESVBPR2G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uGESVBPR2G .container {
    padding: 0 15px;
  }
}
.cid-uGESVBPR2G .row {
  position: relative;
  z-index: 1;
}
.cid-uGESVBPR2G .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uGESVBPR2G .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uGESVBPR2G .content-wrapper .border-wrap {
  margin-bottom: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #e92c2c;
}
.cid-uGESVBPR2G .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #e92c2c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uGESVBPR2G .content-wrapper .border-wrap {
    margin-bottom: 40px;
  }
}
.cid-uGESVBPR2G .content-wrapper .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uGESVBPR2G .content-wrapper .content-wrap {
    display: block;
  }
}
.cid-uGESVBPR2G .content-wrapper .content-wrap .images-wrapper {
  width: 48%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  height: fit-content;
}
@media (max-width: 992px) {
  .cid-uGESVBPR2G .content-wrapper .content-wrap .images-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.cid-uGESVBPR2G .content-wrapper .content-wrap .images-wrapper .card {
  justify-content: center;
}
.cid-uGESVBPR2G .content-wrapper .content-wrap .images-wrapper .images-item img {
  margin-bottom: 45px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uGESVBPR2G .content-wrapper .content-wrap .images-wrapper .images-item img {
    margin-bottom: 40px;
  }
}
.cid-uGESVBPR2G .content-wrapper .content-wrap .images-wrapper .images-item img:last-child {
  margin-bottom: 0;
}
.cid-uGESVBPR2G .content-wrapper .content-wrap .images-wrapper .images-item .image_1 {
  height: 360px;
}
@media (max-width: 992px) {
  .cid-uGESVBPR2G .content-wrapper .content-wrap .images-wrapper .images-item .image_1 {
    height: 300px;
  }
}
.cid-uGESVBPR2G .content-wrapper .content-wrap .images-wrapper .images-item .image_2 {
  height: 220px;
}
@media (max-width: 992px) {
  .cid-uGESVBPR2G .content-wrapper .content-wrap .images-wrapper .images-item .image_2 {
    height: 300px;
  }
}
.cid-uGESVBPR2G .content-wrapper .content-wrap .items-wrapper {
  width: 38%;
  padding-top: 70px;
}
@media (max-width: 992px) {
  .cid-uGESVBPR2G .content-wrapper .content-wrap .items-wrapper {
    padding-top: 40px;
    width: 100%;
  }
}
.cid-uGESVBPR2G .content-wrapper .content-wrap .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 30px;
}
.cid-uGESVBPR2G .content-wrapper .content-wrap .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 30px;
}
.cid-uGESVBPR2G .mbr-section-title {
  color: #30262b;
}
.cid-uGESVBPR2G .item-title {
  color: #30262b;
}
.cid-uGESVBPR2G .item-text {
  color: #30262b;
}
.cid-uHRYMJhOMP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uHRYMJhOMP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHRYMJhOMP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHRYMJhOMP .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uHRYMJhOMP .mbr-section-title {
  color: #24262b;
}
.cid-uHRYMJhOMP .mbr-section-subtitle {
  color: #24262b;
}
.cid-uHRYMJhOMP .items-row {
  row-gap: 32px;
}
.cid-uHRYMJhOMP .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uHRYMJhOMP .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uHRYMJhOMP .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uHRYMJhOMP .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uHRYMJhOMP .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uHRYMJhOMP .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uHRYMJhOMP .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uHRYMJhOMP .mbr-item-subtitle {
  color: #24262b;
}
.cid-uHRYMJhOMP .carousel-control,
.cid-uHRYMJhOMP .close {
  background: #1b1b1b;
}
.cid-uHRYMJhOMP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uHRYMJhOMP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uHRYMJhOMP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uHRYMJhOMP .carousel-control-next span {
  margin-left: 5px;
}
.cid-uHRYMJhOMP .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uHRYMJhOMP .close::before {
  content: '\e91a';
}
.cid-uHRYMJhOMP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uHRYMJhOMP .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uHRYMJhOMP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHRYMJhOMP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uHRYMJhOMP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uHRYMJhOMP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uHRYMJhOMP .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uHRYMJhOMP .carousel-indicators li.active,
.cid-uHRYMJhOMP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uHRYMJhOMP .carousel-indicators li::after,
.cid-uHRYMJhOMP .carousel-indicators li::before {
  content: none;
}
.cid-uHRYMJhOMP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uHRYMJhOMP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uHRYMJhOMP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uHRYMJhOMP .carousel-indicators {
    display: none;
  }
}
.cid-uHRYMJhOMP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uHRYMJhOMP .carousel-inner > .active {
  display: block;
}
.cid-uHRYMJhOMP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHRYMJhOMP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uHRYMJhOMP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uHRYMJhOMP .carousel-control,
  .cid-uHRYMJhOMP .carousel-indicators,
  .cid-uHRYMJhOMP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uHRYMJhOMP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uHRYMJhOMP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uHRYMJhOMP .carousel-indicators .active,
.cid-uHRYMJhOMP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uHRYMJhOMP .carousel-indicators .active {
  background: #fff;
}
.cid-uHRYMJhOMP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uHRYMJhOMP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uHRYMJhOMP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uHRYMJhOMP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uHRYMJhOMP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uHRYMJhOMP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uHRYMJhOMP .carousel {
  width: 100%;
}
.cid-uHRYMJhOMP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uHRYMJhOMP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uHRYMJhOMP .modal.fade .modal-dialog,
.cid-uHRYMJhOMP .modal.in .modal-dialog {
  transform: none;
}
.cid-uHRYMJhOMP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uHRYMJhOMP H6 {
  text-align: center;
}
.cid-uHXJIRq7kc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3f3f3;
  overflow: hidden;
}
.cid-uHXJIRq7kc .mbr-text {
  color: #ffffff;
}
.cid-uHXJIRq7kc .media-container-row .mbr-text {
  color: #000000;
}
.cid-uGxVoPkmTO .navbar {
  background: #fafafa;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uGxVoPkmTO .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uGxVoPkmTO .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uGxVoPkmTO .navbar-dropdown.bg-color.transparent.opened {
  background: #fafafa;
}
.cid-uGxVoPkmTO .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uGxVoPkmTO .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uGxVoPkmTO .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uGxVoPkmTO .navbar-fixed-top.opened {
  position: relative;
}
.cid-uGxVoPkmTO a {
  font-style: normal;
}
.cid-uGxVoPkmTO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uGxVoPkmTO .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uGxVoPkmTO .nav-item .nav-link {
  color: #ffffff;
}
.cid-uGxVoPkmTO .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uGxVoPkmTO .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uGxVoPkmTO .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uGxVoPkmTO .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uGxVoPkmTO .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-right {
    display: none;
  }
}
.cid-uGxVoPkmTO .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uGxVoPkmTO .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uGxVoPkmTO .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uGxVoPkmTO .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #c298d3;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .right-box {
    display: none;
  }
}
.cid-uGxVoPkmTO .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uGxVoPkmTO .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uGxVoPkmTO .content-text {
  margin-bottom: 0;
}
.cid-uGxVoPkmTO .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ec2f2f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uGxVoPkmTO .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uGxVoPkmTO .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uGxVoPkmTO .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uGxVoPkmTO .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uGxVoPkmTO .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uGxVoPkmTO .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uGxVoPkmTO .nav-dropdown .link {
  font-weight: 600;
}
.cid-uGxVoPkmTO .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uGxVoPkmTO .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uGxVoPkmTO .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uGxVoPkmTO .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uGxVoPkmTO .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uGxVoPkmTO .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uGxVoPkmTO .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uGxVoPkmTO .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uGxVoPkmTO .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uGxVoPkmTO .menu-content-top.show {
  display: block;
}
.cid-uGxVoPkmTO .pre-header-right {
  align-self: center;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #e92c2c;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uGxVoPkmTO .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uGxVoPkmTO .navbar .menu-content-top {
    display: none;
  }
  .cid-uGxVoPkmTO .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uGxVoPkmTO .dropdown-item:before {
    display: none;
  }
  .cid-uGxVoPkmTO .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uGxVoPkmTO img {
    height: 3.8rem !important;
  }
  .cid-uGxVoPkmTO .btn {
    display: flex;
  }
  .cid-uGxVoPkmTO button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uGxVoPkmTO .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uGxVoPkmTO .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uGxVoPkmTO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing,
  .cid-uGxVoPkmTO .navbar-collapse.show {
    display: block !important;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-nav,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-buttons,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uGxVoPkmTO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uGxVoPkmTO .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uGxVoPkmTO .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uGxVoPkmTO .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uGxVoPkmTO .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uGxVoPkmTO .navbar {
    display: block;
    padding: 0;
  }
  .cid-uGxVoPkmTO .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uGxVoPkmTO .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uGxVoPkmTO .navbar-toggler {
    display: none;
  }
}
.cid-uGxVoPkmTO .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uGxVoPkmTO .menu-area-wrapper .menu-area {
  background-color: #ec2f2f;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uGxVoPkmTO .navbar-short {
  background: transparent;
}
.cid-uGxVoPkmTO .navbar-short .menu-content-top,
.cid-uGxVoPkmTO .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uGxVoPkmTO .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uGxVoPkmTO .dropdown {
  color: #c298d3 !important;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu {
  background: #fafafa;
  display: none;
  position: absolute;
  border-top: 3px solid #ec2f2f;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #c298d3 !important;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #e92c2c;
  color: #ffffff;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uGxVoPkmTO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uGxVoPkmTO .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uGxVoPkmTO button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uGxVoPkmTO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO button.navbar-toggler:focus {
  outline: none;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uGxVoPkmTO .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uGxVoPkmTO .collapsed .btn {
  display: flex;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.9rem  - 1rem);
  }
  .cid-uGxVoPkmTO .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uGxVoPkmTO .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGxVoPkmTO .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uGxVoPkmTO .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uGxVoPkmTO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uGxVoPkmTO .collapsed .dropdown-item:before {
  display: none;
}
.cid-uGxVoPkmTO .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uGxVoPkmTO .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uGxVoPkmTO .nav-link:focus {
  outline: none;
}
.cid-uGxVoPkmTO .navbar-toggler {
  position: relative;
}
.cid-uGxVoPkmTO .dropdown-item.active,
.cid-uGxVoPkmTO .dropdown-item:active {
  color: auto;
}
.cid-uGxVoPkmTO .dropdown-item:hover {
  color: #e92c2c;
}
.cid-uHSg60t0pH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHSg60t0pH .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uHSg60t0pH .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-uHSg60t0pH .mbr-section-btn {
  margin-top: 20px;
}
.cid-uHSg60t0pH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHSg60t0pH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHXTNqNSZA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-uHXTNqNSZA .container {
  max-width: 1500px;
}
.cid-uHXTNqNSZA img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uHXTNqNSZA img:hover {
  transform: scale(1.1);
}
.cid-uHXTNqNSZA .row {
  background: #ffffff;
}
.cid-uHXTNqNSZA .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-uHXTNqNSZA h2 {
  padding: 0;
  margin: 0;
}
.cid-uHXTNqNSZA .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHXTNqNSZA .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-uHXTNqNSZA .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-uHXTNqNSZA .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-uHXTNqNSZA .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-uHXTNqNSZA .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uHXTNqNSZA .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uHXTNqNSZA .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-uHXTNqNSZA .row {
    margin: 0rem;
  }
  .cid-uHXTNqNSZA .text-col {
    padding: 2rem 1rem;
  }
  .cid-uHXTNqNSZA .number {
    margin-right: 2rem;
  }
  .cid-uHXTNqNSZA .img-col {
    margin-bottom: 3rem;
  }
}
.cid-uHXTNqNSZA H2 {
  color: #333333;
}
.cid-uHXTNqNSZA .mbr-text {
  color: #000000;
}
.cid-uHXTNqNSZA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHXTNqNSZA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHXUZyBTyD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHXUZyBTyD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHXUZyBTyD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHXUZyBTyD .container {
    padding: 0 25px;
  }
}
.cid-uHXUZyBTyD .row {
  justify-content: center;
}
.cid-uHXUZyBTyD .item-wrapper {
  margin-bottom: 32px;
}
.cid-uHXUZyBTyD .item-img {
  overflow: hidden;
}
.cid-uHXUZyBTyD .item-img img {
  height: 345px;
  object-fit: cover;
  margin-bottom: 15px;
  transform: scale(1.06) translateX(0);
  transition: all 0.3s ease-in-out;
}
.cid-uHXUZyBTyD .item-img img:hover {
  transform: scale(1.06) translateX(6px);
}
.cid-uHXJIRq7kc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3f3f3;
  overflow: hidden;
}
.cid-uHXJIRq7kc .mbr-text {
  color: #ffffff;
}
.cid-uHXJIRq7kc .media-container-row .mbr-text {
  color: #000000;
}
.cid-uGxVoPkmTO .navbar {
  background: #fafafa;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-uGxVoPkmTO .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-uGxVoPkmTO .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uGxVoPkmTO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-uGxVoPkmTO .navbar-dropdown.bg-color.transparent.opened {
  background: #fafafa;
}
.cid-uGxVoPkmTO .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #232323 !important;
}
.cid-uGxVoPkmTO .navbar.opened .collapse .dropdown-item {
  color: #ffffff;
}
.cid-uGxVoPkmTO .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-uGxVoPkmTO .navbar-fixed-top.opened {
  position: relative;
}
.cid-uGxVoPkmTO a {
  font-style: normal;
}
.cid-uGxVoPkmTO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uGxVoPkmTO .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-uGxVoPkmTO .nav-item .nav-link {
  color: #ffffff;
}
.cid-uGxVoPkmTO .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-uGxVoPkmTO .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-uGxVoPkmTO .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-uGxVoPkmTO .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uGxVoPkmTO .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-right {
    display: none;
  }
}
.cid-uGxVoPkmTO .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-uGxVoPkmTO .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-uGxVoPkmTO .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uGxVoPkmTO .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #c298d3;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-uGxVoPkmTO .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .right-box {
    display: none;
  }
}
.cid-uGxVoPkmTO .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uGxVoPkmTO .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-uGxVoPkmTO .content-text {
  margin-bottom: 0;
}
.cid-uGxVoPkmTO .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ec2f2f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uGxVoPkmTO .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-uGxVoPkmTO .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-uGxVoPkmTO .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uGxVoPkmTO .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-uGxVoPkmTO .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uGxVoPkmTO .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-uGxVoPkmTO .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uGxVoPkmTO .nav-dropdown .link {
  font-weight: 600;
}
.cid-uGxVoPkmTO .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uGxVoPkmTO .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-uGxVoPkmTO .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uGxVoPkmTO .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-uGxVoPkmTO .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-uGxVoPkmTO .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uGxVoPkmTO .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-uGxVoPkmTO .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-uGxVoPkmTO .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-uGxVoPkmTO .menu-content-top.show {
  display: block;
}
.cid-uGxVoPkmTO .pre-header-right {
  align-self: center;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #e92c2c;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:hover span {
  color: #ffffff;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-uGxVoPkmTO .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-uGxVoPkmTO .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uGxVoPkmTO .navbar .menu-content-top {
    display: none;
  }
  .cid-uGxVoPkmTO .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-uGxVoPkmTO .dropdown-item:before {
    display: none;
  }
  .cid-uGxVoPkmTO .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-uGxVoPkmTO img {
    height: 3.8rem !important;
  }
  .cid-uGxVoPkmTO .btn {
    display: flex;
  }
  .cid-uGxVoPkmTO button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uGxVoPkmTO .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uGxVoPkmTO .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uGxVoPkmTO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing,
  .cid-uGxVoPkmTO .navbar-collapse.show {
    display: block !important;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-nav,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-buttons,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uGxVoPkmTO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uGxVoPkmTO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-uGxVoPkmTO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uGxVoPkmTO .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uGxVoPkmTO .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-uGxVoPkmTO .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uGxVoPkmTO .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uGxVoPkmTO .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uGxVoPkmTO .navbar {
    display: block;
    padding: 0;
  }
  .cid-uGxVoPkmTO .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-uGxVoPkmTO .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uGxVoPkmTO .navbar-toggler {
    display: none;
  }
}
.cid-uGxVoPkmTO .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-uGxVoPkmTO .menu-area-wrapper .menu-area {
  background-color: #ec2f2f;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .menu-area-wrapper {
    height: 100%;
  }
}
.cid-uGxVoPkmTO .navbar-short {
  background: transparent;
}
.cid-uGxVoPkmTO .navbar-short .menu-content-top,
.cid-uGxVoPkmTO .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-uGxVoPkmTO .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uGxVoPkmTO .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uGxVoPkmTO .dropdown {
  color: #c298d3 !important;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu {
  background: #fafafa;
  display: none;
  position: absolute;
  border-top: 3px solid #ec2f2f;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #c298d3 !important;
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #e92c2c;
  color: #ffffff;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uGxVoPkmTO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uGxVoPkmTO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGxVoPkmTO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-uGxVoPkmTO .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uGxVoPkmTO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uGxVoPkmTO button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-uGxVoPkmTO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO button.navbar-toggler:focus {
  outline: none;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uGxVoPkmTO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uGxVoPkmTO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uGxVoPkmTO .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uGxVoPkmTO .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uGxVoPkmTO .collapsed .btn {
  display: flex;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uGxVoPkmTO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uGxVoPkmTO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-uGxVoPkmTO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.9rem  - 1rem);
  }
  .cid-uGxVoPkmTO .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uGxVoPkmTO .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGxVoPkmTO .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uGxVoPkmTO .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-uGxVoPkmTO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uGxVoPkmTO .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uGxVoPkmTO .collapsed .dropdown-item:before {
  display: none;
}
.cid-uGxVoPkmTO .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-uGxVoPkmTO .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-uGxVoPkmTO .nav-link:focus {
  outline: none;
}
.cid-uGxVoPkmTO .navbar-toggler {
  position: relative;
}
.cid-uGxVoPkmTO .dropdown-item.active,
.cid-uGxVoPkmTO .dropdown-item:active {
  color: auto;
}
.cid-uGxVoPkmTO .dropdown-item:hover {
  color: #e92c2c;
}
.cid-uHSgpnaytG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHSgpnaytG .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 240, 0.94) 46%, rgba(92, 195, 238, 0.94));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uHSgpnaytG .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-uHSgpnaytG .mbr-section-btn {
  margin-top: 20px;
}
.cid-uHSgpnaytG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHSgpnaytG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHXRec5PDm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uHXRec5PDm .container {
  max-width: 1500px;
}
.cid-uHXRec5PDm img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uHXRec5PDm img:hover {
  transform: scale(1.1);
}
.cid-uHXRec5PDm .row {
  background: #e92c2c;
}
.cid-uHXRec5PDm .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-uHXRec5PDm h2 {
  padding: 0;
  margin: 0;
}
.cid-uHXRec5PDm .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHXRec5PDm .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-uHXRec5PDm .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-uHXRec5PDm .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-uHXRec5PDm .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-uHXRec5PDm .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uHXRec5PDm .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uHXRec5PDm .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-uHXRec5PDm .row {
    margin: 0rem;
  }
  .cid-uHXRec5PDm .text-col {
    padding: 2rem 1rem;
  }
  .cid-uHXRec5PDm .number {
    margin-right: 2rem;
  }
  .cid-uHXRec5PDm .img-col {
    margin-bottom: 3rem;
  }
}
.cid-uHXRec5PDm H2 {
  color: #ffffff;
}
.cid-uHXRec5PDm .mbr-text {
  color: #fafafa;
}
.cid-uHXRec5PDm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHXRec5PDm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHXRec5PDm H3 {
  color: #ffffff;
}
.cid-uHXVzMC39n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHXVzMC39n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHXVzMC39n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHXVzMC39n .container {
    padding: 0 25px;
  }
}
.cid-uHXVzMC39n .row {
  justify-content: center;
}
.cid-uHXVzMC39n .item-wrapper {
  margin-bottom: 32px;
}
.cid-uHXVzMC39n .item-img {
  overflow: hidden;
}
.cid-uHXVzMC39n .item-img img {
  height: 345px;
  object-fit: cover;
  margin-bottom: 15px;
  transform: scale(1.06) translateX(0);
  transition: all 0.3s ease-in-out;
}
.cid-uHXVzMC39n .item-img img:hover {
  transform: scale(1.06) translateX(6px);
}
.cid-uHXJIRq7kc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3f3f3;
  overflow: hidden;
}
.cid-uHXJIRq7kc .mbr-text {
  color: #ffffff;
}
.cid-uHXJIRq7kc .media-container-row .mbr-text {
  color: #000000;
}
