body {
  font-family: Open Sans;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 20px 20px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ff4a52 !important;
}
.bg-success {
  background-color: #7242d6 !important;
}
.bg-info {
  background-color: #48d678 !important;
}
.bg-warning {
  background-color: #d63d3d !important;
}
.bg-danger {
  background-color: #ececec !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4a52 !important;
  border-color: #ff4a52 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #fd000b !important;
  border-color: #fd000b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #fd000b !important;
  border-color: #fd000b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #148479 !important;
  border-color: #148479 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #148479 !important;
  border-color: #148479 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #48d678 !important;
  border-color: #48d678 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #26ab53 !important;
  border-color: #26ab53 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #26ab53 !important;
  border-color: #26ab53 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #7242d6 !important;
  border-color: #7242d6 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #4f24a7 !important;
  border-color: #4f24a7 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #4f24a7 !important;
  border-color: #4f24a7 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ececec !important;
  border-color: #ececec !important;
  color: #6d6d6d !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  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,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  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,
.btn-primary-outline.active {
  background: none;
  border-color: #e3000a;
  color: #e3000a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #ff4a52;
  border-color: #ff4a52;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4a52 !important;
  border-color: #ff4a52 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #116d65;
  color: #116d65;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #1ec6b6;
  border-color: #1ec6b6;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #229649;
  color: #229649;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #48d678;
  border-color: #48d678;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #48d678 !important;
  border-color: #48d678 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #452092;
  color: #452092;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #7242d6;
  border-color: #7242d6;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7242d6 !important;
  border-color: #7242d6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8f1e1e;
  color: #8f1e1e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #d63d3d;
  border-color: #d63d3d;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #b9b9b9;
  color: #b9b9b9;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #6d6d6d;
  background-color: #ececec;
  border-color: #ececec;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #6d6d6d !important;
  background-color: #ececec !important;
  border-color: #ececec !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  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: #ff4a52 !important;
}
.text-secondary {
  color: #1ec6b6 !important;
}
.text-success {
  color: #7242d6 !important;
}
.text-info {
  color: #48d678 !important;
}
.text-warning {
  color: #d63d3d !important;
}
.text-danger {
  color: #ececec !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e3000a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #116d65 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #452092 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #229649 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8f1e1e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b9b9b9 !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: #48d678;
}
.alert-warning {
  background-color: #d63d3d;
}
.alert-danger {
  background-color: #ececec;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4a52;
  border-color: #ff4a52;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff4a52;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #efeafa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #effbf3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fae5e5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.28rem;
}
blockquote {
  border-color: #ff4a52;
}
.btn-md {
  transition: none;
  padding: 0.5rem 2rem;
}
.btn-md:hover {
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4a52;
  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: #ffffff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff4a52;
  border-bottom-color: #ff4a52;
}
.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: #ff4a52 !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: #1ec6b6 !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='%23ff4a52' %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-rPaJ922rUP .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #fbb033;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPaJ922rUP .nav-item,
.cid-rPaJ922rUP .nav-link,
.cid-rPaJ922rUP .navbar-caption {
  font-weight: normal;
}
.cid-rPaJ922rUP .nav-item:focus,
.cid-rPaJ922rUP .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rPaJ922rUP .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-rPaJ922rUP .nav-item .nav-link {
    position: relative;
  }
  .cid-rPaJ922rUP .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #fbb033;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-rPaJ922rUP .nav-item:hover .nav-link:before,
  .cid-rPaJ922rUP .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-rPaJ922rUP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rPaJ922rUP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rPaJ922rUP .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-rPaJ922rUP .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rPaJ922rUP .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rPaJ922rUP .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPaJ922rUP .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-rPaJ922rUP .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-rPaJ922rUP .navbar .dropdown-item {
  padding: .235rem 2rem;
}
.cid-rPaJ922rUP .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-rPaJ922rUP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rPaJ922rUP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rPaJ922rUP .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rPaJ922rUP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rPaJ922rUP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rPaJ922rUP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rPaJ922rUP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rPaJ922rUP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rPaJ922rUP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rPaJ922rUP .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rPaJ922rUP .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rPaJ922rUP .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rPaJ922rUP .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-rPaJ922rUP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rPaJ922rUP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rPaJ922rUP .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rPaJ922rUP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rPaJ922rUP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rPaJ922rUP .dropdown-item.active,
.cid-rPaJ922rUP .dropdown-item:active {
  background-color: transparent;
}
.cid-rPaJ922rUP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rPaJ922rUP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rPaJ922rUP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rPaJ922rUP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  z-index: 2;
}
.cid-rPaJ922rUP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rPaJ922rUP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rPaJ922rUP ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rPaJ922rUP .navbar-buttons {
  text-align: center;
}
.cid-rPaJ922rUP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rPaJ922rUP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #007f88;
}
.cid-rPaJ922rUP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rPaJ922rUP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rPaJ922rUP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rPaJ922rUP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rPaJ922rUP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPaJ922rUP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rPaJ922rUP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rPaJ922rUP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPaJ922rUP .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rPaJ922rUP a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPaJ922rUP .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #1ec6b6;
  display: inline-flex;
}
.cid-rPaJ922rUP .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rPaJ922rUP .soc-item {
  margin: .5rem .3rem;
}
.cid-rPaJ922rUP .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPaJ922rUP a.nav-link .mbr-iconfont-btn,
.cid-rPaJ922rUP a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rPaJ922rUP a.nav-link:hover .mbr-iconfont-btn,
.cid-rPaJ922rUP a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rPaJ922rUP a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rPaJ922rUP .navbar {
    height: 77px;
  }
  .cid-rPaJ922rUP .navbar.opened {
    height: auto;
  }
  .cid-rPaJ922rUP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPaJ922rUP nav.navbar.navbar-dropdown.navbar-fixed-top.navbar-expand-lg {
  border-bottom: none;
}
.cid-rPaJ922rUP .navbar-dropdown .navbar-logo img {
  height: 2.5em !important;
}
.cid-rPaJ922rUP .navbar.navbar-short .navbar-logo img {
  height: 1.75em !important;
}
.cid-rPaJ922rUP a.nav-link.link.text-black.display-4 {
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .cid-rPaJ922rUP .navbar-dropdown .navbar-logo img {
    height: 1.75em !important;
  }
}
.cid-rPaKBLxcr8 {
  background-image: url("../../../assets/images/banner-corp-landing-1440x840.png");
}
@media (max-width: 768px) {
  .cid-rPaKBLxcr8 .mbr-text,
  .cid-rPaKBLxcr8 .mbr-section-subtitle,
  .cid-rPaKBLxcr8 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-rPaKBLxcr8 nav.navbar.navbar-dropdown.navbar-fixed-top.navbar-expand-lg {
  border-bottom: 1px solid #404040;
}
.cid-rPaKBLxcr8 h1.mbr-fonts-style.mbr-text.display-1 {
  letter-spacing: .025em;
  font-weight: 700;
  padding-top: 100px;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.cid-rPaKBLxcr8 h2.mbr-section-title.mbr-fonts-style.mbr-bold.display-7 {
  line-height: 1.7em;
  font-weight: 500;
  letter-spacing: .025em;
  padding-bottom: 55px;
}
.cid-rPsG3TKiD5 {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #ececec;
}
.cid-rPsG3TKiD5 .mbr-overlay {
  background: linear-gradient(90deg, #008a97, #ffffff);
}
.cid-rPsG3TKiD5 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-rPsG3TKiD5 .text-content {
  padding-right: 1.5rem;
}
.cid-rPsG3TKiD5 .mbr-text,
.cid-rPsG3TKiD5 .mbr-section-btn {
  color: #767676;
}
.cid-rPsG3TKiD5 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(143, 143, 143, 0.3);
  box-shadow: none;
  border-radius: 0rem;
}
.cid-rPsG3TKiD5 .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-rPsG3TKiD5 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-rPsG3TKiD5 .counter-container ul li {
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-rPsG3TKiD5 .main-row {
    margin: 0;
  }
  .cid-rPsG3TKiD5 .mbr-section-title,
  .cid-rPsG3TKiD5 .mbr-text,
  .cid-rPsG3TKiD5 .list,
  .cid-rPsG3TKiD5 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-rPsG3TKiD5 .text-content {
    padding: 0;
  }
}
.cid-rPsG3TKiD5 h3.mbr-fonts-style.mbr-text.align-left.mbr-light.display-7 {
  line-height: 1.5em;
  font-weight: 600;
}
.cid-rPsG3TKiD5 button.vote {
  transition: .5s;
  padding: 10px 25px;
  border: 0px solid #01818C;
  border-radius: 25px;
  background: #ffffff;
  color: #01818C;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 14px;
  box-shadow: 0 2px 10px 0 #ccc;
  font-size: 14px !important;
}
.cid-rPsG3TKiD5 button.vote:hover {
  transition: .5s;
  background: #fff !important;
  color: #01818C;
  box-shadow: 1px 1px 1px #007f88;
}
.cid-rPsG3TKiD5 h2.mb-4.mbr-fonts-style.mbr-section-title.display-5 {
  padding-top: 55px;
}
.cid-tXAs3MFu8a {
  padding-top: 165px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/annual-report-bg-1-1440x395.jpg");
  background-position: top center;
}
.cid-tXAs3MFu8a .mbr-section-title DIV {
  text-align: center;
}
.cid-tXAs3MFu8a .mbr-text,
.cid-tXAs3MFu8a .mbr-section-btn {
  text-align: center;
}
.cid-tXAs3MFu8a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXAs3MFu8a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXAs3MFu8a .mbr-section-title {
  text-align: center;
}
.cid-tXAs3MFu8a .button {
  text-align: center;
}
.cid-tXAs3MFu8a button.view {
  transition: .5s;
  padding: 10px 25px;
  border: 0px solid #01818C;
  border-radius: 25px;
  background: #ffffff;
  color: #01818C;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 14px;
  box-shadow: 0 2px 10px 0 #ccc;
  font-size: 14px !important;
}
.cid-tXAs3MFu8a button.view:hover {
  transition: .5s;
  background: #fff !important;
  color: #01818C;
  box-shadow: 1px 1px 1px #007f88;
}
.cid-rPc48q1zyX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fbf9f3;
}
.cid-rPc48q1zyX .title {
  border-bottom: 1px solid #ececec;
}
.cid-rPc48q1zyX .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border: 1px solid #ececec;
  transition: all 0.3s;
}
.cid-rPc48q1zyX .card-wrapper:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin-top: -0.6rem;
}
.cid-rPc48q1zyX .card-wrapper:hover .price-box {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  left: 5px;
  bottom: 15px;
}
.cid-rPc48q1zyX .display-4 {
  line-height: 1.1;
}
.cid-rPc48q1zyX .mbr-iconfont {
  font-size: 1rem;
  padding-bottom: 3px;
}
.cid-rPc48q1zyX .ico-line-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-rPc48q1zyX .ico-line {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-rPc48q1zyX p {
  line-height: 1.6;
}
.cid-rPc48q1zyX .btn-danger-outline {
  border: none;
  background: transparent;
  font-weight: 400!important;
}
.cid-rPc48q1zyX .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}
.cid-rPc48q1zyX .card-img {
  overflow: hidden;
  max-height: 280px;
  position: relative;
  border-radius: 0;
}
.cid-rPc48q1zyX .price-box {
  position: absolute;
  background: #ff4a52;
  padding: 0.5rem 1rem;
  left: 0;
  bottom: 1rem;
  transition: all 0.3s;
}
.cid-rPc48q1zyX img {
  transition: all 0.3s;
}
.cid-rPc48q1zyX h5 {
  margin: 0;
}
.cid-rPc48q1zyX .card-box {
  padding: 1.5rem;
}
.cid-rPc48q1zyX .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: left;
}
.cid-rPc48q1zyX .card-box > p,
.cid-rPc48q1zyX .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-rPc48q1zyX .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-rPc48q1zyX .price {
  color: #ffffff;
  text-align: left;
}
.cid-rPc48q1zyX .rev {
  color: #000000;
}
@media (max-width: 576px) {
  .cid-rPc48q1zyX .ico-line-wrap {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rPc48q1zyX .ico-line {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-rPc48q1zyX h4.card-title.mbr-fonts-style.pb-1.mbr-bold.display-5 {
  text-align: center;
  font-size: 20px;
}
.cid-tXA9sr4GQy {
  padding-top: 165px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/background3.jpg");
  background-position: top center;
}
.cid-tXA9sr4GQy .mbr-section-title DIV {
  text-align: center;
}
.cid-tXA9sr4GQy .mbr-text,
.cid-tXA9sr4GQy .mbr-section-btn {
  text-align: center;
}
.cid-tXA9sr4GQy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXA9sr4GQy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXA9sr4GQy .mbr-section-title {
  text-align: center;
}
.cid-tXA9sr4GQy .button {
  text-align: center;
}
.cid-tXA9sr4GQy button.view {
  transition: .5s;
  padding: 10px 25px;
  border: 0px solid #01818C;
  border-radius: 25px;
  background: #ffffff;
  color: #01818C;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 14px;
  box-shadow: 0 2px 10px 0 #ccc;
  font-size: 14px !important;
}
.cid-tXA9sr4GQy button.view:hover {
  transition: .5s;
  background: #fff !important;
  color: #01818C;
  box-shadow: 1px 1px 1px #007f88;
}
.cid-rPrNjSv7sV {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fbf9f3;
}
.cid-rPrNjSv7sV .mbr-section-title {
  margin: 0;
}
.cid-rPrNjSv7sV .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-rPrNjSv7sV .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-rPrNjSv7sV .wrapper {
  padding: 1.25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-rPrNjSv7sV .card1 {
  background: linear-gradient(45deg, #007f88, #007f88);
}
.cid-rPrNjSv7sV .card2 {
  background: linear-gradient(45deg, #007f88, #007f88);
}
.cid-rPrNjSv7sV .card3 {
  background: linear-gradient(45deg, #007f88, #007f88);
}
.cid-rPrNjSv7sV .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-rPrNjSv7sV .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-rPrNjSv7sV .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-rPrNjSv7sV .mbr-section-btn {
  margin-left: -1rem;
  margin-right: -1rem;
  padding-top: 1rem;
}
.cid-rPrNjSv7sV .card1 > .mbr-card-title {
  text-align: center;
}
.cid-rPrNjSv7sV .card1 > .mbr-text,
.cid-rPrNjSv7sV .card1 > .mbr-section-btn {
  text-align: center;
}
.cid-rPrNjSv7sV .card2 > .mbr-card-title {
  text-align: center;
}
.cid-rPrNjSv7sV .card3 > .mbr-card-title {
  text-align: center;
}
.cid-rPrNjSv7sV .card3 > .mbr-text,
.cid-rPrNjSv7sV .card3 > .mbr-section-btn {
  text-align: center;
}
.cid-rPrNjSv7sV .card2 > .mbr-text,
.cid-rPrNjSv7sV .card2 > .mbr-section-btn {
  text-align: center;
}
.cid-rPrNjSv7sV h4.mbr-fonts-style.mbr-card-title.align-left.mbr-white.display-5 {
  font-size: 18px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.cid-rPrNjSv7sV h2.mbr-fonts-style.mbr-section-title.align-center.display-5.pb-4 {
  padding-bottom: 48px !important;
}
.cid-rPrNjSv7sV .button {
  text-align: center;
  margin-top: 20px;
}
.cid-rPrNjSv7sV button.more {
  padding: 10px 25px;
  border: 1px solid #fff;
  border-radius: 25px;
  background: transparent !important;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 14px;
  font-size: 14px !important;
}
.cid-rPrNjSv7sV button.more:hover {
  transition: .5s;
  background: #fff !important;
  color: #01818C;
  box-shadow: 1px 1px 1px #007f88;
}
.cid-rPrNoIE07n {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #fbf9f3;
}
.cid-rPrNoIE07n .mbr-section-title {
  margin: 0;
}
.cid-rPrNoIE07n .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-rPrNoIE07n .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-rPrNoIE07n .wrapper {
  padding: 1.5rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-rPrNoIE07n .card1 {
  background: linear-gradient(45deg, #007f88, #007f88);
}
.cid-rPrNoIE07n .card2 {
  background: linear-gradient(45deg, #007f88, #007f88);
}
.cid-rPrNoIE07n .card3 {
  background: linear-gradient(45deg, #007f88, #007f88);
}
.cid-rPrNoIE07n .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-rPrNoIE07n .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-rPrNoIE07n .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-rPrNoIE07n .mbr-section-btn {
  margin-left: -1rem;
  margin-right: -1rem;
  padding-top: 1rem;
}
.cid-rPrNoIE07n .card1 > .mbr-text,
.cid-rPrNoIE07n .card1 > .mbr-section-btn {
  text-align: center;
}
.cid-rPrNoIE07n .card2 > .mbr-text,
.cid-rPrNoIE07n .card2 > .mbr-section-btn {
  text-align: center;
}
.cid-rPrNoIE07n .card3 > .mbr-text,
.cid-rPrNoIE07n .card3 > .mbr-section-btn {
  text-align: center;
}
.cid-rPrNoIE07n .card3 > .mbr-card-title {
  text-align: center;
}
.cid-rPrNoIE07n .card2 > .mbr-card-title {
  text-align: center;
}
.cid-rPrNoIE07n .card1 > .mbr-card-title {
  text-align: center;
}
.cid-rPrNoIE07n h4.mbr-fonts-style.mbr-card-title.align-left.mbr-white.display-5 {
  font-size: 18px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  line-height: 1.25;
}
.cid-rPrNoIE07n .button {
  text-align: center;
  margin-top: 20px;
}
.cid-rPrNoIE07n button.more {
  padding: 10px 25px;
  border: 1px solid #fff;
  border-radius: 25px;
  background: transparent !important;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 14px;
  font-size: 14px !important;
}
.cid-rPrNoIE07n button.more:hover {
  transition: .5s;
  background: #fff !important;
  color: #01818C;
  box-shadow: 1px 1px 1px #007f88;
}
.cid-rPaLNI3Ani {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rPaLNI3Ani .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #232323;
  padding: 0;
  transition: all 0.3s;
}
.cid-rPaLNI3Ani .mbr-iconfont {
  font-size: 1rem;
  padding-bottom: 3px;
}
.cid-rPaLNI3Ani .ico-line {
  display: -webkit-flex;
}
.cid-rPaLNI3Ani .col-md-4 {
  padding: 0;
}
.cid-rPaLNI3Ani p {
  line-height: 1.6;
}
.cid-rPaLNI3Ani .btn-danger-outline {
  border: none;
  background: transparent;
  font-weight: 400!important;
}
.cid-rPaLNI3Ani .card-title {
  color: #232323;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}
.cid-rPaLNI3Ani .card-img {
  overflow: hidden;
  max-height: 280px;
  position: relative;
  border-radius: 0;
}
.cid-rPaLNI3Ani .price-box {
  position: absolute;
  background: #ff3366;
  padding: 0.5rem 1rem;
  left: 0px;
  bottom: 2rem;
  transition: all 0.3s;
}
.cid-rPaLNI3Ani img {
  transition: all 0.3s;
}
.cid-rPaLNI3Ani h5 {
  margin: 0;
}
.cid-rPaLNI3Ani .card-box {
  padding: 1.5rem;
  background: #ffffff;
}
.cid-rPaLNI3Ani .mbr-section-title {
  margin: 0 auto;
  color: #232323;
  text-align: left;
}
.cid-rPaLNI3Ani .card-box > p,
.cid-rPaLNI3Ani .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-rPaLNI3Ani .price {
  color: #ffffff;
  text-align: left;
}
.cid-rPaLNI3Ani .rev {
  color: #232323;
  line-height: 1.1;
  text-align: left;
}
@media (max-width: 576px) {
  .cid-rPaLNI3Ani .line-box {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: left;
    align-items: left;
  }
  .cid-rPaLNI3Ani .px-4 {
    padding-right: 4px!important;
    padding-left: 4px!important;
  }
  .cid-rPaLNI3Ani .col-md-4 {
    padding: 0 15px;
  }
  .cid-rPaLNI3Ani .col-md-8 {
    margin: 0 15px;
  }
  .cid-rPaLNI3Ani .price-box {
    left: 15px;
  }
  .cid-rPaLNI3Ani .card-box {
    padding: 1rem;
  }
}
.cid-rPaLNI3Ani h4.card-title.mbr-fonts-style.pb-1.mbr-bold.display-5 {
  text-transform: uppercase;
  padding-bottom: 20px !important;
}
.cid-rPaLNI3Ani button.view {
  transition: .5s;
  padding: 10px 25px;
  border: 0px solid #01818C;
  border-radius: 25px;
  background: #ffffff;
  color: #01818C;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 14px;
  box-shadow: 0 2px 10px 0 #ccc;
  font-size: 14px !important;
}
.cid-rPaLNI3Ani button.view:hover {
  transition: .5s;
  background: #fff !important;
  color: #01818C;
  box-shadow: 1px 1px 1px #007f88;
}
@media (max-width: 415px) {
  .cid-rPaLNI3Ani h4.card-title.mbr-fonts-style.pb-1.mbr-bold.display-5 {
    text-align: center;
  }
  .cid-rPaLNI3Ani p.mbr-text.mbr-fonts-style.mbr-normal.display-7 {
    text-align: center;
  }
  .cid-rPaLNI3Ani .buttons {
    text-align: center;
  }
  .cid-rPaLNI3Ani button.online {
    margin-bottom: 25px;
  }
}
.cid-rUIDj4ZG8p {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #fbf9f3, #f4f8fa);
}
.cid-rUIDj4ZG8p .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rUIDj4ZG8p .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rUIDj4ZG8p .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-rUIDj4ZG8p .price-term {
  margin-left: -5px;
}
.cid-rUIDj4ZG8p .pt2 {
  padding-top: 2rem;
}
.cid-rUIDj4ZG8p .plan-favorite {
  background-color: #007f88;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-rUIDj4ZG8p .plan-descr {
  color: #444444;
}
.cid-rUIDj4ZG8p .plan-price {
  margin-top: 2rem;
  color: #ffffff;
}
.cid-rUIDj4ZG8p .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-rUIDj4ZG8p .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-rUIDj4ZG8p .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rUIDj4ZG8p .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
}
.cid-rUIDj4ZG8p .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-rUIDj4ZG8p .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-rUIDj4ZG8p .plan-header,
.cid-rUIDj4ZG8p .plan-body {
  background-color: #ffffff;
}
.cid-rUIDj4ZG8p .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-rUIDj4ZG8p .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-rUIDj4ZG8p .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-rUIDj4ZG8p .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rUIDj4ZG8p UL {
  color: #8d97ad;
}
.cid-rUIDj4ZG8p .plan-price .price-figure {
  color: #ffffff;
}
.cid-rPaMinSHHq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-rPaMinSHHq .container {
  max-width: 1500px;
}
.cid-rPaMinSHHq .row {
  background: #000000;
}
.cid-rPaMinSHHq .img-col {
  padding: 0;
}
.cid-rPaMinSHHq .title-col {
  padding: 4rem 8rem;
}
.cid-rPaMinSHHq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-rPaMinSHHq h2 {
  padding: 0;
  margin: 0;
}
.cid-rPaMinSHHq .text-wrap {
  margin: auto;
}
.cid-rPaMinSHHq .mbr-text {
  color: #c1c1c1;
}
.cid-rPaMinSHHq p.mbr-text.mbr-black.mbr-regular.mbr-light.mbr-fonts-style.display-7 {
  line-height: 1.5em;
}
.cid-rPaMinSHHq h2.mbr-section-title.pb-4.mbr-semibold.mbr-white.mbr-fonts-style.display-5 {
  letter-spacing: .025em;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .cid-rPaMinSHHq .row {
    margin: 2rem;
  }
  .cid-rPaMinSHHq .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rPaMinSHHq .row {
    margin: 0rem;
  }
  .cid-rPaMinSHHq .title-col {
    padding: 2rem 1rem;
  }
}
.cid-rPaMinSHHq .bg {
  width: 10%;
  height: 10%;
}
.cid-rVoir2t20G {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ececec;
}
.cid-rVoir2t20G .box1 {
  background-image: url("../../../assets/images/v1-1022x617.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-rVoir2t20G .box2 {
  background-image: url("../../../assets/images/v2-1100x555.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-rVoir2t20G .icon-wrap {
  background-color: #007f88 !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-rVoir2t20G .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-rVoir2t20G .icon-wrap span {
  padding-left: 8px;
}
.cid-rVoir2t20G .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-rVoir2t20G .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-rVoir2t20G .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rVoir2t20G .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rVoir2t20G .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rVoir2t20G a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rVoir2t20G a.close:hover {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-rVoir2t20G {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .cid-rVoir2t20G .box1 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rVoir2t20G {
    padding-top: 21px;
    padding-bottom: 35px;
  }
  .cid-rVoir2t20G .box1,
  .cid-rVoir2t20G .box2 {
    height: 250px;
  }
}
.cid-rPaMdIo5PY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7f7f7;
}
.cid-rPaMdIo5PY .row {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPaMdIo5PY .text-black {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.cid-rPaMdIo5PY .btn {
  margin-bottom: 2rem;
}
.cid-rPaMdIo5PY .mbr-text {
  color: #444;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cid-rPaMdIo5PY .social-list {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rPaMdIo5PY .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: black;
}
.cid-rPaMdIo5PY .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPaMdIo5PY .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPaMdIo5PY .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-rPaMdIo5PY .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .cid-rPaMdIo5PY .mbr-text {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cid-rPaMdIo5PY .links {
  color: #232323;
  text-align: center;
}
.cid-rPaMdIo5PY p.mbr-text.links.mbr-fonts-style.display-4 {
  line-height: 1.5em;
}
