body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'Anton', sans-serif;
  font-size: 12rem;
}
.display-1 > .mbr-iconfont {
  font-size: 19.2rem;
}
.display-2 {
  font-family: 'Righteous', display;
  font-size: 3.8rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 6.08rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.76rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 7.2rem;
  }
}
@media (max-width: 767px) {
  .display-1 {
    font-size: 3rem !important;
  }
}
@media (max-width: 992px) {
  .display-4:not(.nav-link) {
    font-size: 0.66rem;
  }
}
@media (max-width: 992px) {
  .display-5 {
    font-size: 1.76rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 9.6rem;
    font-size: calc( 4.85rem + (12 - 4.85) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (4.85rem + (12 - 4.85) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.98rem + (3.8 - 1.98) * ((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))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #ff2d55 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #808080 !important;
}
.bg-danger {
  background-color: #f55e10 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff2d55 !important;
  border-color: #ff2d55 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #e0002b !important;
  border-color: #e0002b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #e0002b !important;
  border-color: #e0002b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #808080 !important;
  border-color: #808080 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f55e10 !important;
  border-color: #f55e10 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b14107 !important;
  border-color: #b14107 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b14107 !important;
  border-color: #b14107 !important;
}
.btn-white {
  color: #333333 !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: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #c60026;
  color: #c60026;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff2d55;
  border-color: #ff2d55;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff2d55 !important;
  border-color: #ff2d55 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #4d4d4d;
  color: #4d4d4d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #993806;
  color: #993806;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #f55e10;
  border-color: #f55e10;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f55e10 !important;
  border-color: #f55e10 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff2d55 !important;
}
.text-secondary {
  color: #149dcc !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #808080 !important;
}
.text-danger {
  color: #f55e10 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ff93a8 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #57c8ef !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fbf7ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b3b3b3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #f9a072 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #808080;
}
.alert-danger {
  background-color: #f55e10;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff2d55;
  border-color: #ff2d55;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff2d55;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff9fa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c0c0c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fde2d4;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff2d55;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff2d55;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff2d55;
  border-bottom-color: #ff2d55;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ff2d55 !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: #149dcc !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='%23ff2d55' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-rZkRGos0NZ .dropdown-menu {
  padding: 12px 0;
}
.cid-rZkRGos0NZ .dropdown-item:hover,
.cid-rZkRGos0NZ .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-rZkRGos0NZ .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-rZkRGos0NZ .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-rZkRGos0NZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-rZkRGos0NZ .nav-link {
  position: relative;
}
.cid-rZkRGos0NZ .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-rZkRGos0NZ .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-rZkRGos0NZ .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-rZkRGos0NZ .dropdown-menu,
.cid-rZkRGos0NZ .navbar.opened {
  background: #262626 !important;
}
.cid-rZkRGos0NZ .nav-item:focus,
.cid-rZkRGos0NZ .nav-link:focus {
  outline: none;
}
.cid-rZkRGos0NZ .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-rZkRGos0NZ .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-rZkRGos0NZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rZkRGos0NZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rZkRGos0NZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZkRGos0NZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rZkRGos0NZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZkRGos0NZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rZkRGos0NZ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-rZkRGos0NZ .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-rZkRGos0NZ .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-rZkRGos0NZ .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-rZkRGos0NZ .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-rZkRGos0NZ .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-rZkRGos0NZ .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-rZkRGos0NZ .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-rZkRGos0NZ .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-rZkRGos0NZ .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-rZkRGos0NZ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-rZkRGos0NZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZkRGos0NZ .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-rZkRGos0NZ .navbar.collapsed.opened {
  position: fixed;
}
.cid-rZkRGos0NZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-rZkRGos0NZ .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-rZkRGos0NZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-rZkRGos0NZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZkRGos0NZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rZkRGos0NZ .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: 55%;
}
.cid-rZkRGos0NZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZkRGos0NZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-rZkRGos0NZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-rZkRGos0NZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZkRGos0NZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZkRGos0NZ .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-rZkRGos0NZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZkRGos0NZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rZkRGos0NZ .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: 41%;
  }
  .cid-rZkRGos0NZ .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-rZkRGos0NZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rZkRGos0NZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZkRGos0NZ .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-rZkRGos0NZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-rZkRGos0NZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-rZkRGos0NZ .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-rZkRGos0NZ .navbar.navbar-short .navbar-logo img {
  height: 3.8rem !important;
}
.cid-rZkRGos0NZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZkRGos0NZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rZkRGos0NZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZkRGos0NZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZkRGos0NZ .dropdown-item.active,
.cid-rZkRGos0NZ .dropdown-item:active {
  background-color: transparent;
}
.cid-rZkRGos0NZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rZkRGos0NZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZkRGos0NZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZkRGos0NZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-rZkRGos0NZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZkRGos0NZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rZkRGos0NZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rZkRGos0NZ .navbar-buttons {
  text-align: center;
}
.cid-rZkRGos0NZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rZkRGos0NZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rZkRGos0NZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-rZkRGos0NZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-rZkRGos0NZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-rZkRGos0NZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-rZkRGos0NZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-rZkRGos0NZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-rZkRGos0NZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-rZkRGos0NZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-rZkRGos0NZ .navbar-dropdown {
  position: fixed;
}
.cid-rZkRGos0NZ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rZkRGos0NZ .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-rZkRGos0NZ .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-rZkRGos0NZ .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZkRGos0NZ .navbar {
    height: 77px;
  }
  .cid-rZkRGos0NZ .navbar.opened {
    height: auto;
  }
  .cid-rZkRGos0NZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZkIuclmbU {
  background-image: url("../../../assets/images/mbr-1920x1276.jpg");
}
.cid-rZkIuclmbU h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-rZkIuclmbU span {
  background-image: url("../../../assets/images/background2.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-rZkIuclmbU .mbr-section-title {
  color: #ffffff;
}
.cid-rZkIuclmbU P {
  color: #ffffff;
}
.cid-rZkIuclmbU H2 {
  color: #ffffff;
}
.cid-rZkIuclmbU H3 {
  color: #ffffff;
}
.cid-rZkIuclmbU H4 {
  color: #ffffff;
}
.cid-rZuWyrGMbm {
  padding-top: 180px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZuWyrGMbm h3 {
  position: relative;
}
.cid-rZuWyrGMbm h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rZuWyrGMbm H1 {
  color: #262626;
}
.cid-rZuWyrGMbm H3 {
  color: #f55e10;
}
.cid-rZm8LvDEb2 {
  padding-top: 0px;
  padding-bottom: 135px;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-rZm8LvDEb2 .mbr-overlay {
  background: linear-gradient(90deg, #d3cffb, #d7e8f6);
}
.cid-rZm8LvDEb2 .card-wrap {
  background-color: #f9f295;
  padding: 2rem;
  margin: 0;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (min-width: 992px) {
  .cid-rZm8LvDEb2 .card-wrap {
    width: calc(100% + 10rem);
    margin-left: -10rem;
  }
}
.cid-rZm8LvDEb2 .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
.cid-rZm8LvDEb2 .mbr-section-subtitle,
.cid-rZm8LvDEb2 .mbr-section-btn {
  color: #000000;
}
.cid-rZlZjgCYLm {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-rZlZjgCYLm H1 {
  color: #262626;
  text-align: center;
}
.cid-rZlZjgCYLm .mbr-text,
.cid-rZlZjgCYLm .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-rZlZjgCYLm .img1 {
  box-shadow: 0 10px 55px 5px rgba(41, 185, 234, 0.35);
  border-radius: 10px;
}
.cid-rZlZjgCYLm .relative {
  position: relative;
}
.cid-rZlZjgCYLm .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-rZlZjgCYLm .card-img2 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-rZlZjgCYLm .card-img2 .img2 {
  width: 120%;
  left: -20%;
}
.cid-rZlZjgCYLm .card-img1 {
  display: inline-block;
  width: 50%;
}
.cid-rZlZjgCYLm .card-img1 .img1 {
  width: 180%;
}
.cid-rZlZjgCYLm .img2 {
  box-shadow: 0 10px 55px 5px rgba(41, 185, 234, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-rZlZjgCYLm H3 {
  text-align: center;
  color: #f55e10;
}
.cid-rZmmIiFCk8 {
  background-image: url("../../../assets/images/mbr-1920x1139.jpg");
}
.cid-rZmmIiFCk8 .container-fluid {
  max-width: 1700px;
}
.cid-rZmmIiFCk8 h1 {
  line-height: 1;
}
.cid-rZmmIiFCk8 H1 {
  color: #ffffff;
}
.cid-rJ1R49G0ze {
  padding-top: 165px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJ1R49G0ze h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rJ1R49G0ze h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rJ1R49G0ze .box {
  background-image: url("../../../assets/images/mbr-2-1920x1279.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rJ1R49G0ze .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-rJ1R49G0ze .icon-wrap:hover {
  transform: scale(1.04);
}
.cid-rJ1R49G0ze .icon-wrap span {
  padding-left: 8px;
}
.cid-rJ1R49G0ze .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  opacity: 0.6;
  transition: all 0.25s;
  color: #ff2d55 !important;
}
.cid-rJ1R49G0ze .mbr-media span:hover {
  opacity: 1;
  color: #f9f295 !important;
}
.cid-rJ1R49G0ze .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-rJ1R49G0ze .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rJ1R49G0ze .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rJ1R49G0ze .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rJ1R49G0ze a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rJ1R49G0ze a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-rJ1R49G0ze .box {
    height: 250px;
  }
}
.cid-rJ1R49G0ze .mbr-section-subtitle,
.cid-rJ1R49G0ze .title-align {
  color: #f55e10;
}
.cid-s1Ng7gDGrC {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s1Ng7gDGrC h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-s1Ng7gDGrC h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-s1Ng7gDGrC .signature {
  filter: invert(0.8);
}
.cid-s1Ng7gDGrC .mbr-section-subtitle,
.cid-s1Ng7gDGrC .title-align {
  color: #f55e10;
}
.cid-rJ1R6SihXk {
  padding-top: 180px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rJ1R6SihXk .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.5;
}
.cid-rJ1R6SihXk .container {
  max-width: 1400px;
  padding: 0 3rem;
}
.cid-rJ1R6SihXk textarea {
  min-height: 150px;
}
.cid-rJ1R6SihXk .row2 {
  justify-content: space-between;
  border: 2px solid #000000;
  padding: 3rem;
}
.cid-rJ1R6SihXk h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rJ1R6SihXk h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rJ1R6SihXk form .btn {
  border-radius: 30px;
  margin: 0.18rem;
}
.cid-rJ1R6SihXk .form-control,
.cid-rJ1R6SihXk .field-input {
  padding: 1rem;
  background-color: transparent;
  border: 2px solid #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rJ1R6SihXk .form-control::-webkit-input-placeholder,
.cid-rJ1R6SihXk .field-input::-webkit-input-placeholder,
.cid-rJ1R6SihXk .form-control::-webkit-input-placeholder,
.cid-rJ1R6SihXk .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-rJ1R6SihXk .form-control:-moz-placeholder,
.cid-rJ1R6SihXk .field-input:-moz-placeholder,
.cid-rJ1R6SihXk .form-control:-moz-placeholder,
.cid-rJ1R6SihXk .field-input:-moz-placeholder {
  color: #000000;
}
.cid-rJ1R6SihXk .form-control:hover,
.cid-rJ1R6SihXk .field-input:hover,
.cid-rJ1R6SihXk .form-control:focus,
.cid-rJ1R6SihXk .field-input:focus {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rJ1R6SihXk .form-control:hover::-webkit-input-placeholder,
.cid-rJ1R6SihXk .field-input:hover::-webkit-input-placeholder,
.cid-rJ1R6SihXk .form-control:focus::-webkit-input-placeholder,
.cid-rJ1R6SihXk .field-input:focus::-webkit-input-placeholder,
.cid-rJ1R6SihXk .form-control:hover::-webkit-input-placeholder,
.cid-rJ1R6SihXk .field-input:hover::-webkit-input-placeholder,
.cid-rJ1R6SihXk .form-control:focus::-webkit-input-placeholder,
.cid-rJ1R6SihXk .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-rJ1R6SihXk .form-control:hover:-moz-placeholder,
.cid-rJ1R6SihXk .field-input:hover:-moz-placeholder,
.cid-rJ1R6SihXk .form-control:focus:-moz-placeholder,
.cid-rJ1R6SihXk .field-input:focus:-moz-placeholder,
.cid-rJ1R6SihXk .form-control:hover:-moz-placeholder,
.cid-rJ1R6SihXk .field-input:hover:-moz-placeholder,
.cid-rJ1R6SihXk .form-control:focus:-moz-placeholder,
.cid-rJ1R6SihXk .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-rJ1R6SihXk .jq-number__spin:hover,
.cid-rJ1R6SihXk .jq-number__spin:focus {
  background-color: transparent;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-rJ1R6SihXk .jq-number__spin {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rJ1R6SihXk input::-webkit-clear-button {
  display: none;
}
.cid-rJ1R6SihXk input::-webkit-inner-spin-button {
  display: none;
}
.cid-rJ1R6SihXk input::-webkit-outer-spin-button {
  display: none;
}
.cid-rJ1R6SihXk input::-webkit-calendar-picker-indicator {
  display: none;
}
@media (max-width: 767px) {
  .cid-rJ1R6SihXk .container {
    padding: 0 2rem;
  }
  .cid-rJ1R6SihXk .row2 {
    padding: 1rem 0;
  }
}
.cid-rJ1R6SihXk H2 {
  color: #000000;
}
.cid-rJ1R6SihXk .mbr-text,
.cid-rJ1R6SihXk .mbr-section-btn {
  color: #000000;
}
.cid-rZmNW2C4nK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rZmNW2C4nK .media-container-row {
  align-items: center;
}
.cid-rZmNW2C4nK .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-rZmNW2C4nK .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-rZmNW2C4nK .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-rZmNW2C4nK .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-rZmNW2C4nK .foot-menu-item {
  transform: 0.2s;
}
.cid-rZmNW2C4nK .foot-menu-item:hover a {
  color: #f55e10 !important;
}
.cid-rZmNW2C4nK .foot-menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 1px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-rZmNW2C4nK .foot-menu-item:hover::before {
  width: 60px;
  background-color: #f55e10;
}
.cid-rZmNW2C4nK .mbr-text {
  color: #747474;
}
@media (max-width: 992px) {
  .cid-rZmNW2C4nK .foot-menu {
    justify-content: center;
  }
  .cid-rZmNW2C4nK .mbr-text {
    text-align: center;
  }
  .cid-rZmNW2C4nK .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-rZmNW2C4nK .foot-menu {
    justify-content: flex-end;
  }
}
.cid-rZmNW2C4nK .link:hover {
  color: #ffffff;
}
.cid-rZmNW2C4nK .media-container-row .mbr-text {
  text-align: center;
  color: #c1c1c1;
}
.cid-rZl20woWYG.popup-builder {
  background-color: #ffffff;
}
.cid-rZl20woWYG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rZl20woWYG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rZl20woWYG .modal-content,
.cid-rZl20woWYG .modal-dialog {
  height: auto;
}
.cid-rZl20woWYG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rZl20woWYG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rZl20woWYG .form-wrapper .mbr-form .form-group,
  .cid-rZl20woWYG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rZl20woWYG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rZl20woWYG .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-rZl20woWYG .mbr-text {
  text-align: center;
}
.cid-rZl20woWYG .pt-0 {
  padding-top: 0 !important;
}
.cid-rZl20woWYG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rZl20woWYG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rZl20woWYG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rZl20woWYG .modal-open {
  overflow: hidden;
}
.cid-rZl20woWYG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rZl20woWYG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rZl20woWYG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rZl20woWYG .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-rZl20woWYG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rZl20woWYG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rZl20woWYG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rZl20woWYG .modal-content {
  background: #ffffff;
  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-rZl20woWYG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rZl20woWYG .modal-backdrop.fade {
  opacity: 0;
}
.cid-rZl20woWYG .modal-backdrop.show {
  opacity: .5;
}
.cid-rZl20woWYG .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rZl20woWYG .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rZl20woWYG .modal-header .close:hover {
  opacity: 1;
}
.cid-rZl20woWYG .modal-header .close:focus {
  outline: none;
}
.cid-rZl20woWYG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rZl20woWYG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rZl20woWYG .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rZl20woWYG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rZl20woWYG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rZl20woWYG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rZl20woWYG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rZl20woWYG .modal-sm {
    max-width: 300px;
  }
  .cid-rZl20woWYG .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rZl20woWYG .modal-lg,
  .cid-rZl20woWYG .modal-xl {
    max-width: 800px;
  }
  .cid-rZl20woWYG .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rZl20woWYG .modal-xl {
    max-width: 1140px;
  }
  .cid-rZl20woWYG .container {
    max-width: 1140px;
  }
}
.cid-rZl20woWYG .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rZl20woWYG .container {
    max-width: 720px;
  }
}
.cid-rZl20woWYG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rZl20woWYG .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-rZl20woWYG .form-group {
  margin-bottom: 1rem;
}
.cid-rZl20woWYG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rZl20woWYG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rZl20woWYG .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%;
}
