body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: 1.92rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.68rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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: #facb1d !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: #facb1d !important;
  border-color: #facb1d !important;
  color: #171301 !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: #bc9504 !important;
  border-color: #bc9504 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #171301 !important;
  background-color: #bc9504 !important;
  border-color: #bc9504 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #facb1d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #bc9504 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #171301 !important;
  background-color: #facb1d !important;
  border-color: #facb1d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #facb1d !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: #ad8904 !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: #facb1d;
}
.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: #facb1d;
  border-color: #facb1d;
  color: #302601;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #facb1d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fef9e5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #facb1d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #facb1d;
}
/* 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: #facb1d;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #facb1d;
}
.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: #facb1d;
  border-bottom-color: #facb1d;
}
.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: #facb1d !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='%23facb1d' %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-tCKl46fJqP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCKl46fJqP nav.navbar {
  position: fixed;
}
.cid-tCKl46fJqP .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-tCKl46fJqP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCKl46fJqP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCKl46fJqP .dropdown-item:hover,
.cid-tCKl46fJqP .dropdown-item:focus {
  background: #facb1d !important;
  color: white !important;
}
.cid-tCKl46fJqP .dropdown-item:hover span {
  color: white;
}
.cid-tCKl46fJqP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCKl46fJqP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCKl46fJqP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCKl46fJqP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCKl46fJqP .nav-link {
  position: relative;
}
.cid-tCKl46fJqP .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCKl46fJqP .container {
    flex-wrap: nowrap;
  }
}
.cid-tCKl46fJqP .iconfont-wrapper {
  color: #fac93d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCKl46fJqP .dropdown-menu,
.cid-tCKl46fJqP .navbar.opened {
  background: #181817 !important;
}
.cid-tCKl46fJqP .nav-item:focus,
.cid-tCKl46fJqP .nav-link:focus {
  outline: none;
}
.cid-tCKl46fJqP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCKl46fJqP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCKl46fJqP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCKl46fJqP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCKl46fJqP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCKl46fJqP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCKl46fJqP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #181817;
}
.cid-tCKl46fJqP .navbar.opened {
  transition: all 0.3s;
}
.cid-tCKl46fJqP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCKl46fJqP .navbar .navbar-logo img {
  width: auto;
}
.cid-tCKl46fJqP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCKl46fJqP .navbar.collapsed {
  justify-content: center;
}
.cid-tCKl46fJqP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCKl46fJqP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCKl46fJqP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tCKl46fJqP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCKl46fJqP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCKl46fJqP .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-tCKl46fJqP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCKl46fJqP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCKl46fJqP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCKl46fJqP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCKl46fJqP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCKl46fJqP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCKl46fJqP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCKl46fJqP .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-tCKl46fJqP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCKl46fJqP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCKl46fJqP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCKl46fJqP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCKl46fJqP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCKl46fJqP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tCKl46fJqP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tCKl46fJqP .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCKl46fJqP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCKl46fJqP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCKl46fJqP .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-tCKl46fJqP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCKl46fJqP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCKl46fJqP .dropdown-item.active,
.cid-tCKl46fJqP .dropdown-item:active {
  background-color: transparent;
}
.cid-tCKl46fJqP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCKl46fJqP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCKl46fJqP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCKl46fJqP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181817;
}
.cid-tCKl46fJqP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCKl46fJqP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCKl46fJqP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCKl46fJqP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCKl46fJqP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCKl46fJqP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fec002;
}
.cid-tCKl46fJqP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCKl46fJqP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCKl46fJqP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCKl46fJqP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCKl46fJqP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCKl46fJqP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCKl46fJqP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCKl46fJqP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCKl46fJqP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCKl46fJqP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCKl46fJqP .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-tCKl46fJqP .navbar {
    height: 70px;
  }
  .cid-tCKl46fJqP .navbar.opened {
    height: auto;
  }
  .cid-tCKl46fJqP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCPzYa2l5O {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #2c2c2c;
}
.cid-tCPzYa2l5O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCPzYa2l5O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCPzYa2l5O .row {
  justify-content: center;
}
.cid-tCPzYa2l5O .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tCPzYa2l5O .row {
    padding: 0 12px;
  }
}
.cid-tCPzYa2l5O .item-wrap {
  z-index: 1;
}
.cid-tCPzYa2l5O .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tEkSnAeDu5 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #facb1d;
}
.cid-tEkSnAeDu5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEkSnAeDu5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEkSnAeDu5 .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-tEkSnAeDu5 .mbr-text,
.cid-tEkSnAeDu5 .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-tCKpF7Wmj0 {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #facb1d;
}
.cid-tCKpF7Wmj0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCKpF7Wmj0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCKpF7Wmj0 .video-wrapper iframe {
  width: 100%;
}
.cid-tCKpF7Wmj0 .mbr-section-title,
.cid-tCKpF7Wmj0 .mbr-section-subtitle,
.cid-tCKpF7Wmj0 .mbr-text {
  text-align: center;
}
.cid-u5Dqm1tEAP {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #242423;
}
.cid-u5Dqm1tEAP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5Dqm1tEAP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5Dqm1tEAP .mbr-section-title {
  text-align: left;
  color: #facb1d;
}
.cid-tCKqvj9TNp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #242423;
}
.cid-tCKqvj9TNp .item-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  position: relative;
  background: #464646;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tCKqvj9TNp .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (min-width: 992px) {
  .cid-tCKqvj9TNp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCKqvj9TNp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tCKqvj9TNp img,
.cid-tCKqvj9TNp .item-img {
  width: 100%;
}
.cid-tCKqvj9TNp .item:focus,
.cid-tCKqvj9TNp span:focus {
  outline: none;
}
.cid-tCKqvj9TNp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tCKqvj9TNp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCKqvj9TNp .mbr-section-title {
  color: #facb1d;
}
.cid-tCKqvj9TNp .mbr-text,
.cid-tCKqvj9TNp .mbr-section-btn {
  text-align: center;
}
.cid-tCKqvj9TNp .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-tCKqvj9TNp .item-subtitle {
  text-align: center;
  color: #454545;
}
.cid-u5Dr9D37sA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #242423;
}
.cid-u5Dr9D37sA .item-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  position: relative;
  background: #464646;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u5Dr9D37sA .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (min-width: 992px) {
  .cid-u5Dr9D37sA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u5Dr9D37sA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u5Dr9D37sA img,
.cid-u5Dr9D37sA .item-img {
  width: 100%;
}
.cid-u5Dr9D37sA .item:focus,
.cid-u5Dr9D37sA span:focus {
  outline: none;
}
.cid-u5Dr9D37sA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u5Dr9D37sA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u5Dr9D37sA .mbr-section-title {
  color: #facb1d;
}
.cid-u5Dr9D37sA .mbr-text,
.cid-u5Dr9D37sA .mbr-section-btn {
  text-align: center;
}
.cid-u5Dr9D37sA .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-u5Dr9D37sA .item-subtitle {
  text-align: center;
  color: #454545;
}
.cid-tCKrAy0VQG {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #242423;
}
.cid-tCKrAy0VQG .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-tCKrAy0VQG .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tCKrAy0VQG .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tCKrAy0VQG .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tCKrAy0VQG .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tCKrAy0VQG a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tCKrAy0VQG a.close:hover {
  color: #ffffff;
}
.cid-tCKrAy0VQG H1 {
  color: #fec002;
}
.cid-tCKrAy0VQG P {
  text-align: center;
}
.cid-tCKuvhYgIK {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #2c2c2c;
}
.cid-tCKuvhYgIK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCKuvhYgIK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCKuvhYgIK .row {
  flex-direction: row-reverse;
}
.cid-tCKuvhYgIK .video-wrapper iframe {
  width: 100%;
}
.cid-tCKuvhYgIK .mbr-section-title,
.cid-tCKuvhYgIK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tCKuvhYgIK .text-wrapper {
    padding: 2rem;
  }
}
.cid-tCKuvhYgIK .mbr-text {
  color: #ffffff;
}
.cid-tCKuvhYgIK .mbr-section-subtitle {
  color: #facb1d;
}
.cid-tCKwE91hVt {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #464646;
}
.cid-tCKwE91hVt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCKwE91hVt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCKwE91hVt .mbr-section-title {
  color: #facb1d;
  margin-bottom: 2.5rem;
  text-align: left;
}
.cid-tCKwE91hVt .mbr-section-subtitle {
  color: #181817;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .cid-tCKwE91hVt .mbr-section-subtitle.display-1 {
    font-size: 14rem !important;
  }
}
.cid-tCKwE91hVt .mbr-text {
  color: #181817;
  margin-bottom: 0;
}
.cid-tCKwF7A7mF {
  background: #464646;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-tCKwF7A7mF .image-block {
  margin: auto;
}
.cid-tCKwF7A7mF .mbr-figure {
  margin: 0 auto;
}
.cid-tCKwF7A7mF figcaption {
  position: relative;
}
.cid-tCKwF7A7mF figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tCKwF7A7mF .image-block {
    width: 100% !important;
  }
}
.cid-tCQuaYvJMb {
  padding-top: 5rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #181817;
}
.cid-tCQuaYvJMb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCQuaYvJMb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCQuaYvJMb .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tCQuaYvJMb .mbr-section-title {
  color: #facb1d;
  text-align: left;
}
.cid-tCQuaYvJMb .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tCQuaYvJMb .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tCQuaYvJMb .card-row {
  align-items: stretch;
}
.cid-tCQuaYvJMb .card {
  margin-top: 30px;
}
.cid-tCQuaYvJMb .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 45px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #464646, #464646);
}
@media (max-width: 991px) {
  .cid-tCQuaYvJMb .card-wrapper {
    padding: 20px 30px;
  }
}
.cid-tCQuaYvJMb .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tCQuaYvJMb .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #464646, #464646);
  opacity: 0;
  transition: .5s all;
}
.cid-tCQuaYvJMb .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-tCQuaYvJMb .avatar-container {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.cid-tCQuaYvJMb .avatar-container .img-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.cid-tCQuaYvJMb .avatar-container .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tCQuaYvJMb .card-title {
  color: #facb1d;
  margin-bottom: 0;
}
.cid-tCQuaYvJMb .card-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-tCQuaYvJMb .card-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tDoWscVNZz {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #181817;
}
.cid-tDoWscVNZz .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-tDoWscVNZz .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tDoWscVNZz .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tDoWscVNZz .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tDoWscVNZz .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tDoWscVNZz a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tDoWscVNZz a.close:hover {
  color: #ffffff;
}
.cid-tDoWscVNZz H1 {
  color: #fec002;
}
.cid-tDoWscVNZz P {
  text-align: center;
}
.cid-tFhDQoyjfo {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #464646;
}
.cid-tFhDQoyjfo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFhDQoyjfo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFhDQoyjfo .row {
  flex-direction: row-reverse;
}
.cid-tFhDQoyjfo .video-wrapper iframe {
  width: 100%;
}
.cid-tFhDQoyjfo .mbr-section-title,
.cid-tFhDQoyjfo .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tFhDQoyjfo .text-wrapper {
    padding: 2rem;
  }
}
.cid-tFhDQoyjfo .mbr-section-title {
  text-align: left;
}
.cid-tFhDQoyjfo .mbr-text {
  color: #ffffff;
}
.cid-tFhDQoyjfo .mbr-section-subtitle {
  color: #facb1d;
}
.cid-tCKt3keuKi {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #facb1d;
}
.cid-tCKt3keuKi .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tCKt3keuKi .row-element,
.cid-tCKt3keuKi .image-element {
  padding: 0;
}
.cid-tCKt3keuKi .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tCKt3keuKi .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tCKt3keuKi .text-content {
  padding: 3rem;
}
.cid-tCKt3keuKi .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-tCKt3keuKi .text-content {
    padding: 2rem 1rem;
  }
  .cid-tCKt3keuKi .mbr-title,
  .cid-tCKt3keuKi .underline,
  .cid-tCKt3keuKi .mbr-text,
  .cid-tCKt3keuKi .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tCKt3keuKi .mbr-title {
  text-align: left;
}
.cid-tCKt3keuKi .mbr-text,
.cid-tCKt3keuKi .mbr-section-btn {
  text-align: left;
}
.cid-tCPq1DC2ju {
  background: #2c2c2c;
  padding-top: 60px;
  padding-bottom: 0px;
}
.cid-tCPq1DC2ju .image-block {
  margin: auto;
}
.cid-tCPq1DC2ju figcaption {
  position: relative;
}
.cid-tCPq1DC2ju figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tCPq1DC2ju .image-block {
    width: 100% !important;
  }
}
.cid-tCPqlWTEOz {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #2c2c2c;
}
.cid-tCPqlWTEOz .mbr-section-subtitle {
  color: #fec002;
  text-align: center;
  font-weight: 300;
}
.cid-tCPqlWTEOz .step {
  width: 100px;
  height: 100px;
  font-size: 50px;
  border-radius: 50%;
  border: 2px solid #efefef;
  padding-bottom: 0;
  color: #facb1d;
}
@media (min-width: 768px) {
  .cid-tCPqlWTEOz .separline .step-wrapper {
    position: relative;
  }
  .cid-tCPqlWTEOz .separline .step-wrapper:before,
  .cid-tCPqlWTEOz .separline .step-wrapper:after {
    top: 52px;
    position: absolute;
    content: "";
    height: 2px;
    width: calc(50% + 15px - 50px - 8px);
    background-color: #efefef;
  }
  .cid-tCPqlWTEOz .separline .step-wrapper:before {
    left: -15px;
  }
  .cid-tCPqlWTEOz .separline .step-wrapper:after {
    left: calc(50% + 8px + 50px);
  }
  .cid-tCPqlWTEOz .separline.last-child .step-wrapper:after,
  .cid-tCPqlWTEOz .separline:nth-child(3n) .step-wrapper:after,
  .cid-tCPqlWTEOz .separline:nth-child(3n+1) .step-wrapper:before {
    background: none;
  }
}
@media (max-width: 767px) {
  .cid-tCPqlWTEOz .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-tCPqlWTEOz .mbr-step-title {
  color: #ffffff;
}
.cid-tCPqlWTEOz .mbr-step-text {
  color: #ffffff;
}
.cid-tCPqlWTEOz .mbr-section-title {
  color: #fec002;
}
.cid-tCQnzfxQgL {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #2c2c2c;
}
.cid-tCQnzfxQgL .title {
  margin-bottom: 2rem;
}
.cid-tCQnzfxQgL .mbr-section-subtitle {
  color: #facb1d;
}
.cid-tCQnzfxQgL a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tCQnzfxQgL a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tCQnzfxQgL .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tCQnzfxQgL .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tCQnzfxQgL LABEL {
  color: #ffffff;
}
.cid-tCQnzfxQgL DIV {
  color: #ffffff;
}
.cid-tCQnzfxQgL H2 {
  color: #ffffff;
}
.cid-tCQnzfxQgL B {
  color: #ffffff;
}
.cid-tCQnzfxQgL .mbr-section-subtitle B {
  color: #fec002;
}
.cid-tD7BlAXo8V {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #facb1d;
}
.cid-tD7BlAXo8V .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tD7BlAXo8V h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.cid-tD7BlAXo8V h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tD7BlAXo8V h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tD7BlAXo8V .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #000000;
  margin: 15px 0.5rem;
  display: block;
}
.cid-tD7BlAXo8V .mbr-iconfont-social:before {
  padding: 0.6rem;
  border: 2px solid;
  border-radius: 100px;
  transition: all 0.3s;
}
.cid-tD7BlAXo8V .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-tD7BlAXo8V .mbr-iconfont-social:hover:before {
  background: #000000;
  transition: all 0.3s;
  border-color: transparent;
}
.cid-tD7BlAXo8V .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tD7BlAXo8V .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tD7BlAXo8V .mbr-iconfont-social {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}
.cid-tD7BlAXo8V .mbr-section-title,
.cid-tD7BlAXo8V .social-list {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tD7BlAXo8V h2:before,
  .cid-tD7BlAXo8V h2:after {
    display: none;
  }
}
.cid-tCKrNTwsFF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #181817;
}
.cid-tCKrNTwsFF .mbr-text {
  color: #f6f6ef;
}
.cid-tCKBBpPjPw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCKBBpPjPw nav.navbar {
  position: fixed;
}
.cid-tCKBBpPjPw .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-tCKBBpPjPw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCKBBpPjPw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCKBBpPjPw .dropdown-item:hover,
.cid-tCKBBpPjPw .dropdown-item:focus {
  background: #facb1d !important;
  color: white !important;
}
.cid-tCKBBpPjPw .dropdown-item:hover span {
  color: white;
}
.cid-tCKBBpPjPw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCKBBpPjPw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCKBBpPjPw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCKBBpPjPw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCKBBpPjPw .nav-link {
  position: relative;
}
.cid-tCKBBpPjPw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCKBBpPjPw .container {
    flex-wrap: nowrap;
  }
}
.cid-tCKBBpPjPw .iconfont-wrapper {
  color: #fac93d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCKBBpPjPw .dropdown-menu,
.cid-tCKBBpPjPw .navbar.opened {
  background: #181817 !important;
}
.cid-tCKBBpPjPw .nav-item:focus,
.cid-tCKBBpPjPw .nav-link:focus {
  outline: none;
}
.cid-tCKBBpPjPw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCKBBpPjPw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCKBBpPjPw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCKBBpPjPw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCKBBpPjPw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCKBBpPjPw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCKBBpPjPw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #181817;
}
.cid-tCKBBpPjPw .navbar.opened {
  transition: all 0.3s;
}
.cid-tCKBBpPjPw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCKBBpPjPw .navbar .navbar-logo img {
  width: auto;
}
.cid-tCKBBpPjPw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCKBBpPjPw .navbar.collapsed {
  justify-content: center;
}
.cid-tCKBBpPjPw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCKBBpPjPw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCKBBpPjPw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tCKBBpPjPw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCKBBpPjPw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCKBBpPjPw .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-tCKBBpPjPw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCKBBpPjPw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCKBBpPjPw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCKBBpPjPw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCKBBpPjPw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCKBBpPjPw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCKBBpPjPw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCKBBpPjPw .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-tCKBBpPjPw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCKBBpPjPw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCKBBpPjPw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCKBBpPjPw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCKBBpPjPw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCKBBpPjPw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tCKBBpPjPw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tCKBBpPjPw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCKBBpPjPw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCKBBpPjPw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCKBBpPjPw .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-tCKBBpPjPw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCKBBpPjPw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCKBBpPjPw .dropdown-item.active,
.cid-tCKBBpPjPw .dropdown-item:active {
  background-color: transparent;
}
.cid-tCKBBpPjPw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCKBBpPjPw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCKBBpPjPw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCKBBpPjPw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181817;
}
.cid-tCKBBpPjPw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCKBBpPjPw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCKBBpPjPw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCKBBpPjPw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCKBBpPjPw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCKBBpPjPw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fec002;
}
.cid-tCKBBpPjPw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCKBBpPjPw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCKBBpPjPw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCKBBpPjPw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCKBBpPjPw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCKBBpPjPw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCKBBpPjPw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCKBBpPjPw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCKBBpPjPw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCKBBpPjPw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCKBBpPjPw .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-tCKBBpPjPw .navbar {
    height: 70px;
  }
  .cid-tCKBBpPjPw .navbar.opened {
    height: auto;
  }
  .cid-tCKBBpPjPw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tD7OT3efXN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/thumbnails-banner-background-1.jpg");
}
.cid-tD7OT3efXN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD7OT3efXN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD7OT3efXN .card-wrapper {
  background: #facb1d;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tD7OT3efXN .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tD7OT3efXN .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tD7OT3efXN .card-wrapper {
    padding: 4rem;
  }
}
.cid-tD7OT3efXN .card-title {
  text-align: left;
}
.cid-tD7OT3efXN .mbr-text,
.cid-tD7OT3efXN .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tCKDyQpl9I {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #facb1d;
}
.cid-tCKDyQpl9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCKDyQpl9I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCKDyQpl9I .mbr-text,
.cid-tCKDyQpl9I .link {
  text-align: center;
}
.cid-tCKDyQpl9I .mbr-section-title {
  text-align: center;
}
.cid-tCKBBrmhiz {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #facb1d;
}
.cid-tCKBBrmhiz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCKBBrmhiz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCKBBrmhiz .video-wrapper iframe {
  width: 100%;
}
.cid-tCKBBrmhiz .mbr-section-title,
.cid-tCKBBrmhiz .mbr-section-subtitle,
.cid-tCKBBrmhiz .mbr-text {
  text-align: center;
}
.cid-tCPn6Kapwm {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #464646;
}
.cid-tCPn6Kapwm .mbr-text {
  color: #ffffff;
}
.cid-tCPn6Kapwm .mbr-section-subtitle {
  color: #facb1d;
  text-align: left;
}
.cid-tCPno2MXR4 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #464646;
}
.cid-tCPno2MXR4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCPno2MXR4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCPno2MXR4 .video-wrapper iframe {
  width: 100%;
}
.cid-tCPno2MXR4 .mbr-section-title,
.cid-tCPno2MXR4 .mbr-section-subtitle,
.cid-tCPno2MXR4 .mbr-text {
  text-align: center;
}
.cid-uvfbylXGFC {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #464646;
}
.cid-uvfbylXGFC .mbr-text {
  color: #ffffff;
}
.cid-uvfbylXGFC .mbr-section-subtitle {
  color: #facb1d;
  text-align: left;
}
.cid-tCPo4l1Jyt {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tCPo4l1Jyt .mbr-text {
  color: #ffffff;
}
.cid-tCPo4l1Jyt .mbr-section-subtitle {
  color: #facb1d;
  text-align: left;
}
.cid-tCPoeCo87x {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tCPoeCo87x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCPoeCo87x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCPoeCo87x .video-wrapper iframe {
  width: 100%;
}
.cid-tCPoeCo87x .mbr-section-title,
.cid-tCPoeCo87x .mbr-section-subtitle,
.cid-tCPoeCo87x .mbr-text {
  text-align: center;
}
.cid-u5BEnHf4BJ {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #464646;
}
.cid-u5BEnHf4BJ .mbr-text {
  color: #ffffff;
}
.cid-u5BEnHf4BJ .mbr-section-subtitle {
  color: #facb1d;
  text-align: left;
}
.cid-u5BEq8DDm5 {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #464646;
}
.cid-u5BEq8DDm5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5BEq8DDm5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5BEq8DDm5 .video-wrapper iframe {
  width: 100%;
}
.cid-u5BEq8DDm5 .mbr-section-title,
.cid-u5BEq8DDm5 .mbr-section-subtitle,
.cid-u5BEq8DDm5 .mbr-text {
  text-align: center;
}
.cid-tCPoDKnMHv {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-tCPoDKnMHv .mbr-text {
  color: #ffffff;
}
.cid-tCPoDKnMHv .mbr-section-subtitle {
  color: #facb1d;
  text-align: left;
}
.cid-tCPoGTY2oq {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tCPoGTY2oq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCPoGTY2oq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCPoGTY2oq .video-wrapper iframe {
  width: 100%;
}
.cid-tCPoGTY2oq .mbr-section-title,
.cid-tCPoGTY2oq .mbr-section-subtitle,
.cid-tCPoGTY2oq .mbr-text {
  text-align: center;
}
.cid-tCKG7Z6oN7 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-tCKG7Z6oN7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCKG7Z6oN7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCKG7Z6oN7 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tCKG7Z6oN7 .container-fluid {
    padding: 0 12px;
  }
}
.cid-tCKG7Z6oN7 .container-fluid .row {
  padding: 0;
}
.cid-tCKG7Z6oN7 .row {
  margin-top: -2px;
  border-radius: 5px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tCKG7Z6oN7 .card {
    margin-bottom: 28px;
  }
}
.cid-tCKG7Z6oN7 .card .image-wrapper img {
  height: 430px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 5px solid #facb1d;
}
.cid-tCKFSOqF97 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #242423;
}
.cid-tCKFSOqF97 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCKFSOqF97 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCKFSOqF97 .row {
  flex-direction: row-reverse;
}
.cid-tCKFSOqF97 .video-wrapper iframe {
  width: 100%;
}
.cid-tCKFSOqF97 .mbr-section-title,
.cid-tCKFSOqF97 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tCKFSOqF97 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tCKFSOqF97 .mbr-text {
  color: #ffffff;
}
.cid-tCKFSOqF97 .mbr-section-subtitle {
  color: #facb1d;
}
.cid-tCPqACSEho {
  background: #2c2c2c;
  padding-top: 60px;
  padding-bottom: 0px;
}
.cid-tCPqACSEho .image-block {
  margin: auto;
}
.cid-tCPqACSEho figcaption {
  position: relative;
}
.cid-tCPqACSEho figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tCPqACSEho .image-block {
    width: 100% !important;
  }
}
.cid-tCQoaCStdc {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #2c2c2c;
}
.cid-tCQoaCStdc .mbr-section-subtitle {
  color: #fec002;
  text-align: center;
  font-weight: 300;
}
.cid-tCQoaCStdc .step {
  width: 100px;
  height: 100px;
  font-size: 50px;
  border-radius: 50%;
  border: 2px solid #efefef;
  padding-bottom: 0;
  color: #facb1d;
}
@media (min-width: 768px) {
  .cid-tCQoaCStdc .separline .step-wrapper {
    position: relative;
  }
  .cid-tCQoaCStdc .separline .step-wrapper:before,
  .cid-tCQoaCStdc .separline .step-wrapper:after {
    top: 52px;
    position: absolute;
    content: "";
    height: 2px;
    width: calc(50% + 15px - 50px - 8px);
    background-color: #efefef;
  }
  .cid-tCQoaCStdc .separline .step-wrapper:before {
    left: -15px;
  }
  .cid-tCQoaCStdc .separline .step-wrapper:after {
    left: calc(50% + 8px + 50px);
  }
  .cid-tCQoaCStdc .separline.last-child .step-wrapper:after,
  .cid-tCQoaCStdc .separline:nth-child(3n) .step-wrapper:after,
  .cid-tCQoaCStdc .separline:nth-child(3n+1) .step-wrapper:before {
    background: none;
  }
}
@media (max-width: 767px) {
  .cid-tCQoaCStdc .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-tCQoaCStdc .mbr-step-title {
  color: #ffffff;
}
.cid-tCQoaCStdc .mbr-step-text {
  color: #ffffff;
}
.cid-tCQoaCStdc .mbr-section-title {
  color: #fec002;
}
.cid-tCQobB5AcZ {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #2c2c2c;
}
.cid-tCQobB5AcZ .title {
  margin-bottom: 2rem;
}
.cid-tCQobB5AcZ .mbr-section-subtitle {
  color: #facb1d;
}
.cid-tCQobB5AcZ a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tCQobB5AcZ a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tCQobB5AcZ .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tCQobB5AcZ .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tCQobB5AcZ LABEL {
  color: #ffffff;
}
.cid-tCQobB5AcZ DIV {
  color: #ffffff;
}
.cid-tCQobB5AcZ H2 {
  color: #ffffff;
}
.cid-tCQobB5AcZ B {
  color: #ffffff;
}
.cid-tCQobB5AcZ .mbr-section-subtitle B {
  color: #fec002;
}
.cid-tD7Bw8I6k3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #facb1d;
}
.cid-tD7Bw8I6k3 .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tD7Bw8I6k3 h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.cid-tD7Bw8I6k3 h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tD7Bw8I6k3 h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tD7Bw8I6k3 .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #000000;
  margin: 15px 0.5rem;
  display: block;
}
.cid-tD7Bw8I6k3 .mbr-iconfont-social:before {
  padding: 0.6rem;
  border: 2px solid;
  border-radius: 100px;
  transition: all 0.3s;
}
.cid-tD7Bw8I6k3 .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-tD7Bw8I6k3 .mbr-iconfont-social:hover:before {
  background: #000000;
  transition: all 0.3s;
  border-color: transparent;
}
.cid-tD7Bw8I6k3 .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tD7Bw8I6k3 .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tD7Bw8I6k3 .mbr-iconfont-social {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}
.cid-tD7Bw8I6k3 .mbr-section-title,
.cid-tD7Bw8I6k3 .social-list {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tD7Bw8I6k3 h2:before,
  .cid-tD7Bw8I6k3 h2:after {
    display: none;
  }
}
.cid-tCKBBwe9kI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #181817;
}
.cid-tCKBBwe9kI .mbr-text {
  color: #f6f6ef;
}
.cid-tCQGXYyQEY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCQGXYyQEY nav.navbar {
  position: fixed;
}
.cid-tCQGXYyQEY .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-tCQGXYyQEY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCQGXYyQEY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCQGXYyQEY .dropdown-item:hover,
.cid-tCQGXYyQEY .dropdown-item:focus {
  background: #facb1d !important;
  color: white !important;
}
.cid-tCQGXYyQEY .dropdown-item:hover span {
  color: white;
}
.cid-tCQGXYyQEY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCQGXYyQEY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCQGXYyQEY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCQGXYyQEY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCQGXYyQEY .nav-link {
  position: relative;
}
.cid-tCQGXYyQEY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tCQGXYyQEY .container {
    flex-wrap: nowrap;
  }
}
.cid-tCQGXYyQEY .iconfont-wrapper {
  color: #fac93d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCQGXYyQEY .dropdown-menu,
.cid-tCQGXYyQEY .navbar.opened {
  background: #181817 !important;
}
.cid-tCQGXYyQEY .nav-item:focus,
.cid-tCQGXYyQEY .nav-link:focus {
  outline: none;
}
.cid-tCQGXYyQEY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCQGXYyQEY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCQGXYyQEY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCQGXYyQEY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCQGXYyQEY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCQGXYyQEY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCQGXYyQEY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #181817;
}
.cid-tCQGXYyQEY .navbar.opened {
  transition: all 0.3s;
}
.cid-tCQGXYyQEY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCQGXYyQEY .navbar .navbar-logo img {
  width: auto;
}
.cid-tCQGXYyQEY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCQGXYyQEY .navbar.collapsed {
  justify-content: center;
}
.cid-tCQGXYyQEY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCQGXYyQEY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCQGXYyQEY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tCQGXYyQEY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCQGXYyQEY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCQGXYyQEY .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-tCQGXYyQEY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCQGXYyQEY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCQGXYyQEY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCQGXYyQEY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCQGXYyQEY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCQGXYyQEY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCQGXYyQEY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCQGXYyQEY .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-tCQGXYyQEY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCQGXYyQEY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCQGXYyQEY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCQGXYyQEY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCQGXYyQEY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCQGXYyQEY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tCQGXYyQEY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tCQGXYyQEY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCQGXYyQEY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCQGXYyQEY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCQGXYyQEY .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-tCQGXYyQEY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCQGXYyQEY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCQGXYyQEY .dropdown-item.active,
.cid-tCQGXYyQEY .dropdown-item:active {
  background-color: transparent;
}
.cid-tCQGXYyQEY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCQGXYyQEY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCQGXYyQEY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCQGXYyQEY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181817;
}
.cid-tCQGXYyQEY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCQGXYyQEY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCQGXYyQEY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCQGXYyQEY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCQGXYyQEY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCQGXYyQEY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fec002;
}
.cid-tCQGXYyQEY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCQGXYyQEY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCQGXYyQEY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCQGXYyQEY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCQGXYyQEY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCQGXYyQEY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCQGXYyQEY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCQGXYyQEY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCQGXYyQEY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCQGXYyQEY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCQGXYyQEY .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-tCQGXYyQEY .navbar {
    height: 70px;
  }
  .cid-tCQGXYyQEY .navbar.opened {
    height: auto;
  }
  .cid-tCQGXYyQEY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tD7PL0biD3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/thumbnails-banner-background-1.jpg");
}
.cid-tD7PL0biD3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD7PL0biD3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD7PL0biD3 .card-wrapper {
  background: #facb1d;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tD7PL0biD3 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tD7PL0biD3 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tD7PL0biD3 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tD7PL0biD3 .card-title {
  text-align: left;
}
.cid-tD7PL0biD3 .mbr-text,
.cid-tD7PL0biD3 .mbr-section-btn {
  text-align: left;
}
.cid-tCQHBXoCHY {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #464646;
}
.cid-tCQHBXoCHY h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tCQHBXoCHY p {
  color: #767676;
  text-align: left;
}
.cid-tCQHBXoCHY .card-box {
  padding-top: 2rem;
}
.cid-tCQHBXoCHY .card-wrapper {
  height: 100%;
}
.cid-tCQHBXoCHY P {
  color: #ffffff;
}
.cid-tCQHBXoCHY .card-title {
  color: #facb1d;
}
.cid-tCQImlv7d9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #464646;
}
.cid-tCQImlv7d9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tCQImlv7d9 p {
  color: #767676;
  text-align: left;
}
.cid-tCQImlv7d9 .card-box {
  padding-top: 2rem;
}
.cid-tCQImlv7d9 .card-wrapper {
  height: 100%;
}
.cid-tCQImlv7d9 P {
  color: #ffffff;
}
.cid-tCQImlv7d9 .card-title {
  color: #facb1d;
}
.cid-tCQHCAfaur {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #464646;
}
.cid-tCQHCAfaur h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tCQHCAfaur p {
  color: #767676;
  text-align: left;
}
.cid-tCQHCAfaur .card-box {
  padding-top: 2rem;
}
.cid-tCQHCAfaur .card-wrapper {
  height: 100%;
}
.cid-tCQHCAfaur P {
  color: #ffffff;
}
.cid-tCQHCAfaur .card-title {
  color: #facb1d;
}
.cid-tCQI0sobFy {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #464646;
}
.cid-tCQI0sobFy h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tCQI0sobFy p {
  color: #767676;
  text-align: left;
}
.cid-tCQI0sobFy .card-box {
  padding-top: 2rem;
}
.cid-tCQI0sobFy .card-wrapper {
  height: 100%;
}
.cid-tCQI0sobFy P {
  color: #ffffff;
}
.cid-tCQI0sobFy .card-title {
  color: #facb1d;
}
.cid-tCQGY3La9O {
  background: #2c2c2c;
  padding-top: 60px;
  padding-bottom: 0px;
}
.cid-tCQGY3La9O .image-block {
  margin: auto;
}
.cid-tCQGY3La9O figcaption {
  position: relative;
}
.cid-tCQGY3La9O figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tCQGY3La9O .image-block {
    width: 100% !important;
  }
}
.cid-tCQGY4hjwS {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #2c2c2c;
}
.cid-tCQGY4hjwS .mbr-section-subtitle {
  color: #fec002;
  text-align: center;
  font-weight: 300;
}
.cid-tCQGY4hjwS .step {
  width: 100px;
  height: 100px;
  font-size: 50px;
  border-radius: 50%;
  border: 2px solid #efefef;
  padding-bottom: 0;
  color: #facb1d;
}
@media (min-width: 768px) {
  .cid-tCQGY4hjwS .separline .step-wrapper {
    position: relative;
  }
  .cid-tCQGY4hjwS .separline .step-wrapper:before,
  .cid-tCQGY4hjwS .separline .step-wrapper:after {
    top: 52px;
    position: absolute;
    content: "";
    height: 2px;
    width: calc(50% + 15px - 50px - 8px);
    background-color: #efefef;
  }
  .cid-tCQGY4hjwS .separline .step-wrapper:before {
    left: -15px;
  }
  .cid-tCQGY4hjwS .separline .step-wrapper:after {
    left: calc(50% + 8px + 50px);
  }
  .cid-tCQGY4hjwS .separline.last-child .step-wrapper:after,
  .cid-tCQGY4hjwS .separline:nth-child(3n) .step-wrapper:after,
  .cid-tCQGY4hjwS .separline:nth-child(3n+1) .step-wrapper:before {
    background: none;
  }
}
@media (max-width: 767px) {
  .cid-tCQGY4hjwS .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-tCQGY4hjwS .mbr-step-title {
  color: #ffffff;
}
.cid-tCQGY4hjwS .mbr-step-text {
  color: #ffffff;
}
.cid-tCQGY4hjwS .mbr-section-title {
  color: #fec002;
}
.cid-tCQGY4VhzL {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #2c2c2c;
}
.cid-tCQGY4VhzL .title {
  margin-bottom: 2rem;
}
.cid-tCQGY4VhzL .mbr-section-subtitle {
  color: #facb1d;
}
.cid-tCQGY4VhzL a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tCQGY4VhzL a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tCQGY4VhzL .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tCQGY4VhzL .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tCQGY4VhzL LABEL {
  color: #ffffff;
}
.cid-tCQGY4VhzL DIV {
  color: #ffffff;
}
.cid-tCQGY4VhzL H2 {
  color: #ffffff;
}
.cid-tCQGY4VhzL B {
  color: #ffffff;
}
.cid-tCQGY4VhzL .mbr-section-subtitle B {
  color: #fec002;
}
.cid-tD7Bs3qG54 {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #facb1d;
}
.cid-tD7Bs3qG54 .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tD7Bs3qG54 h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.cid-tD7Bs3qG54 h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tD7Bs3qG54 h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tD7Bs3qG54 .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #000000;
  margin: 15px 0.5rem;
  display: block;
}
.cid-tD7Bs3qG54 .mbr-iconfont-social:before {
  padding: 0.6rem;
  border: 2px solid;
  border-radius: 100px;
  transition: all 0.3s;
}
.cid-tD7Bs3qG54 .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-tD7Bs3qG54 .mbr-iconfont-social:hover:before {
  background: #000000;
  transition: all 0.3s;
  border-color: transparent;
}
.cid-tD7Bs3qG54 .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tD7Bs3qG54 .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tD7Bs3qG54 .mbr-iconfont-social {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}
.cid-tD7Bs3qG54 .mbr-section-title,
.cid-tD7Bs3qG54 .social-list {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tD7Bs3qG54 h2:before,
  .cid-tD7Bs3qG54 h2:after {
    display: none;
  }
}
.cid-tCQGY5fj5y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #181817;
}
.cid-tCQGY5fj5y .mbr-text {
  color: #f6f6ef;
}
.cid-tD1fytqN11 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tD1fytqN11 nav.navbar {
  position: fixed;
}
.cid-tD1fytqN11 .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-tD1fytqN11 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tD1fytqN11 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tD1fytqN11 .dropdown-item:hover,
.cid-tD1fytqN11 .dropdown-item:focus {
  background: #facb1d !important;
  color: white !important;
}
.cid-tD1fytqN11 .dropdown-item:hover span {
  color: white;
}
.cid-tD1fytqN11 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tD1fytqN11 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tD1fytqN11 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tD1fytqN11 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tD1fytqN11 .nav-link {
  position: relative;
}
.cid-tD1fytqN11 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tD1fytqN11 .container {
    flex-wrap: nowrap;
  }
}
.cid-tD1fytqN11 .iconfont-wrapper {
  color: #fac93d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tD1fytqN11 .dropdown-menu,
.cid-tD1fytqN11 .navbar.opened {
  background: #181817 !important;
}
.cid-tD1fytqN11 .nav-item:focus,
.cid-tD1fytqN11 .nav-link:focus {
  outline: none;
}
.cid-tD1fytqN11 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tD1fytqN11 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tD1fytqN11 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tD1fytqN11 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tD1fytqN11 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tD1fytqN11 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tD1fytqN11 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #181817;
}
.cid-tD1fytqN11 .navbar.opened {
  transition: all 0.3s;
}
.cid-tD1fytqN11 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tD1fytqN11 .navbar .navbar-logo img {
  width: auto;
}
.cid-tD1fytqN11 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tD1fytqN11 .navbar.collapsed {
  justify-content: center;
}
.cid-tD1fytqN11 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tD1fytqN11 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tD1fytqN11 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tD1fytqN11 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tD1fytqN11 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tD1fytqN11 .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-tD1fytqN11 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tD1fytqN11 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tD1fytqN11 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tD1fytqN11 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tD1fytqN11 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tD1fytqN11 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tD1fytqN11 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tD1fytqN11 .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-tD1fytqN11 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tD1fytqN11 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tD1fytqN11 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tD1fytqN11 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tD1fytqN11 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tD1fytqN11 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tD1fytqN11 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tD1fytqN11 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tD1fytqN11 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tD1fytqN11 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tD1fytqN11 .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-tD1fytqN11 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tD1fytqN11 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tD1fytqN11 .dropdown-item.active,
.cid-tD1fytqN11 .dropdown-item:active {
  background-color: transparent;
}
.cid-tD1fytqN11 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tD1fytqN11 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tD1fytqN11 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tD1fytqN11 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181817;
}
.cid-tD1fytqN11 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tD1fytqN11 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tD1fytqN11 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tD1fytqN11 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tD1fytqN11 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tD1fytqN11 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fec002;
}
.cid-tD1fytqN11 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tD1fytqN11 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD1fytqN11 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD1fytqN11 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tD1fytqN11 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD1fytqN11 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tD1fytqN11 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tD1fytqN11 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD1fytqN11 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tD1fytqN11 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD1fytqN11 .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-tD1fytqN11 .navbar {
    height: 70px;
  }
  .cid-tD1fytqN11 .navbar.opened {
    height: auto;
  }
  .cid-tD1fytqN11 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tD7PCUrSA1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/thumbnails-banner-background-1.jpg");
}
.cid-tD7PCUrSA1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD7PCUrSA1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD7PCUrSA1 .card-wrapper {
  background: #facb1d;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tD7PCUrSA1 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tD7PCUrSA1 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tD7PCUrSA1 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tD7PCUrSA1 .card-title {
  text-align: left;
}
.cid-tD7PCUrSA1 .mbr-text,
.cid-tD7PCUrSA1 .mbr-section-btn {
  text-align: left;
}
.cid-tD1iCMI5Y5 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #facb1d;
}
.cid-tD1iCMI5Y5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD1iCMI5Y5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD1iCMI5Y5 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 991px) {
  .cid-tD1iCMI5Y5 .item {
    margin-bottom: 4rem;
  }
}
.cid-tD1iCMI5Y5 .item:last-child .icon-box:before {
  display: none;
}
.cid-tD1iCMI5Y5 .item.last .icon-box:before {
  display: none;
}
.cid-tD1iCMI5Y5 .icon-box {
  background: #232323;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tD1iCMI5Y5 .icon-box {
    margin-right: 1rem;
  }
}
.cid-tD1iCMI5Y5 .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 30px;
  left: 50%;
  top: 120%;
  color: #232323;
  transform: translate(-50%, 0);
}
.cid-tD1iCMI5Y5 span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tD1iCMI5Y5 .card {
    margin-bottom: 2rem;
  }
  .cid-tD1iCMI5Y5 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tD1iCMI5Y5 .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-tD1iCMI5Y5 .icon-box::before {
    top: 114%;
  }
}
.cid-tD1iCMI5Y5 .card-title,
.cid-tD1iCMI5Y5 .card-box {
  text-align: left;
  color: #fec002;
}
.cid-tD1iCMI5Y5 .mbr-text,
.cid-tD1iCMI5Y5 .mbr-section-btn {
  color: #ffffff;
}
.cid-tD1iCMI5Y5 .icon-text {
  color: #000000;
}
.cid-tD1kKSr2Ni {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #464646;
}
.cid-tD1kKSr2Ni .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD1kKSr2Ni .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD1kKSr2Ni .video-wrapper iframe {
  width: 100%;
}
.cid-tD1kKSr2Ni .mbr-section-title,
.cid-tD1kKSr2Ni .mbr-section-subtitle,
.cid-tD1kKSr2Ni .mbr-text {
  text-align: center;
}
.cid-tD1fyvQ7uD {
  background: #2c2c2c;
  padding-top: 60px;
  padding-bottom: 0px;
}
.cid-tD1fyvQ7uD .image-block {
  margin: auto;
}
.cid-tD1fyvQ7uD figcaption {
  position: relative;
}
.cid-tD1fyvQ7uD figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tD1fyvQ7uD .image-block {
    width: 100% !important;
  }
}
.cid-tD1fyw6uKn {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #2c2c2c;
}
.cid-tD1fyw6uKn .mbr-section-subtitle {
  color: #fec002;
  text-align: center;
  font-weight: 300;
}
.cid-tD1fyw6uKn .step {
  width: 100px;
  height: 100px;
  font-size: 50px;
  border-radius: 50%;
  border: 2px solid #efefef;
  padding-bottom: 0;
  color: #facb1d;
}
@media (min-width: 768px) {
  .cid-tD1fyw6uKn .separline .step-wrapper {
    position: relative;
  }
  .cid-tD1fyw6uKn .separline .step-wrapper:before,
  .cid-tD1fyw6uKn .separline .step-wrapper:after {
    top: 52px;
    position: absolute;
    content: "";
    height: 2px;
    width: calc(50% + 15px - 50px - 8px);
    background-color: #efefef;
  }
  .cid-tD1fyw6uKn .separline .step-wrapper:before {
    left: -15px;
  }
  .cid-tD1fyw6uKn .separline .step-wrapper:after {
    left: calc(50% + 8px + 50px);
  }
  .cid-tD1fyw6uKn .separline.last-child .step-wrapper:after,
  .cid-tD1fyw6uKn .separline:nth-child(3n) .step-wrapper:after,
  .cid-tD1fyw6uKn .separline:nth-child(3n+1) .step-wrapper:before {
    background: none;
  }
}
@media (max-width: 767px) {
  .cid-tD1fyw6uKn .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-tD1fyw6uKn .mbr-step-title {
  color: #ffffff;
}
.cid-tD1fyw6uKn .mbr-step-text {
  color: #ffffff;
}
.cid-tD1fyw6uKn .mbr-section-title {
  color: #fec002;
}
.cid-tD1fywQVco {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #2c2c2c;
}
.cid-tD1fywQVco .title {
  margin-bottom: 2rem;
}
.cid-tD1fywQVco .mbr-section-subtitle {
  color: #facb1d;
}
.cid-tD1fywQVco a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tD1fywQVco a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tD1fywQVco .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tD1fywQVco .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tD1fywQVco LABEL {
  color: #ffffff;
}
.cid-tD1fywQVco DIV {
  color: #ffffff;
}
.cid-tD1fywQVco H2 {
  color: #ffffff;
}
.cid-tD1fywQVco B {
  color: #ffffff;
}
.cid-tD1fywQVco .mbr-section-subtitle B {
  color: #fec002;
}
.cid-tD7BtPILLA {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #facb1d;
}
.cid-tD7BtPILLA .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tD7BtPILLA h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.cid-tD7BtPILLA h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tD7BtPILLA h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tD7BtPILLA .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #000000;
  margin: 15px 0.5rem;
  display: block;
}
.cid-tD7BtPILLA .mbr-iconfont-social:before {
  padding: 0.6rem;
  border: 2px solid;
  border-radius: 100px;
  transition: all 0.3s;
}
.cid-tD7BtPILLA .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-tD7BtPILLA .mbr-iconfont-social:hover:before {
  background: #000000;
  transition: all 0.3s;
  border-color: transparent;
}
.cid-tD7BtPILLA .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tD7BtPILLA .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tD7BtPILLA .mbr-iconfont-social {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}
.cid-tD7BtPILLA .mbr-section-title,
.cid-tD7BtPILLA .social-list {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tD7BtPILLA h2:before,
  .cid-tD7BtPILLA h2:after {
    display: none;
  }
}
.cid-tD1fyxcSOd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #181817;
}
.cid-tD1fyxcSOd .mbr-text {
  color: #f6f6ef;
}
.cid-tD6W5FwpMp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tD6W5FwpMp nav.navbar {
  position: fixed;
}
.cid-tD6W5FwpMp .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-tD6W5FwpMp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tD6W5FwpMp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tD6W5FwpMp .dropdown-item:hover,
.cid-tD6W5FwpMp .dropdown-item:focus {
  background: #facb1d !important;
  color: white !important;
}
.cid-tD6W5FwpMp .dropdown-item:hover span {
  color: white;
}
.cid-tD6W5FwpMp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tD6W5FwpMp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tD6W5FwpMp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tD6W5FwpMp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tD6W5FwpMp .nav-link {
  position: relative;
}
.cid-tD6W5FwpMp .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tD6W5FwpMp .container {
    flex-wrap: nowrap;
  }
}
.cid-tD6W5FwpMp .iconfont-wrapper {
  color: #fac93d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tD6W5FwpMp .dropdown-menu,
.cid-tD6W5FwpMp .navbar.opened {
  background: #181817 !important;
}
.cid-tD6W5FwpMp .nav-item:focus,
.cid-tD6W5FwpMp .nav-link:focus {
  outline: none;
}
.cid-tD6W5FwpMp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tD6W5FwpMp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tD6W5FwpMp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tD6W5FwpMp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tD6W5FwpMp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tD6W5FwpMp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tD6W5FwpMp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #181817;
}
.cid-tD6W5FwpMp .navbar.opened {
  transition: all 0.3s;
}
.cid-tD6W5FwpMp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tD6W5FwpMp .navbar .navbar-logo img {
  width: auto;
}
.cid-tD6W5FwpMp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tD6W5FwpMp .navbar.collapsed {
  justify-content: center;
}
.cid-tD6W5FwpMp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tD6W5FwpMp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tD6W5FwpMp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tD6W5FwpMp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tD6W5FwpMp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tD6W5FwpMp .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-tD6W5FwpMp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tD6W5FwpMp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tD6W5FwpMp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tD6W5FwpMp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tD6W5FwpMp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tD6W5FwpMp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tD6W5FwpMp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tD6W5FwpMp .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-tD6W5FwpMp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tD6W5FwpMp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tD6W5FwpMp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tD6W5FwpMp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tD6W5FwpMp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tD6W5FwpMp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tD6W5FwpMp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tD6W5FwpMp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tD6W5FwpMp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tD6W5FwpMp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tD6W5FwpMp .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-tD6W5FwpMp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tD6W5FwpMp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tD6W5FwpMp .dropdown-item.active,
.cid-tD6W5FwpMp .dropdown-item:active {
  background-color: transparent;
}
.cid-tD6W5FwpMp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tD6W5FwpMp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tD6W5FwpMp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tD6W5FwpMp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181817;
}
.cid-tD6W5FwpMp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tD6W5FwpMp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tD6W5FwpMp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tD6W5FwpMp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tD6W5FwpMp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tD6W5FwpMp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fec002;
}
.cid-tD6W5FwpMp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tD6W5FwpMp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD6W5FwpMp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD6W5FwpMp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tD6W5FwpMp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD6W5FwpMp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tD6W5FwpMp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tD6W5FwpMp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD6W5FwpMp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tD6W5FwpMp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD6W5FwpMp .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-tD6W5FwpMp .navbar {
    height: 70px;
  }
  .cid-tD6W5FwpMp .navbar.opened {
    height: auto;
  }
  .cid-tD6W5FwpMp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tD7Q3FCacg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/thumbnails-banner-background-1.jpg");
}
.cid-tD7Q3FCacg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD7Q3FCacg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD7Q3FCacg .card-wrapper {
  background: #facb1d;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tD7Q3FCacg .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tD7Q3FCacg .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tD7Q3FCacg .card-wrapper {
    padding: 4rem;
  }
}
.cid-tD7Q3FCacg .card-title {
  text-align: left;
}
.cid-tD7Q3FCacg .mbr-text,
.cid-tD7Q3FCacg .mbr-section-btn {
  text-align: left;
}
.cid-u2LGwRZNZF {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #facb1d;
}
.cid-u2LGwRZNZF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2LGwRZNZF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2LGwRZNZF .mbr-section-title {
  text-align: left;
  color: #111111;
}
.cid-u2LGwRZNZF .mbr-section-subtitle {
  color: #111111;
  text-align: left;
}
.cid-u2oFHvFlnp {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-u2oFHvFlnp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2oFHvFlnp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u2oFHvFlnp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u2oFHvFlnp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u2oFHvFlnp .text-wrapper {
    padding: 2rem;
  }
}
.cid-u2oFHvFlnp .mbr-text {
  color: #ffffff;
}
.cid-u2oFHvFlnp .mbr-section-title {
  color: #facb1d;
}
.cid-u2oFIl7FmR {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-u2oFIl7FmR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2oFIl7FmR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2oFIl7FmR .video-wrapper iframe {
  width: 100%;
}
.cid-u2oFIl7FmR .mbr-section-title,
.cid-u2oFIl7FmR .mbr-section-subtitle,
.cid-u2oFIl7FmR .mbr-text {
  text-align: center;
}
.cid-tD7bHiNRoa {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #464646;
}
.cid-tD7bHiNRoa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD7bHiNRoa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tD7bHiNRoa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tD7bHiNRoa img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tD7bHiNRoa .text-wrapper {
    padding: 2rem;
  }
}
.cid-tD7bHiNRoa .mbr-text {
  color: #ffffff;
}
.cid-tD7bHiNRoa .mbr-section-title {
  color: #facb1d;
}
.cid-tD6XVkDNeX {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #464646;
}
.cid-tD6XVkDNeX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD6XVkDNeX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD6XVkDNeX .video-wrapper iframe {
  width: 100%;
}
.cid-tD6XVkDNeX .mbr-section-title,
.cid-tD6XVkDNeX .mbr-section-subtitle,
.cid-tD6XVkDNeX .mbr-text {
  text-align: center;
}
.cid-tD79T4dUob {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #353535;
}
.cid-tD79T4dUob .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD79T4dUob .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tD79T4dUob .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tD79T4dUob img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tD79T4dUob .text-wrapper {
    padding: 2rem;
  }
}
.cid-tD79T4dUob .mbr-text {
  color: #ffffff;
}
.cid-tD79T4dUob .mbr-section-title {
  color: #facb1d;
}
.cid-tD6Yq9Uzm3 {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-tD6Yq9Uzm3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD6Yq9Uzm3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD6Yq9Uzm3 .video-wrapper iframe {
  width: 100%;
}
.cid-tD6Yq9Uzm3 .mbr-section-title,
.cid-tD6Yq9Uzm3 .mbr-section-subtitle,
.cid-tD6Yq9Uzm3 .mbr-text {
  text-align: center;
}
.cid-tD7bpdEGJc {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #464646;
}
.cid-tD7bpdEGJc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD7bpdEGJc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tD7bpdEGJc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tD7bpdEGJc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tD7bpdEGJc .text-wrapper {
    padding: 2rem;
  }
}
.cid-tD7bpdEGJc .mbr-text {
  color: #ffffff;
}
.cid-tD7bpdEGJc .mbr-section-title {
  color: #facb1d;
}
.cid-tD6ZgQZrz4 {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #464646;
}
.cid-tD6ZgQZrz4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD6ZgQZrz4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD6ZgQZrz4 .video-wrapper iframe {
  width: 100%;
}
.cid-tD6ZgQZrz4 .mbr-section-title,
.cid-tD6ZgQZrz4 .mbr-section-subtitle,
.cid-tD6ZgQZrz4 .mbr-text {
  text-align: center;
}
.cid-tD6W5HvStS {
  background: #2c2c2c;
  padding-top: 60px;
  padding-bottom: 0px;
}
.cid-tD6W5HvStS .image-block {
  margin: auto;
}
.cid-tD6W5HvStS figcaption {
  position: relative;
}
.cid-tD6W5HvStS figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tD6W5HvStS .image-block {
    width: 100% !important;
  }
}
.cid-tD6W5HI5DR {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #2c2c2c;
}
.cid-tD6W5HI5DR .mbr-section-subtitle {
  color: #fec002;
  text-align: center;
  font-weight: 300;
}
.cid-tD6W5HI5DR .step {
  width: 100px;
  height: 100px;
  font-size: 50px;
  border-radius: 50%;
  border: 2px solid #efefef;
  padding-bottom: 0;
  color: #facb1d;
}
@media (min-width: 768px) {
  .cid-tD6W5HI5DR .separline .step-wrapper {
    position: relative;
  }
  .cid-tD6W5HI5DR .separline .step-wrapper:before,
  .cid-tD6W5HI5DR .separline .step-wrapper:after {
    top: 52px;
    position: absolute;
    content: "";
    height: 2px;
    width: calc(50% + 15px - 50px - 8px);
    background-color: #efefef;
  }
  .cid-tD6W5HI5DR .separline .step-wrapper:before {
    left: -15px;
  }
  .cid-tD6W5HI5DR .separline .step-wrapper:after {
    left: calc(50% + 8px + 50px);
  }
  .cid-tD6W5HI5DR .separline.last-child .step-wrapper:after,
  .cid-tD6W5HI5DR .separline:nth-child(3n) .step-wrapper:after,
  .cid-tD6W5HI5DR .separline:nth-child(3n+1) .step-wrapper:before {
    background: none;
  }
}
@media (max-width: 767px) {
  .cid-tD6W5HI5DR .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-tD6W5HI5DR .mbr-step-title {
  color: #ffffff;
}
.cid-tD6W5HI5DR .mbr-step-text {
  color: #ffffff;
}
.cid-tD6W5HI5DR .mbr-section-title {
  color: #fec002;
}
.cid-tD6W5IcyFv {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #2c2c2c;
}
.cid-tD6W5IcyFv .title {
  margin-bottom: 2rem;
}
.cid-tD6W5IcyFv .mbr-section-subtitle {
  color: #facb1d;
}
.cid-tD6W5IcyFv a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tD6W5IcyFv a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tD6W5IcyFv .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tD6W5IcyFv .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tD6W5IcyFv LABEL {
  color: #ffffff;
}
.cid-tD6W5IcyFv DIV {
  color: #ffffff;
}
.cid-tD6W5IcyFv H2 {
  color: #ffffff;
}
.cid-tD6W5IcyFv B {
  color: #ffffff;
}
.cid-tD6W5IcyFv .mbr-section-subtitle B {
  color: #fec002;
}
.cid-tD7B40z8KU {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #facb1d;
}
.cid-tD7B40z8KU .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tD7B40z8KU h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.cid-tD7B40z8KU h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tD7B40z8KU h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tD7B40z8KU .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #000000;
  margin: 15px 0.5rem;
  display: block;
}
.cid-tD7B40z8KU .mbr-iconfont-social:before {
  padding: 0.6rem;
  border: 2px solid;
  border-radius: 100px;
  transition: all 0.3s;
}
.cid-tD7B40z8KU .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-tD7B40z8KU .mbr-iconfont-social:hover:before {
  background: #000000;
  transition: all 0.3s;
  border-color: transparent;
}
.cid-tD7B40z8KU .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tD7B40z8KU .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tD7B40z8KU .mbr-iconfont-social {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}
.cid-tD7B40z8KU .mbr-section-title,
.cid-tD7B40z8KU .social-list {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tD7B40z8KU h2:before,
  .cid-tD7B40z8KU h2:after {
    display: none;
  }
}
.cid-tD6W5IECfp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #181817;
}
.cid-tD6W5IECfp .mbr-text {
  color: #f6f6ef;
}
.cid-tD7p5f9Poe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tD7p5f9Poe nav.navbar {
  position: fixed;
}
.cid-tD7p5f9Poe .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-tD7p5f9Poe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tD7p5f9Poe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tD7p5f9Poe .dropdown-item:hover,
.cid-tD7p5f9Poe .dropdown-item:focus {
  background: #facb1d !important;
  color: white !important;
}
.cid-tD7p5f9Poe .dropdown-item:hover span {
  color: white;
}
.cid-tD7p5f9Poe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tD7p5f9Poe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tD7p5f9Poe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tD7p5f9Poe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tD7p5f9Poe .nav-link {
  position: relative;
}
.cid-tD7p5f9Poe .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tD7p5f9Poe .container {
    flex-wrap: nowrap;
  }
}
.cid-tD7p5f9Poe .iconfont-wrapper {
  color: #fac93d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tD7p5f9Poe .dropdown-menu,
.cid-tD7p5f9Poe .navbar.opened {
  background: #181817 !important;
}
.cid-tD7p5f9Poe .nav-item:focus,
.cid-tD7p5f9Poe .nav-link:focus {
  outline: none;
}
.cid-tD7p5f9Poe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tD7p5f9Poe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tD7p5f9Poe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tD7p5f9Poe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tD7p5f9Poe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tD7p5f9Poe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tD7p5f9Poe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #181817;
}
.cid-tD7p5f9Poe .navbar.opened {
  transition: all 0.3s;
}
.cid-tD7p5f9Poe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tD7p5f9Poe .navbar .navbar-logo img {
  width: auto;
}
.cid-tD7p5f9Poe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tD7p5f9Poe .navbar.collapsed {
  justify-content: center;
}
.cid-tD7p5f9Poe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tD7p5f9Poe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tD7p5f9Poe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tD7p5f9Poe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tD7p5f9Poe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tD7p5f9Poe .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-tD7p5f9Poe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tD7p5f9Poe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tD7p5f9Poe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tD7p5f9Poe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tD7p5f9Poe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tD7p5f9Poe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tD7p5f9Poe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tD7p5f9Poe .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-tD7p5f9Poe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tD7p5f9Poe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tD7p5f9Poe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tD7p5f9Poe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tD7p5f9Poe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tD7p5f9Poe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tD7p5f9Poe .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tD7p5f9Poe .navbar.navbar-short {
  min-height: 60px;
}
.cid-tD7p5f9Poe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tD7p5f9Poe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tD7p5f9Poe .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-tD7p5f9Poe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tD7p5f9Poe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tD7p5f9Poe .dropdown-item.active,
.cid-tD7p5f9Poe .dropdown-item:active {
  background-color: transparent;
}
.cid-tD7p5f9Poe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tD7p5f9Poe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tD7p5f9Poe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tD7p5f9Poe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #181817;
}
.cid-tD7p5f9Poe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tD7p5f9Poe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tD7p5f9Poe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tD7p5f9Poe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tD7p5f9Poe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tD7p5f9Poe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fec002;
}
.cid-tD7p5f9Poe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tD7p5f9Poe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD7p5f9Poe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tD7p5f9Poe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tD7p5f9Poe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD7p5f9Poe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tD7p5f9Poe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tD7p5f9Poe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tD7p5f9Poe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tD7p5f9Poe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tD7p5f9Poe .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-tD7p5f9Poe .navbar {
    height: 70px;
  }
  .cid-tD7p5f9Poe .navbar.opened {
    height: auto;
  }
  .cid-tD7p5f9Poe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tD7QjQmcoo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/thumbnails-banner-background-1.jpg");
}
.cid-tD7QjQmcoo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD7QjQmcoo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD7QjQmcoo .card-wrapper {
  background: #facb1d;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tD7QjQmcoo .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tD7QjQmcoo .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tD7QjQmcoo .card-wrapper {
    padding: 4rem;
  }
}
.cid-tD7QjQmcoo .card-title {
  text-align: left;
}
.cid-tD7QjQmcoo .mbr-text,
.cid-tD7QjQmcoo .mbr-section-btn {
  text-align: left;
}
.cid-tD7p5hlxeA {
  background: #2c2c2c;
  padding-top: 60px;
  padding-bottom: 0px;
}
.cid-tD7p5hlxeA .image-block {
  margin: auto;
}
.cid-tD7p5hlxeA figcaption {
  position: relative;
}
.cid-tD7p5hlxeA figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tD7p5hlxeA .image-block {
    width: 100% !important;
  }
}
.cid-tD7p5hynCu {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #2c2c2c;
}
.cid-tD7p5hynCu .mbr-section-subtitle {
  color: #fec002;
  text-align: center;
  font-weight: 300;
}
.cid-tD7p5hynCu .step {
  width: 100px;
  height: 100px;
  font-size: 50px;
  border-radius: 50%;
  border: 2px solid #efefef;
  padding-bottom: 0;
  color: #facb1d;
}
@media (min-width: 768px) {
  .cid-tD7p5hynCu .separline .step-wrapper {
    position: relative;
  }
  .cid-tD7p5hynCu .separline .step-wrapper:before,
  .cid-tD7p5hynCu .separline .step-wrapper:after {
    top: 52px;
    position: absolute;
    content: "";
    height: 2px;
    width: calc(50% + 15px - 50px - 8px);
    background-color: #efefef;
  }
  .cid-tD7p5hynCu .separline .step-wrapper:before {
    left: -15px;
  }
  .cid-tD7p5hynCu .separline .step-wrapper:after {
    left: calc(50% + 8px + 50px);
  }
  .cid-tD7p5hynCu .separline.last-child .step-wrapper:after,
  .cid-tD7p5hynCu .separline:nth-child(3n) .step-wrapper:after,
  .cid-tD7p5hynCu .separline:nth-child(3n+1) .step-wrapper:before {
    background: none;
  }
}
@media (max-width: 767px) {
  .cid-tD7p5hynCu .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-tD7p5hynCu .mbr-step-title {
  color: #ffffff;
}
.cid-tD7p5hynCu .mbr-step-text {
  color: #ffffff;
}
.cid-tD7p5hynCu .mbr-section-title {
  color: #fec002;
}
.cid-tDdIlRDtpL {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #2c2c2c;
}
.cid-tDdIlRDtpL .title {
  margin-bottom: 2rem;
}
.cid-tDdIlRDtpL .mbr-section-subtitle {
  color: #facb1d;
}
.cid-tDdIlRDtpL a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tDdIlRDtpL a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tDdIlRDtpL .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tDdIlRDtpL .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tDdIlRDtpL LABEL {
  color: #ffffff;
}
.cid-tDdIlRDtpL DIV {
  color: #ffffff;
}
.cid-tDdIlRDtpL H2 {
  color: #facb1d;
}
.cid-tDdIlRDtpL B {
  color: #ffffff;
}
.cid-tDdIlRDtpL .mbr-section-subtitle B {
  color: #fec002;
}
.cid-tD7t2BrU6E {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #facb1d;
}
.cid-tD7t2BrU6E .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tD7t2BrU6E h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.cid-tD7t2BrU6E h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tD7t2BrU6E h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tD7t2BrU6E .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #000000;
  margin: 15px 0.5rem;
  display: block;
}
.cid-tD7t2BrU6E .mbr-iconfont-social:before {
  padding: 0.6rem;
  border: 2px solid;
  border-radius: 100px;
  transition: all 0.3s;
}
.cid-tD7t2BrU6E .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-tD7t2BrU6E .mbr-iconfont-social:hover:before {
  background: #000000;
  transition: all 0.3s;
  border-color: transparent;
}
.cid-tD7t2BrU6E .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tD7t2BrU6E .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tD7t2BrU6E .mbr-iconfont-social {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}
.cid-tD7t2BrU6E .mbr-section-title,
.cid-tD7t2BrU6E .social-list {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tD7t2BrU6E h2:before,
  .cid-tD7t2BrU6E h2:after {
    display: none;
  }
}
.cid-tD7p5iB0lX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #181817;
}
.cid-tD7p5iB0lX .mbr-text {
  color: #f6f6ef;
}
