.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffcf00 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffcf00 !important;
  border-color: #ffcf00 !important;
  color: #000000 !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: #a88900 !important;
  border-color: #a88900 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #a88900 !important;
  border-color: #a88900 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffcf00;
  color: #ffcf00;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a88900 !important;
  background-color: transparent!important;
  border-color: #a88900 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #ffcf00 !important;
  border-color: #ffcf00 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffcf00 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #997c00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffcf00;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffcf00;
  border-color: #ffcf00;
  color: #191500;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffcf00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff5cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffcf00 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ffcf00;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffcf00;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffcf00;
}
.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: #ffcf00;
  border-bottom-color: #ffcf00;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffcf00 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ffcf00' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: relative !important;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: absolute !important;
}
.cid-sFCw1qGFAI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #ffcf00 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vehNARE3EU {
  background-image: linear-gradient(135deg, #e43f3f 10%, #4479d9 100%) !important;
}
.cid-vehNARE3EU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehNARE3EU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehQXEvmD3 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vehQXEvmD3 .mbr-section-subtitle {
  color: #212529;
}
.cid-vehQXEvmD3 .container-table {
  margin: 0 auto;
}
.cid-vehQXEvmD3 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-vehQXEvmD3 .dataTables_wrapper {
  display: block;
}
.cid-vehQXEvmD3 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-vehQXEvmD3 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-vehQXEvmD3 table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-vehQXEvmD3 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-vehQXEvmD3 table td {
  border-top: 1px solid #cccccc;
}
.cid-vehQXEvmD3 table td:hover {
  color: #ffcf00;
}
.cid-vehQXEvmD3 table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-vehQXEvmD3 table.table {
  background: #6ec7f2;
}
.cid-vehQXEvmD3 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-vehQXEvmD3 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-vehQXEvmD3 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-vehQXEvmD3 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-vehQXEvmD3 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-vehQXEvmD3 .dataTables_filter {
    text-align: center;
  }
  .cid-vehQXEvmD3 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-vehRVL5fA2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vehRVL5fA2 .mbr-section-subtitle {
  color: #212529;
}
.cid-vehRVL5fA2 .container-table {
  margin: 0 auto;
}
.cid-vehRVL5fA2 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-vehRVL5fA2 .dataTables_wrapper {
  display: block;
}
.cid-vehRVL5fA2 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-vehRVL5fA2 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-vehRVL5fA2 table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-vehRVL5fA2 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-vehRVL5fA2 table td {
  border-top: 1px solid #cccccc;
}
.cid-vehRVL5fA2 table td:hover {
  color: #ffcf00;
}
.cid-vehRVL5fA2 table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-vehRVL5fA2 table.table {
  background: #6ec7f2;
}
.cid-vehRVL5fA2 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-vehRVL5fA2 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-vehRVL5fA2 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-vehRVL5fA2 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-vehRVL5fA2 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-vehRVL5fA2 .dataTables_filter {
    text-align: center;
  }
  .cid-vehRVL5fA2 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-vehSzh76F8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vehSzh76F8 .mbr-section-subtitle {
  color: #212529;
}
.cid-vehSzh76F8 .container-table {
  margin: 0 auto;
}
.cid-vehSzh76F8 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-vehSzh76F8 .dataTables_wrapper {
  display: block;
}
.cid-vehSzh76F8 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-vehSzh76F8 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-vehSzh76F8 table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-vehSzh76F8 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-vehSzh76F8 table td {
  border-top: 1px solid #cccccc;
}
.cid-vehSzh76F8 table td:hover {
  color: #ffcf00;
}
.cid-vehSzh76F8 table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-vehSzh76F8 table.table {
  background: #6ec7f2;
}
.cid-vehSzh76F8 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-vehSzh76F8 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-vehSzh76F8 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-vehSzh76F8 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-vehSzh76F8 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-vehSzh76F8 .dataTables_filter {
    text-align: center;
  }
  .cid-vehSzh76F8 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-vehUWEaKTx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vehUWEaKTx .mbr-section-subtitle {
  color: #212529;
}
.cid-vehUWEaKTx .container-table {
  margin: 0 auto;
}
.cid-vehUWEaKTx .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-vehUWEaKTx .dataTables_wrapper {
  display: block;
}
.cid-vehUWEaKTx .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-vehUWEaKTx table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-vehUWEaKTx table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-vehUWEaKTx table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-vehUWEaKTx table td {
  border-top: 1px solid #cccccc;
}
.cid-vehUWEaKTx table td:hover {
  color: #ffcf00;
}
.cid-vehUWEaKTx table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-vehUWEaKTx table.table {
  background: #6ec7f2;
}
.cid-vehUWEaKTx .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-vehUWEaKTx .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-vehUWEaKTx .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-vehUWEaKTx .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-vehUWEaKTx .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-vehUWEaKTx .dataTables_filter {
    text-align: center;
  }
  .cid-vehUWEaKTx .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uHbVH6UI9e {
  padding-top: 75px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #04367c, #000000);
}
.cid-uHbVH6UI9e .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uHbVH6UI9e .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-uHbVH6UI9e .price-term {
  display: block;
  line-height: 1;
  margin-top: 0.45rem;
}
.cid-uHbVH6UI9e .plan-title {
  background-color: #ffcf00;
}
.cid-uHbVH6UI9e .plan-header {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.cid-uHbVH6UI9e .plan-body {
  border-radius: 0 0 8px 8px;
}
.cid-uHbVH6UI9e .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-uHbVH6UI9e .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-uHbVH6UI9e .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-uHbVH6UI9e .plan:nth-child(2) .plan-title {
  background-color: #eb4e6f;
}
.cid-uHbVH6UI9e .plan-header,
.cid-uHbVH6UI9e .plan-body {
  background-color: #fff;
  border-bottom: solid 2px #ededed;
}
.cid-uHbVH6UI9e .price-figure {
  font-weight: 600;
  color: #232323;
}
.cid-uHbVH6UI9e .price-value {
  font-weight: 700;
  vertical-align: top;
  line-height: 1;
  margin-right: 0.25rem;
}
@media (max-width: 550px) {
  .cid-uHbVH6UI9e .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uHbVH6UI9e .plan-price {
  color: #000000;
}
.cid-uHgA2HKpp3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHgA2HKpp3 .mbr-section-subtitle {
  color: #767676;
}
.cid-uHgA2HKpp3 .container-table {
  margin: 0 auto;
}
.cid-uHgA2HKpp3 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uHgA2HKpp3 .dataTables_wrapper {
  display: block;
}
.cid-uHgA2HKpp3 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uHgA2HKpp3 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uHgA2HKpp3 table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-uHgA2HKpp3 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uHgA2HKpp3 table td {
  border-top: 1px solid #cccccc;
}
.cid-uHgA2HKpp3 table td:hover {
  color: #ffcf00;
}
.cid-uHgA2HKpp3 table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-uHgA2HKpp3 table.table {
  background: #6ec7f2;
}
.cid-uHgA2HKpp3 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uHgA2HKpp3 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uHgA2HKpp3 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uHgA2HKpp3 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uHgA2HKpp3 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uHgA2HKpp3 .dataTables_filter {
    text-align: center;
  }
  .cid-uHgA2HKpp3 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uHgGN2qPX3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHgGN2qPX3 .mbr-section-subtitle {
  color: #767676;
}
.cid-uHgGN2qPX3 .container-table {
  margin: 0 auto;
}
.cid-uHgGN2qPX3 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uHgGN2qPX3 .dataTables_wrapper {
  display: block;
}
.cid-uHgGN2qPX3 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uHgGN2qPX3 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uHgGN2qPX3 table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-uHgGN2qPX3 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uHgGN2qPX3 table td {
  border-top: 1px solid #cccccc;
}
.cid-uHgGN2qPX3 table td:hover {
  color: #ffcf00;
}
.cid-uHgGN2qPX3 table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-uHgGN2qPX3 table.table {
  background: #6ec7f2;
}
.cid-uHgGN2qPX3 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uHgGN2qPX3 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uHgGN2qPX3 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uHgGN2qPX3 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uHgGN2qPX3 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uHgGN2qPX3 .dataTables_filter {
    text-align: center;
  }
  .cid-uHgGN2qPX3 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uHgHVJ4srh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHgHVJ4srh .mbr-section-subtitle {
  color: #767676;
}
.cid-uHgHVJ4srh .container-table {
  margin: 0 auto;
}
.cid-uHgHVJ4srh .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uHgHVJ4srh .dataTables_wrapper {
  display: block;
}
.cid-uHgHVJ4srh .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uHgHVJ4srh table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uHgHVJ4srh table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-uHgHVJ4srh table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uHgHVJ4srh table td {
  border-top: 1px solid #cccccc;
}
.cid-uHgHVJ4srh table td:hover {
  color: #ffcf00;
}
.cid-uHgHVJ4srh table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-uHgHVJ4srh table.table {
  background: #6ec7f2;
}
.cid-uHgHVJ4srh .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uHgHVJ4srh .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uHgHVJ4srh .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uHgHVJ4srh .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uHgHVJ4srh .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uHgHVJ4srh .dataTables_filter {
    text-align: center;
  }
  .cid-uHgHVJ4srh .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uHgJ9nI5la {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHgJ9nI5la .mbr-section-subtitle {
  color: #767676;
}
.cid-uHgJ9nI5la .container-table {
  margin: 0 auto;
}
.cid-uHgJ9nI5la .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uHgJ9nI5la .dataTables_wrapper {
  display: block;
}
.cid-uHgJ9nI5la .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uHgJ9nI5la table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uHgJ9nI5la table th {
  border-top: 1px solid #98dee8;
  transition: all .2s;
  border-bottom: none;
}
.cid-uHgJ9nI5la table th:hover {
  background: #98dee8;
  color: #000000;
}
.cid-uHgJ9nI5la table td {
  border-top: 1px solid #98dee8;
}
.cid-uHgJ9nI5la table td:hover {
  color: #ffcf00;
}
.cid-uHgJ9nI5la table tr:last-child td {
  border-bottom: 1px solid #98dee8;
}
.cid-uHgJ9nI5la table.table {
  background: #6ec7f2;
}
.cid-uHgJ9nI5la .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uHgJ9nI5la .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uHgJ9nI5la .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uHgJ9nI5la .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uHgJ9nI5la .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uHgJ9nI5la .dataTables_filter {
    text-align: center;
  }
  .cid-uHgJ9nI5la .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uHgL4LUmJG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHgL4LUmJG .mbr-section-subtitle {
  color: #767676;
}
.cid-uHgL4LUmJG .container-table {
  margin: 0 auto;
}
.cid-uHgL4LUmJG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uHgL4LUmJG .dataTables_wrapper {
  display: block;
}
.cid-uHgL4LUmJG .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uHgL4LUmJG table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uHgL4LUmJG table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-uHgL4LUmJG table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uHgL4LUmJG table td {
  border-top: 1px solid #cccccc;
}
.cid-uHgL4LUmJG table td:hover {
  color: #ffcf00;
}
.cid-uHgL4LUmJG table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-uHgL4LUmJG table.table {
  background: #6ec7f2;
}
.cid-uHgL4LUmJG .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uHgL4LUmJG .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uHgL4LUmJG .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uHgL4LUmJG .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uHgL4LUmJG .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uHgL4LUmJG .dataTables_filter {
    text-align: center;
  }
  .cid-uHgL4LUmJG .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uHgOFdSkNi {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHgOFdSkNi .mbr-section-subtitle {
  color: #767676;
}
.cid-uHgOFdSkNi .container-table {
  margin: 0 auto;
}
.cid-uHgOFdSkNi .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uHgOFdSkNi .dataTables_wrapper {
  display: block;
}
.cid-uHgOFdSkNi .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uHgOFdSkNi table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uHgOFdSkNi table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-uHgOFdSkNi table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uHgOFdSkNi table td {
  border-top: 1px solid #cccccc;
}
.cid-uHgOFdSkNi table td:hover {
  color: #ffcf00;
}
.cid-uHgOFdSkNi table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-uHgOFdSkNi table.table {
  background: #6ec7f2;
}
.cid-uHgOFdSkNi .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uHgOFdSkNi .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uHgOFdSkNi .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uHgOFdSkNi .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uHgOFdSkNi .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uHgOFdSkNi .dataTables_filter {
    text-align: center;
  }
  .cid-uHgOFdSkNi .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uHgRGsw4Os {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uHgRGsw4Os .mbr-section-subtitle {
  color: #767676;
}
.cid-uHgRGsw4Os .container-table {
  margin: 0 auto;
}
.cid-uHgRGsw4Os .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uHgRGsw4Os .dataTables_wrapper {
  display: block;
}
.cid-uHgRGsw4Os .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uHgRGsw4Os table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uHgRGsw4Os table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-uHgRGsw4Os table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uHgRGsw4Os table td {
  border-top: 1px solid #cccccc;
}
.cid-uHgRGsw4Os table td:hover {
  color: #ffcf00;
}
.cid-uHgRGsw4Os table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-uHgRGsw4Os table.table {
  background: #6ec7f2;
}
.cid-uHgRGsw4Os .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uHgRGsw4Os .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uHgRGsw4Os .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uHgRGsw4Os .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uHgRGsw4Os .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uHgRGsw4Os .dataTables_filter {
    text-align: center;
  }
  .cid-uHgRGsw4Os .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uHgTnihgn3 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uHgTnihgn3 .mbr-section-subtitle {
  color: #767676;
}
.cid-uHgTnihgn3 .container-table {
  margin: 0 auto;
}
.cid-uHgTnihgn3 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uHgTnihgn3 .dataTables_wrapper {
  display: block;
}
.cid-uHgTnihgn3 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uHgTnihgn3 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uHgTnihgn3 table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-uHgTnihgn3 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uHgTnihgn3 table td {
  border-top: 1px solid #cccccc;
}
.cid-uHgTnihgn3 table td:hover {
  color: #ffcf00;
}
.cid-uHgTnihgn3 table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-uHgTnihgn3 table.table {
  background: #6ec7f2;
}
.cid-uHgTnihgn3 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uHgTnihgn3 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uHgTnihgn3 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uHgTnihgn3 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uHgTnihgn3 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uHgTnihgn3 .dataTables_filter {
    text-align: center;
  }
  .cid-uHgTnihgn3 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tWMOkfHqac {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tWMOkfHqac .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWMOkfHqac .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWMOkfHqac .mbr-section-title,
.cid-tWMOkfHqac .mbr-section-subtitle {
  text-align: center;
}
.cid-tWMOkfHqac .cost {
  word-break: normal;
}
.cid-tWMOkfHqac .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tWMOkfHqac .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tWMOkfHqac .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWMOkfHqac .card-wrapper {
    padding: 1rem;
  }
}
.cid-tWMOkfHqac .card-title {
  color: #46b7ca;
}
.cid-sFzDs3t9EG {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-sFzDs3t9EG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sFzDs3t9EG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sFzDs3t9EG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sFzDs3t9EG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sFzDs3t9EG .mbr-section-title {
  color: #000000;
}
.cid-sFzDs3t9EG .mbr-section-subtitle {
  color: #000000;
}
.cid-sFzIA7KGYz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sFzIA7KGYz .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFzIA7KGYz .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sFzIA7KGYz .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #ffcf00;
}
.cid-tWMS2MYpt0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-vehmhmlkgH {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-vehmhmlkgH .mbr-section-subtitle {
  color: #212529;
}
.cid-vehmhmlkgH .container-table {
  margin: 0 auto;
}
.cid-vehmhmlkgH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-vehmhmlkgH .dataTables_wrapper {
  display: block;
}
.cid-vehmhmlkgH .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-vehmhmlkgH table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-vehmhmlkgH table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-vehmhmlkgH table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-vehmhmlkgH table td {
  border-top: 1px solid #cccccc;
}
.cid-vehmhmlkgH table td:hover {
  color: #ffcf00;
}
.cid-vehmhmlkgH table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-vehmhmlkgH table.table {
  background: #6ec7f2;
}
.cid-vehmhmlkgH .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-vehmhmlkgH .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-vehmhmlkgH .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-vehmhmlkgH .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-vehmhmlkgH .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-vehmhmlkgH .dataTables_filter {
    text-align: center;
  }
  .cid-vehmhmlkgH .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-veidarXPIv .navbar-dropdown {
  position: relative !important;
}
.cid-veidarXPIv .navbar-dropdown {
  position: absolute !important;
}
.cid-veidarXPIv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veidarXPIv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-veidarXPIv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-veidarXPIv .dropdown-item:hover,
.cid-veidarXPIv .dropdown-item:focus {
  background: #ffcf00 !important;
  color: white !important;
}
.cid-veidarXPIv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-veidarXPIv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-veidarXPIv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-veidarXPIv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-veidarXPIv .nav-link {
  position: relative;
}
.cid-veidarXPIv .container {
  display: flex;
  margin: auto;
}
.cid-veidarXPIv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-veidarXPIv .dropdown-menu,
.cid-veidarXPIv .navbar.opened {
  background: #fafafa !important;
}
.cid-veidarXPIv .nav-item:focus,
.cid-veidarXPIv .nav-link:focus {
  outline: none;
}
.cid-veidarXPIv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-veidarXPIv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-veidarXPIv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-veidarXPIv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-veidarXPIv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-veidarXPIv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-veidarXPIv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-veidarXPIv .navbar.opened {
  transition: all 0.3s;
}
.cid-veidarXPIv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-veidarXPIv .navbar .navbar-logo img {
  width: auto;
}
.cid-veidarXPIv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-veidarXPIv .navbar.collapsed {
  justify-content: center;
}
.cid-veidarXPIv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-veidarXPIv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-veidarXPIv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-veidarXPIv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-veidarXPIv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-veidarXPIv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-veidarXPIv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-veidarXPIv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-veidarXPIv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-veidarXPIv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-veidarXPIv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-veidarXPIv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-veidarXPIv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-veidarXPIv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-veidarXPIv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-veidarXPIv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-veidarXPIv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-veidarXPIv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-veidarXPIv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-veidarXPIv .navbar.navbar-short {
  min-height: 60px;
}
.cid-veidarXPIv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-veidarXPIv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-veidarXPIv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-veidarXPIv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-veidarXPIv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-veidarXPIv .dropdown-item.active,
.cid-veidarXPIv .dropdown-item:active {
  background-color: transparent;
}
.cid-veidarXPIv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-veidarXPIv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-veidarXPIv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-veidarXPIv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-veidarXPIv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-veidarXPIv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-veidarXPIv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-veidarXPIv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-veidarXPIv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-veidarXPIv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-veidarXPIv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-veidarXPIv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veidarXPIv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-veidarXPIv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-veidarXPIv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veidarXPIv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-veidarXPIv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-veidarXPIv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-veidarXPIv .navbar-dropdown {
  padding: 0 1rem;
}
.cid-veidarXPIv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-veidarXPIv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-veidarXPIv .navbar {
    height: 70px;
  }
  .cid-veidarXPIv .navbar.opened {
    height: auto;
  }
  .cid-veidarXPIv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-veieAuO936 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-veieAuO936 .mbr-fallback-image.disabled {
  display: none;
}
.cid-veieAuO936 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veieAuO936 .mbr-section-subtitle DIV {
  text-align: right;
}
.cid-veidaC4KER {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-veidaC4KER .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-veidaC4KER form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-veidaC4KER form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-veidaC4KER form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-veidaC4KER .mbr-section-title {
  color: #000000;
}
.cid-veidaC4KER .mbr-section-subtitle {
  color: #000000;
}
.cid-veidaCv084 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-veidaCv084 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-veidaCv084 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-veidaCv084 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-veidaCv084 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-veidaCv084 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #ffcf00;
}
.cid-veidaDc7LC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
