body {
  font-family: Spartan;
}
.display-1 {
  font-family: 'Spartan', sans-serif;
  font-size: 3.8rem;
  line-height: 1.2;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Spartan', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  line-height: 1.65;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Spartan', sans-serif;
  font-size: 2.2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Spartan', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 7px 15px;
  border-radius: 4px;
}
.btn-sm {
  padding: 7px 15px;
  border-radius: 4px;
}
.btn-md {
  padding: 15px 20px;
  border-radius: 4px;
}
.btn-lg {
  padding: 18px 25px;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #8f8f8f !important;
}
.bg-info {
  background-color: #c0c0c0 !important;
}
.bg-warning {
  background-color: #cc0000 !important;
}
.bg-danger {
  background-color: #ff7700 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ee0000 !important;
  border-color: #ee0000 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #bb0000 !important;
  border-color: #bb0000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #bb0000 !important;
  border-color: #bb0000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #c0c0c0 !important;
  border-color: #c0c0c0 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a7a7a7 !important;
  border-color: #a7a7a7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a7a7a7 !important;
  border-color: #a7a7a7 !important;
}
.btn-success,
.btn-success:active {
  background-color: #8f8f8f !important;
  border-color: #8f8f8f !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cc0000 !important;
  border-color: #cc0000 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #990000 !important;
  border-color: #990000 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #990000 !important;
  border-color: #990000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff7700 !important;
  border-color: #ff7700 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #cc5f00 !important;
  border-color: #cc5f00 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc5f00 !important;
  border-color: #cc5f00 !important;
}
.btn-white {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.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:hover {
  color: #cccccc !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-white:hover,
.btn-white:hover:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover:hover,
.btn-white:hover:focus,
.btn-white:hover.focus,
.btn-white:hover.active {
  color: #666666 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-white:hover.disabled,
.btn-white:hover:disabled {
  color: #808080 !important;
  background-color: #e6e6e6 !important;
  border-color: #e6e6e6 !important;
}
.btn-black {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.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:hover {
  background-color: #4d4d4d !important;
  border-color: #4d4d4d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ee0000;
  color: #ee0000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #ee0000 !important;
  border-color: #ee0000 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ee0000 !important;
  border-color: #ee0000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #c0c0c0;
  color: #c0c0c0;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #c0c0c0 !important;
  border-color: #c0c0c0 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #c0c0c0 !important;
  border-color: #c0c0c0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #8f8f8f;
  color: #8f8f8f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #8f8f8f !important;
  border-color: #8f8f8f !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #8f8f8f !important;
  border-color: #8f8f8f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #cc0000;
  color: #cc0000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff !important;
  background-color: #cc0000 !important;
  border-color: #cc0000 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #cc0000 !important;
  border-color: #cc0000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff7700;
  color: #ff7700;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff !important;
  background-color: #ff7700 !important;
  border-color: #ff7700 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff7700 !important;
  border-color: #ff7700 !important;
}
.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: #4d4d4d !important;
  background-color: transparent;
  border-color: #4d4d4d !important;
}
.btn-white-outline {
  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: #cccccc !important;
  background-color: transparent;
  border-color: #cccccc !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #ee0000 !important;
}
.text-success {
  color: #8f8f8f !important;
}
.text-info {
  color: #c0c0c0 !important;
}
.text-warning {
  color: #cc0000 !important;
}
.text-danger {
  color: #ff7700 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #1a1a1a !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #880000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5c5c5c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #8d8d8d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #660000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #994700 !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: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #1a1a1a;
}
.alert-success {
  background-color: #34b794;
}
.alert-info {
  background-color: #c0c0c0;
}
.alert-warning {
  background-color: #cc0000;
}
.alert-danger {
  background-color: #ff7700;
}
.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: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #cfcfcf;
}
.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: #ff9999;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffe4cc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ee0000 !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='%23ffffff' %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.4s;
}
.cid-sYomahzExw {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #1a191d;
}
@media (min-width: 991px) {
  .cid-sYomahzExw {
    min-height: 170px !important;
  }
}
.cid-sYomahzExw .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-sYomahzExw .empty_md {
    display: block;
  }
}
.cid-sYomahzExw .container,
.cid-sYomahzExw .container-fluid,
.cid-sYomahzExw .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-sYomahzExw .container,
  .cid-sYomahzExw .container-fluid,
  .cid-sYomahzExw .empty_md {
    min-height: 170px !important;
  }
}
.cid-sYomahzExw .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-sYomahzExw .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYomahzExw .top_menu {
    min-height: 110px !important;
  }
}
.cid-sYomahzExw .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sYomahzExw .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-sYomahzExw .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ff0000;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-sYomahzExw .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-sYomahzExw .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-sYomahzExw .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-sYomahzExw .icons-menu .icons-wrapper:hover {
    background: #ff0000;
  }
  .cid-sYomahzExw .icons-menu .icons-wrapper:hover .mbr-iconfont {
    color: #ffffff;
  }
  .cid-sYomahzExw .empty,
  .cid-sYomahzExw .icons-menu {
    min-width: 265px;
  }
  .cid-sYomahzExw .navbar-logo {
    margin: 0;
  }
  .cid-sYomahzExw .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-sYomahzExw .btn {
    white-space: nowrap;
  }
  .cid-sYomahzExw .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-sYomahzExw .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-sYomahzExw .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-sYomahzExw .dropdown-toggle::after,
  .cid-sYomahzExw .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-sYomahzExw .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-sYomahzExw .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sYomahzExw .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-sYomahzExw .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sYomahzExw .dropdown-menu .dropdown-item:hover {
  color: #ffffff !important;
  background-color: #f8f8f8;
}
.cid-sYomahzExw .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-sYomahzExw .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-sYomahzExw .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-sYomahzExw .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-sYomahzExw .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-sYomahzExw .nav-item:focus,
.cid-sYomahzExw .nav-link:focus {
  outline: none;
}
.cid-sYomahzExw .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-sYomahzExw .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-sYomahzExw .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sYomahzExw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYomahzExw .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-sYomahzExw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sYomahzExw ul.navbar-nav li {
  margin: auto;
}
.cid-sYomahzExw .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #1a191d;
}
.cid-sYomahzExw .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #1a191d !important;
}
.cid-sYomahzExw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sYomahzExw .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-sYomahzExw .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-sYomahzExw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYomahzExw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYomahzExw .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-sYomahzExw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-sYomahzExw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYomahzExw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYomahzExw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYomahzExw .navbar .icons-menu,
  .cid-sYomahzExw .navbar .empty {
    display: none;
  }
  .cid-sYomahzExw .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-sYomahzExw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYomahzExw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYomahzExw .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-sYomahzExw .navbar .container-fluid,
  .cid-sYomahzExw .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-sYomahzExw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYomahzExw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYomahzExw .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-sYomahzExw .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-sYomahzExw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-sYomahzExw .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sYomahzExw .navbar.navbar-short {
  background: #1a191d !important;
  min-height: 90px;
}
.cid-sYomahzExw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYomahzExw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYomahzExw .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYomahzExw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYomahzExw .dropdown-item.active,
.cid-sYomahzExw .dropdown-item:active {
  background-color: transparent;
}
.cid-sYomahzExw .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYomahzExw .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-sYomahzExw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a191d;
}
.cid-sYomahzExw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-sYomahzExw .navbar-buttons {
  text-align: center;
}
.cid-sYomahzExw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sYomahzExw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYomahzExw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYomahzExw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYomahzExw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYomahzExw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYomahzExw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYomahzExw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYomahzExw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYomahzExw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYomahzExw .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-sYomahzExw a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sYomahzExw a.nav-link:hover {
  color: #ee0000 !important;
}
.is-builder .cid-sYomahzExw .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYomahzExw .navbar {
    height: 77px;
  }
  .cid-sYomahzExw .navbar.opened {
    height: auto;
  }
  .cid-sYomahzExw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYuuYTQtp9 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-sYuuYTQtp9 .footer_caption a:hover {
  color: #ee0000 !important;
}
.cid-sYuuYTQtp9 .brand_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.cid-sYuuYTQtp9 .footer_logo {
  width: auto;
  object-fit: cover;
  margin-bottom: 15px;
}
.cid-sYuuYTQtp9 .footer_title {
  margin-bottom: 15px;
  opacity: .8;
}
.cid-sYuuYTQtp9 .footer_items {
  margin-bottom: .25rem;
  font-weight: 500;
}
.cid-sYuuYTQtp9 .footer_items a:hover {
  color: #ee0000 !important;
}
.cid-sYuuYTQtp9 .privacy {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sYuuYTQtp9 .privacy {
    text-align: left;
  }
}
.cid-sYuuYTQtp9 .line {
  position: relative;
  margin: 90px 0 25px;
  height: 1px;
}
.cid-sYuuYTQtp9 .line:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #ff0000;
  left: -32px;
  width: calc(100% + 64px);
}
@media (max-width: 767px) {
  .cid-sYuuYTQtp9 .divider {
    margin: 20px 0;
  }
  .cid-sYuuYTQtp9 .footer_wrap {
    text-align: center;
    margin-bottom: 25px;
  }
  .cid-sYuuYTQtp9 .footer_wrap img {
    margin: auto;
  }
  .cid-sYuuYTQtp9 .privacy {
    text-align: center;
  }
}
.cid-sYuAePls6f.popup-builder {
  background-color: #ffffff;
}
.cid-sYuAePls6f.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sYuAePls6f.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sYuAePls6f .modal-content,
.cid-sYuAePls6f .modal-dialog {
  height: auto;
}
.cid-sYuAePls6f .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sYuAePls6f .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sYuAePls6f .form-wrapper .mbr-form .form-group,
  .cid-sYuAePls6f .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sYuAePls6f .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sYuAePls6f .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYuAePls6f .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sYuAePls6f .pt-0 {
  padding-top: 0 !important;
}
.cid-sYuAePls6f .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sYuAePls6f .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sYuAePls6f .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sYuAePls6f .modal-open {
  overflow: hidden;
}
.cid-sYuAePls6f .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sYuAePls6f .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sYuAePls6f .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sYuAePls6f .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sYuAePls6f .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sYuAePls6f .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sYuAePls6f .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sYuAePls6f .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sYuAePls6f .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sYuAePls6f .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sYuAePls6f .modal-backdrop.fade {
  opacity: 0;
}
.cid-sYuAePls6f .modal-backdrop.show {
  opacity: .5;
}
.cid-sYuAePls6f .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sYuAePls6f .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sYuAePls6f .modal-header {
    padding: 1rem;
  }
}
.cid-sYuAePls6f .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sYuAePls6f .modal-header .close svg {
  fill: #ff0000;
}
.cid-sYuAePls6f .modal-header .close:hover {
  opacity: 1;
}
.cid-sYuAePls6f .modal-header .close:focus {
  outline: none;
}
.cid-sYuAePls6f .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-sYuAePls6f .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sYuAePls6f .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sYuAePls6f .modal-body {
    padding: 1rem;
  }
}
.cid-sYuAePls6f .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYuAePls6f .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sYuAePls6f .modal-footer {
    padding: 1rem;
  }
}
.cid-sYuAePls6f .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sYuAePls6f .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sYuAePls6f .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sYuAePls6f .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sYuAePls6f .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sYuAePls6f .modal-lg,
  .cid-sYuAePls6f .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sYuAePls6f .modal-xl {
    max-width: 1140px;
  }
}
.cid-sYuAePls6f .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sYuAePls6f .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sYuAePls6f .form-group {
  margin-bottom: 1rem;
}
.cid-sYuAePls6f .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sYuAePls6f .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sYuAePls6f .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sYuAePls6f .mbr-section-btn {
  margin: 0;
}
.cid-sYuAePls6f .mbr-section-btn .btn {
  margin: 0;
}
.cid-sYuAePls6f H3 {
  color: #ffffff;
  text-align: center;
}
.cid-sYuAePls6f P {
  color: #ffffff;
  text-align: center;
}
.cid-t2KrHT2Gxs.popup-builder {
  background-color: #ffffff;
}
.cid-t2KrHT2Gxs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t2KrHT2Gxs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t2KrHT2Gxs .modal-content,
.cid-t2KrHT2Gxs .modal-dialog {
  height: auto;
}
.cid-t2KrHT2Gxs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t2KrHT2Gxs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t2KrHT2Gxs .form-wrapper .mbr-form .form-group,
  .cid-t2KrHT2Gxs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t2KrHT2Gxs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t2KrHT2Gxs .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t2KrHT2Gxs .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-t2KrHT2Gxs .pt-0 {
  padding-top: 0 !important;
}
.cid-t2KrHT2Gxs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t2KrHT2Gxs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t2KrHT2Gxs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t2KrHT2Gxs .modal-open {
  overflow: hidden;
}
.cid-t2KrHT2Gxs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t2KrHT2Gxs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t2KrHT2Gxs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t2KrHT2Gxs .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t2KrHT2Gxs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t2KrHT2Gxs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t2KrHT2Gxs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t2KrHT2Gxs .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t2KrHT2Gxs .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t2KrHT2Gxs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t2KrHT2Gxs .modal-backdrop.fade {
  opacity: 0;
}
.cid-t2KrHT2Gxs .modal-backdrop.show {
  opacity: .5;
}
.cid-t2KrHT2Gxs .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t2KrHT2Gxs .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t2KrHT2Gxs .modal-header {
    padding: 1rem;
  }
}
.cid-t2KrHT2Gxs .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t2KrHT2Gxs .modal-header .close svg {
  fill: #cc0000;
}
.cid-t2KrHT2Gxs .modal-header .close:hover {
  opacity: 1;
}
.cid-t2KrHT2Gxs .modal-header .close:focus {
  outline: none;
}
.cid-t2KrHT2Gxs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-t2KrHT2Gxs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t2KrHT2Gxs .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t2KrHT2Gxs .modal-body {
    padding: 1rem;
  }
}
.cid-t2KrHT2Gxs .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t2KrHT2Gxs .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t2KrHT2Gxs .modal-footer {
    padding: 1rem;
  }
}
.cid-t2KrHT2Gxs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t2KrHT2Gxs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t2KrHT2Gxs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t2KrHT2Gxs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t2KrHT2Gxs .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t2KrHT2Gxs .modal-lg,
  .cid-t2KrHT2Gxs .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t2KrHT2Gxs .modal-xl {
    max-width: 1140px;
  }
}
.cid-t2KrHT2Gxs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t2KrHT2Gxs .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t2KrHT2Gxs .form-group {
  margin-bottom: 1rem;
}
.cid-t2KrHT2Gxs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t2KrHT2Gxs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t2KrHT2Gxs .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t2KrHT2Gxs .mbr-section-btn {
  margin: 0;
}
.cid-t2KrHT2Gxs .mbr-section-btn .btn {
  margin: 0;
}
.cid-t2KrHT2Gxs H3 {
  color: #ffffff;
  text-align: center;
}
.cid-t2KrHT2Gxs P {
  color: #ffffff;
  text-align: center;
}
.cid-sYumUz4Sfw {
  background-color: #232323;
  background: linear-gradient(to right top, #232323, #cc0000);
}
.cid-sYumUz4Sfw .mbr-text {
  margin-top: 40px;
  margin-bottom: 50px;
}
.cid-t2x6njlQag.popup-builder {
  background-color: #ffffff;
}
.cid-t2x6njlQag.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t2x6njlQag.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t2x6njlQag .modal-content,
.cid-t2x6njlQag .modal-dialog {
  height: auto;
}
.cid-t2x6njlQag .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t2x6njlQag .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t2x6njlQag .form-wrapper .mbr-form .form-group,
  .cid-t2x6njlQag .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t2x6njlQag .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t2x6njlQag .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t2x6njlQag .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-t2x6njlQag .pt-0 {
  padding-top: 0 !important;
}
.cid-t2x6njlQag .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t2x6njlQag .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t2x6njlQag .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t2x6njlQag .modal-open {
  overflow: hidden;
}
.cid-t2x6njlQag .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t2x6njlQag .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t2x6njlQag .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t2x6njlQag .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t2x6njlQag .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t2x6njlQag .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t2x6njlQag .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t2x6njlQag .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t2x6njlQag .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t2x6njlQag .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t2x6njlQag .modal-backdrop.fade {
  opacity: 0;
}
.cid-t2x6njlQag .modal-backdrop.show {
  opacity: .5;
}
.cid-t2x6njlQag .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t2x6njlQag .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t2x6njlQag .modal-header {
    padding: 1rem;
  }
}
.cid-t2x6njlQag .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t2x6njlQag .modal-header .close svg {
  fill: #ff0000;
}
.cid-t2x6njlQag .modal-header .close:hover {
  opacity: 1;
}
.cid-t2x6njlQag .modal-header .close:focus {
  outline: none;
}
.cid-t2x6njlQag .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-t2x6njlQag .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t2x6njlQag .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t2x6njlQag .modal-body {
    padding: 1rem;
  }
}
.cid-t2x6njlQag .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t2x6njlQag .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t2x6njlQag .modal-footer {
    padding: 1rem;
  }
}
.cid-t2x6njlQag .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t2x6njlQag .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t2x6njlQag .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t2x6njlQag .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t2x6njlQag .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t2x6njlQag .modal-lg,
  .cid-t2x6njlQag .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t2x6njlQag .modal-xl {
    max-width: 1140px;
  }
}
.cid-t2x6njlQag .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t2x6njlQag .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t2x6njlQag .form-group {
  margin-bottom: 1rem;
}
.cid-t2x6njlQag .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t2x6njlQag .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t2x6njlQag .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t2x6njlQag .mbr-section-btn {
  margin: 0;
}
.cid-t2x6njlQag .mbr-section-btn .btn {
  margin: 0;
}
.cid-t2x6njlQag H5 {
  color: #ffffff;
}
.cid-t2x6njlQag P {
  color: #f8f8f8;
}
.cid-sYpTUreZvu {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #1a191d;
}
@media (min-width: 991px) {
  .cid-sYpTUreZvu {
    min-height: 170px !important;
  }
}
.cid-sYpTUreZvu .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-sYpTUreZvu .empty_md {
    display: block;
  }
}
.cid-sYpTUreZvu .container,
.cid-sYpTUreZvu .container-fluid,
.cid-sYpTUreZvu .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-sYpTUreZvu .container,
  .cid-sYpTUreZvu .container-fluid,
  .cid-sYpTUreZvu .empty_md {
    min-height: 170px !important;
  }
}
.cid-sYpTUreZvu .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-sYpTUreZvu .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYpTUreZvu .top_menu {
    min-height: 110px !important;
  }
}
.cid-sYpTUreZvu .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sYpTUreZvu .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-sYpTUreZvu .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ff0000;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-sYpTUreZvu .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-sYpTUreZvu .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-sYpTUreZvu .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-sYpTUreZvu .icons-menu .icons-wrapper:hover {
    background: #ff0000;
  }
  .cid-sYpTUreZvu .icons-menu .icons-wrapper:hover .mbr-iconfont {
    color: #ffffff;
  }
  .cid-sYpTUreZvu .empty,
  .cid-sYpTUreZvu .icons-menu {
    min-width: 265px;
  }
  .cid-sYpTUreZvu .navbar-logo {
    margin: 0;
  }
  .cid-sYpTUreZvu .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-sYpTUreZvu .btn {
    white-space: nowrap;
  }
  .cid-sYpTUreZvu .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-sYpTUreZvu .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-sYpTUreZvu .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-sYpTUreZvu .dropdown-toggle::after,
  .cid-sYpTUreZvu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-sYpTUreZvu .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-sYpTUreZvu .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sYpTUreZvu .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-sYpTUreZvu .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sYpTUreZvu .dropdown-menu .dropdown-item:hover {
  color: #ffffff !important;
  background-color: #f8f8f8;
}
.cid-sYpTUreZvu .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-sYpTUreZvu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-sYpTUreZvu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-sYpTUreZvu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-sYpTUreZvu .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-sYpTUreZvu .nav-item:focus,
.cid-sYpTUreZvu .nav-link:focus {
  outline: none;
}
.cid-sYpTUreZvu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-sYpTUreZvu .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-sYpTUreZvu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sYpTUreZvu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYpTUreZvu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-sYpTUreZvu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sYpTUreZvu ul.navbar-nav li {
  margin: auto;
}
.cid-sYpTUreZvu .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #1a191d;
}
.cid-sYpTUreZvu .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #1a191d !important;
}
.cid-sYpTUreZvu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sYpTUreZvu .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-sYpTUreZvu .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-sYpTUreZvu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYpTUreZvu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYpTUreZvu .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-sYpTUreZvu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-sYpTUreZvu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYpTUreZvu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYpTUreZvu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYpTUreZvu .navbar .icons-menu,
  .cid-sYpTUreZvu .navbar .empty {
    display: none;
  }
  .cid-sYpTUreZvu .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-sYpTUreZvu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYpTUreZvu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYpTUreZvu .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-sYpTUreZvu .navbar .container-fluid,
  .cid-sYpTUreZvu .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-sYpTUreZvu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYpTUreZvu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYpTUreZvu .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-sYpTUreZvu .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-sYpTUreZvu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-sYpTUreZvu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sYpTUreZvu .navbar.navbar-short {
  background: #1a191d !important;
  min-height: 90px;
}
.cid-sYpTUreZvu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYpTUreZvu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYpTUreZvu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYpTUreZvu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYpTUreZvu .dropdown-item.active,
.cid-sYpTUreZvu .dropdown-item:active {
  background-color: transparent;
}
.cid-sYpTUreZvu .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYpTUreZvu .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-sYpTUreZvu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a191d;
}
.cid-sYpTUreZvu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-sYpTUreZvu .navbar-buttons {
  text-align: center;
}
.cid-sYpTUreZvu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sYpTUreZvu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYpTUreZvu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYpTUreZvu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYpTUreZvu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYpTUreZvu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYpTUreZvu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYpTUreZvu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYpTUreZvu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYpTUreZvu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYpTUreZvu .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-sYpTUreZvu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sYpTUreZvu a.nav-link:hover {
  color: #ee0000 !important;
}
.is-builder .cid-sYpTUreZvu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYpTUreZvu .navbar {
    height: 77px;
  }
  .cid-sYpTUreZvu .navbar.opened {
    height: auto;
  }
  .cid-sYpTUreZvu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYpTUrTMXl {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYpTUrTMXl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sYpTUrTMXl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sYpTUrTMXl .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sYpTUsaWkr {
  padding-top: 45px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-sYpTUsaWkr .nav-tabs .nav-item.open .nav-link:focus,
.cid-sYpTUsaWkr .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sYpTUsaWkr .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-sYpTUsaWkr .nav-tabs .nav-item {
  padding: 0.8rem 3rem 0.8rem 0rem;
  border-bottom: 1px solid #f9f7f6;
}
.cid-sYpTUsaWkr .quote {
  padding-top: 0.8rem;
  color: #ee0000;
  font-weight: 700;
}
.cid-sYpTUsaWkr .col-md-12 {
  flex-direction: row;
  display: flex;
}
.cid-sYpTUsaWkr .nav {
  flex-direction: column;
}
.cid-sYpTUsaWkr .nav-tabs .nav-link {
  padding: 0.2rem 1rem;
  color: #232323;
  font-style: normal;
  font-weight: 700;
  transition: all 0.5s;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-sYpTUsaWkr .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #ee0000;
  border-left: 3px solid #ee0000;
}
.cid-sYpTUsaWkr .nav-tabs .nav-link.active {
  font-weight: 700;
  color: #ee0000;
  font-style: normal;
  border-left: 3px solid #ee0000;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sYpTUsaWkr .nav-tabs {
    flex-direction: row;
    border-right: 0px;
    padding-right: 0rem;
  }
  .cid-sYpTUsaWkr .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-sYpTUsaWkr p {
    padding-left: 0rem;
  }
  .cid-sYpTUsaWkr .quote {
    padding-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-sYpTUsaWkr .mbr-text {
    padding-left: 2rem;
  }
}
@media (max-width: 576px) {
  .cid-sYpTUsaWkr .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-sYpTUsaWkr .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    flex-direction: column;
  }
  .cid-sYpTUsaWkr p {
    padding-left: 0rem;
  }
}
.cid-sYpTUsaWkr P {
  color: #111111;
}
.cid-sYuuYTQtp9 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-sYuuYTQtp9 .footer_caption a:hover {
  color: #ee0000 !important;
}
.cid-sYuuYTQtp9 .brand_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.cid-sYuuYTQtp9 .footer_logo {
  width: auto;
  object-fit: cover;
  margin-bottom: 15px;
}
.cid-sYuuYTQtp9 .footer_title {
  margin-bottom: 15px;
  opacity: .8;
}
.cid-sYuuYTQtp9 .footer_items {
  margin-bottom: .25rem;
  font-weight: 500;
}
.cid-sYuuYTQtp9 .footer_items a:hover {
  color: #ee0000 !important;
}
.cid-sYuuYTQtp9 .privacy {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sYuuYTQtp9 .privacy {
    text-align: left;
  }
}
.cid-sYuuYTQtp9 .line {
  position: relative;
  margin: 90px 0 25px;
  height: 1px;
}
.cid-sYuuYTQtp9 .line:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #ff0000;
  left: -32px;
  width: calc(100% + 64px);
}
@media (max-width: 767px) {
  .cid-sYuuYTQtp9 .divider {
    margin: 20px 0;
  }
  .cid-sYuuYTQtp9 .footer_wrap {
    text-align: center;
    margin-bottom: 25px;
  }
  .cid-sYuuYTQtp9 .footer_wrap img {
    margin: auto;
  }
  .cid-sYuuYTQtp9 .privacy {
    text-align: center;
  }
}
.cid-sYomahzExw {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #1a191d;
}
@media (min-width: 991px) {
  .cid-sYomahzExw {
    min-height: 170px !important;
  }
}
.cid-sYomahzExw .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-sYomahzExw .empty_md {
    display: block;
  }
}
.cid-sYomahzExw .container,
.cid-sYomahzExw .container-fluid,
.cid-sYomahzExw .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-sYomahzExw .container,
  .cid-sYomahzExw .container-fluid,
  .cid-sYomahzExw .empty_md {
    min-height: 170px !important;
  }
}
.cid-sYomahzExw .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-sYomahzExw .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYomahzExw .top_menu {
    min-height: 110px !important;
  }
}
.cid-sYomahzExw .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sYomahzExw .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-sYomahzExw .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ff0000;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-sYomahzExw .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-sYomahzExw .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-sYomahzExw .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-sYomahzExw .icons-menu .icons-wrapper:hover {
    background: #ff0000;
  }
  .cid-sYomahzExw .icons-menu .icons-wrapper:hover .mbr-iconfont {
    color: #ffffff;
  }
  .cid-sYomahzExw .empty,
  .cid-sYomahzExw .icons-menu {
    min-width: 265px;
  }
  .cid-sYomahzExw .navbar-logo {
    margin: 0;
  }
  .cid-sYomahzExw .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-sYomahzExw .btn {
    white-space: nowrap;
  }
  .cid-sYomahzExw .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-sYomahzExw .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-sYomahzExw .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-sYomahzExw .dropdown-toggle::after,
  .cid-sYomahzExw .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-sYomahzExw .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-sYomahzExw .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sYomahzExw .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-sYomahzExw .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sYomahzExw .dropdown-menu .dropdown-item:hover {
  color: #ffffff !important;
  background-color: #f8f8f8;
}
.cid-sYomahzExw .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-sYomahzExw .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-sYomahzExw .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-sYomahzExw .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-sYomahzExw .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-sYomahzExw .nav-item:focus,
.cid-sYomahzExw .nav-link:focus {
  outline: none;
}
.cid-sYomahzExw .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-sYomahzExw .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-sYomahzExw .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sYomahzExw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYomahzExw .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-sYomahzExw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sYomahzExw ul.navbar-nav li {
  margin: auto;
}
.cid-sYomahzExw .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #1a191d;
}
.cid-sYomahzExw .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #1a191d !important;
}
.cid-sYomahzExw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sYomahzExw .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-sYomahzExw .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-sYomahzExw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYomahzExw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYomahzExw .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-sYomahzExw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-sYomahzExw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYomahzExw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYomahzExw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYomahzExw .navbar .icons-menu,
  .cid-sYomahzExw .navbar .empty {
    display: none;
  }
  .cid-sYomahzExw .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-sYomahzExw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYomahzExw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYomahzExw .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-sYomahzExw .navbar .container-fluid,
  .cid-sYomahzExw .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-sYomahzExw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYomahzExw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYomahzExw .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-sYomahzExw .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-sYomahzExw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-sYomahzExw .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sYomahzExw .navbar.navbar-short {
  background: #1a191d !important;
  min-height: 90px;
}
.cid-sYomahzExw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYomahzExw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYomahzExw .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYomahzExw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYomahzExw .dropdown-item.active,
.cid-sYomahzExw .dropdown-item:active {
  background-color: transparent;
}
.cid-sYomahzExw .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYomahzExw .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-sYomahzExw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a191d;
}
.cid-sYomahzExw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-sYomahzExw .navbar-buttons {
  text-align: center;
}
.cid-sYomahzExw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sYomahzExw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYomahzExw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYomahzExw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYomahzExw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYomahzExw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYomahzExw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYomahzExw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYomahzExw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYomahzExw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYomahzExw .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-sYomahzExw a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sYomahzExw a.nav-link:hover {
  color: #ee0000 !important;
}
.is-builder .cid-sYomahzExw .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYomahzExw .navbar {
    height: 77px;
  }
  .cid-sYomahzExw .navbar.opened {
    height: auto;
  }
  .cid-sYomahzExw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5VSjfmaEB {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-t5VSjfmaEB .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-t5VSjfmaEB .head_wrap:hover .mbr-section-title a {
  color: #ee0000 !important;
}
.cid-t5VSjfmaEB .mbr-section-title,
.cid-t5VSjfmaEB .wrap {
  color: #ff0000;
}
.cid-t5VSjfmaEB .mbr-text,
.cid-t5VSjfmaEB .mbr-section-btn {
  color: #ffffff;
}
.cid-sYuuYTQtp9 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-sYuuYTQtp9 .footer_caption a:hover {
  color: #ee0000 !important;
}
.cid-sYuuYTQtp9 .brand_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.cid-sYuuYTQtp9 .footer_logo {
  width: auto;
  object-fit: cover;
  margin-bottom: 15px;
}
.cid-sYuuYTQtp9 .footer_title {
  margin-bottom: 15px;
  opacity: .8;
}
.cid-sYuuYTQtp9 .footer_items {
  margin-bottom: .25rem;
  font-weight: 500;
}
.cid-sYuuYTQtp9 .footer_items a:hover {
  color: #ee0000 !important;
}
.cid-sYuuYTQtp9 .privacy {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sYuuYTQtp9 .privacy {
    text-align: left;
  }
}
.cid-sYuuYTQtp9 .line {
  position: relative;
  margin: 90px 0 25px;
  height: 1px;
}
.cid-sYuuYTQtp9 .line:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #ff0000;
  left: -32px;
  width: calc(100% + 64px);
}
@media (max-width: 767px) {
  .cid-sYuuYTQtp9 .divider {
    margin: 20px 0;
  }
  .cid-sYuuYTQtp9 .footer_wrap {
    text-align: center;
    margin-bottom: 25px;
  }
  .cid-sYuuYTQtp9 .footer_wrap img {
    margin: auto;
  }
  .cid-sYuuYTQtp9 .privacy {
    text-align: center;
  }
}
