@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i);





body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- 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.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((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.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  position: relative;
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: normal;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  content: '';
  border: 1px solid;
  border-color: inherit;
  width: 100%;
  height: 100%;
  transition: border-radius 0.3s;
  position: absolute;
  left: 0%;
  top: 0%;
  opacity: 1;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.note-popover .btn:after {
  display: none;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: normal;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: normal;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #66458e !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #66458e !important;
  border-color: #66458e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !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-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-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #352449;
  color: #352449 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #66458e;
  border-color: #66458e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #66458e !important;
  border-color: #66458e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  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 !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #66458e !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #352449 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !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: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #66458e;
  border-color: #66458e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #66458e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a68cc7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#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 {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #66458e;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  -webkit-justify-content: center;
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #66458e;
  color: #232323;
  cursor: pointer;
  border-radius: 100px;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #66458e;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
/* Footer */
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-rjLhQ7va1V {
  background: #ffffff;
}
.cid-rjLhQ7va1V .container-fluid {
  padding: 0 3rem;
}
.cid-rjLhQ7va1V .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rjLhQ7va1V .image-block img {
  width: 100%;
}
.cid-rjLhQ7va1V .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rjLhQ7va1V .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rjLhQ7va1V .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-rjLhQ7va1V .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rjLhQ7va1V B {
  color: #000000;
}
.cid-rjLj3pTkbb {
  background: #ffffff;
}
.cid-rjLj3pTkbb .container-fluid {
  padding: 0 3rem;
}
.cid-rjLj3pTkbb .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rjLj3pTkbb .image-block img {
  width: 100%;
}
.cid-rjLj3pTkbb .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rjLj3pTkbb .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rjLj3pTkbb .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-rjLj3pTkbb .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rjLj3pTkbb P {
  color: #ffffff;
}
.cid-rjLj3pTkbb B {
  color: #ffffff;
}
.cid-rjLj3pTkbb I {
  color: #000000;
}
.cid-rjLl3kFhUd .modal-body .close {
  background: #1b1b1b;
}
.cid-rjLl3kFhUd .modal-body .close span {
  font-style: normal;
}
.cid-rjLl3kFhUd .carousel-inner > .active,
.cid-rjLl3kFhUd .carousel-inner > .next,
.cid-rjLl3kFhUd .carousel-inner > .prev {
  display: table;
}
.cid-rjLl3kFhUd .carousel-control .icon-next,
.cid-rjLl3kFhUd .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rjLl3kFhUd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rjLl3kFhUd .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rjLl3kFhUd .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rjLl3kFhUd .boxed-slider > div {
  position: relative;
}
.cid-rjLl3kFhUd .container img {
  width: 100%;
}
.cid-rjLl3kFhUd .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rjLl3kFhUd .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rjLl3kFhUd .mbr-table-cell {
  padding: 0;
}
.cid-rjLl3kFhUd .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rjLl3kFhUd .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rjLl3kFhUd .mbr-overlay {
  z-index: 1;
}
.cid-rjLl3kFhUd .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rjLl3kFhUd .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rjLl3kFhUd .carousel-item .container {
    width: 100%;
  }
}
.cid-rjLl3kFhUd .carousel-item-next.carousel-item-left,
.cid-rjLl3kFhUd .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rjLl3kFhUd .active.carousel-item-right,
.cid-rjLl3kFhUd .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rjLl3kFhUd .active.carousel-item-left,
.cid-rjLl3kFhUd .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rjLl3kFhUd .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rjLl3kFhUd .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rjLl3kFhUd .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rjLl3kFhUd .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-rjLl3kFhUd .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rjLl3kFhUd .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rjLl3kFhUd .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rjLl3kFhUd .mbr-slider .carousel-indicators li.active,
.cid-rjLl3kFhUd .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rjLl3kFhUd .mbr-slider .carousel-indicators li::after,
.cid-rjLl3kFhUd .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rjLl3kFhUd .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rjLl3kFhUd .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rjLl3kFhUd .mbr-slider > .container img {
  width: 100%;
}
.cid-rjLl3kFhUd .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rjLl3kFhUd .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rjLl3kFhUd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rjLl3kFhUd .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rjLl3kFhUd .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rjLl3kFhUd .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rjLl3kFhUd .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rjLl3kFhUd .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rjLl3kFhUd .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rjLl3kFhUd .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rjLl3kFhUd .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rjLl3kFhUd .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rjLl3kFhUd .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rjLl3kFhUd H2 {
  color: #ca4336;
}
.cid-rjLl3kFhUd A {
  color: #ffffff;
}
.cid-rjLl3kFhUd I {
  color: #ca4336;
}
.cid-rjLl3kFhUd B {
  color: #ca4336;
}
.cid-rjQyBTOQfU {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rjQyBTOQfU .container-fluid {
  padding: 0 3rem;
}
.cid-rjQyBTOQfU .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-rjQyBTOQfU .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjQyBTOQfU .video-block {
    width: 100% !important;
  }
}
.cid-rjQzYJCS2c {
  background: #ffffff;
}
.cid-rjQzYJCS2c .container-fluid {
  padding: 0 3rem;
}
.cid-rjQzYJCS2c .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rjQzYJCS2c .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjQzYJCS2c .video-block {
    width: 100% !important;
  }
}
.cid-rjQAgY9D2l {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rjQAgY9D2l .container-fluid {
  padding: 0 3rem;
}
.cid-rjQAgY9D2l .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-rjQAgY9D2l .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjQAgY9D2l .video-block {
    width: 100% !important;
  }
}
.cid-rjQAs0w6tp {
  background: #ffffff;
}
.cid-rjQAs0w6tp .container-fluid {
  padding: 0 3rem;
}
.cid-rjQAs0w6tp .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rjQAs0w6tp .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjQAs0w6tp .video-block {
    width: 100% !important;
  }
}
.cid-rjQAE1srO8 {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rjQAE1srO8 .container-fluid {
  padding: 0 3rem;
}
.cid-rjQAE1srO8 .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-rjQAE1srO8 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjQAE1srO8 .video-block {
    width: 100% !important;
  }
}
.cid-rjQAPHSwzv {
  background: #ffffff;
}
.cid-rjQAPHSwzv .container-fluid {
  padding: 0 3rem;
}
.cid-rjQAPHSwzv .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rjQAPHSwzv .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjQAPHSwzv .video-block {
    width: 100% !important;
  }
}
.cid-rjQB7o8kZw {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rjQB7o8kZw .container-fluid {
  padding: 0 3rem;
}
.cid-rjQB7o8kZw .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-rjQB7o8kZw .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjQB7o8kZw .video-block {
    width: 100% !important;
  }
}
.cid-rjQBmLZkos {
  background: #ffffff;
}
.cid-rjQBmLZkos .container-fluid {
  padding: 0 3rem;
}
.cid-rjQBmLZkos .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-rjQBmLZkos .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjQBmLZkos .video-block {
    width: 100% !important;
  }
}
.cid-rjQByQ3SWF {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rjQByQ3SWF .container-fluid {
  padding: 0 3rem;
}
.cid-rjQByQ3SWF .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-rjQByQ3SWF .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjQByQ3SWF .video-block {
    width: 100% !important;
  }
}
.cid-rjQKZaMFhU {
  background: #ffffff;
}
.cid-rjQKZaMFhU .container-fluid {
  padding: 0 3rem;
}
.cid-rjQKZaMFhU .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rjQKZaMFhU .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-rjQKZaMFhU .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjQKZaMFhU .image-block {
    width: 100% !important;
  }
}
.cid-rjQNWBEdpq {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rjQNWBEdpq .container-fluid {
  padding: 0 3rem;
}
.cid-rjQNWBEdpq .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-rjQNWBEdpq .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjQNWBEdpq .video-block {
    width: 100% !important;
  }
}
.cid-rjQOtb5VMq {
  background: #bbbbbb;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rjQOtb5VMq .container-fluid {
  padding: 0 3rem;
}
.cid-rjQOtb5VMq .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-rjQOtb5VMq .container-fluid {
    padding: 0 1rem;
  }
  .cid-rjQOtb5VMq .video-block {
    width: 100% !important;
  }
}
.cid-rlrzoqRSWw {
  background: #92b5d5;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-rlrzoqRSWw .container-fluid {
  padding: 0 3rem;
}
.cid-rlrzoqRSWw .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-rlrzoqRSWw .container-fluid {
    padding: 0 1rem;
  }
  .cid-rlrzoqRSWw .video-block {
    width: 100% !important;
  }
}
