@import url(https://fonts.googleapis.com/css?family=DM+Sans:400,400i,500,500i,700,700i&display=swap);





body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.25rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.2rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.125rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.4rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.6rem;
    font-size: calc( 1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.7rem;
    font-size: calc( 1.3937499999999998rem + (2.125 - 1.3937499999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.3937499999999998rem + (2.125 - 1.3937499999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #c82700 !important;
}
.bg-success {
  background-color: #00c48c !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #deed93 !important;
}
.bg-danger {
  background-color: #939bb4 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #c82700 !important;
  border-color: #c82700 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #7c1800 !important;
  border-color: #7c1800 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #7c1800 !important;
  border-color: #7c1800 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #00c48c !important;
  border-color: #00c48c !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #007855 !important;
  border-color: #007855 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #007855 !important;
  border-color: #007855 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-success,
.btn-success:active {
  background-color: #00c48c !important;
  border-color: #00c48c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #007855 !important;
  border-color: #007855 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #007855 !important;
  border-color: #007855 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #deed93 !important;
  border-color: #deed93 !important;
  color: #5f6f12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #5f6f12 !important;
  background-color: #cae251 !important;
  border-color: #cae251 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #5f6f12 !important;
  background-color: #cae251 !important;
  border-color: #cae251 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #939bb4 !important;
  border-color: #939bb4 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #677294 !important;
  border-color: #677294 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #677294 !important;
  border-color: #677294 !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: #c82700;
  color: #c82700;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #c82700;
  border-color: #c82700;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c82700 !important;
  border-color: #c82700 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #00c48c;
  color: #00c48c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #00c48c;
  border-color: #00c48c;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #00c48c !important;
  border-color: #00c48c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #00c48c;
  color: #00c48c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #00c48c;
  border-color: #00c48c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #00c48c !important;
  border-color: #00c48c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #deed93;
  color: #deed93;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5f6f12;
  background-color: #deed93;
  border-color: #deed93;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5f6f12 !important;
  background-color: #deed93 !important;
  border-color: #deed93 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #939bb4;
  color: #939bb4;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #939bb4;
  border-color: #939bb4;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #939bb4 !important;
  border-color: #939bb4 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.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: #c82700 !important;
}
.text-secondary {
  color: #00c48c !important;
}
.text-success {
  color: #00c48c !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #deed93 !important;
}
.text-danger {
  color: #939bb4 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #621300 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #005e43 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #005e43 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #c3de3c !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #5c6685 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #deed93;
}
.alert-danger {
  background-color: #939bb4;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c82700;
  border-color: #c82700;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #c82700;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ff6c48;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #44ffca;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dee1e8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.28rem;
  font-weight: 400;
}
blockquote {
  border-color: #c82700;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #00c48c !important;
  border-color: #00c48c !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #00c48c !important;
  -webkit-box-shadow: 0 6px 16px 0 #00c48c !important;
  background-color: #00c48c !important;
  border-color: #00c48c !important;
}
.btn-success {
  color: white !important;
  margin: 1rem 0.5rem !important;
}
.btn-success:active {
  color: white !important;
}
.btn-success:hover,
.btn-success:focus {
  color: white !important;
  box-shadow: 0 6px 15px 0 #00c48c !important;
  -webkit-box-shadow: 0 6px 16px 0 #00c48c !important;
  background-color: #00c48c !important;
  border-color: #00c48c !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c82700;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  background-color: #f5f6ff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #c82700;
  border-bottom-color: #c82700;
}
.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: #c82700 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #00c48c !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%;
}
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='%23c82700' %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;
}
.cid-rZkKgsIvwn .container {
  max-width: 1110px;
}
.cid-rZkKgsIvwn .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-rZkKgsIvwn .collapsed {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.cid-rZkKgsIvwn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZkKgsIvwn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-rZkKgsIvwn .navbar-brand {
  min-width: 15%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
  word-break: break-word;
  z-index: 1;
  font-size: 1.5rem !important;
}
.cid-rZkKgsIvwn .navbar-brand span {
  margin-right: 0 !important;
}
.cid-rZkKgsIvwn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZkKgsIvwn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZkKgsIvwn .navbar-brand .navbar-logo a span {
  color: #00c48c;
}
.cid-rZkKgsIvwn .nav-item:focus,
.cid-rZkKgsIvwn .nav-link:focus {
  outline: none;
}
.cid-rZkKgsIvwn .text-white:hover,
.cid-rZkKgsIvwn .text-white:active,
.cid-rZkKgsIvwn .text-white:focus {
  color: white !important;
}
.cid-rZkKgsIvwn .dropdown-menu {
  background-color: #c82700 !important;
}
.cid-rZkKgsIvwn .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 55px 5px rgba(251, 49, 0, 0.35);
  box-shadow: 0 10px 55px 5px rgba(251, 49, 0, 0.35);
  display: block;
}
.cid-rZkKgsIvwn .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (min-width: 992px) {
  .cid-rZkKgsIvwn .nav-item .nav-link {
    position: relative;
  }
}
.cid-rZkKgsIvwn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rZkKgsIvwn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rZkKgsIvwn .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-rZkKgsIvwn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZkKgsIvwn .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;
  transition: all 0.25s ease-in-out;
}
.cid-rZkKgsIvwn .navbar {
  min-height: 77px;
  margin-top: 12.5px;
  margin-bottom: 2.5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #c82700;
}
.cid-rZkKgsIvwn .navbar .container.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #c82700 !important;
}
.cid-rZkKgsIvwn .navbar .container .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-rZkKgsIvwn .navbar .container .navbar-collapse {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZkKgsIvwn .navbar .container.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rZkKgsIvwn .navbar .container.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #c82700;
}
@media (max-width: 991px) {
  .cid-rZkKgsIvwn .navbar .container .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZkKgsIvwn .navbar .container.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu {
    background: transparent !important;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rZkKgsIvwn .navbar .container ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZkKgsIvwn .navbar .container ul.navbar-nav li a {
    padding: 10px !important;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rZkKgsIvwn .navbar .container .navbar-brand {
    -ms-flex-negative: initial;
    flex-shrink: initial;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    word-break: break-word;
    font-size: 1.5rem !important;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
  }
  .cid-rZkKgsIvwn .navbar .container .navbar-buttons .btn {
    margin: 10px 0 0 0 !important;
  }
  .cid-rZkKgsIvwn .navbar .container .navbar-toggler {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .cid-rZkKgsIvwn .navbar .container .icons-menu {
    padding-left: 0;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    color: #c82700;
  }
}
.cid-rZkKgsIvwn .navbar .container.navbar-short {
  background: #c82700 !important;
  min-height: 60px;
}
.cid-rZkKgsIvwn .navbar .container.navbar-short .navbar-logo {
  font-size: 1.5rem !important;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-rZkKgsIvwn .navbar .container.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 1.5rem !important;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-rZkKgsIvwn .navbar .container.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZkKgsIvwn .dropdown-item.active,
.cid-rZkKgsIvwn .dropdown-item:active {
  background-color: transparent;
}
.cid-rZkKgsIvwn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZkKgsIvwn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZkKgsIvwn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c82700;
}
.cid-rZkKgsIvwn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZkKgsIvwn .navbar-expand-lg .btn {
  margin-top: 10px !important;
}
.cid-rZkKgsIvwn ul.navbar-nav {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rZkKgsIvwn .navbar-buttons {
  text-align: center;
}
.cid-rZkKgsIvwn .navbar-buttons .btn {
  padding: 12px 33px !important;
  margin: 0 0 0 15px !important;
}
.cid-rZkKgsIvwn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f2f6ff;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-rZkKgsIvwn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-rZkKgsIvwn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-rZkKgsIvwn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-rZkKgsIvwn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-rZkKgsIvwn .nav-link {
  font-weight: 600 !important;
}
.cid-rZkKgsIvwn a.nav-link {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cid-rZkKgsIvwn .mbr-iconfont {
  padding-right: 0.5rem;
}
.cid-rZkKgsIvwn .icons-menu {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  color: #c82700;
}
.cid-rZkKgsIvwn .icons-menu span {
  font-size: 26px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZkKgsIvwn .navbar {
    height: 77px;
  }
  .cid-rZkKgsIvwn .navbar.opened {
    height: auto;
  }
}
.cid-rZkKgsIvwn .mbr-semibold {
  font-weight: 600 !important;
}
.cid-rZkKgsIvwn .firstlink {
  color: #00c48c !important;
}
.cid-rZkKgsIvwn .firstlink:hover {
  color: #00c48c !important;
}
.cid-rZkZJXTJAN {
  padding-top: 240px;
  padding-bottom: 240px;
  background-image: url("../../../assets/images/4e4a0156-3-1270x846.jpeg");
}
.cid-rZkZJXTJAN .mbr-text,
.cid-rZkZJXTJAN .typed-text,
.cid-rZkZJXTJAN .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-rZkZJXTJAN .btn {
  margin-left: 4px !important;
}
.cid-rZkZJXTJAN .animated-element {
  color: #ffbc00;
}
.cid-rZkZJXTJAN .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-rZkZJXTJAN .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-sdhLDn3F1x {
  padding-top: 60px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-sdhLDn3F1x .plan-body .btn-bgr {
  z-index: 0;
}
.cid-sdhLDn3F1x .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-sdhLDn3F1x .price-term {
  display: block;
  line-height: 1;
  margin-top: 0.45rem;
}
.cid-sdhLDn3F1x .plan-title {
  background-color: #c80000;
  color: #ffffff;
}
.cid-sdhLDn3F1x .plan-header {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.cid-sdhLDn3F1x .plan-body {
  border-radius: 0 0 8px 8px;
}
.cid-sdhLDn3F1x .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-sdhLDn3F1x .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: transparent;
}
.cid-sdhLDn3F1x .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-sdhLDn3F1x .plan-header,
.cid-sdhLDn3F1x .plan-body {
  background-color: #f6f6f6;
  border-bottom: solid 2px rgba(0, 0, 0, 0.07);
}
.cid-sdhLDn3F1x .price-figure {
  font-weight: 600;
  color: #232323;
}
.cid-sdhLDn3F1x .price-value {
  font-weight: 700;
  vertical-align: top;
  line-height: 1;
  margin-right: 0.25rem;
}
@media (max-width: 550px) {
  .cid-sdhLDn3F1x .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sdhLDn3F1x .list-group,
.cid-sdhLDn3F1x .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sdhLDn3F1x .plan-price {
  color: #465052;
}
.cid-sdhLDn3F1x .plan-price .price-figure {
  color: #c80000;
}
.cid-sdhLDn3F1x .plan-title H3 {
  text-align: center;
}
.cid-sdhLDn3F1x .plan-title H5 {
  text-align: center;
}
.cid-sdhQVxu24R {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sdhQVxu24R .card {
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdhQVxu24R .card .card-img {
  width: 20%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sdhQVxu24R .card .card-box {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sdhQVxu24R .card .card-img span {
  color: #767676;
  font-size: 60px;
}
.cid-sdhQVxu24R .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sdhQVxu24R .card {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sdhQVxu24R .card .card-img {
    width: 100%;
    padding-bottom: 1.5rem;
  }
  .cid-sdhQVxu24R .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-sdhQVxu24R .card .card-box .card-title,
  .cid-sdhQVxu24R .card .card-box .mbr-text,
  .cid-sdhQVxu24R .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-sdhQVxu24R .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-sdhQVxu24R .card .card-img {
    text-align: right !important;
  }
}
.cid-sdhQVxu24R .mbr-text,
.cid-sdhQVxu24R .link {
  color: #000000;
}
.cid-rZkTHJPvcl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rZkTHJPvcl .row {
  margin: 0;
}
.cid-rZkTHJPvcl .container-fluid {
  padding: 0;
}
.cid-rZkTHJPvcl p {
  line-height: 1.6;
}
.cid-rZkTHJPvcl .img {
  padding: 0;
  width: 100%;
  overflow: hidden;
  max-height: 940px;
}
.cid-rZkTHJPvcl .img .big-img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-rZkTHJPvcl .rev {
  margin: 0;
  color: #000000;
  text-align: left;
}
.cid-rZkTHJPvcl .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 10rem;
  padding-right: 10rem;
}
.cid-rZkTHJPvcl .mbr-section-title {
  text-align: left;
}
.cid-rZkTHJPvcl .card {
  margin-bottom: 1.5rem;
}
.cid-rZkTHJPvcl .card-wrapper {
  width: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
  display: flex;
  align-items: stretch;
}
.cid-rZkTHJPvcl .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-rZkTHJPvcl .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #000000;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}
.cid-rZkTHJPvcl .mbr-iconfont {
  font-size: 1rem;
}
.cid-rZkTHJPvcl .ico-line-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-rZkTHJPvcl .ico-line {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rZkTHJPvcl .card-title {
  color: #4249cc;
  text-align: left;
}
.cid-rZkTHJPvcl .card-img {
  width: auto;
  border-radius: 0;
  display: flex;
  align-items: center;
}
.cid-rZkTHJPvcl .card-img img {
  width: 155px;
  max-height: 155px;
  height: 100%;
  object-fit: cover;
}
.cid-rZkTHJPvcl .card-box {
  padding: 1rem 1rem;
  width: 100%;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rZkTHJPvcl .mbr-section-title,
.cid-rZkTHJPvcl .line-wrap {
  text-align: left;
  color: #000000;
}
.cid-rZkTHJPvcl .card-box,
.cid-rZkTHJPvcl .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-rZkTHJPvcl .text,
.cid-rZkTHJPvcl .mbr-section-btn {
  text-align: left;
  color: #000000;
}
@media (max-width: 1400px) {
  .cid-rZkTHJPvcl .content {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media (max-width: 1200px) {
  .cid-rZkTHJPvcl .content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-rZkTHJPvcl .big-img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-rZkTHJPvcl .content {
    padding: 3rem;
  }
  .cid-rZkTHJPvcl .card-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rZkTHJPvcl .card-img {
    width: 100%;
  }
}
.cid-rZkQbFL0W8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rZkQbFL0W8 h4 {
  margin-bottom: 0;
  text-align: left;
}
.cid-rZkQbFL0W8 .card-box {
  padding-top: 3rem;
}
.cid-rZkQbFL0W8 .mbr-link-btn {
  width: 100%;
  text-align: center;
}
.cid-rZkQbFL0W8 .btn-md {
  padding: 1rem;
}
.cid-rZkQbFL0W8 .btn-primary-outline,
.cid-rZkQbFL0W8 .btn-secondary-outline,
.cid-rZkQbFL0W8 .btn-info-outline,
.cid-rZkQbFL0W8 .btn-success-outline,
.cid-rZkQbFL0W8 .btn-warning-outline,
.cid-rZkQbFL0W8 .btn-danger-outline,
.cid-rZkQbFL0W8 .btn-black-outline,
.cid-rZkQbFL0W8 .btn-white-outline {
  border: none;
  width: 100%;
  justify-content: space-between;
  padding: 0;
  margin: 0 0.25rem!important;
  box-shadow: none!important;
}
.cid-rZkQbFL0W8 .btn-primary-outline span,
.cid-rZkQbFL0W8 .btn-secondary-outline span,
.cid-rZkQbFL0W8 .btn-info-outline span,
.cid-rZkQbFL0W8 .btn-success-outline span,
.cid-rZkQbFL0W8 .btn-warning-outline span,
.cid-rZkQbFL0W8 .btn-danger-outline span,
.cid-rZkQbFL0W8 .btn-black-outline span,
.cid-rZkQbFL0W8 .btn-white-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-rZkQbFL0W8 .btn-primary-outline:hover span,
.cid-rZkQbFL0W8 .btn-secondary-outline:hover span,
.cid-rZkQbFL0W8 .btn-info-outline:hover span,
.cid-rZkQbFL0W8 .btn-success-outline:hover span,
.cid-rZkQbFL0W8 .btn-warning-outline:hover span,
.cid-rZkQbFL0W8 .btn-danger-outline:hover span,
.cid-rZkQbFL0W8 .btn-black-outline:hover span,
.cid-rZkQbFL0W8 .btn-white-outline:hover span {
  padding-left: 10px;
}
.cid-rZkQbFL0W8 .btn-primary-outline:hover,
.cid-rZkQbFL0W8 .btn-secondary-outline:hover,
.cid-rZkQbFL0W8 .btn-info-outline:hover,
.cid-rZkQbFL0W8 .btn-success-outline:hover,
.cid-rZkQbFL0W8 .btn-warning-outline:hover,
.cid-rZkQbFL0W8 .btn-danger-outline:hover,
.cid-rZkQbFL0W8 .btn-black-outline:hover,
.cid-rZkQbFL0W8 .btn-white-outline:hover {
  background-color: transparent!important;
  color: #c82700 !important;
  box-shadow: none!important;
}
.cid-rZkQbFL0W8 .btn-primary-outline:active,
.cid-rZkQbFL0W8 .btn-secondary-outline:active,
.cid-rZkQbFL0W8 .btn-info-outline:active,
.cid-rZkQbFL0W8 .btn-success-outline:active,
.cid-rZkQbFL0W8 .btn-warning-outline:active,
.cid-rZkQbFL0W8 .btn-danger-outline:active,
.cid-rZkQbFL0W8 .btn-black-outline:active,
.cid-rZkQbFL0W8 .btn-white-outline:active,
.cid-rZkQbFL0W8 .btn-primary-outline:focus,
.cid-rZkQbFL0W8 .btn-secondary-outline:focus,
.cid-rZkQbFL0W8 .btn-info-outline:focus,
.cid-rZkQbFL0W8 .btn-success-outline:focus,
.cid-rZkQbFL0W8 .btn-warning-outline:focus,
.cid-rZkQbFL0W8 .btn-danger-outline:focus,
.cid-rZkQbFL0W8 .btn-black-outline:focus,
.cid-rZkQbFL0W8 .btn-white-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-rZkQbFL0W8 .btn-primary-outline .mbr-iconfont,
.cid-rZkQbFL0W8 .btn-secondary-outline .mbr-iconfont,
.cid-rZkQbFL0W8 .btn-info-outline .mbr-iconfont,
.cid-rZkQbFL0W8 .btn-success-outline .mbr-iconfont,
.cid-rZkQbFL0W8 .btn-warning-outline .mbr-iconfont,
.cid-rZkQbFL0W8 .btn-danger-outline .mbr-iconfont,
.cid-rZkQbFL0W8 .btn-black-outline .mbr-iconfont,
.cid-rZkQbFL0W8 .btn-white-outline .mbr-iconfont {
  margin-right: 0!important;
  padding-left: 0.4rem;
}
.cid-rZkQbFL0W8 .card-wrapper {
  overflow: hidden;
  height: 100%;
  position: relative;
  background-color: #efefef;
  padding: 3rem 1.2rem 1.2rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s;
}
.cid-rZkQbFL0W8 .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(0, 247, 176, 0.35);
  transform: translateY(-1.5rem);
}
.cid-rZkQbFL0W8 .link-wrap {
  position: relative;
  padding-top: 14px;
}
.cid-rZkQbFL0W8 .link-wrap:hover {
  color: #c82700 !important;
}
.cid-rZkQbFL0W8 .link-wrap:hover:hover .link-ico {
  color: #c82700 !important;
}
.cid-rZkQbFL0W8 .line {
  width: 150%;
  height: 1px;
  background: lightgray;
  position: absolute;
  top: 0;
  left: -25%;
}
.cid-rZkQbFL0W8 img {
  border-radius: 100%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.cid-rZkQbFL0W8 .card-title {
  color: #c82700;
  text-align: left;
}
.cid-rZkQbFL0W8 .row {
  justify-content: center;
}
.cid-rZkQbFL0W8 .main-title {
  text-align: center;
  color: #232323;
}
.cid-rZkQbFL0W8 P {
  text-align: center;
}
.cid-rZkQbFL0W8 .mbr-text,
.cid-rZkQbFL0W8 .link {
  text-align: left;
  color: #000000;
}
@media (max-width: 576px) {
  .cid-rZkQbFL0W8 .card-wrapper:hover {
    transform: none;
    box-shadow: none;
  }
}
.cid-sd5di4nc3g {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sd5di4nc3g .card-box {
  background-color: #ffffff;
  padding: 4rem 2rem;
}
.cid-sd5di4nc3g h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sd5di4nc3g p {
  color: #767676;
  text-align: left;
}
.cid-sd5di4nc3g .card-wrapper {
  border: 1px solid #efefef;
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sd5di4nc3g .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sd5di4nc3g .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sd5di4nc3g h3 {
  position: relative;
  margin-top: 2rem;
  letter-spacing: 2px;
}
.cid-sd5di4nc3g h3:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-sd5di4nc3g h3:hover:after {
  margin-left: -15px;
}
.cid-sd5di4nc3g P {
  text-align: left;
  color: #000000;
}
.cid-sd5di4nc3g .card-title {
  text-align: left;
}
.cid-sd5di4nc3g H3 {
  text-align: center;
}
.cid-sd5di4nc3g .number {
  text-align: center;
}
.cid-sd5di4nc3g H1 {
  text-align: center;
}
.cid-rYFw3yvkcb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYFw3yvkcb .mbr-text,
.cid-rYFw3yvkcb .mbr-section-subtitle {
  color: #767676;
}
.cid-rYFw3yvkcb .card-title {
  color: #66458e;
}
.cid-rYFw3yvkcb .card .card-img span {
  color: #c82700;
  font-size: 60px;
  background: linear-gradient(45deg, #c82700, #c82700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rYFw3yvkcb .mbr-section-subtitle,
  .cid-rYFw3yvkcb .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and {
  .cid-rYFw3yvkcb .card .card-img span {
    background: none;
  }
}
.cid-rYFw3yvkcb .card-title,
.cid-rYFw3yvkcb .card-img {
  color: #000000;
  text-align: left;
}
.cid-rYFw3yvkcb .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-rYFe8efMW1 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rYFe8efMW1 .mbr-text,
.cid-rYFe8efMW1 .mbr-section-subtitle {
  color: #767676;
}
.cid-rYFe8efMW1 .card-title {
  color: #66458e;
}
.cid-rYFe8efMW1 .card .card-img span {
  color: #c82700;
  font-size: 60px;
  background: linear-gradient(45deg, #c82700, #c82700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rYFe8efMW1 .mbr-section-subtitle,
  .cid-rYFe8efMW1 .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYFe8efMW1 .card .card-img span {
    background: none;
  }
}
.cid-rYFe8efMW1 .card-title,
.cid-rYFe8efMW1 .card-img {
  color: #000000;
  text-align: left;
}
.cid-rYFe8efMW1 .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-rYFAOaCu55 {
  padding-top: 15px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-rYFAOaCu55 p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-rYFAOaCu55 .panel-title {
  border-bottom: 2px solid #c82700;
}
.cid-rYFAOaCu55 .collapsed {
  border: none;
}
.cid-rYFAOaCu55 .panel-body {
  padding-top: 0.5rem;
}
.cid-rYFAOaCu55 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rYFAOaCu55 .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #efefef;
  padding: 0;
}
.cid-rYFAOaCu55 .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rYFAOaCu55 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rYFAOaCu55 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-rYFAOaCu55 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rYFAOaCu55 .panel-text {
  color: #000000;
}
.cid-rYFAOaCu55 H4 {
  color: #c80000;
}
.cid-rYFAOaCu55 H2 {
  text-align: left;
}
.cid-rYFAOaCu55 P {
  color: #000000;
}
.cid-rYXFnFuRqx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rYXFnFuRqx .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-rYXFnFuRqx .card-wrap {
  background-color: #ffffff;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-rYXFnFuRqx .card-wrap:hover h4,
.cid-rYXFnFuRqx .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-rYXFnFuRqx h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-rYXFnFuRqx h3:after {
  content: "";
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-rYXFnFuRqx img {
  width: 100%;
}
.cid-rYXFnFuRqx h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-rYXFnFuRqx h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-rYXFnFuRqx .card-title1,
.cid-rYXFnFuRqx .title-wrap1 {
  color: #ffffff;
}
.cid-rYXFnFuRqx .card-title,
.cid-rYXFnFuRqx .title-wrap {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-rYXFnFuRqx .mdpb {
    padding-bottom: 2rem;
  }
  .cid-rYXFnFuRqx .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-rYXFnFuRqx H3 {
  color: #ffffff;
}
.cid-rYXFnFuRqx .mbr-text,
.cid-rYXFnFuRqx .mbr-section-btn {
  color: #000000;
}
.cid-rYFnRXhHzJ {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rYFnRXhHzJ .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-rYFnRXhHzJ .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-rYFnRXhHzJ .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-rYFnRXhHzJ .card-title,
.cid-rYFnRXhHzJ .card-img {
  color: #000000;
}
.cid-rYFnRXhHzJ .mbr-text,
.cid-rYFnRXhHzJ .mbr-section-btn {
  color: #000000;
}
.cid-rYY8HcT5iL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rYY8HcT5iL h2,
.cid-rYY8HcT5iL h3,
.cid-rYY8HcT5iL h4,
.cid-rYY8HcT5iL p {
  color: #ffffff;
}
.cid-rYY8HcT5iL .mbr-overlay {
  z-index: -1;
}
.cid-rYY8HcT5iL .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rYY8HcT5iL .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #c80000;
  color: #fdece8;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-rYY8HcT5iL .form-control:focus,
.cid-rYY8HcT5iL .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-rYY8HcT5iL .form-group {
  margin-bottom: 1rem;
}
.cid-rYY8HcT5iL input::-webkit-input-placeholder,
.cid-rYY8HcT5iL textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-rYY8HcT5iL input:-moz-placeholder,
.cid-rYY8HcT5iL textarea:-moz-placeholder {
  color: #000000;
}
.cid-rYY8HcT5iL .jq-selectbox li,
.cid-rYY8HcT5iL .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-rYY8HcT5iL .jq-selectbox li:hover,
.cid-rYY8HcT5iL .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-rYY8HcT5iL .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-rYY8HcT5iL .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-rYY8HcT5iL .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-rYY8HcT5iL .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-rYY8HcT5iL .mbr-text {
  color: #767676;
}
.cid-rYY8HcT5iL .form-block {
  padding: 3rem;
  position: relative;
}
.cid-rYY8HcT5iL .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #efefef;
  opacity: 0.5;
  z-index: 0;
}
.cid-rYY8HcT5iL .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-rYY8HcT5iL a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-rYY8HcT5iL .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rYY8HcT5iL .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rYY8HcT5iL textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-rYY8HcT5iL .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-rYY8HcT5iL .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-rYY8HcT5iL .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rYY8HcT5iL h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-rYY8HcT5iL .block-content {
    padding: 0;
  }
  .cid-rYY8HcT5iL .form-block {
    padding: 1rem;
  }
}
.cid-rYY8HcT5iL .mbr-section-title,
.cid-rYY8HcT5iL .mbr-section-btn {
  color: #000000;
}
.cid-rYY8HcT5iL .mbr-section-subtitle {
  color: #000000;
}
.cid-rYY8HcT5iL P {
  color: #000000;
}
.cid-rYY8HcT5iL LABEL {
  color: #000000;
}
.cid-rYY8HcT5iL H4 {
  color: #c80000;
}
.cid-rYFxgHBKf3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rYFxgHBKf3 .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rYFxgHBKf3 .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 70%;
}
.cid-rYFxgHBKf3 .mbr-list {
  margin: 0;
}
.cid-rYFxgHBKf3 .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-rYFxgHBKf3 .first-column {
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-rYFxgHBKf3 .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-rYFxgHBKf3 .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-rYF8xLgRhl.popup-builder {
  background-color: #ffffff;
}
.cid-rYF8xLgRhl.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rYF8xLgRhl.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rYF8xLgRhl .modal-content,
.cid-rYF8xLgRhl .modal-dialog {
  height: auto;
}
.cid-rYF8xLgRhl .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rYF8xLgRhl .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rYF8xLgRhl .form-wrapper .mbr-form .form-group,
  .cid-rYF8xLgRhl .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rYF8xLgRhl .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rYF8xLgRhl .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-rYF8xLgRhl .mbr-text {
  text-align: center;
}
.cid-rYF8xLgRhl .pt-0 {
  padding-top: 0 !important;
}
.cid-rYF8xLgRhl .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rYF8xLgRhl .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rYF8xLgRhl .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rYF8xLgRhl .modal-open {
  overflow: hidden;
}
.cid-rYF8xLgRhl .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rYF8xLgRhl .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rYF8xLgRhl .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rYF8xLgRhl .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-rYF8xLgRhl .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rYF8xLgRhl .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rYF8xLgRhl .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rYF8xLgRhl .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-rYF8xLgRhl .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rYF8xLgRhl .modal-backdrop.fade {
  opacity: 0;
}
.cid-rYF8xLgRhl .modal-backdrop.show {
  opacity: .5;
}
.cid-rYF8xLgRhl .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-rYF8xLgRhl .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rYF8xLgRhl .modal-header .close:hover {
  opacity: 1;
}
.cid-rYF8xLgRhl .modal-header .close:focus {
  outline: none;
}
.cid-rYF8xLgRhl .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-rYF8xLgRhl .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rYF8xLgRhl .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-rYF8xLgRhl .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rYF8xLgRhl .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rYF8xLgRhl .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rYF8xLgRhl .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rYF8xLgRhl .modal-sm {
    max-width: 300px;
  }
  .cid-rYF8xLgRhl .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rYF8xLgRhl .modal-lg,
  .cid-rYF8xLgRhl .modal-xl {
    max-width: 800px;
  }
  .cid-rYF8xLgRhl .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rYF8xLgRhl .modal-xl {
    max-width: 1140px;
  }
  .cid-rYF8xLgRhl .container {
    max-width: 1140px;
  }
}
.cid-rYF8xLgRhl .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rYF8xLgRhl .container {
    max-width: 720px;
  }
}
.cid-rYF8xLgRhl .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rYF8xLgRhl .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-rYF8xLgRhl .form-group {
  margin-bottom: 1rem;
}
.cid-rYF8xLgRhl .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rYF8xLgRhl .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rYF8xLgRhl .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-rYpQso9Ucg {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rYpQso9Ucg .mbr-section-title,
.cid-rYpQso9Ucg .mbr-section-subtitle {
  color: #000000;
}
.cid-rYpQso9Ucg .mbr-section-text {
  color: #232323;
}
.cid-rYpQso9Ucg .mbr-text,
.cid-rYpQso9Ucg .typed-text,
.cid-rYpQso9Ucg .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-rYpQso9Ucg .btn {
  margin-left: 4px !important;
}
.cid-rYpQso9Ucg .animated-element {
  color: #c82700;
}
.cid-rYpQso9Ucg .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #c82700;
}
.cid-rYpQso9Ucg .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-rYpQso9Ucg .typed-text,
  .cid-rYpQso9Ucg .mbr-section-subtitle,
  .cid-rYpQso9Ucg .mbr-section-text,
  .cid-rYpQso9Ucg .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-rYpTZcm7Hv {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYpTZcm7Hv .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #232323;
  padding: 0;
  transition: all 0.3s;
}
.cid-rYpTZcm7Hv .mbr-iconfont {
  font-size: 1rem;
  padding-bottom: 3px;
}
.cid-rYpTZcm7Hv .ico-line {
  display: -webkit-flex;
}
.cid-rYpTZcm7Hv .col-md-4 {
  padding: 0;
}
.cid-rYpTZcm7Hv p {
  line-height: 1.6;
}
.cid-rYpTZcm7Hv .btn-danger-outline {
  border: none;
  background: transparent;
  font-weight: 400!important;
}
.cid-rYpTZcm7Hv .card-title {
  color: #232323;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}
.cid-rYpTZcm7Hv .card-img {
  overflow: hidden;
  max-height: 280px;
  position: relative;
  border-radius: 0;
}
.cid-rYpTZcm7Hv .price-box {
  position: absolute;
  background: #ff3366;
  padding: 0.5rem 1rem;
  left: 0px;
  bottom: 2rem;
  transition: all 0.3s;
}
.cid-rYpTZcm7Hv img {
  transition: all 0.3s;
}
.cid-rYpTZcm7Hv h5 {
  margin: 0;
}
.cid-rYpTZcm7Hv .card-box {
  padding: 1.5rem;
  background: #ffffff;
}
.cid-rYpTZcm7Hv .mbr-section-title {
  margin: 0 auto;
  color: #232323;
  text-align: left;
}
.cid-rYpTZcm7Hv .card-box > p,
.cid-rYpTZcm7Hv .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-rYpTZcm7Hv .price {
  color: #ffffff;
  text-align: left;
}
.cid-rYpTZcm7Hv .rev {
  color: #232323;
  line-height: 1.1;
  text-align: left;
}
@media (max-width: 576px) {
  .cid-rYpTZcm7Hv .line-box {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: left;
    align-items: left;
  }
  .cid-rYpTZcm7Hv .px-4 {
    padding-right: 4px!important;
    padding-left: 4px!important;
  }
  .cid-rYpTZcm7Hv .col-md-4 {
    padding: 0 15px;
  }
  .cid-rYpTZcm7Hv .col-md-8 {
    margin: 0 15px;
  }
  .cid-rYpTZcm7Hv .price-box {
    left: 15px;
  }
  .cid-rYpTZcm7Hv .card-box {
    padding: 1rem;
  }
}
.cid-sdhaM7rlH0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sdhaM7rlH0 .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #232323;
  padding: 0;
  transition: all 0.3s;
}
.cid-sdhaM7rlH0 .mbr-iconfont {
  font-size: 1rem;
  padding-bottom: 3px;
}
.cid-sdhaM7rlH0 .ico-line {
  display: -webkit-flex;
}
.cid-sdhaM7rlH0 .col-md-4 {
  padding: 0;
}
.cid-sdhaM7rlH0 p {
  line-height: 1.6;
}
.cid-sdhaM7rlH0 .btn-danger-outline {
  border: none;
  background: transparent;
  font-weight: 400!important;
}
.cid-sdhaM7rlH0 .card-title {
  color: #232323;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}
.cid-sdhaM7rlH0 .card-img {
  overflow: hidden;
  max-height: 280px;
  position: relative;
  border-radius: 0;
}
.cid-sdhaM7rlH0 .price-box {
  position: absolute;
  background: #ff3366;
  padding: 0.5rem 1rem;
  left: 0px;
  bottom: 2rem;
  transition: all 0.3s;
}
.cid-sdhaM7rlH0 img {
  transition: all 0.3s;
}
.cid-sdhaM7rlH0 h5 {
  margin: 0;
}
.cid-sdhaM7rlH0 .card-box {
  padding: 1.5rem;
  background: #ffffff;
}
.cid-sdhaM7rlH0 .mbr-section-title {
  margin: 0 auto;
  color: #232323;
  text-align: left;
}
.cid-sdhaM7rlH0 .card-box > p,
.cid-sdhaM7rlH0 .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-sdhaM7rlH0 .price {
  color: #ffffff;
  text-align: left;
}
.cid-sdhaM7rlH0 .rev {
  color: #232323;
  line-height: 1.1;
  text-align: left;
}
@media (max-width: 576px) {
  .cid-sdhaM7rlH0 .line-box {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: left;
    align-items: left;
  }
  .cid-sdhaM7rlH0 .px-4 {
    padding-right: 4px!important;
    padding-left: 4px!important;
  }
  .cid-sdhaM7rlH0 .col-md-4 {
    padding: 0 15px;
  }
  .cid-sdhaM7rlH0 .col-md-8 {
    margin: 0 15px;
  }
  .cid-sdhaM7rlH0 .price-box {
    left: 15px;
  }
  .cid-sdhaM7rlH0 .card-box {
    padding: 1rem;
  }
}
.cid-rZkKgsIvwn .container {
  max-width: 1110px;
}
.cid-rZkKgsIvwn .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-rZkKgsIvwn .collapsed {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.cid-rZkKgsIvwn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZkKgsIvwn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-rZkKgsIvwn .navbar-brand {
  min-width: 15%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
  word-break: break-word;
  z-index: 1;
  font-size: 1.5rem !important;
}
.cid-rZkKgsIvwn .navbar-brand span {
  margin-right: 0 !important;
}
.cid-rZkKgsIvwn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZkKgsIvwn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZkKgsIvwn .navbar-brand .navbar-logo a span {
  color: #00c48c;
}
.cid-rZkKgsIvwn .nav-item:focus,
.cid-rZkKgsIvwn .nav-link:focus {
  outline: none;
}
.cid-rZkKgsIvwn .text-white:hover,
.cid-rZkKgsIvwn .text-white:active,
.cid-rZkKgsIvwn .text-white:focus {
  color: white !important;
}
.cid-rZkKgsIvwn .dropdown-menu {
  background-color: #c82700 !important;
}
.cid-rZkKgsIvwn .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 55px 5px rgba(251, 49, 0, 0.35);
  box-shadow: 0 10px 55px 5px rgba(251, 49, 0, 0.35);
  display: block;
}
.cid-rZkKgsIvwn .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (min-width: 992px) {
  .cid-rZkKgsIvwn .nav-item .nav-link {
    position: relative;
  }
}
.cid-rZkKgsIvwn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rZkKgsIvwn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rZkKgsIvwn .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-rZkKgsIvwn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZkKgsIvwn .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;
  transition: all 0.25s ease-in-out;
}
.cid-rZkKgsIvwn .navbar {
  min-height: 77px;
  margin-top: 12.5px;
  margin-bottom: 2.5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #c82700;
}
.cid-rZkKgsIvwn .navbar .container.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #c82700 !important;
}
.cid-rZkKgsIvwn .navbar .container .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-rZkKgsIvwn .navbar .container .navbar-collapse {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZkKgsIvwn .navbar .container.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rZkKgsIvwn .navbar .container.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #c82700;
}
@media (max-width: 991px) {
  .cid-rZkKgsIvwn .navbar .container .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZkKgsIvwn .navbar .container.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu {
    background: transparent !important;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rZkKgsIvwn .navbar .container ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZkKgsIvwn .navbar .container ul.navbar-nav li a {
    padding: 10px !important;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rZkKgsIvwn .navbar .container .navbar-brand {
    -ms-flex-negative: initial;
    flex-shrink: initial;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    word-break: break-word;
    font-size: 1.5rem !important;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
  }
  .cid-rZkKgsIvwn .navbar .container .navbar-buttons .btn {
    margin: 10px 0 0 0 !important;
  }
  .cid-rZkKgsIvwn .navbar .container .navbar-toggler {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .cid-rZkKgsIvwn .navbar .container .icons-menu {
    padding-left: 0;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    color: #c82700;
  }
}
.cid-rZkKgsIvwn .navbar .container.navbar-short {
  background: #c82700 !important;
  min-height: 60px;
}
.cid-rZkKgsIvwn .navbar .container.navbar-short .navbar-logo {
  font-size: 1.5rem !important;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-rZkKgsIvwn .navbar .container.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 1.5rem !important;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-rZkKgsIvwn .navbar .container.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZkKgsIvwn .dropdown-item.active,
.cid-rZkKgsIvwn .dropdown-item:active {
  background-color: transparent;
}
.cid-rZkKgsIvwn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZkKgsIvwn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZkKgsIvwn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c82700;
}
.cid-rZkKgsIvwn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZkKgsIvwn .navbar-expand-lg .btn {
  margin-top: 10px !important;
}
.cid-rZkKgsIvwn ul.navbar-nav {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rZkKgsIvwn .navbar-buttons {
  text-align: center;
}
.cid-rZkKgsIvwn .navbar-buttons .btn {
  padding: 12px 33px !important;
  margin: 0 0 0 15px !important;
}
.cid-rZkKgsIvwn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f2f6ff;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-rZkKgsIvwn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-rZkKgsIvwn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-rZkKgsIvwn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-rZkKgsIvwn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-rZkKgsIvwn .nav-link {
  font-weight: 600 !important;
}
.cid-rZkKgsIvwn a.nav-link {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cid-rZkKgsIvwn .mbr-iconfont {
  padding-right: 0.5rem;
}
.cid-rZkKgsIvwn .icons-menu {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  color: #c82700;
}
.cid-rZkKgsIvwn .icons-menu span {
  font-size: 26px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZkKgsIvwn .navbar {
    height: 77px;
  }
  .cid-rZkKgsIvwn .navbar.opened {
    height: auto;
  }
}
.cid-rZkKgsIvwn .mbr-semibold {
  font-weight: 600 !important;
}
.cid-rZkKgsIvwn .firstlink {
  color: #00c48c !important;
}
.cid-rZkKgsIvwn .firstlink:hover {
  color: #00c48c !important;
}
.cid-sdi3vhOWQm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sdi3vhOWQm .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdi3vhOWQm .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 42%;
}
.cid-sdi3vhOWQm .mbr-list {
  margin: 0;
}
.cid-sdi3vhOWQm .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-sdi3vhOWQm .first-column {
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-sdi3vhOWQm .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-sdi3vhOWQm .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-rYpWYxuLYF {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rYpWYxuLYF .mbr-text,
.cid-rYpWYxuLYF .mbr-section-btn {
  color: #716c80;
}
.cid-rYpWYxuLYF .title {
  color: #000000;
}
@-webkit-keyframes line {
  from {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  to {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}
@keyframes line {
  from {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  to {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}
.cid-rYpWYxuLYF .img1 {
  position: absolute !important;
  height: 400px;
  width: 40%;
  left: 0;
  top: -30px;
  border-radius: 30px !important;
  background-image: url("../../../assets/images/woman-1466628-1280-850x1280.jpg");
  border-collapse: separate !important;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-rYpWYxuLYF .img1 > div {
  border-radius: 30px !important;
}
.cid-rYpWYxuLYF .img1 div[id^="jarallax-container"] > * {
  bottom: 20% !important;
  border-radius: 30px !important;
  top: -9% !important;
  left: 0px !important;
}
.cid-rYpWYxuLYF .img2 {
  position: absolute !important;
  height: 400px;
  width: 50%;
  right: 0;
  bottom: -41px;
  border-radius: 30px !important;
  background-image: url("../../../assets/images/face-1146038-1280-848x1280.jpg");
  border-collapse: separate !important;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-rYpWYxuLYF .img2 > div {
  border-radius: 30px !important;
}
.cid-rYpWYxuLYF .img2 div[id^="jarallax-container"] > * {
  top: -14% !important;
  border-radius: 30px !important;
  left: 0px !important;
}
.cid-rYpWYxuLYF .img3 {
  position: absolute !important;
  height: 400px;
  width: 50%;
  right: 160px;
  bottom: 0;
  border-radius: 30px !important;
  background-image: url("../../../assets/images/girl-3033718-1280-962x1280.jpg");
}
.cid-rYpWYxuLYF .img3 > div {
  border-radius: 30px !important;
}
.cid-rYpWYxuLYF .img3 div[id^="jarallax-container"] > * {
  margin-top: 10% !important;
  position: fixed !important;
  border-radius: 30px !important;
}
.cid-rYpWYxuLYF .wrap {
  height: 450px;
}
@media (max-width: 991px) {
  .cid-rYpWYxuLYF .img3 div[id^="jarallax-container"] > * {
    margin-top: 0% !important;
  }
  .cid-rYpWYxuLYF .text-wrap > * {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-rYpWYxuLYF .img3 {
    position: relative !important;
    margin: 0 auto;
    right: 0px;
  }
}
.cid-rYpXDXMoRl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rYpXDXMoRl .mbr-text,
.cid-rYpXDXMoRl .ornament {
  text-align: left;
}
.cid-rYpYkpTNnG {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rYpYkpTNnG .card-wrapper {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 15px 50px 10px rgba(179, 179, 179, 0.6);
}
.cid-rYpYkpTNnG .card-wrapper:hover {
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
}
.cid-rYpYkpTNnG .card-wrapper:hover .ico2 {
  color: #c82700 !important;
}
.cid-rYpYkpTNnG .ico2 {
  color: #ffffff !important;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.cid-rYpYkpTNnG .text-info:hover {
  color: inherit !important;
}
.cid-rYpYkpTNnG .card-box {
  padding: 0rem 1rem;
}
.cid-rYpYkpTNnG .ico1 {
  font-size: 3rem !important;
}
.cid-rYpYkpTNnG h3,
.cid-rYpYkpTNnG h4 {
  padding: 0;
  margin: 0;
}
.cid-rYpFLTSpRb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rYpFLTSpRb .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rYpFLTSpRb .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 42%;
}
.cid-rYpFLTSpRb .mbr-list {
  margin: 0;
}
.cid-rYpFLTSpRb .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-rYpFLTSpRb .first-column {
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-rYpFLTSpRb .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-rYpFLTSpRb .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-rZkKgsIvwn .container {
  max-width: 1110px;
}
.cid-rZkKgsIvwn .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-rZkKgsIvwn .collapsed {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.cid-rZkKgsIvwn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZkKgsIvwn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-rZkKgsIvwn .navbar-brand {
  min-width: 15%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
  word-break: break-word;
  z-index: 1;
  font-size: 1.5rem !important;
}
.cid-rZkKgsIvwn .navbar-brand span {
  margin-right: 0 !important;
}
.cid-rZkKgsIvwn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZkKgsIvwn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZkKgsIvwn .navbar-brand .navbar-logo a span {
  color: #00c48c;
}
.cid-rZkKgsIvwn .nav-item:focus,
.cid-rZkKgsIvwn .nav-link:focus {
  outline: none;
}
.cid-rZkKgsIvwn .text-white:hover,
.cid-rZkKgsIvwn .text-white:active,
.cid-rZkKgsIvwn .text-white:focus {
  color: white !important;
}
.cid-rZkKgsIvwn .dropdown-menu {
  background-color: #c82700 !important;
}
.cid-rZkKgsIvwn .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 55px 5px rgba(251, 49, 0, 0.35);
  box-shadow: 0 10px 55px 5px rgba(251, 49, 0, 0.35);
  display: block;
}
.cid-rZkKgsIvwn .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (min-width: 992px) {
  .cid-rZkKgsIvwn .nav-item .nav-link {
    position: relative;
  }
}
.cid-rZkKgsIvwn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rZkKgsIvwn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rZkKgsIvwn .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-rZkKgsIvwn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZkKgsIvwn .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;
  transition: all 0.25s ease-in-out;
}
.cid-rZkKgsIvwn .navbar {
  min-height: 77px;
  margin-top: 12.5px;
  margin-bottom: 2.5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #c82700;
}
.cid-rZkKgsIvwn .navbar .container.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #c82700 !important;
}
.cid-rZkKgsIvwn .navbar .container .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-rZkKgsIvwn .navbar .container .navbar-collapse {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZkKgsIvwn .navbar .container.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rZkKgsIvwn .navbar .container.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-rZkKgsIvwn .navbar .container.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #c82700;
}
@media (max-width: 991px) {
  .cid-rZkKgsIvwn .navbar .container .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZkKgsIvwn .navbar .container.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu {
    background: transparent !important;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rZkKgsIvwn .navbar .container ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZkKgsIvwn .navbar .container ul.navbar-nav li a {
    padding: 10px !important;
  }
  .cid-rZkKgsIvwn .navbar .container .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rZkKgsIvwn .navbar .container .navbar-brand {
    -ms-flex-negative: initial;
    flex-shrink: initial;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    word-break: break-word;
    font-size: 1.5rem !important;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
  }
  .cid-rZkKgsIvwn .navbar .container .navbar-buttons .btn {
    margin: 10px 0 0 0 !important;
  }
  .cid-rZkKgsIvwn .navbar .container .navbar-toggler {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .cid-rZkKgsIvwn .navbar .container .icons-menu {
    padding-left: 0;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    color: #c82700;
  }
}
.cid-rZkKgsIvwn .navbar .container.navbar-short {
  background: #c82700 !important;
  min-height: 60px;
}
.cid-rZkKgsIvwn .navbar .container.navbar-short .navbar-logo {
  font-size: 1.5rem !important;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-rZkKgsIvwn .navbar .container.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 1.5rem !important;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-rZkKgsIvwn .navbar .container.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZkKgsIvwn .dropdown-item.active,
.cid-rZkKgsIvwn .dropdown-item:active {
  background-color: transparent;
}
.cid-rZkKgsIvwn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZkKgsIvwn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZkKgsIvwn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c82700;
}
.cid-rZkKgsIvwn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZkKgsIvwn .navbar-expand-lg .btn {
  margin-top: 10px !important;
}
.cid-rZkKgsIvwn ul.navbar-nav {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rZkKgsIvwn .navbar-buttons {
  text-align: center;
}
.cid-rZkKgsIvwn .navbar-buttons .btn {
  padding: 12px 33px !important;
  margin: 0 0 0 15px !important;
}
.cid-rZkKgsIvwn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f2f6ff;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-rZkKgsIvwn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-rZkKgsIvwn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-rZkKgsIvwn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-rZkKgsIvwn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-rZkKgsIvwn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-rZkKgsIvwn .nav-link {
  font-weight: 600 !important;
}
.cid-rZkKgsIvwn a.nav-link {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cid-rZkKgsIvwn .mbr-iconfont {
  padding-right: 0.5rem;
}
.cid-rZkKgsIvwn .icons-menu {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  color: #c82700;
}
.cid-rZkKgsIvwn .icons-menu span {
  font-size: 26px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZkKgsIvwn .navbar {
    height: 77px;
  }
  .cid-rZkKgsIvwn .navbar.opened {
    height: auto;
  }
}
.cid-rZkKgsIvwn .mbr-semibold {
  font-weight: 600 !important;
}
.cid-rZkKgsIvwn .firstlink {
  color: #00c48c !important;
}
.cid-rZkKgsIvwn .firstlink:hover {
  color: #00c48c !important;
}
.cid-sdhaywuEi8 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sdhaywuEi8 .mbr-text,
.cid-sdhaywuEi8 .mbr-section-btn {
  color: #716c80;
}
.cid-sdhaywuEi8 .title {
  color: #000000;
}
@-webkit-keyframes line {
  from {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  to {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}
@keyframes line {
  from {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  to {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}
.cid-sdhaywuEi8 .img1 {
  position: absolute !important;
  height: 400px;
  width: 40%;
  left: 0;
  top: -30px;
  border-radius: 30px !important;
  background-image: url("../../../assets/images/woman-1466628-1280-850x1280.jpg");
  border-collapse: separate !important;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-sdhaywuEi8 .img1 > div {
  border-radius: 30px !important;
}
.cid-sdhaywuEi8 .img1 div[id^="jarallax-container"] > * {
  bottom: 20% !important;
  border-radius: 30px !important;
  top: -9% !important;
  left: 0px !important;
}
.cid-sdhaywuEi8 .img2 {
  position: absolute !important;
  height: 400px;
  width: 50%;
  right: 0;
  bottom: -41px;
  border-radius: 30px !important;
  background-image: url("../../../assets/images/face-1146038-1280-848x1280.jpg");
  border-collapse: separate !important;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-sdhaywuEi8 .img2 > div {
  border-radius: 30px !important;
}
.cid-sdhaywuEi8 .img2 div[id^="jarallax-container"] > * {
  top: -14% !important;
  border-radius: 30px !important;
  left: 0px !important;
}
.cid-sdhaywuEi8 .img3 {
  position: absolute !important;
  height: 400px;
  width: 50%;
  right: 160px;
  bottom: 0;
  border-radius: 30px !important;
  background-image: url("../../../assets/images/girl-3033718-1280-962x1280.jpg");
}
.cid-sdhaywuEi8 .img3 > div {
  border-radius: 30px !important;
}
.cid-sdhaywuEi8 .img3 div[id^="jarallax-container"] > * {
  margin-top: 10% !important;
  position: fixed !important;
  border-radius: 30px !important;
}
.cid-sdhaywuEi8 .wrap {
  height: 450px;
}
@media (max-width: 991px) {
  .cid-sdhaywuEi8 .img3 div[id^="jarallax-container"] > * {
    margin-top: 0% !important;
  }
  .cid-sdhaywuEi8 .text-wrap > * {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-sdhaywuEi8 .img3 {
    position: relative !important;
    margin: 0 auto;
    right: 0px;
  }
}
.cid-sdhayx50Hm {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sdhayx50Hm .mbr-text,
.cid-sdhayx50Hm .ornament {
  text-align: left;
}
.cid-sdhck91Jqk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sdhck91Jqk .mbr-text,
.cid-sdhck91Jqk .ornament {
  text-align: left;
}
.cid-sdhcrm77As {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sdhcrm77As .mbr-text,
.cid-sdhcrm77As .ornament {
  text-align: left;
}
.cid-sdhcWRhTC7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sdhcWRhTC7 .mbr-text,
.cid-sdhcWRhTC7 .ornament {
  text-align: left;
}
.cid-sdhd0PcQep {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sdhd0PcQep .mbr-text,
.cid-sdhd0PcQep .ornament {
  text-align: left;
}
.cid-sdhdhIH6id {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sdhdhIH6id .mbr-text,
.cid-sdhdhIH6id .ornament {
  text-align: left;
}
.cid-sdhdkk7XWm {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sdhdkk7XWm .mbr-text,
.cid-sdhdkk7XWm .ornament {
  text-align: left;
}
.cid-sdhdpddGky {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sdhdpddGky .mbr-text,
.cid-sdhdpddGky .ornament {
  text-align: left;
}
.cid-sdhdrV6WOn {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sdhdrV6WOn .mbr-text,
.cid-sdhdrV6WOn .ornament {
  text-align: left;
}
.cid-sdhdHPzuDg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sdhdHPzuDg .mbr-text,
.cid-sdhdHPzuDg .ornament {
  text-align: left;
}
.cid-sdhdLPCZiz {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sdhdLPCZiz .mbr-text,
.cid-sdhdLPCZiz .ornament {
  text-align: left;
}
.cid-sdhdQy2zJp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sdhdQy2zJp .mbr-text,
.cid-sdhdQy2zJp .ornament {
  text-align: left;
}
.cid-sdhdTSagub {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sdhdTSagub .mbr-text,
.cid-sdhdTSagub .ornament {
  text-align: left;
}
.cid-sdhe1B4gb9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sdhe1B4gb9 .mbr-text,
.cid-sdhe1B4gb9 .ornament {
  text-align: left;
}
.cid-sdhe4jqfYI {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sdhe4jqfYI .mbr-text,
.cid-sdhe4jqfYI .ornament {
  text-align: left;
}
.cid-sdhayxxg2Y {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sdhayxxg2Y .card-wrapper {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 15px 50px 10px rgba(179, 179, 179, 0.6);
}
.cid-sdhayxxg2Y .card-wrapper:hover {
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
}
.cid-sdhayxxg2Y .card-wrapper:hover .ico2 {
  color: #c82700 !important;
}
.cid-sdhayxxg2Y .ico2 {
  color: #ffffff !important;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.cid-sdhayxxg2Y .text-info:hover {
  color: inherit !important;
}
.cid-sdhayxxg2Y .card-box {
  padding: 0rem 1rem;
}
.cid-sdhayxxg2Y .ico1 {
  font-size: 3rem !important;
}
.cid-sdhayxxg2Y h3,
.cid-sdhayxxg2Y h4 {
  padding: 0;
  margin: 0;
}
.cid-sdi42xoyDd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sdi42xoyDd .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdi42xoyDd .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 42%;
}
.cid-sdi42xoyDd .mbr-list {
  margin: 0;
}
.cid-sdi42xoyDd .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-sdi42xoyDd .first-column {
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-sdi42xoyDd .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-sdi42xoyDd .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-sdheCykIrw.popup-builder {
  background-color: #ffffff;
}
.cid-sdheCykIrw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sdheCykIrw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sdheCykIrw .modal-content,
.cid-sdheCykIrw .modal-dialog {
  height: auto;
}
.cid-sdheCykIrw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sdheCykIrw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sdheCykIrw .form-wrapper .mbr-form .form-group,
  .cid-sdheCykIrw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sdheCykIrw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sdheCykIrw .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-sdheCykIrw .mbr-text {
  text-align: center;
}
.cid-sdheCykIrw .pt-0 {
  padding-top: 0 !important;
}
.cid-sdheCykIrw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sdheCykIrw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sdheCykIrw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sdheCykIrw .modal-open {
  overflow: hidden;
}
.cid-sdheCykIrw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sdheCykIrw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sdheCykIrw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sdheCykIrw .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-sdheCykIrw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sdheCykIrw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sdheCykIrw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sdheCykIrw .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-sdheCykIrw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sdheCykIrw .modal-backdrop.fade {
  opacity: 0;
}
.cid-sdheCykIrw .modal-backdrop.show {
  opacity: .5;
}
.cid-sdheCykIrw .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-sdheCykIrw .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sdheCykIrw .modal-header .close:hover {
  opacity: 1;
}
.cid-sdheCykIrw .modal-header .close:focus {
  outline: none;
}
.cid-sdheCykIrw .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sdheCykIrw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sdheCykIrw .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-sdheCykIrw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sdheCykIrw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sdheCykIrw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sdheCykIrw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sdheCykIrw .modal-sm {
    max-width: 300px;
  }
  .cid-sdheCykIrw .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sdheCykIrw .modal-lg,
  .cid-sdheCykIrw .modal-xl {
    max-width: 800px;
  }
  .cid-sdheCykIrw .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sdheCykIrw .modal-xl {
    max-width: 1140px;
  }
  .cid-sdheCykIrw .container {
    max-width: 1140px;
  }
}
.cid-sdheCykIrw .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sdheCykIrw .container {
    max-width: 720px;
  }
}
.cid-sdheCykIrw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sdheCykIrw .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-sdheCykIrw .form-group {
  margin-bottom: 1rem;
}
.cid-sdheCykIrw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sdheCykIrw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sdheCykIrw .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-sdhayywHLl .container {
  max-width: 1110px;
}
.cid-sdhayywHLl .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
}
.cid-sdhayywHLl .collapsed {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.cid-sdhayywHLl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sdhayywHLl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-sdhayywHLl .navbar-brand {
  min-width: 15%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
  word-break: break-word;
  z-index: 1;
  font-size: 1.5rem !important;
}
.cid-sdhayywHLl .navbar-brand span {
  margin-right: 0 !important;
}
.cid-sdhayywHLl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sdhayywHLl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sdhayywHLl .navbar-brand .navbar-logo a span {
  color: #00c48c;
}
.cid-sdhayywHLl .nav-item:focus,
.cid-sdhayywHLl .nav-link:focus {
  outline: none;
}
.cid-sdhayywHLl .text-white:hover,
.cid-sdhayywHLl .text-white:active,
.cid-sdhayywHLl .text-white:focus {
  color: white !important;
}
.cid-sdhayywHLl .dropdown-menu {
  background-color: #c82700 !important;
}
.cid-sdhayywHLl .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 55px 5px rgba(251, 49, 0, 0.35);
  box-shadow: 0 10px 55px 5px rgba(251, 49, 0, 0.35);
  display: block;
}
.cid-sdhayywHLl .nav-item:hover .nav-link:before {
  opacity: 1 !important;
}
@media (min-width: 992px) {
  .cid-sdhayywHLl .nav-item .nav-link {
    position: relative;
  }
}
.cid-sdhayywHLl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdhayywHLl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdhayywHLl .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-sdhayywHLl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sdhayywHLl .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;
  transition: all 0.25s ease-in-out;
}
.cid-sdhayywHLl .navbar {
  min-height: 77px;
  margin-top: 12.5px;
  margin-bottom: 2.5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #c82700;
}
.cid-sdhayywHLl .navbar .container.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #c82700 !important;
}
.cid-sdhayywHLl .navbar .container .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-sdhayywHLl .navbar .container .navbar-collapse {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sdhayywHLl .navbar .container.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sdhayywHLl .navbar .container.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sdhayywHLl .navbar .container.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sdhayywHLl .navbar .container.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sdhayywHLl .navbar .container.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sdhayywHLl .navbar .container.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sdhayywHLl .navbar .container.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sdhayywHLl .navbar .container.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sdhayywHLl .navbar .container.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #c82700;
}
@media (max-width: 991px) {
  .cid-sdhayywHLl .navbar .container .nav-item .nav-link::before {
    display: none;
  }
  .cid-sdhayywHLl .navbar .container.opened .dropdown-menu {
    top: 0;
  }
  .cid-sdhayywHLl .navbar .container .dropdown-menu {
    background: transparent !important;
  }
  .cid-sdhayywHLl .navbar .container .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sdhayywHLl .navbar .container .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sdhayywHLl .navbar .container .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sdhayywHLl .navbar .container ul.navbar-nav li {
    margin: auto;
  }
  .cid-sdhayywHLl .navbar .container ul.navbar-nav li a {
    padding: 10px !important;
  }
  .cid-sdhayywHLl .navbar .container .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sdhayywHLl .navbar .container .navbar-brand {
    -ms-flex-negative: initial;
    flex-shrink: initial;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    word-break: break-word;
    font-size: 1.5rem !important;
    -webkit-transition: font-size 0.25s;
    transition: font-size 0.25s;
  }
  .cid-sdhayywHLl .navbar .container .navbar-buttons .btn {
    margin: 10px 0 0 0 !important;
  }
  .cid-sdhayywHLl .navbar .container .navbar-toggler {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .cid-sdhayywHLl .navbar .container .icons-menu {
    padding-left: 0;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    color: #c82700;
  }
}
.cid-sdhayywHLl .navbar .container.navbar-short {
  background: #c82700 !important;
  min-height: 60px;
}
.cid-sdhayywHLl .navbar .container.navbar-short .navbar-logo {
  font-size: 1.5rem !important;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-sdhayywHLl .navbar .container.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 1.5rem !important;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-sdhayywHLl .navbar .container.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sdhayywHLl .dropdown-item.active,
.cid-sdhayywHLl .dropdown-item:active {
  background-color: transparent;
}
.cid-sdhayywHLl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sdhayywHLl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sdhayywHLl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c82700;
}
.cid-sdhayywHLl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sdhayywHLl .navbar-expand-lg .btn {
  margin-top: 10px !important;
}
.cid-sdhayywHLl ul.navbar-nav {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sdhayywHLl .navbar-buttons {
  text-align: center;
}
.cid-sdhayywHLl .navbar-buttons .btn {
  padding: 12px 33px !important;
  margin: 0 0 0 15px !important;
}
.cid-sdhayywHLl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.cid-sdhayywHLl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f2f6ff;
}
.cid-sdhayywHLl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-sdhayywHLl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-sdhayywHLl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-sdhayywHLl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-sdhayywHLl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-sdhayywHLl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-sdhayywHLl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-sdhayywHLl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-sdhayywHLl .nav-link {
  font-weight: 600 !important;
}
.cid-sdhayywHLl a.nav-link {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cid-sdhayywHLl .mbr-iconfont {
  padding-right: 0.5rem;
}
.cid-sdhayywHLl .icons-menu {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  color: #c82700;
}
.cid-sdhayywHLl .icons-menu span {
  font-size: 26px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sdhayywHLl .navbar {
    height: 77px;
  }
  .cid-sdhayywHLl .navbar.opened {
    height: auto;
  }
}
.cid-sdhayywHLl .mbr-semibold {
  font-weight: 600 !important;
}
.cid-sdhayywHLl .firstlink {
  color: #00c48c !important;
}
.cid-sdhayywHLl .firstlink:hover {
  color: #00c48c !important;
}
