body {
  font-family: Space Grotesk;
}
.display-1 {
  font-family: 'Bungee', display;
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: -0.9px;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Bungee', display;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.9px;
}
.display-2 > .mbr-iconfont {
  font-size: 2rem;
}
.display-4 {
  font-family: 'Bungee', display;
  font-size: 0.8rem;
  line-height: 1.867;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Bungee', display;
  font-size: 1rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 11px 35px;
  border-radius: 3px;
}
.btn-sm {
  padding: 15px 35px;
  border-radius: 3px;
}
.btn-md {
  padding: 18px 50px;
  border-radius: 3px;
}
.btn-lg {
  padding: 19px 50px;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ff8e0d !important;
}
.bg-success {
  background-color: #5600e3 !important;
}
.bg-info {
  background-color: #93d50a !important;
}
.bg-warning {
  background-color: #ff6b00 !important;
}
.bg-danger {
  background-color: #38d0fc !important;
}
.btn-primary {
  box-shadow: 0 15px 30px 0 rgba(255, 142, 13, 0.15);
}
.btn-primary,
.btn-primary:active {
  background-color: #ff8e0d !important;
  border-color: #ff8e0d !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #d97400 !important;
  border-color: #d97400 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #d97400 !important;
  border-color: #d97400 !important;
}
.btn-primary:before {
  background: #ff8e0d;
}
.btn-primary:hover {
  color: #ffffff !important;
  border-color: #ff8e0d !important;
  box-shadow: 0 15px 30px 0 rgba(255, 142, 13, 0.15);
}
.btn-secondary {
  box-shadow: 0 15px 30px 0 rgba(255, 181, 28, 0.15);
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffb51c !important;
  border-color: #ffb51c !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e89c00 !important;
  border-color: #e89c00 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e89c00 !important;
  border-color: #e89c00 !important;
}
.btn-secondary:before {
  background: #ffb51c;
}
.btn-secondary:hover {
  color: #000000 !important;
  border-color: #ffb51c !important;
  box-shadow: 0 15px 30px 0 rgba(255, 181, 28, 0.15);
}
.btn-info {
  box-shadow: 0 15px 30px 0 rgba(147, 213, 10, 0.15);
}
.btn-info,
.btn-info:active {
  background-color: #93d50a !important;
  border-color: #93d50a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #71a408 !important;
  border-color: #71a408 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #71a408 !important;
  border-color: #71a408 !important;
}
.btn-info:before {
  background: #93d50a;
}
.btn-info:hover {
  color: #000000 !important;
  border-color: #93d50a !important;
  box-shadow: 0 15px 30px 0 rgba(147, 213, 10, 0.15);
}
.btn-success {
  box-shadow: 0 15px 30px 0 rgba(86, 0, 227, 0.15);
}
.btn-success,
.btn-success:active {
  background-color: #5600e3 !important;
  border-color: #5600e3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #4300b0 !important;
  border-color: #4300b0 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #4300b0 !important;
  border-color: #4300b0 !important;
}
.btn-success:before {
  background: #5600e3;
}
.btn-success:hover {
  color: #ffffff !important;
  border-color: #5600e3 !important;
  box-shadow: 0 15px 30px 0 rgba(86, 0, 227, 0.15);
}
.btn-warning {
  box-shadow: 0 15px 30px 0 rgba(255, 107, 0, 0.15);
}
.btn-warning,
.btn-warning:active {
  background-color: #ff6b00 !important;
  border-color: #ff6b00 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #cc5600 !important;
  border-color: #cc5600 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #cc5600 !important;
  border-color: #cc5600 !important;
}
.btn-warning:before {
  background: #ff6b00;
}
.btn-warning:hover {
  color: #ffffff !important;
  border-color: #ff6b00 !important;
  box-shadow: 0 15px 30px 0 rgba(255, 107, 0, 0.15);
}
.btn-danger {
  box-shadow: 0 15px 30px 0 rgba(56, 208, 252, 0.15);
}
.btn-danger,
.btn-danger:active {
  background-color: #38d0fc !important;
  border-color: #38d0fc !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #06c4fb !important;
  border-color: #06c4fb !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #06c4fb !important;
  border-color: #06c4fb !important;
}
.btn-danger:before {
  background: #38d0fc;
}
.btn-danger:hover {
  color: #000000 !important;
  border-color: #38d0fc !important;
  box-shadow: 0 15px 30px 0 rgba(56, 208, 252, 0.15);
}
.btn-white {
  color: #ff8e0d !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 15px 30px 0 rgba(255, 142, 13, 0.15);
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white:before {
  background: #ff8e0d;
}
.btn-white:hover {
  color: #ffffff !important;
  border-color: #ff8e0d !important;
  background-color: #ffffff !important;
  box-shadow: 0 15px 30px 0 rgba(255, 255, 255, 0.15);
}
.btn-black {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-black,
.btn-black:active {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:before {
  background: #4d4d4d;
}
.btn-black:hover {
  border-color: #4d4d4d !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ff8e0d;
  color: #ff8e0d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #ff8e0d !important;
  border-color: #ff8e0d !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8e0d !important;
  border-color: #ff8e0d !important;
}
.btn-primary-outline:before {
  background: #ff8e0d;
}
.btn-primary-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(255, 142, 13, 0.15);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffb51c;
  color: #ffb51c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #ffb51c !important;
  border-color: #ffb51c !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb51c !important;
  border-color: #ffb51c !important;
}
.btn-secondary-outline:before {
  background: #ffb51c;
}
.btn-secondary-outline:hover {
  color: #000000 !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(255, 181, 28, 0.15);
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #93d50a;
  color: #93d50a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #93d50a !important;
  border-color: #93d50a !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #93d50a !important;
  border-color: #93d50a !important;
}
.btn-info-outline:before {
  background: #93d50a;
}
.btn-info-outline:hover {
  color: #000000 !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(147, 213, 10, 0.15);
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #5600e3;
  color: #5600e3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #5600e3 !important;
  border-color: #5600e3 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #5600e3 !important;
  border-color: #5600e3 !important;
}
.btn-success-outline:before {
  background: #5600e3;
}
.btn-success-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(86, 0, 227, 0.15);
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ff6b00;
  color: #ff6b00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff !important;
  background-color: #ff6b00 !important;
  border-color: #ff6b00 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6b00 !important;
  border-color: #ff6b00 !important;
}
.btn-warning-outline:before {
  background: #ff6b00;
}
.btn-warning-outline:hover {
  color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(255, 107, 0, 0.15);
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #38d0fc;
  color: #38d0fc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff !important;
  background-color: #38d0fc !important;
  border-color: #38d0fc !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #38d0fc !important;
  border-color: #38d0fc !important;
}
.btn-danger-outline:before {
  background: #38d0fc;
}
.btn-danger-outline:hover {
  color: #000000 !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(56, 208, 252, 0.15);
}
.btn-black-outline {
  border-color: #1a1a1a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #1a1a1a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(26, 26, 26, 0.15);
}
.btn-black-outline:before {
  background: #4d4d4d;
}
.btn-white-outline {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #ff8e0d !important;
  border-color: #ffffff !important;
  background-color: transparent !important;
  box-shadow: 0 15px 30px 0 rgba(255, 255, 255, 0.15);
}
.btn-white-outline:before {
  background: #ffffff;
}
.text-primary {
  color: #ff8e0d !important;
}
.text-secondary {
  color: #ffb51c !important;
}
.text-success {
  color: #5600e3 !important;
}
.text-info {
  color: #93d50a !important;
}
.text-warning {
  color: #ff6b00 !important;
}
.text-danger {
  color: #38d0fc !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #1a1a1a !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a65800 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b57a00 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #2f007d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #507405 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #994000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #039ecb !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #ff8e0d;
}
.nav-tabs .nav-link:not(.active) {
  color: #1a1a1a;
}
.alert-success {
  background-color: #40A50B;
}
.alert-info {
  background-color: #93d50a;
}
.alert-warning {
  background-color: #ff6b00;
}
.alert-danger {
  background-color: #38d0fc;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff8e0d;
  border-color: #ff8e0d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff8e0d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffedd9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ceb0ff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e3fbb0;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffe1cc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Bungee', display;
  font-size: 0.8rem;
  line-height: 1.867;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Bungee', display;
  font-size: 0.8rem;
  line-height: 1.867;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #ff8e0d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff8e0d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff8e0d;
}
.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: #ff8e0d;
  border-bottom-color: #ff8e0d;
}
.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: #ff8e0d !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: #ffb51c !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='%23ff8e0d' %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.btn-white {
  color: #ff8e0d !important;
}
.mbr-arrow-up {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  box-shadow: 0px 10px 33.25px 1.75px rgba(0, 27, 103, 0.35);
}
.mbr-arrow-up a {
  background: rgba(255, 142, 13, 0.6);
}
.mbr-arrow-up a:hover {
  background: #ff8e0d;
}
.cid-sT6rZz7I65 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sT6rZz7I65 .img-wrap {
  position: relative;
}
.cid-sT6rZz7I65 .img-wrap img {
  width: 100%;
}
.cid-sT6rZz7I65 .mbr-section-subtitle {
  color: #ffb51c;
  margin-bottom: 14px;
}
.cid-sT6rZz7I65 .mbr-section-title {
  color: #ff8e0d;
}
.cid-sT6rZz7I65 .mbr-text {
  color: #93d50a;
}
.cid-sT6rZz7I65 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sT6rZz7I65 .mbr-section-btn .btn:first-child {
  margin-left: 0 !important;
}
.cid-sT6rZz7I65 .cards-wrap {
  margin-top: 30px;
}
.cid-sT6rZz7I65 .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  text-align: left;
}
.cid-sT6rZz7I65 .wrapper .icon {
  margin-bottom: 21px;
  border-radius: 50%;
  position: relative;
  padding: 16px;
  display: inline-block;
  transition: all .3s;
}
.cid-sT6rZz7I65 .wrapper .icon:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-sT6rZz7I65 .wrapper .icon .mbr-iconfont {
  font-size: 38px;
  color: #ffb51c;
  position: relative;
  display: block;
}
.cid-sT6rZz7I65 .wrapper .icon1 {
  background-color: #5600e3;
}
.cid-sT6rZz7I65 .wrapper .icon1 .mbr-iconfont {
  color: #ff8e0d;
}
.cid-sT6rZz7I65 .wrapper .icon2 {
  background-color: #ff6b00;
}
.cid-sT6rZz7I65 .wrapper .icon2 .mbr-iconfont {
  color: #000000;
}
.cid-sT6rZz7I65 .wrapper .icon3 {
  background-color: #ff0000;
}
.cid-sT6rZz7I65 .wrapper .icon3 .mbr-iconfont {
  color: #ffffff;
}
.cid-sT6rZz7I65 .wrapper .icon4 {
  background-color: #ff6b00;
}
.cid-sT6rZz7I65 .wrapper .mbr-card-title {
  color: #ff8e0d;
  margin-bottom: 17px;
}
.cid-sT6rZz7I65 .wrapper .mbr-text {
  margin-bottom: 19px;
  color: #93d50a;
}
@media (max-width: 768px) {
  .cid-sT6rZz7I65 .mbr-section-btn {
    justify-content: center;
  }
  .cid-sT6rZz7I65 * {
    text-align: left;
  }
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-sT6rZz7I65 .mbr-section-title,
.cid-sT6rZz7I65 .separator,
.cid-sT6rZz7I65 .sep-holder {
  color: #108a0f;
  text-align: right;
}
.cid-sT6rZz7I65 .wrapper .mbr-card-title,
.cid-sT6rZz7I65 .img {
  color: #f6fbff;
  text-align: left;
}
.cid-sT6rZz7I65 .mbr-text,
.cid-sT6rZz7I65 .mbr-section-btn {
  color: #361800;
  text-align: left;
}
.cid-sT6rZz7I65 .wrapper .mbr-text,
.cid-sT6rZz7I65 .img {
  color: #051441;
}
.cid-sT6rZz7I65 .mbr-section-subtitle,
.cid-sT6rZz7I65 .mbr-section-title .accent-word {
  color: #ff6b00;
}
.cid-KMoV4N7HZI {
  padding-top: 25px;
  padding-bottom: 25px;
  background: linear-gradient(0deg, #ff6b00, #ff6b00);
}
.cid-KMoV4N7HZI .news {
  width: 250px;
  background-color: #051441;
  height: 28px;
}
.cid-KMoV4N7HZI .news-scroll a {
  text-decoration: none;
}
.cid-KMoV4N7HZI .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ff6b00;
  border-radius: 50%;
  display: inline-block;
}
.cid-KMoV4N7HZI DIV {
  color: #ffffff;
}
.cid-KMoV4N7HZI .mbr-text {
  color: #051441;
}
.cid-KMoV4N7HZI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sWSoO0mGGE {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sWSoO0mGGE .row {
  flex-direction: row-reverse;
}
.cid-sWSoO0mGGE .img-wrap {
  position: relative;
}
.cid-sWSoO0mGGE .img-wrap img {
  width: 100%;
}
.cid-sWSoO0mGGE .mbr-section-subtitle {
  color: #ffb51c;
  margin-bottom: 14px;
}
.cid-sWSoO0mGGE .mbr-section-title {
  color: #ff8e0d;
}
.cid-sWSoO0mGGE .mbr-text {
  color: #93d50a;
}
.cid-sWSoO0mGGE .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sWSoO0mGGE .mbr-section-btn .btn:first-child {
  margin-left: 0 !important;
}
.cid-sWSoO0mGGE .cards-wrap {
  margin-top: 30px;
}
.cid-sWSoO0mGGE .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  text-align: left;
}
.cid-sWSoO0mGGE .wrapper .icon {
  margin-bottom: 21px;
  border-radius: 50%;
  position: relative;
  padding: 16px;
  display: inline-block;
  transition: all .3s;
}
.cid-sWSoO0mGGE .wrapper .icon:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-sWSoO0mGGE .wrapper .icon .mbr-iconfont {
  font-size: 38px;
  color: #ffb51c;
  position: relative;
  display: block;
}
.cid-sWSoO0mGGE .wrapper .icon1 {
  background-color: #57b22a;
}
.cid-sWSoO0mGGE .wrapper .icon1 .mbr-iconfont {
  color: #ff8e0d;
}
.cid-sWSoO0mGGE .wrapper .icon2 {
  background-color: #000b28;
}
.cid-sWSoO0mGGE .wrapper .icon2 .mbr-iconfont {
  color: #000000;
}
.cid-sWSoO0mGGE .wrapper .icon3 {
  background-color: #ff0000;
}
.cid-sWSoO0mGGE .wrapper .icon3 .mbr-iconfont {
  color: #ffffff;
}
.cid-sWSoO0mGGE .wrapper .icon4 {
  background-color: #ff6b00;
}
.cid-sWSoO0mGGE .wrapper .mbr-card-title {
  color: #ff8e0d;
  margin-bottom: 17px;
}
.cid-sWSoO0mGGE .wrapper .mbr-text {
  margin-bottom: 19px;
  color: #93d50a;
}
@media (max-width: 768px) {
  .cid-sWSoO0mGGE .mbr-section-btn {
    justify-content: center;
  }
  .cid-sWSoO0mGGE * {
    text-align: left;
  }
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-sWSoO0mGGE .mbr-section-title,
.cid-sWSoO0mGGE .separator,
.cid-sWSoO0mGGE .sep-holder {
  color: #000000;
}
.cid-sWSoO0mGGE .wrapper .mbr-card-title,
.cid-sWSoO0mGGE .img {
  color: #051441;
}
.cid-sWSoO0mGGE .mbr-text,
.cid-sWSoO0mGGE .mbr-section-btn {
  color: #ff0000;
}
.cid-sWSoO0mGGE .wrapper .mbr-text,
.cid-sWSoO0mGGE .img {
  color: #5e2ced;
}
.cid-sWSoO0mGGE .mbr-section-subtitle,
.cid-sWSoO0mGGE .mbr-section-title .accent-word {
  color: #ff6b00;
  text-align: left;
}
.cid-sWRztBIVa5 {
  padding-top: 135px;
  padding-bottom: 60px;
  background-color: #f6fbff;
}
.cid-sWRztBIVa5 .img-wrap {
  position: relative;
}
.cid-sWRztBIVa5 .img-wrap img {
  width: 100%;
}
.cid-sWRztBIVa5 .mbr-section-subtitle {
  color: #ffb51c;
  margin-bottom: 14px;
}
.cid-sWRztBIVa5 .mbr-section-title {
  color: #ff8e0d;
}
.cid-sWRztBIVa5 .mbr-text {
  color: #93d50a;
}
.cid-sWRztBIVa5 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sWRztBIVa5 .mbr-section-btn .btn:first-child {
  margin-left: 0 !important;
}
.cid-sWRztBIVa5 .cards-wrap {
  margin-top: 30px;
}
.cid-sWRztBIVa5 .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  text-align: left;
}
.cid-sWRztBIVa5 .wrapper .icon {
  margin-bottom: 21px;
  border-radius: 50%;
  position: relative;
  padding: 16px;
  display: inline-block;
  transition: all .3s;
}
.cid-sWRztBIVa5 .wrapper .icon:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-sWRztBIVa5 .wrapper .icon .mbr-iconfont {
  font-size: 38px;
  color: #ffb51c;
  position: relative;
  display: block;
}
.cid-sWRztBIVa5 .wrapper .icon1 {
  background-color: #ff0000;
}
.cid-sWRztBIVa5 .wrapper .icon1 .mbr-iconfont {
  color: #ff8e0d;
}
.cid-sWRztBIVa5 .wrapper .icon2 {
  background-color: #301cab;
}
.cid-sWRztBIVa5 .wrapper .icon2 .mbr-iconfont {
  color: #000000;
}
.cid-sWRztBIVa5 .wrapper .icon3 {
  background-color: #57b22a;
}
.cid-sWRztBIVa5 .wrapper .icon3 .mbr-iconfont {
  color: #ffffff;
}
.cid-sWRztBIVa5 .wrapper .icon4 {
  background-color: #ff6b00;
}
.cid-sWRztBIVa5 .wrapper .mbr-card-title {
  color: #ff8e0d;
  margin-bottom: 17px;
}
.cid-sWRztBIVa5 .wrapper .mbr-text {
  margin-bottom: 19px;
  color: #93d50a;
}
@media (max-width: 768px) {
  .cid-sWRztBIVa5 .mbr-section-btn {
    justify-content: center;
  }
  .cid-sWRztBIVa5 * {
    text-align: left;
  }
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-sWRztBIVa5 .mbr-section-title,
.cid-sWRztBIVa5 .separator,
.cid-sWRztBIVa5 .sep-holder {
  color: #ff6b00;
}
.cid-sWRztBIVa5 .wrapper .mbr-card-title,
.cid-sWRztBIVa5 .img {
  color: #301cab;
}
.cid-sWRztBIVa5 .mbr-text,
.cid-sWRztBIVa5 .mbr-section-btn {
  color: #051441;
}
.cid-sWRztBIVa5 .wrapper .mbr-text,
.cid-sWRztBIVa5 .img {
  color: #5e2ced;
}
.cid-sWRztBIVa5 .mbr-section-subtitle,
.cid-sWRztBIVa5 .mbr-section-title .accent-word {
  color: #051441;
}
.cid-sWSoM0PP9e {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sWSoM0PP9e .row {
  flex-direction: row-reverse;
}
.cid-sWSoM0PP9e .img-wrap {
  position: relative;
}
.cid-sWSoM0PP9e .img-wrap img {
  width: 100%;
}
.cid-sWSoM0PP9e .mbr-section-subtitle {
  color: #ffb51c;
  margin-bottom: 14px;
}
.cid-sWSoM0PP9e .mbr-section-title {
  color: #ff8e0d;
}
.cid-sWSoM0PP9e .mbr-text {
  color: #93d50a;
}
.cid-sWSoM0PP9e .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sWSoM0PP9e .mbr-section-btn .btn:first-child {
  margin-left: 0 !important;
}
.cid-sWSoM0PP9e .cards-wrap {
  margin-top: 30px;
}
.cid-sWSoM0PP9e .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
  text-align: left;
}
.cid-sWSoM0PP9e .wrapper .icon {
  margin-bottom: 21px;
  border-radius: 50%;
  position: relative;
  padding: 16px;
  display: inline-block;
  transition: all .3s;
}
.cid-sWSoM0PP9e .wrapper .icon:hover {
  -webkit-animation-name: animation-wobble-vertical;
  animation-name: animation-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.cid-sWSoM0PP9e .wrapper .icon .mbr-iconfont {
  font-size: 38px;
  color: #ffb51c;
  position: relative;
  display: block;
}
.cid-sWSoM0PP9e .wrapper .icon1 {
  background-color: #57b22a;
}
.cid-sWSoM0PP9e .wrapper .icon1 .mbr-iconfont {
  color: #ff8e0d;
}
.cid-sWSoM0PP9e .wrapper .icon2 {
  background-color: #000b28;
}
.cid-sWSoM0PP9e .wrapper .icon2 .mbr-iconfont {
  color: #000000;
}
.cid-sWSoM0PP9e .wrapper .icon3 {
  background-color: #ff0000;
}
.cid-sWSoM0PP9e .wrapper .icon3 .mbr-iconfont {
  color: #ffffff;
}
.cid-sWSoM0PP9e .wrapper .icon4 {
  background-color: #ff6b00;
}
.cid-sWSoM0PP9e .wrapper .mbr-card-title {
  color: #ff8e0d;
  margin-bottom: 17px;
}
.cid-sWSoM0PP9e .wrapper .mbr-text {
  margin-bottom: 19px;
  color: #93d50a;
}
@media (max-width: 768px) {
  .cid-sWSoM0PP9e .mbr-section-btn {
    justify-content: center;
  }
  .cid-sWSoM0PP9e * {
    text-align: left;
  }
}
@-webkit-keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-sWSoM0PP9e .mbr-section-title,
.cid-sWSoM0PP9e .separator,
.cid-sWSoM0PP9e .sep-holder {
  color: #051441;
}
.cid-sWSoM0PP9e .wrapper .mbr-card-title,
.cid-sWSoM0PP9e .img {
  color: #051441;
}
.cid-sWSoM0PP9e .mbr-text,
.cid-sWSoM0PP9e .mbr-section-btn {
  color: #ff6b00;
}
.cid-sWSoM0PP9e .wrapper .mbr-text,
.cid-sWSoM0PP9e .img {
  color: #5e2ced;
}
.cid-sWSoM0PP9e .mbr-section-subtitle,
.cid-sWSoM0PP9e .mbr-section-title .accent-word {
  color: #ff6b00;
}
.cid-sXzLrPF2GT {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fff0d1;
}
.cid-sXzLrPF2GT .title_block {
  margin-bottom: 80px;
}
.cid-sXzLrPF2GT .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ff6b00;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sXzLrPF2GT .mbr-section-title,
.cid-sXzLrPF2GT .card-title {
  color: #ffb51c;
}
.cid-sXzLrPF2GT .card:nth-child(1) .iconfont-wrapper:before {
  background-color: rgba(255, 142, 13, 0.07);
}
.cid-sXzLrPF2GT .card:nth-child(1) .iconfont-wrapper .mbr-iconfont {
  color: #ff8e0d;
}
.cid-sXzLrPF2GT .card:nth-child(2) .iconfont-wrapper:before {
  background-color: rgba(255, 107, 0, 0.07);
}
.cid-sXzLrPF2GT .card:nth-child(2) .iconfont-wrapper .mbr-iconfont {
  color: #ff6b00;
}
.cid-sXzLrPF2GT .card:nth-child(3) .iconfont-wrapper:before {
  background-color: rgba(86, 0, 227, 0.07);
}
.cid-sXzLrPF2GT .card:nth-child(3) .iconfont-wrapper .mbr-iconfont {
  color: #5600e3;
}
.cid-sXzLrPF2GT .card:nth-child(4) .iconfont-wrapper:before {
  background-color: rgba(147, 213, 10, 0.07);
}
.cid-sXzLrPF2GT .card:nth-child(4) .iconfont-wrapper .mbr-iconfont {
  color: #93d50a;
}
.cid-sXzLrPF2GT .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-sXzLrPF2GT .iconfont-wrapper:before {
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 60px;
  position: absolute;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-sXzLrPF2GT .iconfont-wrapper .mbr-iconfont {
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
.cid-sXzLrPF2GT .card-title {
  margin-bottom: 20px;
}
.cid-sXzLrPF2GT .card-text {
  margin-bottom: 15px;
  line-height: 1.5;
}
.cid-sXzLrPF2GT .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sXzLrPF2GT .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sXzLrPF2GT .btn_link:hover {
  cursor: pointer;
}
.cid-sXzLrPF2GT .btn_link:hover a {
  color: #ff8e0d !important;
}
.cid-sXzLrPF2GT .btn_link:hover span {
  transform: translatex(5px);
}
.cid-sXzLrPF2GT .icon_block {
  position: relative;
}
.cid-sXzLrPF2GT .shape_2 {
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #93d50a;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transform: rotate(-25deg);
}
.cid-sXzLrPF2GT .shape_4 {
  position: absolute;
  left: -13px;
  bottom: 0;
  width: 8px;
  height: 8px;
  background: #38d0fc;
  transform: rotate(-35deg);
}
@media (max-width: 991px) {
  .cid-sXzLrPF2GT .title_block {
    margin-bottom: 40px;
  }
  .cid-sXzLrPF2GT .card {
    text-align: center;
  }
  .cid-sXzLrPF2GT .card_wrapper {
    max-width: 290px;
    text-align: center;
    margin: 50px auto 0;
  }
}
.cid-sXzLrPF2GT .card-title,
.cid-sXzLrPF2GT .icon_block {
  color: #051441;
}
.cid-sXzLrPF2GT .mbr-section-title {
  color: #ff6b00;
}
.cid-sXx4syNZJh {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fff0d1;
}
.cid-sXx4syNZJh .title_block {
  margin-bottom: 80px;
}
.cid-sXx4syNZJh .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ff6b00;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sXx4syNZJh .mbr-section-title,
.cid-sXx4syNZJh .card-title {
  color: #ffb51c;
}
.cid-sXx4syNZJh .card:nth-child(1) .iconfont-wrapper:before {
  background-color: rgba(255, 142, 13, 0.07);
}
.cid-sXx4syNZJh .card:nth-child(1) .iconfont-wrapper .mbr-iconfont {
  color: #ff8e0d;
}
.cid-sXx4syNZJh .card:nth-child(2) .iconfont-wrapper:before {
  background-color: rgba(255, 107, 0, 0.07);
}
.cid-sXx4syNZJh .card:nth-child(2) .iconfont-wrapper .mbr-iconfont {
  color: #ff6b00;
}
.cid-sXx4syNZJh .card:nth-child(3) .iconfont-wrapper:before {
  background-color: rgba(86, 0, 227, 0.07);
}
.cid-sXx4syNZJh .card:nth-child(3) .iconfont-wrapper .mbr-iconfont {
  color: #5600e3;
}
.cid-sXx4syNZJh .card:nth-child(4) .iconfont-wrapper:before {
  background-color: rgba(147, 213, 10, 0.07);
}
.cid-sXx4syNZJh .card:nth-child(4) .iconfont-wrapper .mbr-iconfont {
  color: #93d50a;
}
.cid-sXx4syNZJh .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-sXx4syNZJh .iconfont-wrapper:before {
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 60px;
  position: absolute;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-sXx4syNZJh .iconfont-wrapper .mbr-iconfont {
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
.cid-sXx4syNZJh .card-title {
  margin-bottom: 20px;
}
.cid-sXx4syNZJh .card-text {
  margin-bottom: 15px;
  line-height: 1.5;
}
.cid-sXx4syNZJh .btn_link {
  display: block;
  margin-bottom: 0;
  position: relative;
  font-weight: 700;
}
.cid-sXx4syNZJh .btn_link span {
  display: inline-block;
  margin-left: .25rem;
  font-size: 16px;
  vertical-align: middle;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sXx4syNZJh .btn_link:hover {
  cursor: pointer;
}
.cid-sXx4syNZJh .btn_link:hover a {
  color: #ff8e0d !important;
}
.cid-sXx4syNZJh .btn_link:hover span {
  transform: translatex(5px);
}
.cid-sXx4syNZJh .icon_block {
  position: relative;
}
.cid-sXx4syNZJh .shape_2 {
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #93d50a;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transform: rotate(-25deg);
}
.cid-sXx4syNZJh .shape_4 {
  position: absolute;
  left: -13px;
  bottom: 0;
  width: 8px;
  height: 8px;
  background: #38d0fc;
  transform: rotate(-35deg);
}
@media (max-width: 991px) {
  .cid-sXx4syNZJh .title_block {
    margin-bottom: 40px;
  }
  .cid-sXx4syNZJh .card {
    text-align: center;
  }
  .cid-sXx4syNZJh .card_wrapper {
    max-width: 290px;
    text-align: center;
    margin: 50px auto 0;
  }
}
.cid-sXx4syNZJh .card-title,
.cid-sXx4syNZJh .icon_block {
  color: #051441;
}
.cid-sWXyV6eqtY {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sWXyV6eqtY .mbr-iconfont {
  font-size: 4rem;
  color: #fff;
  position: absolute;
  transition: all 0.3s;
}
.cid-sWXyV6eqtY .card-wrapper {
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
}
.cid-sWXyV6eqtY .card {
  cursor: pointer;
}
.cid-sWXyV6eqtY .card:hover .card-title {
  transform: scale(0.9);
}
.cid-sWXyV6eqtY .card:hover .mbr-iconfont {
  animation: icons-zoom 0.25s ease-out;
}
.cid-sWXyV6eqtY .card-box {
  background: #9cb92b;
  width: 155px;
  height: 155px;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 50%;
  color: #868378;
  transition: all 0.1s;
}
.cid-sWXyV6eqtY .mbr-section-title {
  color: #000000;
}
.cid-sWXyV6eqtY .mbr-section-subtitle {
  color: #ff6b00;
}
.cid-sWXyV6eqtY .subtitle-padding {
  padding-bottom: 3rem;
}
.cid-sWXyV6eqtY .card-title {
  color: #868378;
  transition: all 0.3s;
}
.cid-sWXyV6eqtY .card-title,
.cid-sWXyV6eqtY .card-box {
  text-align: center;
  color: #000000;
}
@keyframes icons-zoom {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.75, 1.75);
  }
}
.cid-sVw0VsA2x6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f6fbff;
}
.cid-sVw0VsA2x6 .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sVw0VsA2x6 .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #ff6b00;
  text-align: left;
}
.cid-sVw0VsA2x6 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sVw0VsA2x6 .underline .line {
  width: 3rem;
  height: 2px;
  background: #301cab;
  display: inline-block;
}
.cid-sVw0VsA2x6 .process-icon,
.cid-sVw0VsA2x6 .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-sVw0VsA2x6 .wrapper,
.cid-sVw0VsA2x6 .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-sVw0VsA2x6 .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #ff6b00;
  opacity: 0.4;
}
.cid-sVw0VsA2x6 .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-sVw0VsA2x6 .icon-container a {
  display: inherit;
}
.cid-sVw0VsA2x6 .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #ff6b00 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-sVw0VsA2x6 .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-sVw0VsA2x6 .icon-main:hover .icon-wrapper {
  background-color: #ff6b00 !important;
}
.cid-sVw0VsA2x6 .icon-main:hover .icon-number {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-sVw0VsA2x6 .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-sVw0VsA2x6 .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-sVw0VsA2x6 .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sVw0VsA2x6 .third-elem .wrapper:before {
    display: none;
  }
}
.cid-sVw0VsA2x6 .mbr-section-title {
  margin: 0;
}
.cid-sVw0VsA2x6 .mbr-section-subtitle {
  color: #ff6b00;
  text-align: center;
}
.cid-sVw0VsA2x6 .mbr-section-title,
.cid-sVw0VsA2x6 .underline {
  color: #000000;
}
.cid-sWSE5L4TYB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sWSE5L4TYB .mbr-section-title,
.cid-sWSE5L4TYB .mbr-section-subtitle {
  color: #879a9f;
}
.cid-sWSE5L4TYB .mbr-section-text {
  color: #767676;
}
.cid-sWSE5L4TYB .mbr-text,
.cid-sWSE5L4TYB .typed-text,
.cid-sWSE5L4TYB .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sWSE5L4TYB .btn {
  margin-left: 4px !important;
}
.cid-sWSE5L4TYB .animated-element {
  color: #ffb51c;
}
.cid-sWSE5L4TYB .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffb51c;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sWSE5L4TYB .mbr-section-title {
  text-align: center;
}
.cid-sWSE5L4TYB .mbr-section-subtitle,
.cid-sWSE5L4TYB .typed-text {
  text-align: center;
  color: #ffffff;
}
.cid-sXeIRdi3xv {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #eff2f7;
}
.cid-sXeIRdi3xv .row {
  align-items: center;
}
.cid-sXeIRdi3xv .image-wrapper {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-sXeIRdi3xv .image-wrapper {
    padding: 0 0.75rem;
  }
}
.cid-sXeIRdi3xv .text-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 30px 0 0;
}
@media (min-width: 992px) {
  .cid-sXeIRdi3xv .text-wrapper {
    padding: 0 0 0 60px;
  }
}
.cid-sXeIRdi3xv .text-container {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-sXeIRdi3xv .text-container {
    width: 550px;
    flex-shrink: 1;
  }
}
.cid-sXeIRdi3xv .label-text {
  width: 100%;
  color: #ff6b00;
}
.cid-sXeIRdi3xv .mbr-section-title {
  margin-bottom: 12px;
}
.cid-sXeIRdi3xv .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 32px;
}
.cid-sXeIRdi3xv .item {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  flex-wrap: wrap;
}
.cid-sXeIRdi3xv .mbr-section-subtitle {
  margin: 0;
  width: 100%;
  color: #452065;
}
.cid-sXeIRdi3xv .numbers-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-sXeIRdi3xv .number-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-sXeIRdi3xv .color-text {
  color: #ff6b00;
}
.cid-sXeIRdi3xv .text-box {
  width: 100%;
}
.cid-sXeIRdi3xv .icon-text {
  width: 100%;
  color: #000000;
}
.cid-sXeIRdi3xv .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-sXeIRdi3xv .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sXeIRdi3xv .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sXeIRdi3xv .mbr-text,
.cid-sXeIRdi3xv .mbr-section-btn {
  color: #000000;
}
.cid-sTaFIUwNSf {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sTaFIUwNSf .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sTaFIUwNSf .row {
  flex-direction: row-reverse;
}
.cid-sTaFIUwNSf .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-sTaFIUwNSf .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-sTaFIUwNSf .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #000000;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-sTaFIUwNSf .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-sTaFIUwNSf .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-sTaFIUwNSf .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-sTaFIUwNSf .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-sTaFIUwNSf .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-sTaFIUwNSf .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-sTaFIUwNSf .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-sTaFIUwNSf .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-sTaFIUwNSf .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-sTaFIUwNSf .list-block {
  position: relative;
}
.cid-sTaFIUwNSf .list-block h4,
.cid-sTaFIUwNSf .list-block p {
  padding-left: 4.5rem;
}
.cid-sTaFIUwNSf .card-img {
  display: block;
}
.cid-sTaFIUwNSf input,
.cid-sTaFIUwNSf textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-sTaFIUwNSf input:focus,
.cid-sTaFIUwNSf textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-sTaFIUwNSf .form-control,
.cid-sTaFIUwNSf .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #f7f2e7;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sTaFIUwNSf .form-control:hover,
.cid-sTaFIUwNSf .field-input:hover,
.cid-sTaFIUwNSf .form-control:focus,
.cid-sTaFIUwNSf .field-input:focus {
  background-color: #f6fbff;
  border-color: #000000 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sTaFIUwNSf input::-webkit-input-placeholder,
.cid-sTaFIUwNSf textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-sTaFIUwNSf input:-moz-placeholder,
.cid-sTaFIUwNSf textarea:-moz-placeholder {
  color: #000000;
}
.cid-sTaFIUwNSf .jq-selectbox li,
.cid-sTaFIUwNSf .jq-selectbox li {
  background-color: #f7f2e7;
  color: #000000;
}
.cid-sTaFIUwNSf .jq-selectbox li:hover,
.cid-sTaFIUwNSf .jq-selectbox li.selected {
  background-color: #f6fbff;
  color: #000000;
}
.cid-sTaFIUwNSf .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f7f2e7;
}
.cid-sTaFIUwNSf .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f6fbff;
}
.cid-sTaFIUwNSf .mbr-form {
  max-width: 550px;
}
.cid-sTaFIUwNSf .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-sTaFIUwNSf .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sTaFIUwNSf .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-sTaFIUwNSf .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-sTaFIUwNSf .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-sTaFIUwNSf .mbr-form textarea {
  min-height: 100px;
}
.cid-sTaFIUwNSf .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #ff8e0d;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-sTaFIUwNSf .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-sTaFIUwNSf .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-sTaFIUwNSf .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-sTaFIUwNSf .mbr-section-title,
  .cid-sTaFIUwNSf .content-title,
  .cid-sTaFIUwNSf .mbr-section-btn {
    text-align: left;
  }
}
.cid-sTaFIUwNSf .text-content .list-block .list-item-text {
  color: #051441;
  text-align: left;
}
.cid-sTaFIUwNSf LABEL {
  color: #5e2ced;
}
.cid-sTaFIUwNSf H2 {
  color: #6535ee;
}
.cid-sXNrWalVjk .navbar-dropdown {
  position: relative !important;
}
.cid-sXNrWalVjk .navbar-dropdown {
  position: absolute !important;
}
.cid-sXNrWalVjk .navbar-nav {
  margin: auto;
}
.cid-sXNrWalVjk .dropdown-item {
  color: #000000 !important;
  border-bottom: 1px solid #e6e6e6;
}
.cid-sXNrWalVjk .dropdown-item:hover,
.cid-sXNrWalVjk .dropdown-item:focus {
  background: #ff8e0d !important;
  color: white !important;
}
.cid-sXNrWalVjk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sXNrWalVjk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sXNrWalVjk .navbar-short,
.cid-sXNrWalVjk .opened {
  background: #ffb51c !important;
  opacity: 0.8;
  transition: all 0.3s;
}
.cid-sXNrWalVjk .navbar-short .nav-link,
.cid-sXNrWalVjk .opened .nav-link,
.cid-sXNrWalVjk .navbar-short .navbar-caption,
.cid-sXNrWalVjk .opened .navbar-caption,
.cid-sXNrWalVjk .navbar-short .mbr-iconfont,
.cid-sXNrWalVjk .opened .mbr-iconfont {
  color: #000000 !important;
}
.cid-sXNrWalVjk .navbar-short .hamburger span,
.cid-sXNrWalVjk .opened .hamburger span {
  background-color: #000000 !important;
}
.cid-sXNrWalVjk .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-sXNrWalVjk .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-sXNrWalVjk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sXNrWalVjk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sXNrWalVjk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sXNrWalVjk .container {
  display: flex;
  margin: auto;
}
.cid-sXNrWalVjk .iconfont-wrapper {
  color: #5600e3 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sXNrWalVjk .dropdown-menu,
.cid-sXNrWalVjk .navbar.opened {
  background: #ffb51c !important;
}
.cid-sXNrWalVjk .nav-item:focus,
.cid-sXNrWalVjk .nav-link:focus {
  outline: none;
}
.cid-sXNrWalVjk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sXNrWalVjk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sXNrWalVjk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sXNrWalVjk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sXNrWalVjk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sXNrWalVjk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sXNrWalVjk .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 181, 28, 0);
}
.cid-sXNrWalVjk .navbar.opened {
  transition: all 0.3s;
}
.cid-sXNrWalVjk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sXNrWalVjk .navbar .navbar-logo img {
  width: auto;
}
.cid-sXNrWalVjk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sXNrWalVjk .navbar.collapsed {
  justify-content: center;
}
.cid-sXNrWalVjk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sXNrWalVjk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sXNrWalVjk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sXNrWalVjk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sXNrWalVjk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sXNrWalVjk .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-sXNrWalVjk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sXNrWalVjk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sXNrWalVjk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sXNrWalVjk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sXNrWalVjk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sXNrWalVjk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sXNrWalVjk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sXNrWalVjk .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-sXNrWalVjk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sXNrWalVjk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sXNrWalVjk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sXNrWalVjk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sXNrWalVjk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sXNrWalVjk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sXNrWalVjk .navbar.navbar-short {
  min-height: 60px;
}
.cid-sXNrWalVjk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sXNrWalVjk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sXNrWalVjk .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-sXNrWalVjk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sXNrWalVjk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sXNrWalVjk .dropdown-item.active,
.cid-sXNrWalVjk .dropdown-item:active {
  background-color: transparent;
}
.cid-sXNrWalVjk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sXNrWalVjk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sXNrWalVjk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sXNrWalVjk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffb51c;
}
.cid-sXNrWalVjk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sXNrWalVjk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sXNrWalVjk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sXNrWalVjk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sXNrWalVjk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sXNrWalVjk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f9f9f9;
}
.cid-sXNrWalVjk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sXNrWalVjk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sXNrWalVjk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sXNrWalVjk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sXNrWalVjk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sXNrWalVjk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sXNrWalVjk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sXNrWalVjk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sXNrWalVjk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sXNrWalVjk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sXNrWalVjk .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-sXNrWalVjk .navbar {
    height: 70px;
  }
  .cid-sXNrWalVjk .navbar.opened {
    height: auto;
  }
  .cid-sXNrWalVjk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
