@import url(https://fonts.googleapis.com/css?family=Viaoda+Libre:400&display=swap);
@import url(https://fonts.googleapis.com/css?family=Sora:100,200,300,400,500,600,700,800&display=swap);





body {
  font-family: Sora;
}
.display-1 {
  font-family: 'Viaoda Libre', display;
  font-size: 4.625rem;
  line-height: 1.075;
  letter-spacing: .15px;
}
.display-1 > .mbr-iconfont {
  font-size: 5.78125rem;
}
.display-2 {
  font-family: 'Viaoda Libre', display;
  font-size: 3.125rem;
  line-height: 1.075;
  letter-spacing: .46px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .37px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Viaoda Libre', display;
  font-size: 1.875rem;
  line-height: 1.375;
  letter-spacing: .09px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.34375rem;
}
.display-7 {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: .37px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.7rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.2375rem;
    font-size: calc( 2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-sm {
  padding: 12px 31px;
  border-radius: 0;
}
.btn-md {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-lg {
  padding: 14px 40px;
  border-radius: 0;
}
.bg-primary {
  background-color: #272727 !important;
}
.bg-success {
  background-color: #272727 !important;
}
.bg-info {
  background-color: #da86d2 !important;
}
.bg-warning {
  background-color: #da86d2 !important;
}
.bg-danger {
  background-color: #1b1b1b !important;
}
.btn-primary,
.btn-primary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #272727 !important;
  border-color: #272727 !important;
  color: #ffffff !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #f7bd50;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  border-color: #f7bd50 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #f7bd50 !important;
  border-color: #f7bd50 !important;
}
.btn-secondary,
.btn-secondary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #f7bd50 !important;
  border-color: #f7bd50 !important;
  color: #ffffff !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #272727;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  border-color: #272727 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-info,
.btn-info:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #da86d2 !important;
  border-color: #da86d2 !important;
  color: #ffffff !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #f7bd50;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  border-color: #f7bd50 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #f7bd50 !important;
  border-color: #f7bd50 !important;
}
.btn-success,
.btn-success:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #272727 !important;
  border-color: #272727 !important;
  color: #ffffff !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #272727;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  border-color: #272727 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-warning,
.btn-warning:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #da86d2 !important;
  border-color: #da86d2 !important;
  color: #ffffff !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #272727;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  border-color: #272727 !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-danger,
.btn-danger:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #1b1b1b !important;
  border-color: #1b1b1b !important;
  color: #ffffff !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #272727;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  border-color: #272727 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-white,
.btn-white:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #cac8bc;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  border-color: #cac8bc !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #cac8bc !important;
  border-color: #cac8bc !important;
}
.btn-black,
.btn-black:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #282727 !important;
  border-color: #282727 !important;
  color: #ffffff !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #000000;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn[class*="outline"] {
  border: 0;
  border-bottom: 1px solid;
  padding: 0 0 4px 0;
}
.btn[class*="outline"].btn-lg {
  padding: 0 0 5px 0;
}
.btn-primary-outline {
  border-color: #272727;
  color: #272727;
  background-color: transparent;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #f7bd50;
  color: #f7bd50;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  background-color: transparent !important;
  color: #f0a00b;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f7bd50 !important;
  border-color: #f7bd50 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #da86d2;
  color: #da86d2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  background-color: transparent !important;
  color: #c84bbc;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #da86d2 !important;
  border-color: #da86d2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #272727;
  color: #272727;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #da86d2;
  color: #da86d2;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  background-color: transparent !important;
  color: #c84bbc;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #da86d2 !important;
  border-color: #da86d2 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #1b1b1b;
  color: #1b1b1b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  background-color: transparent !important;
  color: #000000;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1b1b1b !important;
  border-color: #1b1b1b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #282727;
  color: #282727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #282727 !important;
  border-color: #282727 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  background-color: transparent !important;
  color: #d4d4d4;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #272727 !important;
}
.text-secondary {
  color: #f7bd50 !important;
}
.text-success {
  color: #272727 !important;
}
.text-info {
  color: #da86d2 !important;
}
.text-warning {
  color: #da86d2 !important;
}
.text-danger {
  color: #1b1b1b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #282727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d7900a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #bf3bb3 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #bf3bb3 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #272727;
}
.nav-tabs .nav-link:not(.active) {
  color: #282727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #da86d2;
}
.alert-warning {
  background-color: #da86d2;
}
.alert-danger {
  background-color: #1b1b1b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #272727;
  border-color: #272727;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #272727;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dadada;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #dadada;
}
.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: #cdcdcd;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
  color: #ef8e81 !important;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #272727;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #272727;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #272727;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #272727;
  border-bottom-color: #272727;
}
.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: #272727 !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: #f7bd50 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23272727' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-seeAka30wu {
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-seeAka30wu .animated-element {
  color: #ffffff;
}
.cid-seeAka30wu .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffffff;
}
@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-seeAka30wu .typed-text {
  margin-bottom: 30px;
  color: #ffffff;
  text-align: center;
}
.cid-seeAka30wu .mbr-section-text {
  margin-bottom: 1.125rem;
}
.cid-seeAka30wu .mbr-section-text,
.cid-seeAka30wu .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-seeAka30wu .typed-text .typed-text {
  color: #ef8e81;
}
.cid-sv7BPfF4u4 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sv7BPfF4u4 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sv7BPfF4u4 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #a5bdce;
  text-align: center;
}
.cid-sv7BPfF4u4 .title-text {
  color: #7394ab;
  text-align: center;
}
.cid-sv7BPfF4u4 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sv7BPfF4u4 .section-text,
.cid-sv7BPfF4u4 .mbr-section-btn {
  text-align: justify;
  color: #4c4a4b;
}
.cid-suGb0Spk8H {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-suGb0Spk8H .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-suGb0Spk8H .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #a5bdce;
  text-align: center;
}
.cid-suGb0Spk8H .title-text {
  color: #7394ab;
  text-align: center;
}
.cid-suGb0Spk8H H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-suGb0Spk8H .section-text,
.cid-suGb0Spk8H .mbr-section-btn {
  text-align: justify;
  color: #4c4a4b;
}
.cid-suMvq4cZcy.popup-builder {
  background-color: #ffffff;
}
.cid-suMvq4cZcy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-suMvq4cZcy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-suMvq4cZcy .modal-content,
.cid-suMvq4cZcy .modal-dialog {
  height: auto;
}
.cid-suMvq4cZcy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-suMvq4cZcy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-suMvq4cZcy .form-wrapper .mbr-form .form-group,
  .cid-suMvq4cZcy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-suMvq4cZcy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-suMvq4cZcy .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-suMvq4cZcy .mbr-text {
  text-align: center;
}
.cid-suMvq4cZcy .pt-0 {
  padding-top: 0 !important;
}
.cid-suMvq4cZcy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-suMvq4cZcy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-suMvq4cZcy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-suMvq4cZcy .modal-open {
  overflow: hidden;
}
.cid-suMvq4cZcy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-suMvq4cZcy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-suMvq4cZcy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-suMvq4cZcy .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-suMvq4cZcy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-suMvq4cZcy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-suMvq4cZcy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-suMvq4cZcy .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-suMvq4cZcy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-suMvq4cZcy .modal-backdrop.fade {
  opacity: 0;
}
.cid-suMvq4cZcy .modal-backdrop.show {
  opacity: .5;
}
.cid-suMvq4cZcy .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-suMvq4cZcy .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-suMvq4cZcy .modal-header .close:hover {
  opacity: 1;
}
.cid-suMvq4cZcy .modal-header .close:focus {
  outline: none;
}
.cid-suMvq4cZcy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-suMvq4cZcy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-suMvq4cZcy .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-suMvq4cZcy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-suMvq4cZcy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-suMvq4cZcy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-suMvq4cZcy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-suMvq4cZcy .modal-sm {
    max-width: 300px;
  }
  .cid-suMvq4cZcy .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-suMvq4cZcy .modal-lg,
  .cid-suMvq4cZcy .modal-xl {
    max-width: 800px;
  }
  .cid-suMvq4cZcy .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-suMvq4cZcy .modal-xl {
    max-width: 1140px;
  }
  .cid-suMvq4cZcy .container {
    max-width: 1140px;
  }
}
.cid-suMvq4cZcy .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-suMvq4cZcy .container {
    max-width: 720px;
  }
}
.cid-suMvq4cZcy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-suMvq4cZcy .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-suMvq4cZcy .form-group {
  margin-bottom: 1rem;
}
.cid-suMvq4cZcy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-suMvq4cZcy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-suMvq4cZcy .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-suMmxQLiDn.popup-builder {
  background-color: #ffffff;
}
.cid-suMmxQLiDn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-suMmxQLiDn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-suMmxQLiDn .modal-content,
.cid-suMmxQLiDn .modal-dialog {
  height: auto;
}
.cid-suMmxQLiDn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-suMmxQLiDn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-suMmxQLiDn .form-wrapper .mbr-form .form-group,
  .cid-suMmxQLiDn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-suMmxQLiDn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-suMmxQLiDn .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-suMmxQLiDn .mbr-text {
  text-align: center;
}
.cid-suMmxQLiDn .pt-0 {
  padding-top: 0 !important;
}
.cid-suMmxQLiDn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-suMmxQLiDn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-suMmxQLiDn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-suMmxQLiDn .modal-open {
  overflow: hidden;
}
.cid-suMmxQLiDn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-suMmxQLiDn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-suMmxQLiDn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-suMmxQLiDn .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-suMmxQLiDn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-suMmxQLiDn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-suMmxQLiDn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-suMmxQLiDn .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-suMmxQLiDn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-suMmxQLiDn .modal-backdrop.fade {
  opacity: 0;
}
.cid-suMmxQLiDn .modal-backdrop.show {
  opacity: .5;
}
.cid-suMmxQLiDn .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-suMmxQLiDn .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-suMmxQLiDn .modal-header .close:hover {
  opacity: 1;
}
.cid-suMmxQLiDn .modal-header .close:focus {
  outline: none;
}
.cid-suMmxQLiDn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-suMmxQLiDn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-suMmxQLiDn .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-suMmxQLiDn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-suMmxQLiDn .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-suMmxQLiDn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-suMmxQLiDn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-suMmxQLiDn .modal-sm {
    max-width: 300px;
  }
  .cid-suMmxQLiDn .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-suMmxQLiDn .modal-lg,
  .cid-suMmxQLiDn .modal-xl {
    max-width: 800px;
  }
  .cid-suMmxQLiDn .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-suMmxQLiDn .modal-xl {
    max-width: 1140px;
  }
  .cid-suMmxQLiDn .container {
    max-width: 1140px;
  }
}
.cid-suMmxQLiDn .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-suMmxQLiDn .container {
    max-width: 720px;
  }
}
.cid-suMmxQLiDn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-suMmxQLiDn .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-suMmxQLiDn .form-group {
  margin-bottom: 1rem;
}
.cid-suMmxQLiDn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-suMmxQLiDn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-suMmxQLiDn .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-seeC0rKSe0 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f7bd50;
}
@media (max-width: 992px) {
  .cid-seeC0rKSe0 {
    background-color: #272727;
  }
  .cid-seeC0rKSe0 .accordion-content-wrapper {
    padding-top: 10px;
  }
  .cid-seeC0rKSe0 .mbr-section-subtitle {
    margin-top: 0;
    line-height: 2 !important;
  }
}
.cid-seeC0rKSe0 .mbr-overlay {
  padding: 0;
  background: #272727;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
  bottom: -5%;
}
.cid-seeC0rKSe0 .header-text {
  flex: 1 1 auto;
  letter-spacing: 1.61px;
}
.cid-seeC0rKSe0 h4 {
  letter-spacing: 3.27px !important;
  font-style: normal;
}
.cid-seeC0rKSe0 .panel-collapse {
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: left;
  padding-left: 0px;
  padding-right: 0px;
}
.cid-seeC0rKSe0 .mbr-section-subtitle {
  font-weight: 500;
  color: #f7bd50;
  margin: 30px 0;
}
.cid-seeC0rKSe0 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-seeC0rKSe0 .accordion-wrapper {
  padding: 0 25px;
}
.cid-seeC0rKSe0 .accordion-content-wrapper {
  padding: 50px 0;
  max-width: 484px;
  margin: 0 auto;
}
.cid-seeC0rKSe0 .vertical-center {
  align-items: center;
}
.cid-seeC0rKSe0 .panel-group {
  width: 100%;
}
.cid-seeC0rKSe0 .card {
  border-bottom: 1px solid #feeac6 !important;
  border-radius: 0px;
}
.cid-seeC0rKSe0 .card:first-of-type {
  border-top: 1px solid #feeac6;
}
.cid-seeC0rKSe0 .card .card-header {
  border-radius: 0px;
  border: 0px !important;
  padding: 0;
  background-color: transparent;
  padding: 20px 0;
}
.cid-seeC0rKSe0 .card .card-header a.panel-title {
  transition: all .3s;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-seeC0rKSe0 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-seeC0rKSe0 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-seeC0rKSe0 .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-seeC0rKSe0 .card h4,
.cid-seeC0rKSe0 .card h5 {
  margin-bottom: 0;
}
.cid-seeC0rKSe0 .card p {
  margin: 0;
}
.cid-seeC0rKSe0 .card .panel-body {
  background-color: transparent;
  padding: 4px 0 20px 0;
}
.cid-seeC0rKSe0 .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-seeC0rKSe0 .sign {
  color: #ffffff;
}
.cid-seeC0rKSe0 .sign:before {
  content: "\e95d";
  font-weight: 700;
}
@media (max-width: 991px) {
  .cid-seeC0rKSe0 .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-seeC0rKSe0 .header-text,
.cid-seeC0rKSe0 .sign P {
  text-align: left;
}
.cid-seeC0rKSe0 .mbr-text {
  color: #ffffff;
}
.cid-seeC0rKSe0 .mbri-arrow-up {
  max-height: 7px;
  overflow: hidden;
  vertical-align: middle;
}
.cid-seeC0rKSe0 .mbri-arrow-up:before {
  content: "\e94c";
  font-weight: 700;
}
.cid-seeC0rKSe0 .text-container {
  max-width: 934px;
}
.cid-seeC0rKSe0 .text-container p {
  padding: 30px 0 20.6px 0;
}
.cid-seeC0rKSe0 .panel-title {
  background: transparent;
}
.cid-seeC0rKSe0 H4 {
  color: #ffffff;
}
.cid-seeC0rKSe0 .header-text,
.cid-seeC0rKSe0 .sign {
  color: #feeac6;
}
.cid-seeC0rKSe0 .mbr-text,
.cid-seeC0rKSe0 .mbr-section-btn {
  color: #f2f2f2;
}
.cid-seeC0rKSe0 H5 {
  color: #ebc6b8;
}
.cid-seeC0rKSe0 .panel-text {
  color: #ffffff;
}
.cid-se3MVcevFk .nav-item:focus,
.cid-se3MVcevFk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-se3MVcevFk .nav-item {
    position: relative;
  }
}
.cid-se3MVcevFk .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-se3MVcevFk .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-se3MVcevFk .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-se3MVcevFk .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-se3MVcevFk .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-se3MVcevFk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-se3MVcevFk .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.show,
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-se3MVcevFk .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se3MVcevFk .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-se3MVcevFk .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se3MVcevFk .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-se3MVcevFk .navbar.collapsed .right-menu,
.cid-se3MVcevFk .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar .navbar-collapse.show,
  .cid-se3MVcevFk .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-se3MVcevFk .navbar .navbar-collapse.show .brand-container,
  .cid-se3MVcevFk .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-se3MVcevFk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se3MVcevFk .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-se3MVcevFk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se3MVcevFk .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-se3MVcevFk .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-se3MVcevFk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-se3MVcevFk .navbar .right-menu,
  .cid-se3MVcevFk .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-se3MVcevFk .navbar.navbar-short {
  min-height: 60px;
}
.cid-se3MVcevFk .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-se3MVcevFk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se3MVcevFk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-se3MVcevFk .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-se3MVcevFk .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-se3MVcevFk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se3MVcevFk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se3MVcevFk .dropdown-item.active,
.cid-se3MVcevFk .dropdown-item:active {
  background-color: transparent;
}
.cid-se3MVcevFk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se3MVcevFk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-se3MVcevFk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-se3MVcevFk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se3MVcevFk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se3MVcevFk ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-se3MVcevFk .navbar-buttons {
  margin-left: auto;
}
.cid-se3MVcevFk button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler:hover {
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler:active {
  outline: none;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se3MVcevFk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-se3MVcevFk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se3MVcevFk .navbar-dropdown {
  position: fixed;
}
.cid-se3MVcevFk a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-se3MVcevFk a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-se3MVcevFk a.nav-link:hover:before {
  transform: scale(1);
}
.cid-se3MVcevFk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se3MVcevFk .right-menu,
.cid-se3MVcevFk .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-se3MVcevFk .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se3MVcevFk .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se3MVcevFk .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se3MVcevFk .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-se3MVcevFk .card-wrapper {
  z-index: 3;
}
.cid-se3MVcevFk .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-se3MVcevFk .navbar-collapse {
    padding-top: 0;
  }
}
.cid-se3MVcevFk .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-se3MVcevFk .navbar-brand img {
  width: auto !important;
}
.cid-suGZcWB3KP {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-suGZcWB3KP .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-suGZcWB3KP .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-suGZcWB3KP .title-text {
  color: #231f59;
  text-align: center;
}
.cid-suGZcWB3KP H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-suGZcWB3KP .section-text,
.cid-suGZcWB3KP .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-seeELHPvVE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #272727;
}
.cid-seeELHPvVE img,
.cid-seeELHPvVE .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-seeELHPvVE .mbr-section-subtitle {
  margin-bottom: 60px;
  color: #ffffff;
}
.cid-seeELHPvVE .mbr-section-title {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-seeELHPvVE .item:focus,
.cid-seeELHPvVE span:focus {
  outline: none;
}
.cid-seeELHPvVE .item {
  cursor: pointer;
}
.cid-seeELHPvVE .item-title {
  letter-spacing: 2.54px;
  color: #6a3649;
}
.cid-seeELHPvVE .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-seeELHPvVE .item:not(:last-child) {
  margin-bottom: 30px;
}
.cid-seeELHPvVE .item-subtitle {
  color: #ffbf47;
}
.cid-seeELHPvVE .mbr-text,
.cid-seeELHPvVE .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-sKAUcfghGs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f1eb;
}
.cid-sKAUcfghGs .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sKAUcfghGs .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sKAUcfghGs H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sKAUcfghGs .section-text,
.cid-sKAUcfghGs .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-se82wgZHLl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-se82wgZHLl .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-se82wgZHLl .copyright-section,
.cid-se82wgZHLl .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-se82wgZHLl .line {
  margin: 10px 0;
  width: 100%;
}
.cid-se82wgZHLl .logo-section img {
  margin: 0 auto;
}
.cid-se82wgZHLl .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-se82wgZHLl .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-se82wgZHLl .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-se82wgZHLl .social-media ul li {
    margin-left: 30px;
  }
  .cid-se82wgZHLl .container-fluid {
    padding: 0 2rem;
  }
  .cid-se82wgZHLl .menu-container {
    margin-bottom: 20px;
  }
  .cid-se82wgZHLl .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-se82wgZHLl .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-se82wgZHLl .copyright-section {
    order: 1;
  }
  .cid-se82wgZHLl .copyright-section hr {
    display: none;
  }
  .cid-se82wgZHLl .social-media {
    margin-top: 30px;
  }
  .cid-se82wgZHLl .social-media li:first-child {
    margin-left: 0;
  }
  .cid-se82wgZHLl .line {
    margin: 25px 0;
  }
  .cid-se82wgZHLl .mobirise-rights,
  .cid-se82wgZHLl .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-se82wgZHLl .mbr-text,
.cid-se82wgZHLl .copyright-section {
  color: #272727;
}
.cid-suHexSyGQO {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #f7bd50;
}
@media (max-width: 991px) {
  .cid-suHexSyGQO .mbr-section-title,
  .cid-suHexSyGQO .mbr-section-subtitle,
  .cid-suHexSyGQO .mbr-section-btn,
  .cid-suHexSyGQO .mbr-text {
    text-align: center;
  }
}
.cid-suHexSyGQO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-suHexSyGQO .mbr-text,
.cid-suHexSyGQO .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-suHexSyGQO .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-suHexSyGQO .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-suHexSyGQO .subtitle {
    text-align: center;
  }
}
.cid-suHexSyGQO .mbr-section-subtitle {
  color: #082c4e;
}
.cid-suHexSyGQO span {
  padding-right: 1rem;
}
.cid-suHexSyGQO .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-suHexSyGQO .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #272727;
}
@media (max-width: 767px) {
  .cid-suHexSyGQO .dot {
    padding-left: 0rem;
  }
  .cid-suHexSyGQO .dot:before {
    content: none;
  }
}
.cid-suHgxGdUaD {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
@media (max-width: 991px) {
  .cid-suHgxGdUaD .mbr-section-title,
  .cid-suHgxGdUaD .mbr-section-subtitle,
  .cid-suHgxGdUaD .mbr-section-btn,
  .cid-suHgxGdUaD .mbr-text {
    text-align: center;
  }
}
.cid-suHgxGdUaD .mbr-section-title {
  color: #282727;
  text-align: center;
}
.cid-suHgxGdUaD .mbr-text,
.cid-suHgxGdUaD .mbr-section-btn {
  color: #282727;
  text-align: center;
}
.cid-suHgxGdUaD .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-suHgxGdUaD .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-suHgxGdUaD .subtitle {
    text-align: center;
  }
}
.cid-suHgxGdUaD .mbr-section-subtitle {
  color: #082c4e;
}
.cid-suHgxGdUaD span {
  padding-right: 1rem;
}
.cid-suHgxGdUaD .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-suHgxGdUaD .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #272727;
}
@media (max-width: 767px) {
  .cid-suHgxGdUaD .dot {
    padding-left: 0rem;
  }
  .cid-suHgxGdUaD .dot:before {
    content: none;
  }
}
.cid-suHhmOCgVL {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-suHhmOCgVL .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-suHhmOCgVL .form-group {
  margin-bottom: 30px;
}
.cid-suHhmOCgVL img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-suHhmOCgVL .mbr-form {
  max-width: 990px;
}
.cid-suHhmOCgVL textarea {
  min-height: 150px;
  resize: none;
}
.cid-suHhmOCgVL .mbr-form .btn {
  width: auto;
  justify-content: space-between;
}
.cid-suHhmOCgVL .mbr-form .btn .mbr-iconfont {
  order: 2;
  font-size: 1.5rem;
}
.cid-suHhmOCgVL .mbr-text {
  text-align: center;
}
.cid-suHhmOCgVL .mbr-section-title {
  text-align: center;
}
.cid-suH4Cfjq5f .nav-item:focus,
.cid-suH4Cfjq5f .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-suH4Cfjq5f .nav-item {
    position: relative;
  }
}
.cid-suH4Cfjq5f .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-suH4Cfjq5f .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-suH4Cfjq5f .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-suH4Cfjq5f .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-suH4Cfjq5f .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-suH4Cfjq5f .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-suH4Cfjq5f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-suH4Cfjq5f .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suH4Cfjq5f .navbar.collapsed .navbar-collapse.show,
.cid-suH4Cfjq5f .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-suH4Cfjq5f .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-suH4Cfjq5f .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-suH4Cfjq5f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-suH4Cfjq5f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suH4Cfjq5f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suH4Cfjq5f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suH4Cfjq5f .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-suH4Cfjq5f .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-suH4Cfjq5f .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-suH4Cfjq5f .navbar.collapsed .right-menu,
.cid-suH4Cfjq5f .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-suH4Cfjq5f .navbar .navbar-collapse.show,
  .cid-suH4Cfjq5f .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-suH4Cfjq5f .navbar .navbar-collapse.show .brand-container,
  .cid-suH4Cfjq5f .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-suH4Cfjq5f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suH4Cfjq5f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-suH4Cfjq5f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suH4Cfjq5f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suH4Cfjq5f .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-suH4Cfjq5f .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suH4Cfjq5f .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-suH4Cfjq5f .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-suH4Cfjq5f .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-suH4Cfjq5f .navbar .right-menu,
  .cid-suH4Cfjq5f .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-suH4Cfjq5f .navbar.navbar-short {
  min-height: 60px;
}
.cid-suH4Cfjq5f .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-suH4Cfjq5f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suH4Cfjq5f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-suH4Cfjq5f .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-suH4Cfjq5f .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-suH4Cfjq5f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suH4Cfjq5f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suH4Cfjq5f .dropdown-item.active,
.cid-suH4Cfjq5f .dropdown-item:active {
  background-color: transparent;
}
.cid-suH4Cfjq5f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suH4Cfjq5f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-suH4Cfjq5f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-suH4Cfjq5f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suH4Cfjq5f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suH4Cfjq5f ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-suH4Cfjq5f ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-suH4Cfjq5f .navbar-buttons {
  margin-left: auto;
}
.cid-suH4Cfjq5f button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-suH4Cfjq5f button.navbar-toggler:hover {
  outline: none;
}
.cid-suH4Cfjq5f button.navbar-toggler:active {
  outline: none;
}
.cid-suH4Cfjq5f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suH4Cfjq5f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suH4Cfjq5f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suH4Cfjq5f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suH4Cfjq5f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suH4Cfjq5f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suH4Cfjq5f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-suH4Cfjq5f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-suH4Cfjq5f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suH4Cfjq5f .navbar-dropdown {
  position: fixed;
}
.cid-suH4Cfjq5f a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-suH4Cfjq5f a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-suH4Cfjq5f a.nav-link:hover:before {
  transform: scale(1);
}
.cid-suH4Cfjq5f .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suH4Cfjq5f .right-menu,
.cid-suH4Cfjq5f .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-suH4Cfjq5f .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suH4Cfjq5f .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suH4Cfjq5f .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suH4Cfjq5f .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suH4Cfjq5f .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-suH4Cfjq5f .card-wrapper {
  z-index: 3;
}
.cid-suH4Cfjq5f .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-suH4Cfjq5f .navbar-collapse {
    padding-top: 0;
  }
}
.cid-suH4Cfjq5f .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-suH4Cfjq5f .navbar-brand img {
  width: auto !important;
}
.cid-suH4CkuWLM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-suH4CkuWLM .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-suH4CkuWLM .copyright-section,
.cid-suH4CkuWLM .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-suH4CkuWLM .line {
  margin: 10px 0;
  width: 100%;
}
.cid-suH4CkuWLM .logo-section img {
  margin: 0 auto;
}
.cid-suH4CkuWLM .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-suH4CkuWLM .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-suH4CkuWLM .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-suH4CkuWLM .social-media ul li {
    margin-left: 30px;
  }
  .cid-suH4CkuWLM .container-fluid {
    padding: 0 2rem;
  }
  .cid-suH4CkuWLM .menu-container {
    margin-bottom: 20px;
  }
  .cid-suH4CkuWLM .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-suH4CkuWLM .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-suH4CkuWLM .copyright-section {
    order: 1;
  }
  .cid-suH4CkuWLM .copyright-section hr {
    display: none;
  }
  .cid-suH4CkuWLM .social-media {
    margin-top: 30px;
  }
  .cid-suH4CkuWLM .social-media li:first-child {
    margin-left: 0;
  }
  .cid-suH4CkuWLM .line {
    margin: 25px 0;
  }
  .cid-suH4CkuWLM .mobirise-rights,
  .cid-suH4CkuWLM .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-suH4CkuWLM .mbr-text,
.cid-suH4CkuWLM .copyright-section {
  color: #272727;
}
.cid-suHoK4iHHs {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f7bd50;
}
@media (max-width: 991px) {
  .cid-suHoK4iHHs .mbr-section-title,
  .cid-suHoK4iHHs .mbr-section-subtitle,
  .cid-suHoK4iHHs .mbr-section-btn,
  .cid-suHoK4iHHs .mbr-text {
    text-align: center;
  }
}
.cid-suHoK4iHHs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-suHoK4iHHs .mbr-text,
.cid-suHoK4iHHs .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-suHoK4iHHs .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-suHoK4iHHs .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-suHoK4iHHs .subtitle {
    text-align: center;
  }
}
.cid-suHoK4iHHs .mbr-section-subtitle {
  color: #082c4e;
}
.cid-suHoK4iHHs span {
  padding-right: 1rem;
}
.cid-suHoK4iHHs .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-suHoK4iHHs .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #272727;
}
@media (max-width: 767px) {
  .cid-suHoK4iHHs .dot {
    padding-left: 0rem;
  }
  .cid-suHoK4iHHs .dot:before {
    content: none;
  }
}
.cid-suHs8OmEW9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-suHs8OmEW9 .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-suHs8OmEW9 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-suHs8OmEW9 .mbr-section-subtitle {
  color: #767676;
}
.cid-suHs8OmEW9 .panel-group {
  width: 100%;
}
.cid-suHs8OmEW9 .panel-text {
  color: #767676;
  text-align: justify;
}
.cid-suHs8OmEW9 .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-suHs8OmEW9 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-suHs8OmEW9 .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f6f6f6;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-suHs8OmEW9 .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-suHs8OmEW9 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-suHs8OmEW9 .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-suHs8OmEW9 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-suHs8OmEW9 .card .panel-body {
  background: #ffffff;
}
.cid-suHs8OmEW9 .sign {
  color: #232323;
}
.cid-suHoK6wdzp .nav-item:focus,
.cid-suHoK6wdzp .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-suHoK6wdzp .nav-item {
    position: relative;
  }
}
.cid-suHoK6wdzp .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-suHoK6wdzp .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-suHoK6wdzp .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-suHoK6wdzp .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-suHoK6wdzp .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-suHoK6wdzp .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-suHoK6wdzp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-suHoK6wdzp .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suHoK6wdzp .navbar.collapsed .navbar-collapse.show,
.cid-suHoK6wdzp .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-suHoK6wdzp .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-suHoK6wdzp .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-suHoK6wdzp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-suHoK6wdzp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suHoK6wdzp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suHoK6wdzp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suHoK6wdzp .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-suHoK6wdzp .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-suHoK6wdzp .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-suHoK6wdzp .navbar.collapsed .right-menu,
.cid-suHoK6wdzp .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-suHoK6wdzp .navbar .navbar-collapse.show,
  .cid-suHoK6wdzp .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-suHoK6wdzp .navbar .navbar-collapse.show .brand-container,
  .cid-suHoK6wdzp .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-suHoK6wdzp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suHoK6wdzp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-suHoK6wdzp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suHoK6wdzp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suHoK6wdzp .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-suHoK6wdzp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suHoK6wdzp .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-suHoK6wdzp .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-suHoK6wdzp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-suHoK6wdzp .navbar .right-menu,
  .cid-suHoK6wdzp .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-suHoK6wdzp .navbar.navbar-short {
  min-height: 60px;
}
.cid-suHoK6wdzp .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-suHoK6wdzp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suHoK6wdzp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-suHoK6wdzp .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-suHoK6wdzp .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-suHoK6wdzp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suHoK6wdzp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suHoK6wdzp .dropdown-item.active,
.cid-suHoK6wdzp .dropdown-item:active {
  background-color: transparent;
}
.cid-suHoK6wdzp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suHoK6wdzp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-suHoK6wdzp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-suHoK6wdzp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suHoK6wdzp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suHoK6wdzp ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-suHoK6wdzp ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-suHoK6wdzp .navbar-buttons {
  margin-left: auto;
}
.cid-suHoK6wdzp button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-suHoK6wdzp button.navbar-toggler:hover {
  outline: none;
}
.cid-suHoK6wdzp button.navbar-toggler:active {
  outline: none;
}
.cid-suHoK6wdzp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suHoK6wdzp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suHoK6wdzp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suHoK6wdzp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suHoK6wdzp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suHoK6wdzp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suHoK6wdzp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-suHoK6wdzp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-suHoK6wdzp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suHoK6wdzp .navbar-dropdown {
  position: fixed;
}
.cid-suHoK6wdzp a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-suHoK6wdzp a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-suHoK6wdzp a.nav-link:hover:before {
  transform: scale(1);
}
.cid-suHoK6wdzp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suHoK6wdzp .right-menu,
.cid-suHoK6wdzp .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-suHoK6wdzp .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suHoK6wdzp .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suHoK6wdzp .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suHoK6wdzp .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suHoK6wdzp .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-suHoK6wdzp .card-wrapper {
  z-index: 3;
}
.cid-suHoK6wdzp .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-suHoK6wdzp .navbar-collapse {
    padding-top: 0;
  }
}
.cid-suHoK6wdzp .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-suHoK6wdzp .navbar-brand img {
  width: auto !important;
}
.cid-suHoK7oxwT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-suHoK7oxwT .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-suHoK7oxwT .copyright-section,
.cid-suHoK7oxwT .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-suHoK7oxwT .line {
  margin: 10px 0;
  width: 100%;
}
.cid-suHoK7oxwT .logo-section img {
  margin: 0 auto;
}
.cid-suHoK7oxwT .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-suHoK7oxwT .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-suHoK7oxwT .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-suHoK7oxwT .social-media ul li {
    margin-left: 30px;
  }
  .cid-suHoK7oxwT .container-fluid {
    padding: 0 2rem;
  }
  .cid-suHoK7oxwT .menu-container {
    margin-bottom: 20px;
  }
  .cid-suHoK7oxwT .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-suHoK7oxwT .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-suHoK7oxwT .copyright-section {
    order: 1;
  }
  .cid-suHoK7oxwT .copyright-section hr {
    display: none;
  }
  .cid-suHoK7oxwT .social-media {
    margin-top: 30px;
  }
  .cid-suHoK7oxwT .social-media li:first-child {
    margin-left: 0;
  }
  .cid-suHoK7oxwT .line {
    margin: 25px 0;
  }
  .cid-suHoK7oxwT .mobirise-rights,
  .cid-suHoK7oxwT .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-suHoK7oxwT .mbr-text,
.cid-suHoK7oxwT .copyright-section {
  color: #272727;
}
.cid-suK7DeWtgr {
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/banner008-1600x724.jpg");
}
.cid-suK7DeWtgr .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-suK7DeWtgr .wrap {
  padding: 0 25px;
}
.cid-suK7DeWtgr .wrap:before {
  content: '';
  position: absolute;
  width: 740px;
  height: 740px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #d90a2c;
  top: 0px;
  right: 0px;
}
.cid-suK7DeWtgr .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-suK7DeWtgr .mbr-text {
  margin-bottom: 20px;
}
.cid-suK7DeWtgr .mbr-section-btn {
  margin-top: 10px;
}
.cid-suK7DeWtgr .mbr-media {
  display: inline-block;
}
.cid-suK7DeWtgr .mbr-figure {
  align-self: flex-start;
  margin-bottom: 20px;
  width: 100%;
}
.cid-suK7DeWtgr .anim {
  width: 62px;
  height: 62px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  position: relative;
  background-color: rgba(25, 31, 35, 0.95);
  border-radius: 50%;
}
.cid-suK7DeWtgr .anim span {
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  width: 62px;
  height: 62px;
  line-height: 62px;
  position: relative;
  display: inline-block;
  margin-left: 2px;
}
.cid-suK7DeWtgr .anim span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-suK7DeWtgr .anim:before {
  content: '';
  border-color: inherit;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background: rgba(25, 31, 35, 0.5);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-duration: 1.2s;
  animation-name: popup__video;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}
.cid-suK7DeWtgr .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: #191f23;
  width: 100%;
  height: 100%;
}
.cid-suK7DeWtgr .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-suK7DeWtgr .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-suK7DeWtgr a.close {
  position: absolute;
  right: 100px;
  top: 50px;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  padding: 10px;
  transition: all 0.2s;
}
.cid-suK7DeWtgr a.close:hover {
  color: #ffffff;
}
@keyframes popup__video {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@media (max-width: 1199px) {
  .cid-suK7DeWtgr .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-suK7DeWtgr .container,
  .cid-suK7DeWtgr .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-suK7DeWtgr .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-suK7DeWtgr a.close {
    right: 50px;
    top: 25px;
  }
  .cid-suK7DeWtgr .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-suK7DeWtgr .mbr-text,
.cid-suK7DeWtgr .mbr-section-btn {
  text-align: left;
}
.cid-suK7DeWtgr .mbr-section-title,
.cid-suK7DeWtgr .mbr-figure {
  text-align: left;
}
.cid-suK9ZMwMVY {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-suK9ZMwMVY .row {
  background: #ffffff;
  padding: 2rem 1rem;
  margin: 0rem;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-suK9ZMwMVY .row {
    padding: 1rem 0rem;
  }
}
.cid-suK9ZMwMVY img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-suK9ZMwMVY img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-suK9ZMwMVY .image-wrapper {
    padding-bottom: 2rem;
  }
}
.cid-suK9ZMwMVY .mbr-text,
.cid-suK9ZMwMVY .mbr-section-btn {
  color: #777777;
  text-align: justify;
}
.cid-suK9ZMwMVY .mbr-section-subtitle {
  color: #14191e;
}
.cid-tCfHtFuJU4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-tCfHtFuJU4 .row {
  background: #ffffff;
  padding: 2rem 1rem;
  margin: 0rem;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-tCfHtFuJU4 .row {
    padding: 1rem 0rem;
  }
}
.cid-tCfHtFuJU4 img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tCfHtFuJU4 img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tCfHtFuJU4 .image-wrapper {
    padding-bottom: 2rem;
  }
}
.cid-tCfHtFuJU4 .mbr-text,
.cid-tCfHtFuJU4 .mbr-section-btn {
  color: #777777;
  text-align: justify;
}
.cid-tCfHtFuJU4 .mbr-section-subtitle {
  color: #14191e;
}
.cid-tCfPctI0Ic {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-tCfPctI0Ic .row {
  background: #ffffff;
  padding: 2rem 1rem;
  margin: 0rem;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-tCfPctI0Ic .row {
    padding: 1rem 0rem;
  }
}
.cid-tCfPctI0Ic img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-tCfPctI0Ic img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tCfPctI0Ic .image-wrapper {
    padding-bottom: 2rem;
  }
}
.cid-tCfPctI0Ic .mbr-text,
.cid-tCfPctI0Ic .mbr-section-btn {
  color: #777777;
  text-align: center;
}
.cid-tCfPctI0Ic .mbr-section-subtitle {
  color: #14191e;
}
.cid-suKayPkamg {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-suKayPkamg .row {
  background: #ffffff;
  padding: 2rem 1rem;
  margin: 0rem;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-suKayPkamg .row {
    padding: 1rem 0rem;
  }
}
.cid-suKayPkamg img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-suKayPkamg img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-suKayPkamg .image-wrapper {
    padding-bottom: 2rem;
  }
}
.cid-suKayPkamg .mbr-text,
.cid-suKayPkamg .mbr-section-btn {
  color: #777777;
}
.cid-suKayPkamg .mbr-section-subtitle {
  color: #14191e;
}
.cid-suKl0i7Neq {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-suKl0i7Neq .row {
  background: #ffffff;
  padding: 2rem 1rem;
  margin: 0rem;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-suKl0i7Neq .row {
    padding: 1rem 0rem;
  }
}
.cid-suKl0i7Neq img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-suKl0i7Neq img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-suKl0i7Neq .image-wrapper {
    padding-bottom: 2rem;
  }
}
.cid-suKl0i7Neq .mbr-text,
.cid-suKl0i7Neq .mbr-section-btn {
  color: #777777;
  text-align: justify;
}
.cid-suKl0i7Neq .mbr-section-subtitle {
  color: #7394ab;
}
.cid-suKwi0iVoI {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-suKwi0iVoI .row {
  background: #ffffff;
  padding: 2rem 1rem;
  margin: 0rem;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-suKwi0iVoI .row {
    padding: 1rem 0rem;
  }
}
.cid-suKwi0iVoI img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-suKwi0iVoI img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-suKwi0iVoI .image-wrapper {
    padding-bottom: 2rem;
  }
}
.cid-suKwi0iVoI .mbr-text,
.cid-suKwi0iVoI .mbr-section-btn {
  color: #777777;
  text-align: justify;
}
.cid-suKwi0iVoI .mbr-section-subtitle {
  color: #7394ab;
}
.cid-suI9j3HkMM {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-suI9j3HkMM .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-suI9j3HkMM .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-suI9j3HkMM .title-text {
  color: #231f59;
  text-align: center;
}
.cid-suI9j3HkMM H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-suI9j3HkMM .section-text,
.cid-suI9j3HkMM .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-suI90ZN8pd .modal-body .close {
  background: #1b1b1b;
}
.cid-suI90ZN8pd .modal-body .close span {
  font-style: normal;
}
.cid-suI90ZN8pd .carousel-inner > .active,
.cid-suI90ZN8pd .carousel-inner > .next,
.cid-suI90ZN8pd .carousel-inner > .prev {
  display: flex;
}
.cid-suI90ZN8pd .carousel-control .icon-next,
.cid-suI90ZN8pd .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-suI90ZN8pd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suI90ZN8pd .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-suI90ZN8pd .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-suI90ZN8pd .boxed-slider > div {
  position: relative;
}
.cid-suI90ZN8pd .container img {
  width: 100%;
}
.cid-suI90ZN8pd .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-suI90ZN8pd .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-suI90ZN8pd .mbr-table-cell {
  padding: 0;
}
.cid-suI90ZN8pd .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-suI90ZN8pd .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-suI90ZN8pd .mbr-overlay {
  z-index: 1;
}
.cid-suI90ZN8pd .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-suI90ZN8pd .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-suI90ZN8pd .carousel-item.active.right,
.cid-suI90ZN8pd .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-suI90ZN8pd .carousel-item.active.left,
.cid-suI90ZN8pd .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-suI90ZN8pd .carousel-item.active,
.cid-suI90ZN8pd .carousel-item.next.left,
.cid-suI90ZN8pd .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-suI90ZN8pd .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-suI90ZN8pd .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suI90ZN8pd .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suI90ZN8pd .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-suI90ZN8pd .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-suI90ZN8pd .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-suI90ZN8pd .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-suI90ZN8pd .mbr-slider .carousel-indicators li.active,
.cid-suI90ZN8pd .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-suI90ZN8pd .mbr-slider .carousel-indicators li::after,
.cid-suI90ZN8pd .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-suI90ZN8pd .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-suI90ZN8pd .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-suI90ZN8pd .mbr-slider > .container img {
  width: 100%;
}
.cid-suI90ZN8pd .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-suI90ZN8pd .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-suI90ZN8pd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-suI90ZN8pd .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-suI90ZN8pd .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-suI90ZN8pd .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-suI90ZN8pd .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-suI90ZN8pd .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-suI90ZN8pd .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-suI90ZN8pd .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-suI90ZN8pd .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-suI90ZN8pd .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-suI90ZN8pd .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-suI8MyRXhK .nav-item:focus,
.cid-suI8MyRXhK .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-suI8MyRXhK .nav-item {
    position: relative;
  }
}
.cid-suI8MyRXhK .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-suI8MyRXhK .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-suI8MyRXhK .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-suI8MyRXhK .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-suI8MyRXhK .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-suI8MyRXhK .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-suI8MyRXhK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-suI8MyRXhK .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suI8MyRXhK .navbar.collapsed .navbar-collapse.show,
.cid-suI8MyRXhK .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-suI8MyRXhK .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-suI8MyRXhK .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-suI8MyRXhK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-suI8MyRXhK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suI8MyRXhK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suI8MyRXhK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suI8MyRXhK .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-suI8MyRXhK .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-suI8MyRXhK .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-suI8MyRXhK .navbar.collapsed .right-menu,
.cid-suI8MyRXhK .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-suI8MyRXhK .navbar .navbar-collapse.show,
  .cid-suI8MyRXhK .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-suI8MyRXhK .navbar .navbar-collapse.show .brand-container,
  .cid-suI8MyRXhK .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-suI8MyRXhK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suI8MyRXhK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-suI8MyRXhK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suI8MyRXhK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suI8MyRXhK .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-suI8MyRXhK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suI8MyRXhK .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-suI8MyRXhK .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-suI8MyRXhK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-suI8MyRXhK .navbar .right-menu,
  .cid-suI8MyRXhK .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-suI8MyRXhK .navbar.navbar-short {
  min-height: 60px;
}
.cid-suI8MyRXhK .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-suI8MyRXhK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suI8MyRXhK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-suI8MyRXhK .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-suI8MyRXhK .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-suI8MyRXhK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suI8MyRXhK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suI8MyRXhK .dropdown-item.active,
.cid-suI8MyRXhK .dropdown-item:active {
  background-color: transparent;
}
.cid-suI8MyRXhK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suI8MyRXhK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-suI8MyRXhK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-suI8MyRXhK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suI8MyRXhK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suI8MyRXhK ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-suI8MyRXhK ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-suI8MyRXhK .navbar-buttons {
  margin-left: auto;
}
.cid-suI8MyRXhK button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-suI8MyRXhK button.navbar-toggler:hover {
  outline: none;
}
.cid-suI8MyRXhK button.navbar-toggler:active {
  outline: none;
}
.cid-suI8MyRXhK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suI8MyRXhK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suI8MyRXhK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suI8MyRXhK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suI8MyRXhK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suI8MyRXhK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suI8MyRXhK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-suI8MyRXhK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-suI8MyRXhK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suI8MyRXhK .navbar-dropdown {
  position: fixed;
}
.cid-suI8MyRXhK a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-suI8MyRXhK a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-suI8MyRXhK a.nav-link:hover:before {
  transform: scale(1);
}
.cid-suI8MyRXhK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suI8MyRXhK .right-menu,
.cid-suI8MyRXhK .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-suI8MyRXhK .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suI8MyRXhK .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suI8MyRXhK .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suI8MyRXhK .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suI8MyRXhK .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-suI8MyRXhK .card-wrapper {
  z-index: 3;
}
.cid-suI8MyRXhK .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-suI8MyRXhK .navbar-collapse {
    padding-top: 0;
  }
}
.cid-suI8MyRXhK .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-suI8MyRXhK .navbar-brand img {
  width: auto !important;
}
.cid-suI8MzxZdt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-suI8MzxZdt .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-suI8MzxZdt .copyright-section,
.cid-suI8MzxZdt .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-suI8MzxZdt .line {
  margin: 10px 0;
  width: 100%;
}
.cid-suI8MzxZdt .logo-section img {
  margin: 0 auto;
}
.cid-suI8MzxZdt .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-suI8MzxZdt .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-suI8MzxZdt .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-suI8MzxZdt .social-media ul li {
    margin-left: 30px;
  }
  .cid-suI8MzxZdt .container-fluid {
    padding: 0 2rem;
  }
  .cid-suI8MzxZdt .menu-container {
    margin-bottom: 20px;
  }
  .cid-suI8MzxZdt .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-suI8MzxZdt .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-suI8MzxZdt .copyright-section {
    order: 1;
  }
  .cid-suI8MzxZdt .copyright-section hr {
    display: none;
  }
  .cid-suI8MzxZdt .social-media {
    margin-top: 30px;
  }
  .cid-suI8MzxZdt .social-media li:first-child {
    margin-left: 0;
  }
  .cid-suI8MzxZdt .line {
    margin: 25px 0;
  }
  .cid-suI8MzxZdt .mobirise-rights,
  .cid-suI8MzxZdt .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-suI8MzxZdt .mbr-text,
.cid-suI8MzxZdt .copyright-section {
  color: #272727;
}
.cid-suKDexu8xI {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #f7bd50;
}
@media (max-width: 991px) {
  .cid-suKDexu8xI .mbr-section-title,
  .cid-suKDexu8xI .mbr-section-subtitle,
  .cid-suKDexu8xI .mbr-section-btn,
  .cid-suKDexu8xI .mbr-text {
    text-align: center;
  }
}
.cid-suKDexu8xI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-suKDexu8xI .mbr-text,
.cid-suKDexu8xI .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-suKDexu8xI .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-suKDexu8xI .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-suKDexu8xI .subtitle {
    text-align: center;
  }
}
.cid-suKDexu8xI .mbr-section-subtitle {
  color: #082c4e;
}
.cid-suKDexu8xI span {
  padding-right: 1rem;
}
.cid-suKDexu8xI .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-suKDexu8xI .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #272727;
}
@media (max-width: 767px) {
  .cid-suKDexu8xI .dot {
    padding-left: 0rem;
  }
  .cid-suKDexu8xI .dot:before {
    content: none;
  }
}
.cid-suKDpSGI9O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-suKDpSGI9O .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-suKDpSGI9O .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suKDpSGI9O .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suKDpSGI9O .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-suKDpSGI9O .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-suKDpSGI9O .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-suKDpSGI9O .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-suKDpSGI9O .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-suKDpSGI9O .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-suKDC3an4h {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-suKDC3an4h .video-wrapper iframe {
  width: 100%;
}
.cid-suKDC3an4h .mbr-section-title,
.cid-suKDC3an4h .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-suKDC3an4h .text-wrapper {
    padding: 2rem;
  }
}
.cid-suKDC3an4h .mbr-text {
  text-align: justify;
}
.cid-suKDC3an4h .mbr-section-title {
  text-align: left;
}
.cid-suKEkl554O {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-suKEkl554O .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-suKEkl554O .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-suKEkl554O .title-text {
  color: #231f59;
  text-align: center;
}
.cid-suKEkl554O H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-suKEkl554O .section-text,
.cid-suKEkl554O .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-suKDsS5LHu .modal-body .close {
  background: #1b1b1b;
}
.cid-suKDsS5LHu .modal-body .close span {
  font-style: normal;
}
.cid-suKDsS5LHu .carousel-inner > .active,
.cid-suKDsS5LHu .carousel-inner > .next,
.cid-suKDsS5LHu .carousel-inner > .prev {
  display: flex;
}
.cid-suKDsS5LHu .carousel-control .icon-next,
.cid-suKDsS5LHu .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-suKDsS5LHu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suKDsS5LHu .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-suKDsS5LHu .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-suKDsS5LHu .boxed-slider > div {
  position: relative;
}
.cid-suKDsS5LHu .container img {
  width: 100%;
}
.cid-suKDsS5LHu .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-suKDsS5LHu .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-suKDsS5LHu .mbr-table-cell {
  padding: 0;
}
.cid-suKDsS5LHu .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-suKDsS5LHu .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-suKDsS5LHu .mbr-overlay {
  z-index: 1;
}
.cid-suKDsS5LHu .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-suKDsS5LHu .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-suKDsS5LHu .carousel-item.active.right,
.cid-suKDsS5LHu .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-suKDsS5LHu .carousel-item.active.left,
.cid-suKDsS5LHu .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-suKDsS5LHu .carousel-item.active,
.cid-suKDsS5LHu .carousel-item.next.left,
.cid-suKDsS5LHu .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-suKDsS5LHu .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-suKDsS5LHu .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suKDsS5LHu .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suKDsS5LHu .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-suKDsS5LHu .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-suKDsS5LHu .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-suKDsS5LHu .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-suKDsS5LHu .mbr-slider .carousel-indicators li.active,
.cid-suKDsS5LHu .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-suKDsS5LHu .mbr-slider .carousel-indicators li::after,
.cid-suKDsS5LHu .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-suKDsS5LHu .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-suKDsS5LHu .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-suKDsS5LHu .mbr-slider > .container img {
  width: 100%;
}
.cid-suKDsS5LHu .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-suKDsS5LHu .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-suKDsS5LHu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-suKDsS5LHu .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-suKDsS5LHu .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-suKDsS5LHu .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-suKDsS5LHu .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-suKDsS5LHu .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-suKDsS5LHu .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-suKDsS5LHu .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-suKDsS5LHu .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-suKDsS5LHu .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-suKDsS5LHu .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-suKD6S6Dqg .nav-item:focus,
.cid-suKD6S6Dqg .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-suKD6S6Dqg .nav-item {
    position: relative;
  }
}
.cid-suKD6S6Dqg .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-suKD6S6Dqg .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-suKD6S6Dqg .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-suKD6S6Dqg .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-suKD6S6Dqg .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-suKD6S6Dqg .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-suKD6S6Dqg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-suKD6S6Dqg .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suKD6S6Dqg .navbar.collapsed .navbar-collapse.show,
.cid-suKD6S6Dqg .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-suKD6S6Dqg .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-suKD6S6Dqg .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-suKD6S6Dqg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-suKD6S6Dqg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suKD6S6Dqg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suKD6S6Dqg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suKD6S6Dqg .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-suKD6S6Dqg .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-suKD6S6Dqg .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-suKD6S6Dqg .navbar.collapsed .right-menu,
.cid-suKD6S6Dqg .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-suKD6S6Dqg .navbar .navbar-collapse.show,
  .cid-suKD6S6Dqg .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-suKD6S6Dqg .navbar .navbar-collapse.show .brand-container,
  .cid-suKD6S6Dqg .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-suKD6S6Dqg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suKD6S6Dqg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-suKD6S6Dqg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suKD6S6Dqg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suKD6S6Dqg .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-suKD6S6Dqg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suKD6S6Dqg .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-suKD6S6Dqg .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-suKD6S6Dqg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-suKD6S6Dqg .navbar .right-menu,
  .cid-suKD6S6Dqg .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-suKD6S6Dqg .navbar.navbar-short {
  min-height: 60px;
}
.cid-suKD6S6Dqg .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-suKD6S6Dqg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suKD6S6Dqg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-suKD6S6Dqg .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-suKD6S6Dqg .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-suKD6S6Dqg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suKD6S6Dqg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suKD6S6Dqg .dropdown-item.active,
.cid-suKD6S6Dqg .dropdown-item:active {
  background-color: transparent;
}
.cid-suKD6S6Dqg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suKD6S6Dqg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-suKD6S6Dqg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-suKD6S6Dqg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suKD6S6Dqg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suKD6S6Dqg ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-suKD6S6Dqg ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-suKD6S6Dqg .navbar-buttons {
  margin-left: auto;
}
.cid-suKD6S6Dqg button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-suKD6S6Dqg button.navbar-toggler:hover {
  outline: none;
}
.cid-suKD6S6Dqg button.navbar-toggler:active {
  outline: none;
}
.cid-suKD6S6Dqg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suKD6S6Dqg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suKD6S6Dqg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suKD6S6Dqg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suKD6S6Dqg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suKD6S6Dqg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suKD6S6Dqg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-suKD6S6Dqg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-suKD6S6Dqg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suKD6S6Dqg .navbar-dropdown {
  position: fixed;
}
.cid-suKD6S6Dqg a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-suKD6S6Dqg a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-suKD6S6Dqg a.nav-link:hover:before {
  transform: scale(1);
}
.cid-suKD6S6Dqg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suKD6S6Dqg .right-menu,
.cid-suKD6S6Dqg .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-suKD6S6Dqg .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suKD6S6Dqg .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suKD6S6Dqg .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suKD6S6Dqg .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suKD6S6Dqg .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-suKD6S6Dqg .card-wrapper {
  z-index: 3;
}
.cid-suKD6S6Dqg .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-suKD6S6Dqg .navbar-collapse {
    padding-top: 0;
  }
}
.cid-suKD6S6Dqg .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-suKD6S6Dqg .navbar-brand img {
  width: auto !important;
}
.cid-suKD6SU5AL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-suKD6SU5AL .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-suKD6SU5AL .copyright-section,
.cid-suKD6SU5AL .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-suKD6SU5AL .line {
  margin: 10px 0;
  width: 100%;
}
.cid-suKD6SU5AL .logo-section img {
  margin: 0 auto;
}
.cid-suKD6SU5AL .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-suKD6SU5AL .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-suKD6SU5AL .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-suKD6SU5AL .social-media ul li {
    margin-left: 30px;
  }
  .cid-suKD6SU5AL .container-fluid {
    padding: 0 2rem;
  }
  .cid-suKD6SU5AL .menu-container {
    margin-bottom: 20px;
  }
  .cid-suKD6SU5AL .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-suKD6SU5AL .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-suKD6SU5AL .copyright-section {
    order: 1;
  }
  .cid-suKD6SU5AL .copyright-section hr {
    display: none;
  }
  .cid-suKD6SU5AL .social-media {
    margin-top: 30px;
  }
  .cid-suKD6SU5AL .social-media li:first-child {
    margin-left: 0;
  }
  .cid-suKD6SU5AL .line {
    margin: 25px 0;
  }
  .cid-suKD6SU5AL .mobirise-rights,
  .cid-suKD6SU5AL .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-suKD6SU5AL .mbr-text,
.cid-suKD6SU5AL .copyright-section {
  color: #272727;
}
.cid-suKNOTn98V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7bd50;
}
@media (max-width: 991px) {
  .cid-suKNOTn98V .mbr-section-title,
  .cid-suKNOTn98V .mbr-section-subtitle,
  .cid-suKNOTn98V .mbr-section-btn,
  .cid-suKNOTn98V .mbr-text {
    text-align: center;
  }
}
.cid-suKNOTn98V .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-suKNOTn98V .mbr-text,
.cid-suKNOTn98V .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-suKNOTn98V .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-suKNOTn98V .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-suKNOTn98V .subtitle {
    text-align: center;
  }
}
.cid-suKNOTn98V .mbr-section-subtitle {
  color: #082c4e;
}
.cid-suKNOTn98V span {
  padding-right: 1rem;
}
.cid-suKNOTn98V .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-suKNOTn98V .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #272727;
}
@media (max-width: 767px) {
  .cid-suKNOTn98V .dot {
    padding-left: 0rem;
  }
  .cid-suKNOTn98V .dot:before {
    content: none;
  }
}
.cid-sGJAJhdmOj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sGJAJhdmOj .card-wrapper {
  background-color: #c1f7d5;
}
.cid-sGJAJhdmOj .mbr-text {
  line-height: 34px;
  color: #4a718d;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sGJAJhdmOj .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sGJAJhdmOj .card-wrapper {
    padding: 61px 50px 55px 70px;
  }
}
.cid-suKNOUR8dy {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-suKNOUR8dy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-suKNOUR8dy .form-group {
  margin-bottom: 30px;
}
.cid-suKNOUR8dy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-suKNOUR8dy .mbr-form {
  max-width: 990px;
}
.cid-suKNOUR8dy textarea {
  min-height: 150px;
  resize: none;
}
.cid-suKNOUR8dy .mbr-form .btn {
  width: auto;
  justify-content: space-between;
}
.cid-suKNOUR8dy .mbr-form .btn .mbr-iconfont {
  order: 2;
  font-size: 1.5rem;
}
.cid-suKNOUR8dy .mbr-text {
  text-align: center;
  color: #272727;
}
.cid-suKNOUR8dy .mbr-section-title {
  text-align: center;
}
.cid-suKNOVp8s3 .nav-item:focus,
.cid-suKNOVp8s3 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-suKNOVp8s3 .nav-item {
    position: relative;
  }
}
.cid-suKNOVp8s3 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-suKNOVp8s3 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-suKNOVp8s3 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-suKNOVp8s3 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-suKNOVp8s3 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-suKNOVp8s3 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-suKNOVp8s3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-suKNOVp8s3 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suKNOVp8s3 .navbar.collapsed .navbar-collapse.show,
.cid-suKNOVp8s3 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-suKNOVp8s3 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-suKNOVp8s3 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-suKNOVp8s3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-suKNOVp8s3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suKNOVp8s3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suKNOVp8s3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suKNOVp8s3 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-suKNOVp8s3 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-suKNOVp8s3 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-suKNOVp8s3 .navbar.collapsed .right-menu,
.cid-suKNOVp8s3 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-suKNOVp8s3 .navbar .navbar-collapse.show,
  .cid-suKNOVp8s3 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-suKNOVp8s3 .navbar .navbar-collapse.show .brand-container,
  .cid-suKNOVp8s3 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-suKNOVp8s3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suKNOVp8s3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-suKNOVp8s3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suKNOVp8s3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suKNOVp8s3 .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-suKNOVp8s3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suKNOVp8s3 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-suKNOVp8s3 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-suKNOVp8s3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-suKNOVp8s3 .navbar .right-menu,
  .cid-suKNOVp8s3 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-suKNOVp8s3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-suKNOVp8s3 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-suKNOVp8s3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suKNOVp8s3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-suKNOVp8s3 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-suKNOVp8s3 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-suKNOVp8s3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suKNOVp8s3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suKNOVp8s3 .dropdown-item.active,
.cid-suKNOVp8s3 .dropdown-item:active {
  background-color: transparent;
}
.cid-suKNOVp8s3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suKNOVp8s3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-suKNOVp8s3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-suKNOVp8s3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suKNOVp8s3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suKNOVp8s3 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-suKNOVp8s3 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-suKNOVp8s3 .navbar-buttons {
  margin-left: auto;
}
.cid-suKNOVp8s3 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-suKNOVp8s3 button.navbar-toggler:hover {
  outline: none;
}
.cid-suKNOVp8s3 button.navbar-toggler:active {
  outline: none;
}
.cid-suKNOVp8s3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suKNOVp8s3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suKNOVp8s3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suKNOVp8s3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suKNOVp8s3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suKNOVp8s3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suKNOVp8s3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-suKNOVp8s3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-suKNOVp8s3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suKNOVp8s3 .navbar-dropdown {
  position: fixed;
}
.cid-suKNOVp8s3 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-suKNOVp8s3 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-suKNOVp8s3 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-suKNOVp8s3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suKNOVp8s3 .right-menu,
.cid-suKNOVp8s3 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-suKNOVp8s3 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suKNOVp8s3 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suKNOVp8s3 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suKNOVp8s3 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suKNOVp8s3 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-suKNOVp8s3 .card-wrapper {
  z-index: 3;
}
.cid-suKNOVp8s3 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-suKNOVp8s3 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-suKNOVp8s3 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-suKNOVp8s3 .navbar-brand img {
  width: auto !important;
}
.cid-suKNOWdT3P {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-suKNOWdT3P .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-suKNOWdT3P .copyright-section,
.cid-suKNOWdT3P .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-suKNOWdT3P .line {
  margin: 10px 0;
  width: 100%;
}
.cid-suKNOWdT3P .logo-section img {
  margin: 0 auto;
}
.cid-suKNOWdT3P .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-suKNOWdT3P .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-suKNOWdT3P .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-suKNOWdT3P .social-media ul li {
    margin-left: 30px;
  }
  .cid-suKNOWdT3P .container-fluid {
    padding: 0 2rem;
  }
  .cid-suKNOWdT3P .menu-container {
    margin-bottom: 20px;
  }
  .cid-suKNOWdT3P .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-suKNOWdT3P .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-suKNOWdT3P .copyright-section {
    order: 1;
  }
  .cid-suKNOWdT3P .copyright-section hr {
    display: none;
  }
  .cid-suKNOWdT3P .social-media {
    margin-top: 30px;
  }
  .cid-suKNOWdT3P .social-media li:first-child {
    margin-left: 0;
  }
  .cid-suKNOWdT3P .line {
    margin: 25px 0;
  }
  .cid-suKNOWdT3P .mobirise-rights,
  .cid-suKNOWdT3P .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-suKNOWdT3P .mbr-text,
.cid-suKNOWdT3P .copyright-section {
  color: #272727;
}
.cid-sv7uvb9tbQ {
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fleur2lotus-1-1920x800.jpg");
}
.cid-sv7uvb9tbQ .position {
  z-index: 10;
}
.cid-sv7uvb9tbQ .mbr-section-subtitle {
  margin: 10px 0 15px;
  line-height: 1.55;
  color: #a5bdce;
}
.cid-sv7uvb9tbQ .mbr-section-title {
  margin-bottom: 0;
}
.cid-sv7uvb9tbQ .mbr-text {
  margin-top: 30px;
}
.cid-sv7uvb9tbQ .mbr-section-btn {
  margin-top: 30px;
}
.cid-sv7uvb9tbQ .info__block {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
.cid-sv7uvb9tbQ .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  display: inline-block;
}
.cid-sv7uvb9tbQ .info__block-item {
  width: 130px;
  padding-top: 25px;
  margin-right: 25px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-sv7uvb9tbQ .info__block-item {
    margin-right: 10px;
  }
}
.cid-sv7uvb9tbQ .title__item,
.cid-sv7uvb9tbQ .text__item {
  margin-bottom: 0;
}
.cid-sv7uvb9tbQ .text__item {
  line-height: 1.35;
  text-align: left;
}
.cid-sv7uvb9tbQ .animated-element {
  color: #cbddea;
}
.cid-sv7uvb9tbQ .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #cbddea;
}
@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-sv7uvb9tbQ .mbr-text,
.cid-sv7uvb9tbQ .mbr-section-btn {
  text-align: center;
  color: #060424;
}
.cid-sv7uvb9tbQ .mbr-section-title,
.cid-sv7uvb9tbQ .typed-text {
  color: #ffffff;
}
.cid-sv7rhn8P71 .modal-body .close {
  background: #1b1b1b;
}
.cid-sv7rhn8P71 .modal-body .close span {
  font-style: normal;
}
.cid-sv7rhn8P71 .carousel-inner > .active,
.cid-sv7rhn8P71 .carousel-inner > .next,
.cid-sv7rhn8P71 .carousel-inner > .prev {
  display: flex;
}
.cid-sv7rhn8P71 .carousel-control .icon-next,
.cid-sv7rhn8P71 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sv7rhn8P71 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sv7rhn8P71 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sv7rhn8P71 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sv7rhn8P71 .boxed-slider > div {
  position: relative;
}
.cid-sv7rhn8P71 .container img {
  width: 100%;
}
.cid-sv7rhn8P71 .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-sv7rhn8P71 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sv7rhn8P71 .mbr-table-cell {
  padding: 0;
}
.cid-sv7rhn8P71 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sv7rhn8P71 .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-sv7rhn8P71 .mbr-overlay {
  z-index: 1;
}
.cid-sv7rhn8P71 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sv7rhn8P71 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sv7rhn8P71 .carousel-item.active.right,
.cid-sv7rhn8P71 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sv7rhn8P71 .carousel-item.active.left,
.cid-sv7rhn8P71 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sv7rhn8P71 .carousel-item.active,
.cid-sv7rhn8P71 .carousel-item.next.left,
.cid-sv7rhn8P71 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sv7rhn8P71 .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sv7rhn8P71 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sv7rhn8P71 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sv7rhn8P71 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sv7rhn8P71 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sv7rhn8P71 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sv7rhn8P71 .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sv7rhn8P71 .mbr-slider .carousel-indicators li.active,
.cid-sv7rhn8P71 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sv7rhn8P71 .mbr-slider .carousel-indicators li::after,
.cid-sv7rhn8P71 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sv7rhn8P71 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sv7rhn8P71 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sv7rhn8P71 .mbr-slider > .container img {
  width: 100%;
}
.cid-sv7rhn8P71 .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-sv7rhn8P71 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sv7rhn8P71 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sv7rhn8P71 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sv7rhn8P71 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sv7rhn8P71 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sv7rhn8P71 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sv7rhn8P71 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sv7rhn8P71 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sv7rhn8P71 .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sv7rhn8P71 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sv7rhn8P71 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sv7rhn8P71 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sv7rhmFTrA {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sv7rhmFTrA .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sv7rhmFTrA .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sv7rhmFTrA .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sv7rhmFTrA H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sv7rhmFTrA .section-text,
.cid-sv7rhmFTrA .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sv7rhnUWgh .nav-item:focus,
.cid-sv7rhnUWgh .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sv7rhnUWgh .nav-item {
    position: relative;
  }
}
.cid-sv7rhnUWgh .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sv7rhnUWgh .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sv7rhnUWgh .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sv7rhnUWgh .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sv7rhnUWgh .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sv7rhnUWgh .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sv7rhnUWgh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sv7rhnUWgh .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv7rhnUWgh .navbar.collapsed .navbar-collapse.show,
.cid-sv7rhnUWgh .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sv7rhnUWgh .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sv7rhnUWgh .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sv7rhnUWgh .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sv7rhnUWgh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sv7rhnUWgh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sv7rhnUWgh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sv7rhnUWgh .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sv7rhnUWgh .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sv7rhnUWgh .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sv7rhnUWgh .navbar.collapsed .right-menu,
.cid-sv7rhnUWgh .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sv7rhnUWgh .navbar .navbar-collapse.show,
  .cid-sv7rhnUWgh .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sv7rhnUWgh .navbar .navbar-collapse.show .brand-container,
  .cid-sv7rhnUWgh .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sv7rhnUWgh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sv7rhnUWgh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sv7rhnUWgh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sv7rhnUWgh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sv7rhnUWgh .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-sv7rhnUWgh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sv7rhnUWgh .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sv7rhnUWgh .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sv7rhnUWgh .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sv7rhnUWgh .navbar .right-menu,
  .cid-sv7rhnUWgh .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sv7rhnUWgh .navbar.navbar-short {
  min-height: 60px;
}
.cid-sv7rhnUWgh .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sv7rhnUWgh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sv7rhnUWgh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sv7rhnUWgh .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sv7rhnUWgh .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sv7rhnUWgh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sv7rhnUWgh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sv7rhnUWgh .dropdown-item.active,
.cid-sv7rhnUWgh .dropdown-item:active {
  background-color: transparent;
}
.cid-sv7rhnUWgh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sv7rhnUWgh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sv7rhnUWgh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sv7rhnUWgh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sv7rhnUWgh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sv7rhnUWgh ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sv7rhnUWgh ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sv7rhnUWgh .navbar-buttons {
  margin-left: auto;
}
.cid-sv7rhnUWgh button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sv7rhnUWgh button.navbar-toggler:hover {
  outline: none;
}
.cid-sv7rhnUWgh button.navbar-toggler:active {
  outline: none;
}
.cid-sv7rhnUWgh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sv7rhnUWgh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sv7rhnUWgh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sv7rhnUWgh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sv7rhnUWgh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sv7rhnUWgh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sv7rhnUWgh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sv7rhnUWgh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sv7rhnUWgh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sv7rhnUWgh .navbar-dropdown {
  position: fixed;
}
.cid-sv7rhnUWgh a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sv7rhnUWgh a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sv7rhnUWgh a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sv7rhnUWgh .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sv7rhnUWgh .right-menu,
.cid-sv7rhnUWgh .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sv7rhnUWgh .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv7rhnUWgh .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv7rhnUWgh .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sv7rhnUWgh .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sv7rhnUWgh .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sv7rhnUWgh .card-wrapper {
  z-index: 3;
}
.cid-sv7rhnUWgh .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sv7rhnUWgh .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sv7rhnUWgh .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sv7rhnUWgh .navbar-brand img {
  width: auto !important;
}
.cid-sv7rhoxVOE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sv7rhoxVOE .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sv7rhoxVOE .copyright-section,
.cid-sv7rhoxVOE .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sv7rhoxVOE .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sv7rhoxVOE .logo-section img {
  margin: 0 auto;
}
.cid-sv7rhoxVOE .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sv7rhoxVOE .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sv7rhoxVOE .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sv7rhoxVOE .social-media ul li {
    margin-left: 30px;
  }
  .cid-sv7rhoxVOE .container-fluid {
    padding: 0 2rem;
  }
  .cid-sv7rhoxVOE .menu-container {
    margin-bottom: 20px;
  }
  .cid-sv7rhoxVOE .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sv7rhoxVOE .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sv7rhoxVOE .copyright-section {
    order: 1;
  }
  .cid-sv7rhoxVOE .copyright-section hr {
    display: none;
  }
  .cid-sv7rhoxVOE .social-media {
    margin-top: 30px;
  }
  .cid-sv7rhoxVOE .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sv7rhoxVOE .line {
    margin: 25px 0;
  }
  .cid-sv7rhoxVOE .mobirise-rights,
  .cid-sv7rhoxVOE .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sv7rhoxVOE .mbr-text,
.cid-sv7rhoxVOE .copyright-section {
  color: #272727;
}
.cid-sHF3Qq9hUT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/salle-yoga-hyeres-1-680x450.jpg");
}
.cid-sHF3Qq9hUT H1 {
  color: #000000;
}
.cid-sHF3Qq9hUT .mbr-text,
.cid-sHF3Qq9hUT .mbr-section-btn {
  color: #000000;
}
.cid-sHF3Qq9hUT .mbr-subtitle {
  color: #000000;
}
.cid-sHF3Qq9hUT .mbr-text {
  margin-top: 1.5rem;
}
.cid-sHF3Qq9hUT .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sv87r8FhtE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sv87r8FhtE .mbr-section-subtitle {
  color: #767676;
}
.cid-sv87r8FhtE .container-table {
  margin: 0 auto;
}
.cid-sv87r8FhtE .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sv87r8FhtE .dataTables_wrapper {
  display: block;
}
.cid-sv87r8FhtE .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sv87r8FhtE .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sv87r8FhtE table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sv87r8FhtE table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sv87r8FhtE table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sv87r8FhtE table td {
  border-top: 1px solid #cccccc;
}
.cid-sv87r8FhtE table.table {
  background: #ffffff;
}
.cid-sv87r8FhtE .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sv87r8FhtE .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sv87r8FhtE .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sv87r8FhtE .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sv87r8FhtE .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sv87r8FhtE .dataTables_filter {
    text-align: center;
  }
  .cid-sv87r8FhtE .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sv87r8FhtE LABEL {
  text-align: center;
}
.cid-sv87r9e7ns {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sv87r9e7ns .mbr-section-subtitle {
  color: #767676;
}
.cid-sv87r9e7ns .container-table {
  margin: 0 auto;
}
.cid-sv87r9e7ns .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sv87r9e7ns .dataTables_wrapper {
  display: block;
}
.cid-sv87r9e7ns .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sv87r9e7ns .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sv87r9e7ns table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sv87r9e7ns table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sv87r9e7ns table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sv87r9e7ns table td {
  border-top: 1px solid #cccccc;
}
.cid-sv87r9e7ns table.table {
  background: #ffffff;
}
.cid-sv87r9e7ns .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sv87r9e7ns .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sv87r9e7ns .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sv87r9e7ns .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sv87r9e7ns .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sv87r9e7ns .dataTables_filter {
    text-align: center;
  }
  .cid-sv87r9e7ns .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sv87r9e7ns LABEL {
  text-align: center;
}
.cid-sv87r9e7ns .body-item {
  text-align: left;
}
.cid-sv87r9MZjj .modal-body .close {
  background: #1b1b1b;
}
.cid-sv87r9MZjj .modal-body .close span {
  font-style: normal;
}
.cid-sv87r9MZjj .carousel-inner > .active,
.cid-sv87r9MZjj .carousel-inner > .next,
.cid-sv87r9MZjj .carousel-inner > .prev {
  display: flex;
}
.cid-sv87r9MZjj .carousel-control .icon-next,
.cid-sv87r9MZjj .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sv87r9MZjj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sv87r9MZjj .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sv87r9MZjj .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sv87r9MZjj .boxed-slider > div {
  position: relative;
}
.cid-sv87r9MZjj .container img {
  width: 100%;
}
.cid-sv87r9MZjj .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-sv87r9MZjj .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sv87r9MZjj .mbr-table-cell {
  padding: 0;
}
.cid-sv87r9MZjj .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sv87r9MZjj .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-sv87r9MZjj .mbr-overlay {
  z-index: 1;
}
.cid-sv87r9MZjj .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sv87r9MZjj .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sv87r9MZjj .carousel-item.active.right,
.cid-sv87r9MZjj .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sv87r9MZjj .carousel-item.active.left,
.cid-sv87r9MZjj .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sv87r9MZjj .carousel-item.active,
.cid-sv87r9MZjj .carousel-item.next.left,
.cid-sv87r9MZjj .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sv87r9MZjj .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sv87r9MZjj .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sv87r9MZjj .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sv87r9MZjj .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sv87r9MZjj .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sv87r9MZjj .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sv87r9MZjj .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sv87r9MZjj .mbr-slider .carousel-indicators li.active,
.cid-sv87r9MZjj .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sv87r9MZjj .mbr-slider .carousel-indicators li::after,
.cid-sv87r9MZjj .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sv87r9MZjj .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sv87r9MZjj .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sv87r9MZjj .mbr-slider > .container img {
  width: 100%;
}
.cid-sv87r9MZjj .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-sv87r9MZjj .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sv87r9MZjj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sv87r9MZjj .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sv87r9MZjj .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sv87r9MZjj .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sv87r9MZjj .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sv87r9MZjj .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sv87r9MZjj .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sv87r9MZjj .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sv87r9MZjj .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sv87r9MZjj .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sv87r9MZjj .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sv87rayFv7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sv87rayFv7 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sv87rayFv7 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sv87rayFv7 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sv87rayFv7 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sv87rayFv7 .section-text,
.cid-sv87rayFv7 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sv87rb6axI .nav-item:focus,
.cid-sv87rb6axI .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sv87rb6axI .nav-item {
    position: relative;
  }
}
.cid-sv87rb6axI .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sv87rb6axI .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sv87rb6axI .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sv87rb6axI .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sv87rb6axI .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sv87rb6axI .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sv87rb6axI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sv87rb6axI .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv87rb6axI .navbar.collapsed .navbar-collapse.show,
.cid-sv87rb6axI .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sv87rb6axI .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sv87rb6axI .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sv87rb6axI .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sv87rb6axI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sv87rb6axI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sv87rb6axI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sv87rb6axI .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sv87rb6axI .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sv87rb6axI .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sv87rb6axI .navbar.collapsed .right-menu,
.cid-sv87rb6axI .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sv87rb6axI .navbar .navbar-collapse.show,
  .cid-sv87rb6axI .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sv87rb6axI .navbar .navbar-collapse.show .brand-container,
  .cid-sv87rb6axI .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sv87rb6axI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sv87rb6axI .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sv87rb6axI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sv87rb6axI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sv87rb6axI .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-sv87rb6axI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sv87rb6axI .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sv87rb6axI .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sv87rb6axI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sv87rb6axI .navbar .right-menu,
  .cid-sv87rb6axI .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sv87rb6axI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sv87rb6axI .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sv87rb6axI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sv87rb6axI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sv87rb6axI .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sv87rb6axI .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sv87rb6axI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sv87rb6axI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sv87rb6axI .dropdown-item.active,
.cid-sv87rb6axI .dropdown-item:active {
  background-color: transparent;
}
.cid-sv87rb6axI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sv87rb6axI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sv87rb6axI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sv87rb6axI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sv87rb6axI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sv87rb6axI ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sv87rb6axI ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sv87rb6axI .navbar-buttons {
  margin-left: auto;
}
.cid-sv87rb6axI button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sv87rb6axI button.navbar-toggler:hover {
  outline: none;
}
.cid-sv87rb6axI button.navbar-toggler:active {
  outline: none;
}
.cid-sv87rb6axI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sv87rb6axI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sv87rb6axI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sv87rb6axI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sv87rb6axI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sv87rb6axI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sv87rb6axI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sv87rb6axI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sv87rb6axI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sv87rb6axI .navbar-dropdown {
  position: fixed;
}
.cid-sv87rb6axI a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sv87rb6axI a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sv87rb6axI a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sv87rb6axI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sv87rb6axI .right-menu,
.cid-sv87rb6axI .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sv87rb6axI .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv87rb6axI .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv87rb6axI .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sv87rb6axI .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sv87rb6axI .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sv87rb6axI .card-wrapper {
  z-index: 3;
}
.cid-sv87rb6axI .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sv87rb6axI .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sv87rb6axI .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sv87rb6axI .navbar-brand img {
  width: auto !important;
}
.cid-sv87rbU7IB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sv87rbU7IB .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sv87rbU7IB .copyright-section,
.cid-sv87rbU7IB .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sv87rbU7IB .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sv87rbU7IB .logo-section img {
  margin: 0 auto;
}
.cid-sv87rbU7IB .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sv87rbU7IB .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sv87rbU7IB .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sv87rbU7IB .social-media ul li {
    margin-left: 30px;
  }
  .cid-sv87rbU7IB .container-fluid {
    padding: 0 2rem;
  }
  .cid-sv87rbU7IB .menu-container {
    margin-bottom: 20px;
  }
  .cid-sv87rbU7IB .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sv87rbU7IB .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sv87rbU7IB .copyright-section {
    order: 1;
  }
  .cid-sv87rbU7IB .copyright-section hr {
    display: none;
  }
  .cid-sv87rbU7IB .social-media {
    margin-top: 30px;
  }
  .cid-sv87rbU7IB .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sv87rbU7IB .line {
    margin: 25px 0;
  }
  .cid-sv87rbU7IB .mobirise-rights,
  .cid-sv87rbU7IB .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sv87rbU7IB .mbr-text,
.cid-sv87rbU7IB .copyright-section {
  color: #272727;
}
.cid-sHF1kU0NTX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/salle-yoga-2000x1500.jpg");
}
.cid-sHF1kU0NTX H1 {
  color: #000000;
}
.cid-sHF1kU0NTX .mbr-text,
.cid-sHF1kU0NTX .mbr-section-btn {
  color: #000000;
}
.cid-sHF1kU0NTX .mbr-subtitle {
  color: #000000;
}
.cid-sHF1kU0NTX .mbr-text {
  margin-top: 1.5rem;
}
.cid-sHF1kU0NTX .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sv89nVrsNj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sv89nVrsNj .mbr-section-subtitle {
  color: #767676;
}
.cid-sv89nVrsNj .container-table {
  margin: 0 auto;
}
.cid-sv89nVrsNj .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sv89nVrsNj .dataTables_wrapper {
  display: block;
}
.cid-sv89nVrsNj .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sv89nVrsNj .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sv89nVrsNj table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sv89nVrsNj table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sv89nVrsNj table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sv89nVrsNj table td {
  border-top: 1px solid #cccccc;
}
.cid-sv89nVrsNj table.table {
  background: #ffffff;
}
.cid-sv89nVrsNj .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sv89nVrsNj .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sv89nVrsNj .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sv89nVrsNj .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sv89nVrsNj .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sv89nVrsNj .dataTables_filter {
    text-align: center;
  }
  .cid-sv89nVrsNj .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sv89nVrsNj LABEL {
  text-align: center;
}
.cid-sv89nVrsNj .head-item {
  color: #f7bd50;
}
.cid-sv89nW3dpp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sv89nW3dpp .mbr-section-subtitle {
  color: #767676;
}
.cid-sv89nW3dpp .container-table {
  margin: 0 auto;
}
.cid-sv89nW3dpp .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sv89nW3dpp .dataTables_wrapper {
  display: block;
}
.cid-sv89nW3dpp .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sv89nW3dpp .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sv89nW3dpp table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sv89nW3dpp table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sv89nW3dpp table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sv89nW3dpp table td {
  border-top: 1px solid #cccccc;
}
.cid-sv89nW3dpp table.table {
  background: #ffffff;
}
.cid-sv89nW3dpp .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sv89nW3dpp .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sv89nW3dpp .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sv89nW3dpp .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sv89nW3dpp .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sv89nW3dpp .dataTables_filter {
    text-align: center;
  }
  .cid-sv89nW3dpp .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sv89nW3dpp LABEL {
  text-align: center;
}
.cid-sv89nW3dpp .body-item {
  text-align: left;
}
.cid-sv89nWCkY4 .modal-body .close {
  background: #1b1b1b;
}
.cid-sv89nWCkY4 .modal-body .close span {
  font-style: normal;
}
.cid-sv89nWCkY4 .carousel-inner > .active,
.cid-sv89nWCkY4 .carousel-inner > .next,
.cid-sv89nWCkY4 .carousel-inner > .prev {
  display: flex;
}
.cid-sv89nWCkY4 .carousel-control .icon-next,
.cid-sv89nWCkY4 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sv89nWCkY4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sv89nWCkY4 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sv89nWCkY4 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sv89nWCkY4 .boxed-slider > div {
  position: relative;
}
.cid-sv89nWCkY4 .container img {
  width: 100%;
}
.cid-sv89nWCkY4 .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-sv89nWCkY4 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sv89nWCkY4 .mbr-table-cell {
  padding: 0;
}
.cid-sv89nWCkY4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sv89nWCkY4 .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-sv89nWCkY4 .mbr-overlay {
  z-index: 1;
}
.cid-sv89nWCkY4 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sv89nWCkY4 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sv89nWCkY4 .carousel-item.active.right,
.cid-sv89nWCkY4 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sv89nWCkY4 .carousel-item.active.left,
.cid-sv89nWCkY4 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sv89nWCkY4 .carousel-item.active,
.cid-sv89nWCkY4 .carousel-item.next.left,
.cid-sv89nWCkY4 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sv89nWCkY4 .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sv89nWCkY4 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sv89nWCkY4 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sv89nWCkY4 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sv89nWCkY4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sv89nWCkY4 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sv89nWCkY4 .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sv89nWCkY4 .mbr-slider .carousel-indicators li.active,
.cid-sv89nWCkY4 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sv89nWCkY4 .mbr-slider .carousel-indicators li::after,
.cid-sv89nWCkY4 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sv89nWCkY4 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sv89nWCkY4 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sv89nWCkY4 .mbr-slider > .container img {
  width: 100%;
}
.cid-sv89nWCkY4 .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-sv89nWCkY4 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sv89nWCkY4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sv89nWCkY4 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sv89nWCkY4 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sv89nWCkY4 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sv89nWCkY4 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sv89nWCkY4 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sv89nWCkY4 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sv89nWCkY4 .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sv89nWCkY4 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sv89nWCkY4 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sv89nWCkY4 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sv89nXtJNj {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sv89nXtJNj .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sv89nXtJNj .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sv89nXtJNj .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sv89nXtJNj H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sv89nXtJNj .section-text,
.cid-sv89nXtJNj .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sv89nY0EiN .nav-item:focus,
.cid-sv89nY0EiN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sv89nY0EiN .nav-item {
    position: relative;
  }
}
.cid-sv89nY0EiN .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sv89nY0EiN .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sv89nY0EiN .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sv89nY0EiN .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sv89nY0EiN .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sv89nY0EiN .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sv89nY0EiN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sv89nY0EiN .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv89nY0EiN .navbar.collapsed .navbar-collapse.show,
.cid-sv89nY0EiN .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sv89nY0EiN .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sv89nY0EiN .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sv89nY0EiN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sv89nY0EiN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sv89nY0EiN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sv89nY0EiN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sv89nY0EiN .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sv89nY0EiN .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sv89nY0EiN .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sv89nY0EiN .navbar.collapsed .right-menu,
.cid-sv89nY0EiN .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sv89nY0EiN .navbar .navbar-collapse.show,
  .cid-sv89nY0EiN .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sv89nY0EiN .navbar .navbar-collapse.show .brand-container,
  .cid-sv89nY0EiN .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sv89nY0EiN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sv89nY0EiN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sv89nY0EiN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sv89nY0EiN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sv89nY0EiN .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-sv89nY0EiN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sv89nY0EiN .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sv89nY0EiN .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sv89nY0EiN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sv89nY0EiN .navbar .right-menu,
  .cid-sv89nY0EiN .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sv89nY0EiN .navbar.navbar-short {
  min-height: 60px;
}
.cid-sv89nY0EiN .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sv89nY0EiN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sv89nY0EiN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sv89nY0EiN .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sv89nY0EiN .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sv89nY0EiN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sv89nY0EiN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sv89nY0EiN .dropdown-item.active,
.cid-sv89nY0EiN .dropdown-item:active {
  background-color: transparent;
}
.cid-sv89nY0EiN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sv89nY0EiN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sv89nY0EiN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sv89nY0EiN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sv89nY0EiN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sv89nY0EiN ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sv89nY0EiN ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sv89nY0EiN .navbar-buttons {
  margin-left: auto;
}
.cid-sv89nY0EiN button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sv89nY0EiN button.navbar-toggler:hover {
  outline: none;
}
.cid-sv89nY0EiN button.navbar-toggler:active {
  outline: none;
}
.cid-sv89nY0EiN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sv89nY0EiN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sv89nY0EiN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sv89nY0EiN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sv89nY0EiN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sv89nY0EiN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sv89nY0EiN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sv89nY0EiN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sv89nY0EiN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sv89nY0EiN .navbar-dropdown {
  position: fixed;
}
.cid-sv89nY0EiN a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sv89nY0EiN a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sv89nY0EiN a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sv89nY0EiN .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sv89nY0EiN .right-menu,
.cid-sv89nY0EiN .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sv89nY0EiN .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv89nY0EiN .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv89nY0EiN .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sv89nY0EiN .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sv89nY0EiN .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sv89nY0EiN .card-wrapper {
  z-index: 3;
}
.cid-sv89nY0EiN .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sv89nY0EiN .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sv89nY0EiN .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sv89nY0EiN .navbar-brand img {
  width: auto !important;
}
.cid-sv89nYNMQA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sv89nYNMQA .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sv89nYNMQA .copyright-section,
.cid-sv89nYNMQA .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sv89nYNMQA .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sv89nYNMQA .logo-section img {
  margin: 0 auto;
}
.cid-sv89nYNMQA .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sv89nYNMQA .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sv89nYNMQA .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sv89nYNMQA .social-media ul li {
    margin-left: 30px;
  }
  .cid-sv89nYNMQA .container-fluid {
    padding: 0 2rem;
  }
  .cid-sv89nYNMQA .menu-container {
    margin-bottom: 20px;
  }
  .cid-sv89nYNMQA .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sv89nYNMQA .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sv89nYNMQA .copyright-section {
    order: 1;
  }
  .cid-sv89nYNMQA .copyright-section hr {
    display: none;
  }
  .cid-sv89nYNMQA .social-media {
    margin-top: 30px;
  }
  .cid-sv89nYNMQA .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sv89nYNMQA .line {
    margin: 25px 0;
  }
  .cid-sv89nYNMQA .mobirise-rights,
  .cid-sv89nYNMQA .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sv89nYNMQA .mbr-text,
.cid-sv89nYNMQA .copyright-section {
  color: #272727;
}
.cid-sHEYjlhP3Z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/image-820x461.jpg");
}
.cid-sHEYjlhP3Z H1 {
  color: #000000;
}
.cid-sHEYjlhP3Z .mbr-text,
.cid-sHEYjlhP3Z .mbr-section-btn {
  color: #000000;
}
.cid-sHEYjlhP3Z .mbr-subtitle {
  color: #000000;
}
.cid-sHEYjlhP3Z .mbr-text {
  margin-top: 1.5rem;
}
.cid-sHEYjlhP3Z .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sv8h4qhLFs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sv8h4qhLFs .mbr-section-subtitle {
  color: #767676;
}
.cid-sv8h4qhLFs .container-table {
  margin: 0 auto;
}
.cid-sv8h4qhLFs .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sv8h4qhLFs .dataTables_wrapper {
  display: block;
}
.cid-sv8h4qhLFs .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sv8h4qhLFs .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sv8h4qhLFs table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sv8h4qhLFs table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sv8h4qhLFs table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sv8h4qhLFs table td {
  border-top: 1px solid #cccccc;
}
.cid-sv8h4qhLFs table.table {
  background: #ffffff;
}
.cid-sv8h4qhLFs .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sv8h4qhLFs .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sv8h4qhLFs .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sv8h4qhLFs .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sv8h4qhLFs .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sv8h4qhLFs .dataTables_filter {
    text-align: center;
  }
  .cid-sv8h4qhLFs .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sv8h4qhLFs LABEL {
  text-align: center;
}
.cid-sv8h4qYTNt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sv8h4qYTNt .mbr-section-subtitle {
  color: #767676;
}
.cid-sv8h4qYTNt .container-table {
  margin: 0 auto;
}
.cid-sv8h4qYTNt .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sv8h4qYTNt .dataTables_wrapper {
  display: block;
}
.cid-sv8h4qYTNt .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sv8h4qYTNt .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sv8h4qYTNt table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sv8h4qYTNt table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sv8h4qYTNt table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sv8h4qYTNt table td {
  border-top: 1px solid #cccccc;
}
.cid-sv8h4qYTNt table.table {
  background: #ffffff;
}
.cid-sv8h4qYTNt .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sv8h4qYTNt .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sv8h4qYTNt .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sv8h4qYTNt .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sv8h4qYTNt .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sv8h4qYTNt .dataTables_filter {
    text-align: center;
  }
  .cid-sv8h4qYTNt .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sv8h4qYTNt LABEL {
  text-align: center;
}
.cid-sv8h4qYTNt .body-item {
  text-align: left;
}
.cid-sv8h4ruXia .modal-body .close {
  background: #1b1b1b;
}
.cid-sv8h4ruXia .modal-body .close span {
  font-style: normal;
}
.cid-sv8h4ruXia .carousel-inner > .active,
.cid-sv8h4ruXia .carousel-inner > .next,
.cid-sv8h4ruXia .carousel-inner > .prev {
  display: flex;
}
.cid-sv8h4ruXia .carousel-control .icon-next,
.cid-sv8h4ruXia .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sv8h4ruXia .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sv8h4ruXia .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sv8h4ruXia .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sv8h4ruXia .boxed-slider > div {
  position: relative;
}
.cid-sv8h4ruXia .container img {
  width: 100%;
}
.cid-sv8h4ruXia .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-sv8h4ruXia .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sv8h4ruXia .mbr-table-cell {
  padding: 0;
}
.cid-sv8h4ruXia .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sv8h4ruXia .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-sv8h4ruXia .mbr-overlay {
  z-index: 1;
}
.cid-sv8h4ruXia .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sv8h4ruXia .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sv8h4ruXia .carousel-item.active.right,
.cid-sv8h4ruXia .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sv8h4ruXia .carousel-item.active.left,
.cid-sv8h4ruXia .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sv8h4ruXia .carousel-item.active,
.cid-sv8h4ruXia .carousel-item.next.left,
.cid-sv8h4ruXia .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sv8h4ruXia .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sv8h4ruXia .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sv8h4ruXia .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sv8h4ruXia .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sv8h4ruXia .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sv8h4ruXia .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sv8h4ruXia .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sv8h4ruXia .mbr-slider .carousel-indicators li.active,
.cid-sv8h4ruXia .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sv8h4ruXia .mbr-slider .carousel-indicators li::after,
.cid-sv8h4ruXia .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sv8h4ruXia .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sv8h4ruXia .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sv8h4ruXia .mbr-slider > .container img {
  width: 100%;
}
.cid-sv8h4ruXia .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-sv8h4ruXia .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sv8h4ruXia .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sv8h4ruXia .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sv8h4ruXia .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sv8h4ruXia .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sv8h4ruXia .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sv8h4ruXia .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sv8h4ruXia .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sv8h4ruXia .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sv8h4ruXia .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sv8h4ruXia .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sv8h4ruXia .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sv8h4seLUY {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sv8h4seLUY .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sv8h4seLUY .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sv8h4seLUY .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sv8h4seLUY H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sv8h4seLUY .section-text,
.cid-sv8h4seLUY .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sv8h4sOXXj .nav-item:focus,
.cid-sv8h4sOXXj .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sv8h4sOXXj .nav-item {
    position: relative;
  }
}
.cid-sv8h4sOXXj .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sv8h4sOXXj .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sv8h4sOXXj .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sv8h4sOXXj .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sv8h4sOXXj .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sv8h4sOXXj .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sv8h4sOXXj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sv8h4sOXXj .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv8h4sOXXj .navbar.collapsed .navbar-collapse.show,
.cid-sv8h4sOXXj .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sv8h4sOXXj .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sv8h4sOXXj .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sv8h4sOXXj .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sv8h4sOXXj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sv8h4sOXXj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sv8h4sOXXj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sv8h4sOXXj .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sv8h4sOXXj .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sv8h4sOXXj .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sv8h4sOXXj .navbar.collapsed .right-menu,
.cid-sv8h4sOXXj .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sv8h4sOXXj .navbar .navbar-collapse.show,
  .cid-sv8h4sOXXj .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sv8h4sOXXj .navbar .navbar-collapse.show .brand-container,
  .cid-sv8h4sOXXj .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sv8h4sOXXj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sv8h4sOXXj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sv8h4sOXXj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sv8h4sOXXj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sv8h4sOXXj .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-sv8h4sOXXj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sv8h4sOXXj .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sv8h4sOXXj .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sv8h4sOXXj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sv8h4sOXXj .navbar .right-menu,
  .cid-sv8h4sOXXj .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sv8h4sOXXj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sv8h4sOXXj .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sv8h4sOXXj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sv8h4sOXXj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sv8h4sOXXj .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sv8h4sOXXj .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sv8h4sOXXj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sv8h4sOXXj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sv8h4sOXXj .dropdown-item.active,
.cid-sv8h4sOXXj .dropdown-item:active {
  background-color: transparent;
}
.cid-sv8h4sOXXj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sv8h4sOXXj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sv8h4sOXXj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sv8h4sOXXj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sv8h4sOXXj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sv8h4sOXXj ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sv8h4sOXXj ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sv8h4sOXXj .navbar-buttons {
  margin-left: auto;
}
.cid-sv8h4sOXXj button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sv8h4sOXXj button.navbar-toggler:hover {
  outline: none;
}
.cid-sv8h4sOXXj button.navbar-toggler:active {
  outline: none;
}
.cid-sv8h4sOXXj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sv8h4sOXXj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sv8h4sOXXj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sv8h4sOXXj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sv8h4sOXXj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sv8h4sOXXj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sv8h4sOXXj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sv8h4sOXXj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sv8h4sOXXj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sv8h4sOXXj .navbar-dropdown {
  position: fixed;
}
.cid-sv8h4sOXXj a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sv8h4sOXXj a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sv8h4sOXXj a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sv8h4sOXXj .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sv8h4sOXXj .right-menu,
.cid-sv8h4sOXXj .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sv8h4sOXXj .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv8h4sOXXj .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv8h4sOXXj .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sv8h4sOXXj .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sv8h4sOXXj .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sv8h4sOXXj .card-wrapper {
  z-index: 3;
}
.cid-sv8h4sOXXj .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sv8h4sOXXj .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sv8h4sOXXj .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sv8h4sOXXj .navbar-brand img {
  width: auto !important;
}
.cid-sv8h4tpF4m {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sv8h4tpF4m .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sv8h4tpF4m .copyright-section,
.cid-sv8h4tpF4m .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sv8h4tpF4m .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sv8h4tpF4m .logo-section img {
  margin: 0 auto;
}
.cid-sv8h4tpF4m .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sv8h4tpF4m .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sv8h4tpF4m .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sv8h4tpF4m .social-media ul li {
    margin-left: 30px;
  }
  .cid-sv8h4tpF4m .container-fluid {
    padding: 0 2rem;
  }
  .cid-sv8h4tpF4m .menu-container {
    margin-bottom: 20px;
  }
  .cid-sv8h4tpF4m .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sv8h4tpF4m .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sv8h4tpF4m .copyright-section {
    order: 1;
  }
  .cid-sv8h4tpF4m .copyright-section hr {
    display: none;
  }
  .cid-sv8h4tpF4m .social-media {
    margin-top: 30px;
  }
  .cid-sv8h4tpF4m .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sv8h4tpF4m .line {
    margin: 25px 0;
  }
  .cid-sv8h4tpF4m .mobirise-rights,
  .cid-sv8h4tpF4m .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sv8h4tpF4m .mbr-text,
.cid-sv8h4tpF4m .copyright-section {
  color: #272727;
}
.cid-sBPbPPtYal {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBPbPPtYal H1 {
  color: #000000;
}
.cid-sBPbPPtYal .mbr-text,
.cid-sBPbPPtYal .mbr-section-btn {
  color: #000000;
}
.cid-sBPbPPtYal .mbr-subtitle {
  color: #000000;
}
.cid-sBPbPPtYal .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBPbPPtYal .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAGPJV21oR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGPJV21oR .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGPJV21oR .container-table {
  margin: 0 auto;
}
.cid-sAGPJV21oR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGPJV21oR .dataTables_wrapper {
  display: block;
}
.cid-sAGPJV21oR .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGPJV21oR .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGPJV21oR table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGPJV21oR table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGPJV21oR table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGPJV21oR table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGPJV21oR table.table {
  background: #ffffff;
}
.cid-sAGPJV21oR .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGPJV21oR .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGPJV21oR .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGPJV21oR .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGPJV21oR .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGPJV21oR .dataTables_filter {
    text-align: center;
  }
  .cid-sAGPJV21oR .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGPJV21oR LABEL {
  text-align: center;
}
.cid-sAGPJV21oR .head-item {
  color: #f7bd50;
}
.cid-sAGPJVHTXz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGPJVHTXz .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGPJVHTXz .container-table {
  margin: 0 auto;
}
.cid-sAGPJVHTXz .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGPJVHTXz .dataTables_wrapper {
  display: block;
}
.cid-sAGPJVHTXz .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGPJVHTXz .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGPJVHTXz table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGPJVHTXz table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGPJVHTXz table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGPJVHTXz table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGPJVHTXz table.table {
  background: #ffffff;
}
.cid-sAGPJVHTXz .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGPJVHTXz .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGPJVHTXz .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGPJVHTXz .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGPJVHTXz .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGPJVHTXz .dataTables_filter {
    text-align: center;
  }
  .cid-sAGPJVHTXz .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGPJVHTXz LABEL {
  text-align: center;
}
.cid-sAGPJVHTXz .body-item {
  text-align: left;
}
.cid-sAGPJWr6Au .modal-body .close {
  background: #1b1b1b;
}
.cid-sAGPJWr6Au .modal-body .close span {
  font-style: normal;
}
.cid-sAGPJWr6Au .carousel-inner > .active,
.cid-sAGPJWr6Au .carousel-inner > .next,
.cid-sAGPJWr6Au .carousel-inner > .prev {
  display: flex;
}
.cid-sAGPJWr6Au .carousel-control .icon-next,
.cid-sAGPJWr6Au .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAGPJWr6Au .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAGPJWr6Au .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGPJWr6Au .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAGPJWr6Au .boxed-slider > div {
  position: relative;
}
.cid-sAGPJWr6Au .container img {
  width: 100%;
}
.cid-sAGPJWr6Au .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-sAGPJWr6Au .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGPJWr6Au .mbr-table-cell {
  padding: 0;
}
.cid-sAGPJWr6Au .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAGPJWr6Au .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-sAGPJWr6Au .mbr-overlay {
  z-index: 1;
}
.cid-sAGPJWr6Au .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGPJWr6Au .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAGPJWr6Au .carousel-item.active.right,
.cid-sAGPJWr6Au .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGPJWr6Au .carousel-item.active.left,
.cid-sAGPJWr6Au .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGPJWr6Au .carousel-item.active,
.cid-sAGPJWr6Au .carousel-item.next.left,
.cid-sAGPJWr6Au .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAGPJWr6Au .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAGPJWr6Au .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAGPJWr6Au .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAGPJWr6Au .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAGPJWr6Au .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAGPJWr6Au .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAGPJWr6Au .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAGPJWr6Au .mbr-slider .carousel-indicators li.active,
.cid-sAGPJWr6Au .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAGPJWr6Au .mbr-slider .carousel-indicators li::after,
.cid-sAGPJWr6Au .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAGPJWr6Au .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAGPJWr6Au .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAGPJWr6Au .mbr-slider > .container img {
  width: 100%;
}
.cid-sAGPJWr6Au .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-sAGPJWr6Au .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAGPJWr6Au .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGPJWr6Au .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGPJWr6Au .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAGPJWr6Au .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAGPJWr6Au .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAGPJWr6Au .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAGPJWr6Au .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAGPJWr6Au .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGPJWr6Au .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAGPJWr6Au .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAGPJWr6Au .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAGPJXCXvz {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAGPJXCXvz .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAGPJXCXvz .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAGPJXCXvz .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAGPJXCXvz H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAGPJXCXvz .section-text,
.cid-sAGPJXCXvz .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAGPJYeUOc .nav-item:focus,
.cid-sAGPJYeUOc .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAGPJYeUOc .nav-item {
    position: relative;
  }
}
.cid-sAGPJYeUOc .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAGPJYeUOc .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAGPJYeUOc .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAGPJYeUOc .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAGPJYeUOc .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAGPJYeUOc .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAGPJYeUOc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAGPJYeUOc .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGPJYeUOc .navbar.collapsed .navbar-collapse.show,
.cid-sAGPJYeUOc .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGPJYeUOc .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAGPJYeUOc .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAGPJYeUOc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAGPJYeUOc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAGPJYeUOc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAGPJYeUOc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAGPJYeUOc .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAGPJYeUOc .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGPJYeUOc .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAGPJYeUOc .navbar.collapsed .right-menu,
.cid-sAGPJYeUOc .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAGPJYeUOc .navbar .navbar-collapse.show,
  .cid-sAGPJYeUOc .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAGPJYeUOc .navbar .navbar-collapse.show .brand-container,
  .cid-sAGPJYeUOc .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAGPJYeUOc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAGPJYeUOc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAGPJYeUOc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAGPJYeUOc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAGPJYeUOc .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-sAGPJYeUOc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAGPJYeUOc .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAGPJYeUOc .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAGPJYeUOc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAGPJYeUOc .navbar .right-menu,
  .cid-sAGPJYeUOc .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAGPJYeUOc .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAGPJYeUOc .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAGPJYeUOc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAGPJYeUOc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAGPJYeUOc .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAGPJYeUOc .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAGPJYeUOc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAGPJYeUOc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAGPJYeUOc .dropdown-item.active,
.cid-sAGPJYeUOc .dropdown-item:active {
  background-color: transparent;
}
.cid-sAGPJYeUOc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAGPJYeUOc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAGPJYeUOc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAGPJYeUOc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAGPJYeUOc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAGPJYeUOc ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAGPJYeUOc ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAGPJYeUOc .navbar-buttons {
  margin-left: auto;
}
.cid-sAGPJYeUOc button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAGPJYeUOc button.navbar-toggler:hover {
  outline: none;
}
.cid-sAGPJYeUOc button.navbar-toggler:active {
  outline: none;
}
.cid-sAGPJYeUOc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAGPJYeUOc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAGPJYeUOc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGPJYeUOc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGPJYeUOc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAGPJYeUOc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGPJYeUOc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAGPJYeUOc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAGPJYeUOc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGPJYeUOc .navbar-dropdown {
  position: fixed;
}
.cid-sAGPJYeUOc a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAGPJYeUOc a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAGPJYeUOc a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAGPJYeUOc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAGPJYeUOc .right-menu,
.cid-sAGPJYeUOc .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAGPJYeUOc .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGPJYeUOc .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGPJYeUOc .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGPJYeUOc .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGPJYeUOc .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAGPJYeUOc .card-wrapper {
  z-index: 3;
}
.cid-sAGPJYeUOc .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAGPJYeUOc .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAGPJYeUOc .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAGPJYeUOc .navbar-brand img {
  width: auto !important;
}
.cid-sAGPJYJ0G1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAGPJYJ0G1 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAGPJYJ0G1 .copyright-section,
.cid-sAGPJYJ0G1 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAGPJYJ0G1 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAGPJYJ0G1 .logo-section img {
  margin: 0 auto;
}
.cid-sAGPJYJ0G1 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAGPJYJ0G1 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAGPJYJ0G1 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAGPJYJ0G1 .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAGPJYJ0G1 .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAGPJYJ0G1 .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAGPJYJ0G1 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAGPJYJ0G1 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAGPJYJ0G1 .copyright-section {
    order: 1;
  }
  .cid-sAGPJYJ0G1 .copyright-section hr {
    display: none;
  }
  .cid-sAGPJYJ0G1 .social-media {
    margin-top: 30px;
  }
  .cid-sAGPJYJ0G1 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAGPJYJ0G1 .line {
    margin: 25px 0;
  }
  .cid-sAGPJYJ0G1 .mobirise-rights,
  .cid-sAGPJYJ0G1 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAGPJYJ0G1 .mbr-text,
.cid-sAGPJYJ0G1 .copyright-section {
  color: #272727;
}
.cid-sBPeOEjTnz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBPeOEjTnz H1 {
  color: #000000;
}
.cid-sBPeOEjTnz .mbr-text,
.cid-sBPeOEjTnz .mbr-section-btn {
  color: #000000;
}
.cid-sBPeOEjTnz .mbr-subtitle {
  color: #000000;
}
.cid-sBPeOEjTnz .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBPeOEjTnz .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAGRpc1ISY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGRpc1ISY .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGRpc1ISY .container-table {
  margin: 0 auto;
}
.cid-sAGRpc1ISY .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGRpc1ISY .dataTables_wrapper {
  display: block;
}
.cid-sAGRpc1ISY .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGRpc1ISY .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGRpc1ISY table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGRpc1ISY table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGRpc1ISY table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGRpc1ISY table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGRpc1ISY table.table {
  background: #ffffff;
}
.cid-sAGRpc1ISY .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGRpc1ISY .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGRpc1ISY .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGRpc1ISY .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGRpc1ISY .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGRpc1ISY .dataTables_filter {
    text-align: center;
  }
  .cid-sAGRpc1ISY .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGRpc1ISY LABEL {
  text-align: center;
}
.cid-sAGRpc1ISY .head-item {
  color: #f7bd50;
}
.cid-sAGRpcHUV0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGRpcHUV0 .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGRpcHUV0 .container-table {
  margin: 0 auto;
}
.cid-sAGRpcHUV0 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGRpcHUV0 .dataTables_wrapper {
  display: block;
}
.cid-sAGRpcHUV0 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGRpcHUV0 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGRpcHUV0 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGRpcHUV0 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGRpcHUV0 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGRpcHUV0 table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGRpcHUV0 table.table {
  background: #ffffff;
}
.cid-sAGRpcHUV0 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGRpcHUV0 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGRpcHUV0 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGRpcHUV0 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGRpcHUV0 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGRpcHUV0 .dataTables_filter {
    text-align: center;
  }
  .cid-sAGRpcHUV0 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGRpcHUV0 LABEL {
  text-align: center;
}
.cid-sAGRpcHUV0 .body-item {
  text-align: left;
}
.cid-sAGRpd9voH .modal-body .close {
  background: #1b1b1b;
}
.cid-sAGRpd9voH .modal-body .close span {
  font-style: normal;
}
.cid-sAGRpd9voH .carousel-inner > .active,
.cid-sAGRpd9voH .carousel-inner > .next,
.cid-sAGRpd9voH .carousel-inner > .prev {
  display: flex;
}
.cid-sAGRpd9voH .carousel-control .icon-next,
.cid-sAGRpd9voH .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAGRpd9voH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAGRpd9voH .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGRpd9voH .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAGRpd9voH .boxed-slider > div {
  position: relative;
}
.cid-sAGRpd9voH .container img {
  width: 100%;
}
.cid-sAGRpd9voH .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-sAGRpd9voH .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGRpd9voH .mbr-table-cell {
  padding: 0;
}
.cid-sAGRpd9voH .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAGRpd9voH .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-sAGRpd9voH .mbr-overlay {
  z-index: 1;
}
.cid-sAGRpd9voH .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGRpd9voH .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAGRpd9voH .carousel-item.active.right,
.cid-sAGRpd9voH .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGRpd9voH .carousel-item.active.left,
.cid-sAGRpd9voH .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGRpd9voH .carousel-item.active,
.cid-sAGRpd9voH .carousel-item.next.left,
.cid-sAGRpd9voH .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAGRpd9voH .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAGRpd9voH .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAGRpd9voH .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAGRpd9voH .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAGRpd9voH .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAGRpd9voH .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAGRpd9voH .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAGRpd9voH .mbr-slider .carousel-indicators li.active,
.cid-sAGRpd9voH .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAGRpd9voH .mbr-slider .carousel-indicators li::after,
.cid-sAGRpd9voH .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAGRpd9voH .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAGRpd9voH .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAGRpd9voH .mbr-slider > .container img {
  width: 100%;
}
.cid-sAGRpd9voH .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-sAGRpd9voH .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAGRpd9voH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGRpd9voH .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGRpd9voH .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAGRpd9voH .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAGRpd9voH .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAGRpd9voH .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAGRpd9voH .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAGRpd9voH .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGRpd9voH .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAGRpd9voH .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAGRpd9voH .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAGRpdYcHt {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAGRpdYcHt .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAGRpdYcHt .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAGRpdYcHt .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAGRpdYcHt H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAGRpdYcHt .section-text,
.cid-sAGRpdYcHt .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAGRpenNpx .nav-item:focus,
.cid-sAGRpenNpx .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAGRpenNpx .nav-item {
    position: relative;
  }
}
.cid-sAGRpenNpx .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAGRpenNpx .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAGRpenNpx .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAGRpenNpx .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAGRpenNpx .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAGRpenNpx .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAGRpenNpx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAGRpenNpx .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGRpenNpx .navbar.collapsed .navbar-collapse.show,
.cid-sAGRpenNpx .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGRpenNpx .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAGRpenNpx .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAGRpenNpx .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAGRpenNpx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAGRpenNpx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAGRpenNpx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAGRpenNpx .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAGRpenNpx .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGRpenNpx .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAGRpenNpx .navbar.collapsed .right-menu,
.cid-sAGRpenNpx .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAGRpenNpx .navbar .navbar-collapse.show,
  .cid-sAGRpenNpx .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAGRpenNpx .navbar .navbar-collapse.show .brand-container,
  .cid-sAGRpenNpx .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAGRpenNpx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAGRpenNpx .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAGRpenNpx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAGRpenNpx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAGRpenNpx .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-sAGRpenNpx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAGRpenNpx .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAGRpenNpx .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAGRpenNpx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAGRpenNpx .navbar .right-menu,
  .cid-sAGRpenNpx .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAGRpenNpx .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAGRpenNpx .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAGRpenNpx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAGRpenNpx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAGRpenNpx .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAGRpenNpx .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAGRpenNpx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAGRpenNpx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAGRpenNpx .dropdown-item.active,
.cid-sAGRpenNpx .dropdown-item:active {
  background-color: transparent;
}
.cid-sAGRpenNpx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAGRpenNpx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAGRpenNpx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAGRpenNpx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAGRpenNpx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAGRpenNpx ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAGRpenNpx ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAGRpenNpx .navbar-buttons {
  margin-left: auto;
}
.cid-sAGRpenNpx button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAGRpenNpx button.navbar-toggler:hover {
  outline: none;
}
.cid-sAGRpenNpx button.navbar-toggler:active {
  outline: none;
}
.cid-sAGRpenNpx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAGRpenNpx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAGRpenNpx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGRpenNpx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGRpenNpx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAGRpenNpx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGRpenNpx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAGRpenNpx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAGRpenNpx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGRpenNpx .navbar-dropdown {
  position: fixed;
}
.cid-sAGRpenNpx a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAGRpenNpx a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAGRpenNpx a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAGRpenNpx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAGRpenNpx .right-menu,
.cid-sAGRpenNpx .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAGRpenNpx .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGRpenNpx .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGRpenNpx .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGRpenNpx .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGRpenNpx .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAGRpenNpx .card-wrapper {
  z-index: 3;
}
.cid-sAGRpenNpx .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAGRpenNpx .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAGRpenNpx .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAGRpenNpx .navbar-brand img {
  width: auto !important;
}
.cid-sAGRpeOXx0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAGRpeOXx0 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAGRpeOXx0 .copyright-section,
.cid-sAGRpeOXx0 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAGRpeOXx0 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAGRpeOXx0 .logo-section img {
  margin: 0 auto;
}
.cid-sAGRpeOXx0 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAGRpeOXx0 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAGRpeOXx0 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAGRpeOXx0 .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAGRpeOXx0 .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAGRpeOXx0 .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAGRpeOXx0 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAGRpeOXx0 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAGRpeOXx0 .copyright-section {
    order: 1;
  }
  .cid-sAGRpeOXx0 .copyright-section hr {
    display: none;
  }
  .cid-sAGRpeOXx0 .social-media {
    margin-top: 30px;
  }
  .cid-sAGRpeOXx0 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAGRpeOXx0 .line {
    margin: 25px 0;
  }
  .cid-sAGRpeOXx0 .mobirise-rights,
  .cid-sAGRpeOXx0 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAGRpeOXx0 .mbr-text,
.cid-sAGRpeOXx0 .copyright-section {
  color: #272727;
}
.cid-sBPfStURSq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBPfStURSq H1 {
  color: #000000;
}
.cid-sBPfStURSq .mbr-text,
.cid-sBPfStURSq .mbr-section-btn {
  color: #000000;
}
.cid-sBPfStURSq .mbr-subtitle {
  color: #000000;
}
.cid-sBPfStURSq .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBPfStURSq .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAGSjTAqkE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGSjTAqkE .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGSjTAqkE .container-table {
  margin: 0 auto;
}
.cid-sAGSjTAqkE .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGSjTAqkE .dataTables_wrapper {
  display: block;
}
.cid-sAGSjTAqkE .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGSjTAqkE .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGSjTAqkE table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGSjTAqkE table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGSjTAqkE table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGSjTAqkE table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGSjTAqkE table.table {
  background: #ffffff;
}
.cid-sAGSjTAqkE .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGSjTAqkE .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGSjTAqkE .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGSjTAqkE .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGSjTAqkE .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGSjTAqkE .dataTables_filter {
    text-align: center;
  }
  .cid-sAGSjTAqkE .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGSjTAqkE LABEL {
  text-align: center;
}
.cid-sAGSjTAqkE .head-item {
  color: #f7bd50;
}
.cid-sAGSjUg0ci {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-sAGSjUg0ci .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGSjUg0ci .container-table {
  margin: 0 auto;
}
.cid-sAGSjUg0ci .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGSjUg0ci .dataTables_wrapper {
  display: block;
}
.cid-sAGSjUg0ci .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGSjUg0ci .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGSjUg0ci table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGSjUg0ci table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGSjUg0ci table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGSjUg0ci table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGSjUg0ci table.table {
  background: #ffffff;
}
.cid-sAGSjUg0ci .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGSjUg0ci .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGSjUg0ci .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGSjUg0ci .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGSjUg0ci .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGSjUg0ci .dataTables_filter {
    text-align: center;
  }
  .cid-sAGSjUg0ci .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGSjUg0ci LABEL {
  text-align: center;
}
.cid-sAGSjUg0ci .body-item {
  text-align: left;
}
.cid-sAGSjUItvD .modal-body .close {
  background: #1b1b1b;
}
.cid-sAGSjUItvD .modal-body .close span {
  font-style: normal;
}
.cid-sAGSjUItvD .carousel-inner > .active,
.cid-sAGSjUItvD .carousel-inner > .next,
.cid-sAGSjUItvD .carousel-inner > .prev {
  display: flex;
}
.cid-sAGSjUItvD .carousel-control .icon-next,
.cid-sAGSjUItvD .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAGSjUItvD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAGSjUItvD .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGSjUItvD .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAGSjUItvD .boxed-slider > div {
  position: relative;
}
.cid-sAGSjUItvD .container img {
  width: 100%;
}
.cid-sAGSjUItvD .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-sAGSjUItvD .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGSjUItvD .mbr-table-cell {
  padding: 0;
}
.cid-sAGSjUItvD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAGSjUItvD .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-sAGSjUItvD .mbr-overlay {
  z-index: 1;
}
.cid-sAGSjUItvD .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGSjUItvD .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAGSjUItvD .carousel-item.active.right,
.cid-sAGSjUItvD .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGSjUItvD .carousel-item.active.left,
.cid-sAGSjUItvD .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGSjUItvD .carousel-item.active,
.cid-sAGSjUItvD .carousel-item.next.left,
.cid-sAGSjUItvD .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAGSjUItvD .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAGSjUItvD .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAGSjUItvD .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAGSjUItvD .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAGSjUItvD .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAGSjUItvD .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAGSjUItvD .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAGSjUItvD .mbr-slider .carousel-indicators li.active,
.cid-sAGSjUItvD .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAGSjUItvD .mbr-slider .carousel-indicators li::after,
.cid-sAGSjUItvD .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAGSjUItvD .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAGSjUItvD .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAGSjUItvD .mbr-slider > .container img {
  width: 100%;
}
.cid-sAGSjUItvD .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-sAGSjUItvD .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAGSjUItvD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGSjUItvD .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGSjUItvD .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAGSjUItvD .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAGSjUItvD .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAGSjUItvD .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAGSjUItvD .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAGSjUItvD .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGSjUItvD .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAGSjUItvD .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAGSjUItvD .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAGSjVw7xG {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAGSjVw7xG .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAGSjVw7xG .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAGSjVw7xG .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAGSjVw7xG H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAGSjVw7xG .section-text,
.cid-sAGSjVw7xG .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAGSjVVTI2 .nav-item:focus,
.cid-sAGSjVVTI2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAGSjVVTI2 .nav-item {
    position: relative;
  }
}
.cid-sAGSjVVTI2 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAGSjVVTI2 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAGSjVVTI2 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAGSjVVTI2 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAGSjVVTI2 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAGSjVVTI2 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAGSjVVTI2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAGSjVVTI2 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGSjVVTI2 .navbar.collapsed .navbar-collapse.show,
.cid-sAGSjVVTI2 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGSjVVTI2 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAGSjVVTI2 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAGSjVVTI2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAGSjVVTI2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAGSjVVTI2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAGSjVVTI2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAGSjVVTI2 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAGSjVVTI2 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGSjVVTI2 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAGSjVVTI2 .navbar.collapsed .right-menu,
.cid-sAGSjVVTI2 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAGSjVVTI2 .navbar .navbar-collapse.show,
  .cid-sAGSjVVTI2 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAGSjVVTI2 .navbar .navbar-collapse.show .brand-container,
  .cid-sAGSjVVTI2 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAGSjVVTI2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAGSjVVTI2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAGSjVVTI2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAGSjVVTI2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAGSjVVTI2 .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-sAGSjVVTI2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAGSjVVTI2 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAGSjVVTI2 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAGSjVVTI2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAGSjVVTI2 .navbar .right-menu,
  .cid-sAGSjVVTI2 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAGSjVVTI2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAGSjVVTI2 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAGSjVVTI2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAGSjVVTI2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAGSjVVTI2 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAGSjVVTI2 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAGSjVVTI2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAGSjVVTI2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAGSjVVTI2 .dropdown-item.active,
.cid-sAGSjVVTI2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sAGSjVVTI2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAGSjVVTI2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAGSjVVTI2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAGSjVVTI2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAGSjVVTI2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAGSjVVTI2 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAGSjVVTI2 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAGSjVVTI2 .navbar-buttons {
  margin-left: auto;
}
.cid-sAGSjVVTI2 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAGSjVVTI2 button.navbar-toggler:hover {
  outline: none;
}
.cid-sAGSjVVTI2 button.navbar-toggler:active {
  outline: none;
}
.cid-sAGSjVVTI2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAGSjVVTI2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAGSjVVTI2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGSjVVTI2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGSjVVTI2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAGSjVVTI2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGSjVVTI2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAGSjVVTI2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAGSjVVTI2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGSjVVTI2 .navbar-dropdown {
  position: fixed;
}
.cid-sAGSjVVTI2 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAGSjVVTI2 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAGSjVVTI2 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAGSjVVTI2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAGSjVVTI2 .right-menu,
.cid-sAGSjVVTI2 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAGSjVVTI2 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGSjVVTI2 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGSjVVTI2 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGSjVVTI2 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGSjVVTI2 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAGSjVVTI2 .card-wrapper {
  z-index: 3;
}
.cid-sAGSjVVTI2 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAGSjVVTI2 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAGSjVVTI2 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAGSjVVTI2 .navbar-brand img {
  width: auto !important;
}
.cid-sAGSjWr9pV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAGSjWr9pV .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAGSjWr9pV .copyright-section,
.cid-sAGSjWr9pV .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAGSjWr9pV .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAGSjWr9pV .logo-section img {
  margin: 0 auto;
}
.cid-sAGSjWr9pV .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAGSjWr9pV .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAGSjWr9pV .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAGSjWr9pV .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAGSjWr9pV .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAGSjWr9pV .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAGSjWr9pV .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAGSjWr9pV .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAGSjWr9pV .copyright-section {
    order: 1;
  }
  .cid-sAGSjWr9pV .copyright-section hr {
    display: none;
  }
  .cid-sAGSjWr9pV .social-media {
    margin-top: 30px;
  }
  .cid-sAGSjWr9pV .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAGSjWr9pV .line {
    margin: 25px 0;
  }
  .cid-sAGSjWr9pV .mobirise-rights,
  .cid-sAGSjWr9pV .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAGSjWr9pV .mbr-text,
.cid-sAGSjWr9pV .copyright-section {
  color: #272727;
}
.cid-sBPVYh6U3Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBPVYh6U3Q H1 {
  color: #000000;
}
.cid-sBPVYh6U3Q .mbr-text,
.cid-sBPVYh6U3Q .mbr-section-btn {
  color: #000000;
}
.cid-sBPVYh6U3Q .mbr-subtitle {
  color: #000000;
}
.cid-sBPVYh6U3Q .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBPVYh6U3Q .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAGTlKvTmt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGTlKvTmt .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGTlKvTmt .container-table {
  margin: 0 auto;
}
.cid-sAGTlKvTmt .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGTlKvTmt .dataTables_wrapper {
  display: block;
}
.cid-sAGTlKvTmt .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGTlKvTmt .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGTlKvTmt table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGTlKvTmt table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGTlKvTmt table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGTlKvTmt table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGTlKvTmt table.table {
  background: #ffffff;
}
.cid-sAGTlKvTmt .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGTlKvTmt .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGTlKvTmt .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGTlKvTmt .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGTlKvTmt .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGTlKvTmt .dataTables_filter {
    text-align: center;
  }
  .cid-sAGTlKvTmt .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGTlKvTmt LABEL {
  text-align: center;
}
.cid-sAGTlKvTmt .head-item {
  color: #f7bd50;
}
.cid-sAGTlLaDHS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGTlLaDHS .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGTlLaDHS .container-table {
  margin: 0 auto;
}
.cid-sAGTlLaDHS .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGTlLaDHS .dataTables_wrapper {
  display: block;
}
.cid-sAGTlLaDHS .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGTlLaDHS .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGTlLaDHS table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGTlLaDHS table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGTlLaDHS table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGTlLaDHS table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGTlLaDHS table.table {
  background: #ffffff;
}
.cid-sAGTlLaDHS .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGTlLaDHS .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGTlLaDHS .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGTlLaDHS .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGTlLaDHS .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGTlLaDHS .dataTables_filter {
    text-align: center;
  }
  .cid-sAGTlLaDHS .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGTlLaDHS LABEL {
  text-align: center;
}
.cid-sAGTlLaDHS .body-item {
  text-align: left;
}
.cid-sAGTlLrkOz .modal-body .close {
  background: #1b1b1b;
}
.cid-sAGTlLrkOz .modal-body .close span {
  font-style: normal;
}
.cid-sAGTlLrkOz .carousel-inner > .active,
.cid-sAGTlLrkOz .carousel-inner > .next,
.cid-sAGTlLrkOz .carousel-inner > .prev {
  display: flex;
}
.cid-sAGTlLrkOz .carousel-control .icon-next,
.cid-sAGTlLrkOz .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAGTlLrkOz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAGTlLrkOz .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGTlLrkOz .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAGTlLrkOz .boxed-slider > div {
  position: relative;
}
.cid-sAGTlLrkOz .container img {
  width: 100%;
}
.cid-sAGTlLrkOz .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-sAGTlLrkOz .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGTlLrkOz .mbr-table-cell {
  padding: 0;
}
.cid-sAGTlLrkOz .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAGTlLrkOz .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-sAGTlLrkOz .mbr-overlay {
  z-index: 1;
}
.cid-sAGTlLrkOz .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGTlLrkOz .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAGTlLrkOz .carousel-item.active.right,
.cid-sAGTlLrkOz .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGTlLrkOz .carousel-item.active.left,
.cid-sAGTlLrkOz .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGTlLrkOz .carousel-item.active,
.cid-sAGTlLrkOz .carousel-item.next.left,
.cid-sAGTlLrkOz .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAGTlLrkOz .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAGTlLrkOz .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAGTlLrkOz .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAGTlLrkOz .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAGTlLrkOz .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAGTlLrkOz .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAGTlLrkOz .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAGTlLrkOz .mbr-slider .carousel-indicators li.active,
.cid-sAGTlLrkOz .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAGTlLrkOz .mbr-slider .carousel-indicators li::after,
.cid-sAGTlLrkOz .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAGTlLrkOz .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAGTlLrkOz .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAGTlLrkOz .mbr-slider > .container img {
  width: 100%;
}
.cid-sAGTlLrkOz .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-sAGTlLrkOz .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAGTlLrkOz .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGTlLrkOz .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGTlLrkOz .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAGTlLrkOz .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAGTlLrkOz .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAGTlLrkOz .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAGTlLrkOz .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAGTlLrkOz .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGTlLrkOz .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAGTlLrkOz .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAGTlLrkOz .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAGTlMlYCz {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAGTlMlYCz .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAGTlMlYCz .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAGTlMlYCz .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAGTlMlYCz H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAGTlMlYCz .section-text,
.cid-sAGTlMlYCz .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAGTlMOgB2 .nav-item:focus,
.cid-sAGTlMOgB2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAGTlMOgB2 .nav-item {
    position: relative;
  }
}
.cid-sAGTlMOgB2 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAGTlMOgB2 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAGTlMOgB2 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAGTlMOgB2 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAGTlMOgB2 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAGTlMOgB2 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAGTlMOgB2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAGTlMOgB2 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGTlMOgB2 .navbar.collapsed .navbar-collapse.show,
.cid-sAGTlMOgB2 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGTlMOgB2 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAGTlMOgB2 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAGTlMOgB2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAGTlMOgB2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAGTlMOgB2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAGTlMOgB2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAGTlMOgB2 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAGTlMOgB2 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGTlMOgB2 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAGTlMOgB2 .navbar.collapsed .right-menu,
.cid-sAGTlMOgB2 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAGTlMOgB2 .navbar .navbar-collapse.show,
  .cid-sAGTlMOgB2 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAGTlMOgB2 .navbar .navbar-collapse.show .brand-container,
  .cid-sAGTlMOgB2 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAGTlMOgB2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAGTlMOgB2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAGTlMOgB2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAGTlMOgB2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAGTlMOgB2 .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-sAGTlMOgB2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAGTlMOgB2 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAGTlMOgB2 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAGTlMOgB2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAGTlMOgB2 .navbar .right-menu,
  .cid-sAGTlMOgB2 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAGTlMOgB2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAGTlMOgB2 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAGTlMOgB2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAGTlMOgB2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAGTlMOgB2 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAGTlMOgB2 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAGTlMOgB2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAGTlMOgB2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAGTlMOgB2 .dropdown-item.active,
.cid-sAGTlMOgB2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sAGTlMOgB2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAGTlMOgB2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAGTlMOgB2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAGTlMOgB2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAGTlMOgB2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAGTlMOgB2 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAGTlMOgB2 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAGTlMOgB2 .navbar-buttons {
  margin-left: auto;
}
.cid-sAGTlMOgB2 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAGTlMOgB2 button.navbar-toggler:hover {
  outline: none;
}
.cid-sAGTlMOgB2 button.navbar-toggler:active {
  outline: none;
}
.cid-sAGTlMOgB2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAGTlMOgB2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAGTlMOgB2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGTlMOgB2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGTlMOgB2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAGTlMOgB2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGTlMOgB2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAGTlMOgB2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAGTlMOgB2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGTlMOgB2 .navbar-dropdown {
  position: fixed;
}
.cid-sAGTlMOgB2 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAGTlMOgB2 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAGTlMOgB2 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAGTlMOgB2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAGTlMOgB2 .right-menu,
.cid-sAGTlMOgB2 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAGTlMOgB2 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGTlMOgB2 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGTlMOgB2 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGTlMOgB2 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGTlMOgB2 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAGTlMOgB2 .card-wrapper {
  z-index: 3;
}
.cid-sAGTlMOgB2 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAGTlMOgB2 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAGTlMOgB2 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAGTlMOgB2 .navbar-brand img {
  width: auto !important;
}
.cid-sAGTlNfECy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAGTlNfECy .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAGTlNfECy .copyright-section,
.cid-sAGTlNfECy .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAGTlNfECy .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAGTlNfECy .logo-section img {
  margin: 0 auto;
}
.cid-sAGTlNfECy .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAGTlNfECy .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAGTlNfECy .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAGTlNfECy .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAGTlNfECy .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAGTlNfECy .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAGTlNfECy .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAGTlNfECy .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAGTlNfECy .copyright-section {
    order: 1;
  }
  .cid-sAGTlNfECy .copyright-section hr {
    display: none;
  }
  .cid-sAGTlNfECy .social-media {
    margin-top: 30px;
  }
  .cid-sAGTlNfECy .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAGTlNfECy .line {
    margin: 25px 0;
  }
  .cid-sAGTlNfECy .mobirise-rights,
  .cid-sAGTlNfECy .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAGTlNfECy .mbr-text,
.cid-sAGTlNfECy .copyright-section {
  color: #272727;
}
.cid-sBQ0i4FzoO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bolstibetain-1920x800.jpg");
}
.cid-sBQ0i4FzoO H1 {
  color: #000000;
}
.cid-sBQ0i4FzoO .mbr-text,
.cid-sBQ0i4FzoO .mbr-section-btn {
  color: #000000;
}
.cid-sBQ0i4FzoO .mbr-subtitle {
  color: #000000;
}
.cid-sBQ0i4FzoO .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBQ0i4FzoO .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBQ0i4FzoO .mbr-section-title,
.cid-sBQ0i4FzoO .mbr-section-btn {
  color: #ffffff;
}
.cid-sAGUGY2gnM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGUGY2gnM .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGUGY2gnM .container-table {
  margin: 0 auto;
}
.cid-sAGUGY2gnM .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGUGY2gnM .dataTables_wrapper {
  display: block;
}
.cid-sAGUGY2gnM .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGUGY2gnM .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGUGY2gnM table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGUGY2gnM table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGUGY2gnM table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGUGY2gnM table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGUGY2gnM table.table {
  background: #ffffff;
}
.cid-sAGUGY2gnM .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGUGY2gnM .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGUGY2gnM .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGUGY2gnM .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGUGY2gnM .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGUGY2gnM .dataTables_filter {
    text-align: center;
  }
  .cid-sAGUGY2gnM .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGUGY2gnM LABEL {
  text-align: center;
}
.cid-sAGUGY2gnM .head-item {
  color: #f7bd50;
}
.cid-sAGUGYJ5kF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGUGYJ5kF .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGUGYJ5kF .container-table {
  margin: 0 auto;
}
.cid-sAGUGYJ5kF .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGUGYJ5kF .dataTables_wrapper {
  display: block;
}
.cid-sAGUGYJ5kF .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGUGYJ5kF .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGUGYJ5kF table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGUGYJ5kF table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGUGYJ5kF table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGUGYJ5kF table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGUGYJ5kF table.table {
  background: #ffffff;
}
.cid-sAGUGYJ5kF .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGUGYJ5kF .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGUGYJ5kF .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGUGYJ5kF .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGUGYJ5kF .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGUGYJ5kF .dataTables_filter {
    text-align: center;
  }
  .cid-sAGUGYJ5kF .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGUGYJ5kF LABEL {
  text-align: center;
}
.cid-sAGUGYJ5kF .body-item {
  text-align: left;
}
.cid-sAGUGZbzSa .modal-body .close {
  background: #1b1b1b;
}
.cid-sAGUGZbzSa .modal-body .close span {
  font-style: normal;
}
.cid-sAGUGZbzSa .carousel-inner > .active,
.cid-sAGUGZbzSa .carousel-inner > .next,
.cid-sAGUGZbzSa .carousel-inner > .prev {
  display: flex;
}
.cid-sAGUGZbzSa .carousel-control .icon-next,
.cid-sAGUGZbzSa .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAGUGZbzSa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAGUGZbzSa .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGUGZbzSa .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAGUGZbzSa .boxed-slider > div {
  position: relative;
}
.cid-sAGUGZbzSa .container img {
  width: 100%;
}
.cid-sAGUGZbzSa .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-sAGUGZbzSa .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGUGZbzSa .mbr-table-cell {
  padding: 0;
}
.cid-sAGUGZbzSa .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAGUGZbzSa .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-sAGUGZbzSa .mbr-overlay {
  z-index: 1;
}
.cid-sAGUGZbzSa .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGUGZbzSa .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAGUGZbzSa .carousel-item.active.right,
.cid-sAGUGZbzSa .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGUGZbzSa .carousel-item.active.left,
.cid-sAGUGZbzSa .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGUGZbzSa .carousel-item.active,
.cid-sAGUGZbzSa .carousel-item.next.left,
.cid-sAGUGZbzSa .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAGUGZbzSa .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAGUGZbzSa .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAGUGZbzSa .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAGUGZbzSa .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAGUGZbzSa .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAGUGZbzSa .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAGUGZbzSa .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAGUGZbzSa .mbr-slider .carousel-indicators li.active,
.cid-sAGUGZbzSa .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAGUGZbzSa .mbr-slider .carousel-indicators li::after,
.cid-sAGUGZbzSa .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAGUGZbzSa .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAGUGZbzSa .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAGUGZbzSa .mbr-slider > .container img {
  width: 100%;
}
.cid-sAGUGZbzSa .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-sAGUGZbzSa .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAGUGZbzSa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGUGZbzSa .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGUGZbzSa .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAGUGZbzSa .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAGUGZbzSa .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAGUGZbzSa .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAGUGZbzSa .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAGUGZbzSa .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGUGZbzSa .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAGUGZbzSa .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAGUGZbzSa .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAGUGZS4z8 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAGUGZS4z8 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAGUGZS4z8 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAGUGZS4z8 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAGUGZS4z8 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAGUGZS4z8 .section-text,
.cid-sAGUGZS4z8 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAGUH0g6Pv .nav-item:focus,
.cid-sAGUH0g6Pv .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAGUH0g6Pv .nav-item {
    position: relative;
  }
}
.cid-sAGUH0g6Pv .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAGUH0g6Pv .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAGUH0g6Pv .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAGUH0g6Pv .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAGUH0g6Pv .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAGUH0g6Pv .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAGUH0g6Pv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAGUH0g6Pv .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGUH0g6Pv .navbar.collapsed .navbar-collapse.show,
.cid-sAGUH0g6Pv .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGUH0g6Pv .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAGUH0g6Pv .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAGUH0g6Pv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAGUH0g6Pv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAGUH0g6Pv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAGUH0g6Pv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAGUH0g6Pv .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAGUH0g6Pv .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGUH0g6Pv .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAGUH0g6Pv .navbar.collapsed .right-menu,
.cid-sAGUH0g6Pv .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAGUH0g6Pv .navbar .navbar-collapse.show,
  .cid-sAGUH0g6Pv .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAGUH0g6Pv .navbar .navbar-collapse.show .brand-container,
  .cid-sAGUH0g6Pv .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAGUH0g6Pv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAGUH0g6Pv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAGUH0g6Pv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAGUH0g6Pv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAGUH0g6Pv .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-sAGUH0g6Pv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAGUH0g6Pv .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAGUH0g6Pv .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAGUH0g6Pv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAGUH0g6Pv .navbar .right-menu,
  .cid-sAGUH0g6Pv .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAGUH0g6Pv .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAGUH0g6Pv .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAGUH0g6Pv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAGUH0g6Pv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAGUH0g6Pv .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAGUH0g6Pv .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAGUH0g6Pv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAGUH0g6Pv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAGUH0g6Pv .dropdown-item.active,
.cid-sAGUH0g6Pv .dropdown-item:active {
  background-color: transparent;
}
.cid-sAGUH0g6Pv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAGUH0g6Pv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAGUH0g6Pv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAGUH0g6Pv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAGUH0g6Pv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAGUH0g6Pv ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAGUH0g6Pv ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAGUH0g6Pv .navbar-buttons {
  margin-left: auto;
}
.cid-sAGUH0g6Pv button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAGUH0g6Pv button.navbar-toggler:hover {
  outline: none;
}
.cid-sAGUH0g6Pv button.navbar-toggler:active {
  outline: none;
}
.cid-sAGUH0g6Pv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAGUH0g6Pv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAGUH0g6Pv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGUH0g6Pv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGUH0g6Pv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAGUH0g6Pv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGUH0g6Pv nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAGUH0g6Pv nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAGUH0g6Pv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGUH0g6Pv .navbar-dropdown {
  position: fixed;
}
.cid-sAGUH0g6Pv a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAGUH0g6Pv a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAGUH0g6Pv a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAGUH0g6Pv .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAGUH0g6Pv .right-menu,
.cid-sAGUH0g6Pv .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAGUH0g6Pv .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGUH0g6Pv .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGUH0g6Pv .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGUH0g6Pv .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGUH0g6Pv .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAGUH0g6Pv .card-wrapper {
  z-index: 3;
}
.cid-sAGUH0g6Pv .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAGUH0g6Pv .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAGUH0g6Pv .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAGUH0g6Pv .navbar-brand img {
  width: auto !important;
}
.cid-sAGUH0IlRJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAGUH0IlRJ .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAGUH0IlRJ .copyright-section,
.cid-sAGUH0IlRJ .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAGUH0IlRJ .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAGUH0IlRJ .logo-section img {
  margin: 0 auto;
}
.cid-sAGUH0IlRJ .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAGUH0IlRJ .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAGUH0IlRJ .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAGUH0IlRJ .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAGUH0IlRJ .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAGUH0IlRJ .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAGUH0IlRJ .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAGUH0IlRJ .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAGUH0IlRJ .copyright-section {
    order: 1;
  }
  .cid-sAGUH0IlRJ .copyright-section hr {
    display: none;
  }
  .cid-sAGUH0IlRJ .social-media {
    margin-top: 30px;
  }
  .cid-sAGUH0IlRJ .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAGUH0IlRJ .line {
    margin: 25px 0;
  }
  .cid-sAGUH0IlRJ .mobirise-rights,
  .cid-sAGUH0IlRJ .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAGUH0IlRJ .mbr-text,
.cid-sAGUH0IlRJ .copyright-section {
  color: #272727;
}
.cid-sBQ3i9CW4o {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBQ3i9CW4o H1 {
  color: #000000;
}
.cid-sBQ3i9CW4o .mbr-text,
.cid-sBQ3i9CW4o .mbr-section-btn {
  color: #000000;
}
.cid-sBQ3i9CW4o .mbr-subtitle {
  color: #000000;
}
.cid-sBQ3i9CW4o .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBQ3i9CW4o .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAGVkMZ4iA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGVkMZ4iA .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGVkMZ4iA .container-table {
  margin: 0 auto;
}
.cid-sAGVkMZ4iA .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGVkMZ4iA .dataTables_wrapper {
  display: block;
}
.cid-sAGVkMZ4iA .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGVkMZ4iA .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGVkMZ4iA table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGVkMZ4iA table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGVkMZ4iA table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGVkMZ4iA table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGVkMZ4iA table.table {
  background: #ffffff;
}
.cid-sAGVkMZ4iA .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGVkMZ4iA .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGVkMZ4iA .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGVkMZ4iA .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGVkMZ4iA .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGVkMZ4iA .dataTables_filter {
    text-align: center;
  }
  .cid-sAGVkMZ4iA .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGVkMZ4iA LABEL {
  text-align: center;
}
.cid-sAGVkMZ4iA .head-item {
  color: #f7bd50;
}
.cid-sAGVkNG3Qh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGVkNG3Qh .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGVkNG3Qh .container-table {
  margin: 0 auto;
}
.cid-sAGVkNG3Qh .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGVkNG3Qh .dataTables_wrapper {
  display: block;
}
.cid-sAGVkNG3Qh .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGVkNG3Qh .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGVkNG3Qh table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGVkNG3Qh table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGVkNG3Qh table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGVkNG3Qh table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGVkNG3Qh table.table {
  background: #ffffff;
}
.cid-sAGVkNG3Qh .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGVkNG3Qh .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGVkNG3Qh .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGVkNG3Qh .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGVkNG3Qh .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGVkNG3Qh .dataTables_filter {
    text-align: center;
  }
  .cid-sAGVkNG3Qh .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGVkNG3Qh LABEL {
  text-align: center;
}
.cid-sAGVkNG3Qh .body-item {
  text-align: left;
}
.cid-sAGVkNG3Qh .head-item {
  color: #f7bd50;
}
.cid-sAGVkObO0g .modal-body .close {
  background: #1b1b1b;
}
.cid-sAGVkObO0g .modal-body .close span {
  font-style: normal;
}
.cid-sAGVkObO0g .carousel-inner > .active,
.cid-sAGVkObO0g .carousel-inner > .next,
.cid-sAGVkObO0g .carousel-inner > .prev {
  display: flex;
}
.cid-sAGVkObO0g .carousel-control .icon-next,
.cid-sAGVkObO0g .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAGVkObO0g .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAGVkObO0g .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGVkObO0g .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAGVkObO0g .boxed-slider > div {
  position: relative;
}
.cid-sAGVkObO0g .container img {
  width: 100%;
}
.cid-sAGVkObO0g .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-sAGVkObO0g .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGVkObO0g .mbr-table-cell {
  padding: 0;
}
.cid-sAGVkObO0g .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAGVkObO0g .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-sAGVkObO0g .mbr-overlay {
  z-index: 1;
}
.cid-sAGVkObO0g .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGVkObO0g .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAGVkObO0g .carousel-item.active.right,
.cid-sAGVkObO0g .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGVkObO0g .carousel-item.active.left,
.cid-sAGVkObO0g .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGVkObO0g .carousel-item.active,
.cid-sAGVkObO0g .carousel-item.next.left,
.cid-sAGVkObO0g .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAGVkObO0g .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAGVkObO0g .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAGVkObO0g .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAGVkObO0g .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAGVkObO0g .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAGVkObO0g .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAGVkObO0g .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAGVkObO0g .mbr-slider .carousel-indicators li.active,
.cid-sAGVkObO0g .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAGVkObO0g .mbr-slider .carousel-indicators li::after,
.cid-sAGVkObO0g .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAGVkObO0g .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAGVkObO0g .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAGVkObO0g .mbr-slider > .container img {
  width: 100%;
}
.cid-sAGVkObO0g .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-sAGVkObO0g .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAGVkObO0g .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGVkObO0g .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGVkObO0g .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAGVkObO0g .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAGVkObO0g .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAGVkObO0g .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAGVkObO0g .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAGVkObO0g .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGVkObO0g .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAGVkObO0g .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAGVkObO0g .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAGVkOX1jD {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAGVkOX1jD .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAGVkOX1jD .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAGVkOX1jD .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAGVkOX1jD H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAGVkOX1jD .section-text,
.cid-sAGVkOX1jD .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAGVkPn5pQ .nav-item:focus,
.cid-sAGVkPn5pQ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAGVkPn5pQ .nav-item {
    position: relative;
  }
}
.cid-sAGVkPn5pQ .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAGVkPn5pQ .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAGVkPn5pQ .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAGVkPn5pQ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAGVkPn5pQ .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAGVkPn5pQ .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAGVkPn5pQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAGVkPn5pQ .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGVkPn5pQ .navbar.collapsed .navbar-collapse.show,
.cid-sAGVkPn5pQ .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGVkPn5pQ .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAGVkPn5pQ .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAGVkPn5pQ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAGVkPn5pQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAGVkPn5pQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAGVkPn5pQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAGVkPn5pQ .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAGVkPn5pQ .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGVkPn5pQ .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAGVkPn5pQ .navbar.collapsed .right-menu,
.cid-sAGVkPn5pQ .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAGVkPn5pQ .navbar .navbar-collapse.show,
  .cid-sAGVkPn5pQ .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAGVkPn5pQ .navbar .navbar-collapse.show .brand-container,
  .cid-sAGVkPn5pQ .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAGVkPn5pQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAGVkPn5pQ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAGVkPn5pQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAGVkPn5pQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAGVkPn5pQ .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-sAGVkPn5pQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAGVkPn5pQ .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAGVkPn5pQ .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAGVkPn5pQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAGVkPn5pQ .navbar .right-menu,
  .cid-sAGVkPn5pQ .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAGVkPn5pQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAGVkPn5pQ .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAGVkPn5pQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAGVkPn5pQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAGVkPn5pQ .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAGVkPn5pQ .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAGVkPn5pQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAGVkPn5pQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAGVkPn5pQ .dropdown-item.active,
.cid-sAGVkPn5pQ .dropdown-item:active {
  background-color: transparent;
}
.cid-sAGVkPn5pQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAGVkPn5pQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAGVkPn5pQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAGVkPn5pQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAGVkPn5pQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAGVkPn5pQ ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAGVkPn5pQ ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAGVkPn5pQ .navbar-buttons {
  margin-left: auto;
}
.cid-sAGVkPn5pQ button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAGVkPn5pQ button.navbar-toggler:hover {
  outline: none;
}
.cid-sAGVkPn5pQ button.navbar-toggler:active {
  outline: none;
}
.cid-sAGVkPn5pQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAGVkPn5pQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAGVkPn5pQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGVkPn5pQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGVkPn5pQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAGVkPn5pQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGVkPn5pQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAGVkPn5pQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAGVkPn5pQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGVkPn5pQ .navbar-dropdown {
  position: fixed;
}
.cid-sAGVkPn5pQ a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAGVkPn5pQ a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAGVkPn5pQ a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAGVkPn5pQ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAGVkPn5pQ .right-menu,
.cid-sAGVkPn5pQ .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAGVkPn5pQ .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGVkPn5pQ .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGVkPn5pQ .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGVkPn5pQ .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGVkPn5pQ .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAGVkPn5pQ .card-wrapper {
  z-index: 3;
}
.cid-sAGVkPn5pQ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAGVkPn5pQ .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAGVkPn5pQ .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAGVkPn5pQ .navbar-brand img {
  width: auto !important;
}
.cid-sAGVkPP7Kk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAGVkPP7Kk .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAGVkPP7Kk .copyright-section,
.cid-sAGVkPP7Kk .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAGVkPP7Kk .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAGVkPP7Kk .logo-section img {
  margin: 0 auto;
}
.cid-sAGVkPP7Kk .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAGVkPP7Kk .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAGVkPP7Kk .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAGVkPP7Kk .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAGVkPP7Kk .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAGVkPP7Kk .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAGVkPP7Kk .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAGVkPP7Kk .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAGVkPP7Kk .copyright-section {
    order: 1;
  }
  .cid-sAGVkPP7Kk .copyright-section hr {
    display: none;
  }
  .cid-sAGVkPP7Kk .social-media {
    margin-top: 30px;
  }
  .cid-sAGVkPP7Kk .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAGVkPP7Kk .line {
    margin: 25px 0;
  }
  .cid-sAGVkPP7Kk .mobirise-rights,
  .cid-sAGVkPP7Kk .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAGVkPP7Kk .mbr-text,
.cid-sAGVkPP7Kk .copyright-section {
  color: #272727;
}
.cid-sBQc2QwP5S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/p1090451-1920w-1200x1600.jpg");
}
.cid-sBQc2QwP5S H1 {
  color: #000000;
}
.cid-sBQc2QwP5S .mbr-text,
.cid-sBQc2QwP5S .mbr-section-btn {
  color: #000000;
}
.cid-sBQc2QwP5S .mbr-subtitle {
  color: #000000;
}
.cid-sBQc2QwP5S .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBQc2QwP5S .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAGWSYCFvm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGWSYCFvm .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGWSYCFvm .container-table {
  margin: 0 auto;
}
.cid-sAGWSYCFvm .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGWSYCFvm .dataTables_wrapper {
  display: block;
}
.cid-sAGWSYCFvm .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGWSYCFvm .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGWSYCFvm table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGWSYCFvm table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGWSYCFvm table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGWSYCFvm table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGWSYCFvm table.table {
  background: #ffffff;
}
.cid-sAGWSYCFvm .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGWSYCFvm .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGWSYCFvm .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGWSYCFvm .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGWSYCFvm .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGWSYCFvm .dataTables_filter {
    text-align: center;
  }
  .cid-sAGWSYCFvm .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGWSYCFvm LABEL {
  text-align: center;
}
.cid-sAGWSYCFvm .head-item {
  color: #f7bd50;
}
.cid-sAGWSZMDd8 .modal-body .close {
  background: #1b1b1b;
}
.cid-sAGWSZMDd8 .modal-body .close span {
  font-style: normal;
}
.cid-sAGWSZMDd8 .carousel-inner > .active,
.cid-sAGWSZMDd8 .carousel-inner > .next,
.cid-sAGWSZMDd8 .carousel-inner > .prev {
  display: flex;
}
.cid-sAGWSZMDd8 .carousel-control .icon-next,
.cid-sAGWSZMDd8 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAGWSZMDd8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAGWSZMDd8 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGWSZMDd8 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAGWSZMDd8 .boxed-slider > div {
  position: relative;
}
.cid-sAGWSZMDd8 .container img {
  width: 100%;
}
.cid-sAGWSZMDd8 .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-sAGWSZMDd8 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGWSZMDd8 .mbr-table-cell {
  padding: 0;
}
.cid-sAGWSZMDd8 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAGWSZMDd8 .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-sAGWSZMDd8 .mbr-overlay {
  z-index: 1;
}
.cid-sAGWSZMDd8 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGWSZMDd8 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAGWSZMDd8 .carousel-item.active.right,
.cid-sAGWSZMDd8 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGWSZMDd8 .carousel-item.active.left,
.cid-sAGWSZMDd8 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGWSZMDd8 .carousel-item.active,
.cid-sAGWSZMDd8 .carousel-item.next.left,
.cid-sAGWSZMDd8 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAGWSZMDd8 .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAGWSZMDd8 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAGWSZMDd8 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAGWSZMDd8 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAGWSZMDd8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAGWSZMDd8 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAGWSZMDd8 .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAGWSZMDd8 .mbr-slider .carousel-indicators li.active,
.cid-sAGWSZMDd8 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAGWSZMDd8 .mbr-slider .carousel-indicators li::after,
.cid-sAGWSZMDd8 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAGWSZMDd8 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAGWSZMDd8 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAGWSZMDd8 .mbr-slider > .container img {
  width: 100%;
}
.cid-sAGWSZMDd8 .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-sAGWSZMDd8 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAGWSZMDd8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGWSZMDd8 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGWSZMDd8 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAGWSZMDd8 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAGWSZMDd8 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAGWSZMDd8 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAGWSZMDd8 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAGWSZMDd8 .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGWSZMDd8 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAGWSZMDd8 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAGWSZMDd8 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAGWT0usqB {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAGWT0usqB .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAGWT0usqB .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAGWT0usqB .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAGWT0usqB H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAGWT0usqB .section-text,
.cid-sAGWT0usqB .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAGWT0XQ4z .nav-item:focus,
.cid-sAGWT0XQ4z .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAGWT0XQ4z .nav-item {
    position: relative;
  }
}
.cid-sAGWT0XQ4z .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAGWT0XQ4z .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAGWT0XQ4z .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAGWT0XQ4z .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAGWT0XQ4z .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAGWT0XQ4z .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAGWT0XQ4z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAGWT0XQ4z .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGWT0XQ4z .navbar.collapsed .navbar-collapse.show,
.cid-sAGWT0XQ4z .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGWT0XQ4z .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAGWT0XQ4z .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAGWT0XQ4z .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAGWT0XQ4z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAGWT0XQ4z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAGWT0XQ4z .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAGWT0XQ4z .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAGWT0XQ4z .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGWT0XQ4z .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAGWT0XQ4z .navbar.collapsed .right-menu,
.cid-sAGWT0XQ4z .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAGWT0XQ4z .navbar .navbar-collapse.show,
  .cid-sAGWT0XQ4z .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAGWT0XQ4z .navbar .navbar-collapse.show .brand-container,
  .cid-sAGWT0XQ4z .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAGWT0XQ4z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAGWT0XQ4z .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAGWT0XQ4z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAGWT0XQ4z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAGWT0XQ4z .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-sAGWT0XQ4z .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAGWT0XQ4z .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAGWT0XQ4z .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAGWT0XQ4z .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAGWT0XQ4z .navbar .right-menu,
  .cid-sAGWT0XQ4z .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAGWT0XQ4z .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAGWT0XQ4z .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAGWT0XQ4z .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAGWT0XQ4z .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAGWT0XQ4z .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAGWT0XQ4z .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAGWT0XQ4z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAGWT0XQ4z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAGWT0XQ4z .dropdown-item.active,
.cid-sAGWT0XQ4z .dropdown-item:active {
  background-color: transparent;
}
.cid-sAGWT0XQ4z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAGWT0XQ4z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAGWT0XQ4z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAGWT0XQ4z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAGWT0XQ4z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAGWT0XQ4z ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAGWT0XQ4z ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAGWT0XQ4z .navbar-buttons {
  margin-left: auto;
}
.cid-sAGWT0XQ4z button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAGWT0XQ4z button.navbar-toggler:hover {
  outline: none;
}
.cid-sAGWT0XQ4z button.navbar-toggler:active {
  outline: none;
}
.cid-sAGWT0XQ4z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAGWT0XQ4z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAGWT0XQ4z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGWT0XQ4z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGWT0XQ4z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAGWT0XQ4z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGWT0XQ4z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAGWT0XQ4z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAGWT0XQ4z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGWT0XQ4z .navbar-dropdown {
  position: fixed;
}
.cid-sAGWT0XQ4z a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAGWT0XQ4z a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAGWT0XQ4z a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAGWT0XQ4z .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAGWT0XQ4z .right-menu,
.cid-sAGWT0XQ4z .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAGWT0XQ4z .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGWT0XQ4z .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGWT0XQ4z .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGWT0XQ4z .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGWT0XQ4z .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAGWT0XQ4z .card-wrapper {
  z-index: 3;
}
.cid-sAGWT0XQ4z .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAGWT0XQ4z .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAGWT0XQ4z .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAGWT0XQ4z .navbar-brand img {
  width: auto !important;
}
.cid-sAGWT1raUP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAGWT1raUP .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAGWT1raUP .copyright-section,
.cid-sAGWT1raUP .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAGWT1raUP .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAGWT1raUP .logo-section img {
  margin: 0 auto;
}
.cid-sAGWT1raUP .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAGWT1raUP .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAGWT1raUP .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAGWT1raUP .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAGWT1raUP .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAGWT1raUP .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAGWT1raUP .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAGWT1raUP .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAGWT1raUP .copyright-section {
    order: 1;
  }
  .cid-sAGWT1raUP .copyright-section hr {
    display: none;
  }
  .cid-sAGWT1raUP .social-media {
    margin-top: 30px;
  }
  .cid-sAGWT1raUP .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAGWT1raUP .line {
    margin: 25px 0;
  }
  .cid-sAGWT1raUP .mobirise-rights,
  .cid-sAGWT1raUP .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAGWT1raUP .mbr-text,
.cid-sAGWT1raUP .copyright-section {
  color: #272727;
}
.cid-sCp3yMU1BQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/christelle-1894x673.jpg");
}
.cid-sCp3yMU1BQ H1 {
  color: #000000;
}
.cid-sCp3yMU1BQ .mbr-text,
.cid-sCp3yMU1BQ .mbr-section-btn {
  color: #000000;
}
.cid-sCp3yMU1BQ .mbr-subtitle {
  color: #000000;
}
.cid-sCp3yMU1BQ .mbr-text {
  margin-top: 1.5rem;
}
.cid-sCp3yMU1BQ .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAGXOnumPO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGXOnumPO .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGXOnumPO .container-table {
  margin: 0 auto;
}
.cid-sAGXOnumPO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGXOnumPO .dataTables_wrapper {
  display: block;
}
.cid-sAGXOnumPO .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGXOnumPO .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGXOnumPO table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGXOnumPO table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGXOnumPO table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGXOnumPO table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGXOnumPO table.table {
  background: #ffffff;
}
.cid-sAGXOnumPO .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGXOnumPO .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGXOnumPO .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGXOnumPO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGXOnumPO .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGXOnumPO .dataTables_filter {
    text-align: center;
  }
  .cid-sAGXOnumPO .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGXOnumPO LABEL {
  text-align: center;
}
.cid-sAGXOnumPO .head-item {
  color: #f7bd50;
}
.cid-sAGXOo8ubu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGXOo8ubu .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGXOo8ubu .container-table {
  margin: 0 auto;
}
.cid-sAGXOo8ubu .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGXOo8ubu .dataTables_wrapper {
  display: block;
}
.cid-sAGXOo8ubu .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGXOo8ubu .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGXOo8ubu table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGXOo8ubu table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGXOo8ubu table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGXOo8ubu table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGXOo8ubu table.table {
  background: #ffffff;
}
.cid-sAGXOo8ubu .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGXOo8ubu .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGXOo8ubu .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGXOo8ubu .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGXOo8ubu .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGXOo8ubu .dataTables_filter {
    text-align: center;
  }
  .cid-sAGXOo8ubu .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGXOo8ubu LABEL {
  text-align: center;
}
.cid-sAGXOo8ubu .body-item {
  text-align: left;
}
.cid-sAGXOo8ubu .head-item {
  color: #f7bd50;
}
.cid-sAGXOoFU2v .modal-body .close {
  background: #1b1b1b;
}
.cid-sAGXOoFU2v .modal-body .close span {
  font-style: normal;
}
.cid-sAGXOoFU2v .carousel-inner > .active,
.cid-sAGXOoFU2v .carousel-inner > .next,
.cid-sAGXOoFU2v .carousel-inner > .prev {
  display: flex;
}
.cid-sAGXOoFU2v .carousel-control .icon-next,
.cid-sAGXOoFU2v .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAGXOoFU2v .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAGXOoFU2v .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGXOoFU2v .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAGXOoFU2v .boxed-slider > div {
  position: relative;
}
.cid-sAGXOoFU2v .container img {
  width: 100%;
}
.cid-sAGXOoFU2v .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-sAGXOoFU2v .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGXOoFU2v .mbr-table-cell {
  padding: 0;
}
.cid-sAGXOoFU2v .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAGXOoFU2v .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-sAGXOoFU2v .mbr-overlay {
  z-index: 1;
}
.cid-sAGXOoFU2v .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGXOoFU2v .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAGXOoFU2v .carousel-item.active.right,
.cid-sAGXOoFU2v .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGXOoFU2v .carousel-item.active.left,
.cid-sAGXOoFU2v .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGXOoFU2v .carousel-item.active,
.cid-sAGXOoFU2v .carousel-item.next.left,
.cid-sAGXOoFU2v .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAGXOoFU2v .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAGXOoFU2v .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAGXOoFU2v .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAGXOoFU2v .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAGXOoFU2v .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAGXOoFU2v .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAGXOoFU2v .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAGXOoFU2v .mbr-slider .carousel-indicators li.active,
.cid-sAGXOoFU2v .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAGXOoFU2v .mbr-slider .carousel-indicators li::after,
.cid-sAGXOoFU2v .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAGXOoFU2v .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAGXOoFU2v .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAGXOoFU2v .mbr-slider > .container img {
  width: 100%;
}
.cid-sAGXOoFU2v .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-sAGXOoFU2v .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAGXOoFU2v .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGXOoFU2v .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGXOoFU2v .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAGXOoFU2v .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAGXOoFU2v .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAGXOoFU2v .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAGXOoFU2v .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAGXOoFU2v .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGXOoFU2v .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAGXOoFU2v .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAGXOoFU2v .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAGXOpmi17 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAGXOpmi17 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAGXOpmi17 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAGXOpmi17 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAGXOpmi17 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAGXOpmi17 .section-text,
.cid-sAGXOpmi17 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAGXOpPy40 .nav-item:focus,
.cid-sAGXOpPy40 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAGXOpPy40 .nav-item {
    position: relative;
  }
}
.cid-sAGXOpPy40 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAGXOpPy40 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAGXOpPy40 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAGXOpPy40 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAGXOpPy40 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAGXOpPy40 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAGXOpPy40 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAGXOpPy40 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGXOpPy40 .navbar.collapsed .navbar-collapse.show,
.cid-sAGXOpPy40 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGXOpPy40 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAGXOpPy40 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAGXOpPy40 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAGXOpPy40 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAGXOpPy40 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAGXOpPy40 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAGXOpPy40 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAGXOpPy40 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGXOpPy40 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAGXOpPy40 .navbar.collapsed .right-menu,
.cid-sAGXOpPy40 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAGXOpPy40 .navbar .navbar-collapse.show,
  .cid-sAGXOpPy40 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAGXOpPy40 .navbar .navbar-collapse.show .brand-container,
  .cid-sAGXOpPy40 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAGXOpPy40 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAGXOpPy40 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAGXOpPy40 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAGXOpPy40 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAGXOpPy40 .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-sAGXOpPy40 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAGXOpPy40 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAGXOpPy40 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAGXOpPy40 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAGXOpPy40 .navbar .right-menu,
  .cid-sAGXOpPy40 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAGXOpPy40 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAGXOpPy40 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAGXOpPy40 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAGXOpPy40 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAGXOpPy40 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAGXOpPy40 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAGXOpPy40 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAGXOpPy40 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAGXOpPy40 .dropdown-item.active,
.cid-sAGXOpPy40 .dropdown-item:active {
  background-color: transparent;
}
.cid-sAGXOpPy40 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAGXOpPy40 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAGXOpPy40 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAGXOpPy40 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAGXOpPy40 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAGXOpPy40 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAGXOpPy40 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAGXOpPy40 .navbar-buttons {
  margin-left: auto;
}
.cid-sAGXOpPy40 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAGXOpPy40 button.navbar-toggler:hover {
  outline: none;
}
.cid-sAGXOpPy40 button.navbar-toggler:active {
  outline: none;
}
.cid-sAGXOpPy40 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAGXOpPy40 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAGXOpPy40 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGXOpPy40 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGXOpPy40 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAGXOpPy40 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGXOpPy40 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAGXOpPy40 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAGXOpPy40 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGXOpPy40 .navbar-dropdown {
  position: fixed;
}
.cid-sAGXOpPy40 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAGXOpPy40 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAGXOpPy40 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAGXOpPy40 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAGXOpPy40 .right-menu,
.cid-sAGXOpPy40 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAGXOpPy40 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGXOpPy40 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGXOpPy40 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGXOpPy40 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGXOpPy40 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAGXOpPy40 .card-wrapper {
  z-index: 3;
}
.cid-sAGXOpPy40 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAGXOpPy40 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAGXOpPy40 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAGXOpPy40 .navbar-brand img {
  width: auto !important;
}
.cid-sAGXOqgKf9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAGXOqgKf9 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAGXOqgKf9 .copyright-section,
.cid-sAGXOqgKf9 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAGXOqgKf9 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAGXOqgKf9 .logo-section img {
  margin: 0 auto;
}
.cid-sAGXOqgKf9 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAGXOqgKf9 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAGXOqgKf9 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAGXOqgKf9 .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAGXOqgKf9 .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAGXOqgKf9 .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAGXOqgKf9 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAGXOqgKf9 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAGXOqgKf9 .copyright-section {
    order: 1;
  }
  .cid-sAGXOqgKf9 .copyright-section hr {
    display: none;
  }
  .cid-sAGXOqgKf9 .social-media {
    margin-top: 30px;
  }
  .cid-sAGXOqgKf9 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAGXOqgKf9 .line {
    margin: 25px 0;
  }
  .cid-sAGXOqgKf9 .mobirise-rights,
  .cid-sAGXOqgKf9 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAGXOqgKf9 .mbr-text,
.cid-sAGXOqgKf9 .copyright-section {
  color: #272727;
}
.cid-sHF69wMtLF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/img-6540-366x366.jpg");
}
.cid-sHF69wMtLF H1 {
  color: #000000;
}
.cid-sHF69wMtLF .mbr-text,
.cid-sHF69wMtLF .mbr-section-btn {
  color: #000000;
}
.cid-sHF69wMtLF .mbr-subtitle {
  color: #000000;
}
.cid-sHF69wMtLF .mbr-text {
  margin-top: 1.5rem;
}
.cid-sHF69wMtLF .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAGZINvcQV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGZINvcQV .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGZINvcQV .container-table {
  margin: 0 auto;
}
.cid-sAGZINvcQV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGZINvcQV .dataTables_wrapper {
  display: block;
}
.cid-sAGZINvcQV .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGZINvcQV .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGZINvcQV table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGZINvcQV table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGZINvcQV table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGZINvcQV table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGZINvcQV table.table {
  background: #ffffff;
}
.cid-sAGZINvcQV .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGZINvcQV .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGZINvcQV .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGZINvcQV .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGZINvcQV .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGZINvcQV .dataTables_filter {
    text-align: center;
  }
  .cid-sAGZINvcQV .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGZINvcQV LABEL {
  text-align: center;
}
.cid-sAGZINvcQV .head-item {
  color: #f7bd50;
}
.cid-sAGZIOc81M {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAGZIOc81M .mbr-section-subtitle {
  color: #767676;
}
.cid-sAGZIOc81M .container-table {
  margin: 0 auto;
}
.cid-sAGZIOc81M .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAGZIOc81M .dataTables_wrapper {
  display: block;
}
.cid-sAGZIOc81M .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAGZIOc81M .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAGZIOc81M table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAGZIOc81M table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAGZIOc81M table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAGZIOc81M table td {
  border-top: 1px solid #cccccc;
}
.cid-sAGZIOc81M table.table {
  background: #ffffff;
}
.cid-sAGZIOc81M .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAGZIOc81M .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAGZIOc81M .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAGZIOc81M .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAGZIOc81M .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAGZIOc81M .dataTables_filter {
    text-align: center;
  }
  .cid-sAGZIOc81M .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAGZIOc81M LABEL {
  text-align: center;
}
.cid-sAGZIOc81M .body-item {
  text-align: left;
}
.cid-sAGZIOc81M .head-item {
  color: #f7bd50;
}
.cid-sAGZIOJhrW .modal-body .close {
  background: #1b1b1b;
}
.cid-sAGZIOJhrW .modal-body .close span {
  font-style: normal;
}
.cid-sAGZIOJhrW .carousel-inner > .active,
.cid-sAGZIOJhrW .carousel-inner > .next,
.cid-sAGZIOJhrW .carousel-inner > .prev {
  display: flex;
}
.cid-sAGZIOJhrW .carousel-control .icon-next,
.cid-sAGZIOJhrW .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAGZIOJhrW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAGZIOJhrW .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGZIOJhrW .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAGZIOJhrW .boxed-slider > div {
  position: relative;
}
.cid-sAGZIOJhrW .container img {
  width: 100%;
}
.cid-sAGZIOJhrW .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-sAGZIOJhrW .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGZIOJhrW .mbr-table-cell {
  padding: 0;
}
.cid-sAGZIOJhrW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAGZIOJhrW .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-sAGZIOJhrW .mbr-overlay {
  z-index: 1;
}
.cid-sAGZIOJhrW .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGZIOJhrW .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAGZIOJhrW .carousel-item.active.right,
.cid-sAGZIOJhrW .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGZIOJhrW .carousel-item.active.left,
.cid-sAGZIOJhrW .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAGZIOJhrW .carousel-item.active,
.cid-sAGZIOJhrW .carousel-item.next.left,
.cid-sAGZIOJhrW .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAGZIOJhrW .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAGZIOJhrW .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAGZIOJhrW .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAGZIOJhrW .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAGZIOJhrW .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAGZIOJhrW .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAGZIOJhrW .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAGZIOJhrW .mbr-slider .carousel-indicators li.active,
.cid-sAGZIOJhrW .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAGZIOJhrW .mbr-slider .carousel-indicators li::after,
.cid-sAGZIOJhrW .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAGZIOJhrW .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAGZIOJhrW .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAGZIOJhrW .mbr-slider > .container img {
  width: 100%;
}
.cid-sAGZIOJhrW .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-sAGZIOJhrW .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAGZIOJhrW .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAGZIOJhrW .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAGZIOJhrW .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAGZIOJhrW .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAGZIOJhrW .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAGZIOJhrW .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAGZIOJhrW .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAGZIOJhrW .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAGZIOJhrW .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAGZIOJhrW .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAGZIOJhrW .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAGZIPrUsi {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAGZIPrUsi .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAGZIPrUsi .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAGZIPrUsi .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAGZIPrUsi H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAGZIPrUsi .section-text,
.cid-sAGZIPrUsi .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAGZIPXg55 .nav-item:focus,
.cid-sAGZIPXg55 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAGZIPXg55 .nav-item {
    position: relative;
  }
}
.cid-sAGZIPXg55 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAGZIPXg55 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAGZIPXg55 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAGZIPXg55 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAGZIPXg55 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAGZIPXg55 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAGZIPXg55 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAGZIPXg55 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGZIPXg55 .navbar.collapsed .navbar-collapse.show,
.cid-sAGZIPXg55 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGZIPXg55 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAGZIPXg55 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAGZIPXg55 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAGZIPXg55 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAGZIPXg55 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAGZIPXg55 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAGZIPXg55 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAGZIPXg55 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAGZIPXg55 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAGZIPXg55 .navbar.collapsed .right-menu,
.cid-sAGZIPXg55 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAGZIPXg55 .navbar .navbar-collapse.show,
  .cid-sAGZIPXg55 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAGZIPXg55 .navbar .navbar-collapse.show .brand-container,
  .cid-sAGZIPXg55 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAGZIPXg55 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAGZIPXg55 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAGZIPXg55 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAGZIPXg55 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAGZIPXg55 .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-sAGZIPXg55 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAGZIPXg55 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAGZIPXg55 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAGZIPXg55 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAGZIPXg55 .navbar .right-menu,
  .cid-sAGZIPXg55 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAGZIPXg55 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAGZIPXg55 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAGZIPXg55 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAGZIPXg55 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAGZIPXg55 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAGZIPXg55 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAGZIPXg55 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAGZIPXg55 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAGZIPXg55 .dropdown-item.active,
.cid-sAGZIPXg55 .dropdown-item:active {
  background-color: transparent;
}
.cid-sAGZIPXg55 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAGZIPXg55 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAGZIPXg55 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAGZIPXg55 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAGZIPXg55 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAGZIPXg55 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAGZIPXg55 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAGZIPXg55 .navbar-buttons {
  margin-left: auto;
}
.cid-sAGZIPXg55 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAGZIPXg55 button.navbar-toggler:hover {
  outline: none;
}
.cid-sAGZIPXg55 button.navbar-toggler:active {
  outline: none;
}
.cid-sAGZIPXg55 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAGZIPXg55 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAGZIPXg55 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGZIPXg55 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAGZIPXg55 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAGZIPXg55 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGZIPXg55 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAGZIPXg55 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAGZIPXg55 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAGZIPXg55 .navbar-dropdown {
  position: fixed;
}
.cid-sAGZIPXg55 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAGZIPXg55 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAGZIPXg55 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAGZIPXg55 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAGZIPXg55 .right-menu,
.cid-sAGZIPXg55 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAGZIPXg55 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGZIPXg55 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAGZIPXg55 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGZIPXg55 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAGZIPXg55 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAGZIPXg55 .card-wrapper {
  z-index: 3;
}
.cid-sAGZIPXg55 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAGZIPXg55 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAGZIPXg55 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAGZIPXg55 .navbar-brand img {
  width: auto !important;
}
.cid-sAGZIQoMoz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAGZIQoMoz .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAGZIQoMoz .copyright-section,
.cid-sAGZIQoMoz .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAGZIQoMoz .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAGZIQoMoz .logo-section img {
  margin: 0 auto;
}
.cid-sAGZIQoMoz .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAGZIQoMoz .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAGZIQoMoz .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAGZIQoMoz .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAGZIQoMoz .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAGZIQoMoz .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAGZIQoMoz .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAGZIQoMoz .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAGZIQoMoz .copyright-section {
    order: 1;
  }
  .cid-sAGZIQoMoz .copyright-section hr {
    display: none;
  }
  .cid-sAGZIQoMoz .social-media {
    margin-top: 30px;
  }
  .cid-sAGZIQoMoz .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAGZIQoMoz .line {
    margin: 25px 0;
  }
  .cid-sAGZIQoMoz .mobirise-rights,
  .cid-sAGZIQoMoz .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAGZIQoMoz .mbr-text,
.cid-sAGZIQoMoz .copyright-section {
  color: #272727;
}
.cid-sHFfeGQ60q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/43-1024x768.jpg");
}
.cid-sHFfeGQ60q H1 {
  color: #000000;
}
.cid-sHFfeGQ60q .mbr-text,
.cid-sHFfeGQ60q .mbr-section-btn {
  color: #000000;
}
.cid-sHFfeGQ60q .mbr-subtitle {
  color: #000000;
}
.cid-sHFfeGQ60q .mbr-text {
  margin-top: 1.5rem;
}
.cid-sHFfeGQ60q .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAH0RnKsC4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAH0RnKsC4 .mbr-section-subtitle {
  color: #767676;
}
.cid-sAH0RnKsC4 .container-table {
  margin: 0 auto;
}
.cid-sAH0RnKsC4 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAH0RnKsC4 .dataTables_wrapper {
  display: block;
}
.cid-sAH0RnKsC4 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAH0RnKsC4 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAH0RnKsC4 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAH0RnKsC4 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAH0RnKsC4 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAH0RnKsC4 table td {
  border-top: 1px solid #cccccc;
}
.cid-sAH0RnKsC4 table.table {
  background: #ffffff;
}
.cid-sAH0RnKsC4 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAH0RnKsC4 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAH0RnKsC4 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAH0RnKsC4 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAH0RnKsC4 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAH0RnKsC4 .dataTables_filter {
    text-align: center;
  }
  .cid-sAH0RnKsC4 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAH0RnKsC4 LABEL {
  text-align: center;
}
.cid-sAH0RnKsC4 .head-item {
  color: #f7bd50;
}
.cid-sAH0Rotm2e {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAH0Rotm2e .mbr-section-subtitle {
  color: #767676;
}
.cid-sAH0Rotm2e .container-table {
  margin: 0 auto;
}
.cid-sAH0Rotm2e .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAH0Rotm2e .dataTables_wrapper {
  display: block;
}
.cid-sAH0Rotm2e .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAH0Rotm2e .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAH0Rotm2e table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAH0Rotm2e table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAH0Rotm2e table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAH0Rotm2e table td {
  border-top: 1px solid #cccccc;
}
.cid-sAH0Rotm2e table.table {
  background: #ffffff;
}
.cid-sAH0Rotm2e .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAH0Rotm2e .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAH0Rotm2e .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAH0Rotm2e .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAH0Rotm2e .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAH0Rotm2e .dataTables_filter {
    text-align: center;
  }
  .cid-sAH0Rotm2e .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAH0Rotm2e LABEL {
  text-align: center;
}
.cid-sAH0Rotm2e .body-item {
  text-align: left;
}
.cid-sAH0Rotm2e .head-item {
  color: #f7bd50;
}
.cid-sAH0RoUSiY .modal-body .close {
  background: #1b1b1b;
}
.cid-sAH0RoUSiY .modal-body .close span {
  font-style: normal;
}
.cid-sAH0RoUSiY .carousel-inner > .active,
.cid-sAH0RoUSiY .carousel-inner > .next,
.cid-sAH0RoUSiY .carousel-inner > .prev {
  display: flex;
}
.cid-sAH0RoUSiY .carousel-control .icon-next,
.cid-sAH0RoUSiY .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAH0RoUSiY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAH0RoUSiY .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAH0RoUSiY .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAH0RoUSiY .boxed-slider > div {
  position: relative;
}
.cid-sAH0RoUSiY .container img {
  width: 100%;
}
.cid-sAH0RoUSiY .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-sAH0RoUSiY .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAH0RoUSiY .mbr-table-cell {
  padding: 0;
}
.cid-sAH0RoUSiY .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAH0RoUSiY .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-sAH0RoUSiY .mbr-overlay {
  z-index: 1;
}
.cid-sAH0RoUSiY .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAH0RoUSiY .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAH0RoUSiY .carousel-item.active.right,
.cid-sAH0RoUSiY .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAH0RoUSiY .carousel-item.active.left,
.cid-sAH0RoUSiY .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAH0RoUSiY .carousel-item.active,
.cid-sAH0RoUSiY .carousel-item.next.left,
.cid-sAH0RoUSiY .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAH0RoUSiY .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAH0RoUSiY .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAH0RoUSiY .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAH0RoUSiY .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAH0RoUSiY .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAH0RoUSiY .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAH0RoUSiY .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAH0RoUSiY .mbr-slider .carousel-indicators li.active,
.cid-sAH0RoUSiY .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAH0RoUSiY .mbr-slider .carousel-indicators li::after,
.cid-sAH0RoUSiY .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAH0RoUSiY .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAH0RoUSiY .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAH0RoUSiY .mbr-slider > .container img {
  width: 100%;
}
.cid-sAH0RoUSiY .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-sAH0RoUSiY .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAH0RoUSiY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAH0RoUSiY .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAH0RoUSiY .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAH0RoUSiY .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAH0RoUSiY .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAH0RoUSiY .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAH0RoUSiY .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAH0RoUSiY .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAH0RoUSiY .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAH0RoUSiY .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAH0RoUSiY .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAH0RpB1lC {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAH0RpB1lC .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAH0RpB1lC .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAH0RpB1lC .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAH0RpB1lC H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAH0RpB1lC .section-text,
.cid-sAH0RpB1lC .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAH0RpZIWf .nav-item:focus,
.cid-sAH0RpZIWf .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAH0RpZIWf .nav-item {
    position: relative;
  }
}
.cid-sAH0RpZIWf .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAH0RpZIWf .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAH0RpZIWf .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAH0RpZIWf .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAH0RpZIWf .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAH0RpZIWf .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAH0RpZIWf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAH0RpZIWf .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAH0RpZIWf .navbar.collapsed .navbar-collapse.show,
.cid-sAH0RpZIWf .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAH0RpZIWf .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAH0RpZIWf .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAH0RpZIWf .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAH0RpZIWf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAH0RpZIWf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAH0RpZIWf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAH0RpZIWf .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAH0RpZIWf .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAH0RpZIWf .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAH0RpZIWf .navbar.collapsed .right-menu,
.cid-sAH0RpZIWf .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAH0RpZIWf .navbar .navbar-collapse.show,
  .cid-sAH0RpZIWf .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAH0RpZIWf .navbar .navbar-collapse.show .brand-container,
  .cid-sAH0RpZIWf .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAH0RpZIWf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAH0RpZIWf .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAH0RpZIWf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAH0RpZIWf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAH0RpZIWf .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-sAH0RpZIWf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAH0RpZIWf .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAH0RpZIWf .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAH0RpZIWf .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAH0RpZIWf .navbar .right-menu,
  .cid-sAH0RpZIWf .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAH0RpZIWf .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAH0RpZIWf .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAH0RpZIWf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAH0RpZIWf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAH0RpZIWf .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAH0RpZIWf .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAH0RpZIWf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAH0RpZIWf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAH0RpZIWf .dropdown-item.active,
.cid-sAH0RpZIWf .dropdown-item:active {
  background-color: transparent;
}
.cid-sAH0RpZIWf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAH0RpZIWf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAH0RpZIWf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAH0RpZIWf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAH0RpZIWf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAH0RpZIWf ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAH0RpZIWf ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAH0RpZIWf .navbar-buttons {
  margin-left: auto;
}
.cid-sAH0RpZIWf button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAH0RpZIWf button.navbar-toggler:hover {
  outline: none;
}
.cid-sAH0RpZIWf button.navbar-toggler:active {
  outline: none;
}
.cid-sAH0RpZIWf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAH0RpZIWf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAH0RpZIWf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAH0RpZIWf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAH0RpZIWf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAH0RpZIWf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAH0RpZIWf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAH0RpZIWf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAH0RpZIWf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAH0RpZIWf .navbar-dropdown {
  position: fixed;
}
.cid-sAH0RpZIWf a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAH0RpZIWf a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAH0RpZIWf a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAH0RpZIWf .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAH0RpZIWf .right-menu,
.cid-sAH0RpZIWf .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAH0RpZIWf .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAH0RpZIWf .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAH0RpZIWf .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAH0RpZIWf .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAH0RpZIWf .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAH0RpZIWf .card-wrapper {
  z-index: 3;
}
.cid-sAH0RpZIWf .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAH0RpZIWf .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAH0RpZIWf .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAH0RpZIWf .navbar-brand img {
  width: auto !important;
}
.cid-sAH0RqqTZb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAH0RqqTZb .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAH0RqqTZb .copyright-section,
.cid-sAH0RqqTZb .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAH0RqqTZb .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAH0RqqTZb .logo-section img {
  margin: 0 auto;
}
.cid-sAH0RqqTZb .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAH0RqqTZb .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAH0RqqTZb .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAH0RqqTZb .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAH0RqqTZb .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAH0RqqTZb .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAH0RqqTZb .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAH0RqqTZb .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAH0RqqTZb .copyright-section {
    order: 1;
  }
  .cid-sAH0RqqTZb .copyright-section hr {
    display: none;
  }
  .cid-sAH0RqqTZb .social-media {
    margin-top: 30px;
  }
  .cid-sAH0RqqTZb .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAH0RqqTZb .line {
    margin: 25px 0;
  }
  .cid-sAH0RqqTZb .mobirise-rights,
  .cid-sAH0RqqTZb .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAH0RqqTZb .mbr-text,
.cid-sAH0RqqTZb .copyright-section {
  color: #272727;
}
.cid-sHFcTGiDVF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/853-1280x853.jpg");
}
.cid-sHFcTGiDVF H1 {
  color: #000000;
}
.cid-sHFcTGiDVF .mbr-text,
.cid-sHFcTGiDVF .mbr-section-btn {
  color: #000000;
}
.cid-sHFcTGiDVF .mbr-subtitle {
  color: #000000;
}
.cid-sHFcTGiDVF .mbr-text {
  margin-top: 1.5rem;
}
.cid-sHFcTGiDVF .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAH1nraX5m {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAH1nraX5m .mbr-section-subtitle {
  color: #767676;
}
.cid-sAH1nraX5m .container-table {
  margin: 0 auto;
}
.cid-sAH1nraX5m .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAH1nraX5m .dataTables_wrapper {
  display: block;
}
.cid-sAH1nraX5m .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAH1nraX5m .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAH1nraX5m table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAH1nraX5m table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAH1nraX5m table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAH1nraX5m table td {
  border-top: 1px solid #cccccc;
}
.cid-sAH1nraX5m table.table {
  background: #ffffff;
}
.cid-sAH1nraX5m .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAH1nraX5m .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAH1nraX5m .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAH1nraX5m .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAH1nraX5m .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAH1nraX5m .dataTables_filter {
    text-align: center;
  }
  .cid-sAH1nraX5m .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAH1nraX5m LABEL {
  text-align: center;
}
.cid-sAH1nraX5m .head-item {
  color: #f7bd50;
}
.cid-sAH1nrUBNn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAH1nrUBNn .mbr-section-subtitle {
  color: #767676;
}
.cid-sAH1nrUBNn .container-table {
  margin: 0 auto;
}
.cid-sAH1nrUBNn .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAH1nrUBNn .dataTables_wrapper {
  display: block;
}
.cid-sAH1nrUBNn .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAH1nrUBNn .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAH1nrUBNn table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAH1nrUBNn table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAH1nrUBNn table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAH1nrUBNn table td {
  border-top: 1px solid #cccccc;
}
.cid-sAH1nrUBNn table.table {
  background: #ffffff;
}
.cid-sAH1nrUBNn .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAH1nrUBNn .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAH1nrUBNn .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAH1nrUBNn .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAH1nrUBNn .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAH1nrUBNn .dataTables_filter {
    text-align: center;
  }
  .cid-sAH1nrUBNn .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAH1nrUBNn LABEL {
  text-align: center;
}
.cid-sAH1nrUBNn .body-item {
  text-align: left;
}
.cid-sAH1nrUBNn .head-item {
  color: #f7bd50;
}
.cid-sAH1nsthli .modal-body .close {
  background: #1b1b1b;
}
.cid-sAH1nsthli .modal-body .close span {
  font-style: normal;
}
.cid-sAH1nsthli .carousel-inner > .active,
.cid-sAH1nsthli .carousel-inner > .next,
.cid-sAH1nsthli .carousel-inner > .prev {
  display: flex;
}
.cid-sAH1nsthli .carousel-control .icon-next,
.cid-sAH1nsthli .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAH1nsthli .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAH1nsthli .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAH1nsthli .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAH1nsthli .boxed-slider > div {
  position: relative;
}
.cid-sAH1nsthli .container img {
  width: 100%;
}
.cid-sAH1nsthli .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-sAH1nsthli .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAH1nsthli .mbr-table-cell {
  padding: 0;
}
.cid-sAH1nsthli .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAH1nsthli .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-sAH1nsthli .mbr-overlay {
  z-index: 1;
}
.cid-sAH1nsthli .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAH1nsthli .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAH1nsthli .carousel-item.active.right,
.cid-sAH1nsthli .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAH1nsthli .carousel-item.active.left,
.cid-sAH1nsthli .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAH1nsthli .carousel-item.active,
.cid-sAH1nsthli .carousel-item.next.left,
.cid-sAH1nsthli .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAH1nsthli .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAH1nsthli .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAH1nsthli .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAH1nsthli .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAH1nsthli .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAH1nsthli .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAH1nsthli .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAH1nsthli .mbr-slider .carousel-indicators li.active,
.cid-sAH1nsthli .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAH1nsthli .mbr-slider .carousel-indicators li::after,
.cid-sAH1nsthli .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAH1nsthli .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAH1nsthli .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAH1nsthli .mbr-slider > .container img {
  width: 100%;
}
.cid-sAH1nsthli .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-sAH1nsthli .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAH1nsthli .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAH1nsthli .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAH1nsthli .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAH1nsthli .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAH1nsthli .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAH1nsthli .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAH1nsthli .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAH1nsthli .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAH1nsthli .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAH1nsthli .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAH1nsthli .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAH1ntj1BE {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAH1ntj1BE .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAH1ntj1BE .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAH1ntj1BE .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAH1ntj1BE H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAH1ntj1BE .section-text,
.cid-sAH1ntj1BE .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAH1ntROr7 .nav-item:focus,
.cid-sAH1ntROr7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAH1ntROr7 .nav-item {
    position: relative;
  }
}
.cid-sAH1ntROr7 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAH1ntROr7 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAH1ntROr7 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAH1ntROr7 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAH1ntROr7 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAH1ntROr7 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAH1ntROr7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAH1ntROr7 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAH1ntROr7 .navbar.collapsed .navbar-collapse.show,
.cid-sAH1ntROr7 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAH1ntROr7 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAH1ntROr7 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAH1ntROr7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAH1ntROr7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAH1ntROr7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAH1ntROr7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAH1ntROr7 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAH1ntROr7 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAH1ntROr7 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAH1ntROr7 .navbar.collapsed .right-menu,
.cid-sAH1ntROr7 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAH1ntROr7 .navbar .navbar-collapse.show,
  .cid-sAH1ntROr7 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAH1ntROr7 .navbar .navbar-collapse.show .brand-container,
  .cid-sAH1ntROr7 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAH1ntROr7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAH1ntROr7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAH1ntROr7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAH1ntROr7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAH1ntROr7 .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-sAH1ntROr7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAH1ntROr7 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAH1ntROr7 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAH1ntROr7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAH1ntROr7 .navbar .right-menu,
  .cid-sAH1ntROr7 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAH1ntROr7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAH1ntROr7 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAH1ntROr7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAH1ntROr7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAH1ntROr7 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAH1ntROr7 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAH1ntROr7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAH1ntROr7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAH1ntROr7 .dropdown-item.active,
.cid-sAH1ntROr7 .dropdown-item:active {
  background-color: transparent;
}
.cid-sAH1ntROr7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAH1ntROr7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAH1ntROr7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAH1ntROr7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAH1ntROr7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAH1ntROr7 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAH1ntROr7 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAH1ntROr7 .navbar-buttons {
  margin-left: auto;
}
.cid-sAH1ntROr7 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAH1ntROr7 button.navbar-toggler:hover {
  outline: none;
}
.cid-sAH1ntROr7 button.navbar-toggler:active {
  outline: none;
}
.cid-sAH1ntROr7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAH1ntROr7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAH1ntROr7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAH1ntROr7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAH1ntROr7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAH1ntROr7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAH1ntROr7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAH1ntROr7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAH1ntROr7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAH1ntROr7 .navbar-dropdown {
  position: fixed;
}
.cid-sAH1ntROr7 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAH1ntROr7 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAH1ntROr7 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAH1ntROr7 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAH1ntROr7 .right-menu,
.cid-sAH1ntROr7 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAH1ntROr7 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAH1ntROr7 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAH1ntROr7 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAH1ntROr7 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAH1ntROr7 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAH1ntROr7 .card-wrapper {
  z-index: 3;
}
.cid-sAH1ntROr7 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAH1ntROr7 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAH1ntROr7 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAH1ntROr7 .navbar-brand img {
  width: auto !important;
}
.cid-sAH1nuv5JN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAH1nuv5JN .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAH1nuv5JN .copyright-section,
.cid-sAH1nuv5JN .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAH1nuv5JN .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAH1nuv5JN .logo-section img {
  margin: 0 auto;
}
.cid-sAH1nuv5JN .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAH1nuv5JN .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAH1nuv5JN .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAH1nuv5JN .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAH1nuv5JN .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAH1nuv5JN .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAH1nuv5JN .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAH1nuv5JN .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAH1nuv5JN .copyright-section {
    order: 1;
  }
  .cid-sAH1nuv5JN .copyright-section hr {
    display: none;
  }
  .cid-sAH1nuv5JN .social-media {
    margin-top: 30px;
  }
  .cid-sAH1nuv5JN .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAH1nuv5JN .line {
    margin: 25px 0;
  }
  .cid-sAH1nuv5JN .mobirise-rights,
  .cid-sAH1nuv5JN .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAH1nuv5JN .mbr-text,
.cid-sAH1nuv5JN .copyright-section {
  color: #272727;
}
.cid-sHG5cRPHvT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/210359811-788102565239784-4820752360917244526-n-960x720.jpg");
}
.cid-sHG5cRPHvT H1 {
  color: #000000;
}
.cid-sHG5cRPHvT .mbr-text,
.cid-sHG5cRPHvT .mbr-section-btn {
  color: #000000;
}
.cid-sHG5cRPHvT .mbr-subtitle {
  color: #000000;
}
.cid-sHG5cRPHvT .mbr-text {
  margin-top: 1.5rem;
}
.cid-sHG5cRPHvT .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAHe7cx6KE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHe7cx6KE .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHe7cx6KE .container-table {
  margin: 0 auto;
}
.cid-sAHe7cx6KE .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHe7cx6KE .dataTables_wrapper {
  display: block;
}
.cid-sAHe7cx6KE .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHe7cx6KE .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHe7cx6KE table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHe7cx6KE table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHe7cx6KE table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHe7cx6KE table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHe7cx6KE table.table {
  background: #ffffff;
}
.cid-sAHe7cx6KE .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHe7cx6KE .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHe7cx6KE .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHe7cx6KE .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHe7cx6KE .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHe7cx6KE .dataTables_filter {
    text-align: center;
  }
  .cid-sAHe7cx6KE .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHe7cx6KE LABEL {
  text-align: center;
}
.cid-sAHe7cx6KE .head-item {
  color: #f7bd50;
}
.cid-sAHe7da5rV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHe7da5rV .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHe7da5rV .container-table {
  margin: 0 auto;
}
.cid-sAHe7da5rV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHe7da5rV .dataTables_wrapper {
  display: block;
}
.cid-sAHe7da5rV .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHe7da5rV .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHe7da5rV table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHe7da5rV table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHe7da5rV table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHe7da5rV table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHe7da5rV table.table {
  background: #ffffff;
}
.cid-sAHe7da5rV .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHe7da5rV .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHe7da5rV .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHe7da5rV .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHe7da5rV .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHe7da5rV .dataTables_filter {
    text-align: center;
  }
  .cid-sAHe7da5rV .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHe7da5rV LABEL {
  text-align: center;
}
.cid-sAHe7da5rV .body-item {
  text-align: left;
}
.cid-sAHe7da5rV .head-item {
  color: #f7bd50;
}
.cid-sAHe7dD9w9 .modal-body .close {
  background: #1b1b1b;
}
.cid-sAHe7dD9w9 .modal-body .close span {
  font-style: normal;
}
.cid-sAHe7dD9w9 .carousel-inner > .active,
.cid-sAHe7dD9w9 .carousel-inner > .next,
.cid-sAHe7dD9w9 .carousel-inner > .prev {
  display: flex;
}
.cid-sAHe7dD9w9 .carousel-control .icon-next,
.cid-sAHe7dD9w9 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAHe7dD9w9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAHe7dD9w9 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHe7dD9w9 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAHe7dD9w9 .boxed-slider > div {
  position: relative;
}
.cid-sAHe7dD9w9 .container img {
  width: 100%;
}
.cid-sAHe7dD9w9 .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-sAHe7dD9w9 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHe7dD9w9 .mbr-table-cell {
  padding: 0;
}
.cid-sAHe7dD9w9 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAHe7dD9w9 .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-sAHe7dD9w9 .mbr-overlay {
  z-index: 1;
}
.cid-sAHe7dD9w9 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHe7dD9w9 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAHe7dD9w9 .carousel-item.active.right,
.cid-sAHe7dD9w9 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHe7dD9w9 .carousel-item.active.left,
.cid-sAHe7dD9w9 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHe7dD9w9 .carousel-item.active,
.cid-sAHe7dD9w9 .carousel-item.next.left,
.cid-sAHe7dD9w9 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAHe7dD9w9 .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAHe7dD9w9 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAHe7dD9w9 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAHe7dD9w9 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAHe7dD9w9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAHe7dD9w9 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAHe7dD9w9 .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAHe7dD9w9 .mbr-slider .carousel-indicators li.active,
.cid-sAHe7dD9w9 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAHe7dD9w9 .mbr-slider .carousel-indicators li::after,
.cid-sAHe7dD9w9 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAHe7dD9w9 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAHe7dD9w9 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAHe7dD9w9 .mbr-slider > .container img {
  width: 100%;
}
.cid-sAHe7dD9w9 .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-sAHe7dD9w9 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAHe7dD9w9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHe7dD9w9 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHe7dD9w9 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAHe7dD9w9 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAHe7dD9w9 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAHe7dD9w9 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAHe7dD9w9 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAHe7dD9w9 .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHe7dD9w9 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAHe7dD9w9 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAHe7dD9w9 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAHe7ehU3t {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAHe7ehU3t .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAHe7ehU3t .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAHe7ehU3t .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAHe7ehU3t H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAHe7ehU3t .section-text,
.cid-sAHe7ehU3t .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAHe7eN8d8 .nav-item:focus,
.cid-sAHe7eN8d8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAHe7eN8d8 .nav-item {
    position: relative;
  }
}
.cid-sAHe7eN8d8 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAHe7eN8d8 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAHe7eN8d8 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAHe7eN8d8 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAHe7eN8d8 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAHe7eN8d8 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAHe7eN8d8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAHe7eN8d8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHe7eN8d8 .navbar.collapsed .navbar-collapse.show,
.cid-sAHe7eN8d8 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHe7eN8d8 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAHe7eN8d8 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAHe7eN8d8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAHe7eN8d8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAHe7eN8d8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAHe7eN8d8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAHe7eN8d8 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAHe7eN8d8 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHe7eN8d8 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAHe7eN8d8 .navbar.collapsed .right-menu,
.cid-sAHe7eN8d8 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAHe7eN8d8 .navbar .navbar-collapse.show,
  .cid-sAHe7eN8d8 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAHe7eN8d8 .navbar .navbar-collapse.show .brand-container,
  .cid-sAHe7eN8d8 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAHe7eN8d8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAHe7eN8d8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAHe7eN8d8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAHe7eN8d8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAHe7eN8d8 .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-sAHe7eN8d8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAHe7eN8d8 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAHe7eN8d8 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAHe7eN8d8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAHe7eN8d8 .navbar .right-menu,
  .cid-sAHe7eN8d8 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAHe7eN8d8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAHe7eN8d8 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAHe7eN8d8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAHe7eN8d8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAHe7eN8d8 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAHe7eN8d8 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAHe7eN8d8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAHe7eN8d8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAHe7eN8d8 .dropdown-item.active,
.cid-sAHe7eN8d8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sAHe7eN8d8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAHe7eN8d8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAHe7eN8d8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAHe7eN8d8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAHe7eN8d8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAHe7eN8d8 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAHe7eN8d8 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAHe7eN8d8 .navbar-buttons {
  margin-left: auto;
}
.cid-sAHe7eN8d8 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAHe7eN8d8 button.navbar-toggler:hover {
  outline: none;
}
.cid-sAHe7eN8d8 button.navbar-toggler:active {
  outline: none;
}
.cid-sAHe7eN8d8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAHe7eN8d8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAHe7eN8d8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHe7eN8d8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHe7eN8d8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAHe7eN8d8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHe7eN8d8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAHe7eN8d8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAHe7eN8d8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHe7eN8d8 .navbar-dropdown {
  position: fixed;
}
.cid-sAHe7eN8d8 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAHe7eN8d8 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAHe7eN8d8 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAHe7eN8d8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAHe7eN8d8 .right-menu,
.cid-sAHe7eN8d8 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAHe7eN8d8 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHe7eN8d8 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHe7eN8d8 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHe7eN8d8 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHe7eN8d8 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAHe7eN8d8 .card-wrapper {
  z-index: 3;
}
.cid-sAHe7eN8d8 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAHe7eN8d8 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAHe7eN8d8 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAHe7eN8d8 .navbar-brand img {
  width: auto !important;
}
.cid-sAHe7fjrNW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAHe7fjrNW .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAHe7fjrNW .copyright-section,
.cid-sAHe7fjrNW .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAHe7fjrNW .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAHe7fjrNW .logo-section img {
  margin: 0 auto;
}
.cid-sAHe7fjrNW .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAHe7fjrNW .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAHe7fjrNW .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAHe7fjrNW .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAHe7fjrNW .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAHe7fjrNW .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAHe7fjrNW .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAHe7fjrNW .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAHe7fjrNW .copyright-section {
    order: 1;
  }
  .cid-sAHe7fjrNW .copyright-section hr {
    display: none;
  }
  .cid-sAHe7fjrNW .social-media {
    margin-top: 30px;
  }
  .cid-sAHe7fjrNW .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAHe7fjrNW .line {
    margin: 25px 0;
  }
  .cid-sAHe7fjrNW .mobirise-rights,
  .cid-sAHe7fjrNW .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAHe7fjrNW .mbr-text,
.cid-sAHe7fjrNW .copyright-section {
  color: #272727;
}
.cid-sHG88Ixqjy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ob-c37fe5-chakrasana-barbara-adhithi-yogamsa-1600x1594.jpg");
}
.cid-sHG88Ixqjy H1 {
  color: #000000;
}
.cid-sHG88Ixqjy .mbr-text,
.cid-sHG88Ixqjy .mbr-section-btn {
  color: #000000;
}
.cid-sHG88Ixqjy .mbr-subtitle {
  color: #000000;
}
.cid-sHG88Ixqjy .mbr-text {
  margin-top: 1.5rem;
}
.cid-sHG88Ixqjy .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAHePTYyOk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHePTYyOk .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHePTYyOk .container-table {
  margin: 0 auto;
}
.cid-sAHePTYyOk .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHePTYyOk .dataTables_wrapper {
  display: block;
}
.cid-sAHePTYyOk .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHePTYyOk .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHePTYyOk table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHePTYyOk table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHePTYyOk table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHePTYyOk table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHePTYyOk table.table {
  background: #ffffff;
}
.cid-sAHePTYyOk .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHePTYyOk .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHePTYyOk .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHePTYyOk .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHePTYyOk .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHePTYyOk .dataTables_filter {
    text-align: center;
  }
  .cid-sAHePTYyOk .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHePTYyOk LABEL {
  text-align: center;
}
.cid-sAHePTYyOk .head-item {
  color: #f7bd50;
}
.cid-sAHePUNaDS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHePUNaDS .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHePUNaDS .container-table {
  margin: 0 auto;
}
.cid-sAHePUNaDS .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHePUNaDS .dataTables_wrapper {
  display: block;
}
.cid-sAHePUNaDS .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHePUNaDS .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHePUNaDS table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHePUNaDS table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHePUNaDS table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHePUNaDS table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHePUNaDS table.table {
  background: #ffffff;
}
.cid-sAHePUNaDS .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHePUNaDS .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHePUNaDS .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHePUNaDS .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHePUNaDS .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHePUNaDS .dataTables_filter {
    text-align: center;
  }
  .cid-sAHePUNaDS .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHePUNaDS LABEL {
  text-align: center;
}
.cid-sAHePUNaDS .body-item {
  text-align: left;
}
.cid-sAHePUNaDS .head-item {
  color: #f7bd50;
}
.cid-sAHePVmGXY .modal-body .close {
  background: #1b1b1b;
}
.cid-sAHePVmGXY .modal-body .close span {
  font-style: normal;
}
.cid-sAHePVmGXY .carousel-inner > .active,
.cid-sAHePVmGXY .carousel-inner > .next,
.cid-sAHePVmGXY .carousel-inner > .prev {
  display: flex;
}
.cid-sAHePVmGXY .carousel-control .icon-next,
.cid-sAHePVmGXY .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAHePVmGXY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAHePVmGXY .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHePVmGXY .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAHePVmGXY .boxed-slider > div {
  position: relative;
}
.cid-sAHePVmGXY .container img {
  width: 100%;
}
.cid-sAHePVmGXY .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-sAHePVmGXY .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHePVmGXY .mbr-table-cell {
  padding: 0;
}
.cid-sAHePVmGXY .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAHePVmGXY .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-sAHePVmGXY .mbr-overlay {
  z-index: 1;
}
.cid-sAHePVmGXY .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHePVmGXY .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAHePVmGXY .carousel-item.active.right,
.cid-sAHePVmGXY .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHePVmGXY .carousel-item.active.left,
.cid-sAHePVmGXY .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHePVmGXY .carousel-item.active,
.cid-sAHePVmGXY .carousel-item.next.left,
.cid-sAHePVmGXY .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAHePVmGXY .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAHePVmGXY .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAHePVmGXY .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAHePVmGXY .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAHePVmGXY .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAHePVmGXY .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAHePVmGXY .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAHePVmGXY .mbr-slider .carousel-indicators li.active,
.cid-sAHePVmGXY .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAHePVmGXY .mbr-slider .carousel-indicators li::after,
.cid-sAHePVmGXY .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAHePVmGXY .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAHePVmGXY .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAHePVmGXY .mbr-slider > .container img {
  width: 100%;
}
.cid-sAHePVmGXY .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-sAHePVmGXY .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAHePVmGXY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHePVmGXY .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHePVmGXY .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAHePVmGXY .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAHePVmGXY .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAHePVmGXY .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAHePVmGXY .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAHePVmGXY .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHePVmGXY .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAHePVmGXY .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAHePVmGXY .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAHePW77av {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAHePW77av .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAHePW77av .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAHePW77av .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAHePW77av H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAHePW77av .section-text,
.cid-sAHePW77av .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAHePWGuCB .nav-item:focus,
.cid-sAHePWGuCB .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAHePWGuCB .nav-item {
    position: relative;
  }
}
.cid-sAHePWGuCB .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAHePWGuCB .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAHePWGuCB .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAHePWGuCB .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAHePWGuCB .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAHePWGuCB .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAHePWGuCB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAHePWGuCB .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHePWGuCB .navbar.collapsed .navbar-collapse.show,
.cid-sAHePWGuCB .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHePWGuCB .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAHePWGuCB .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAHePWGuCB .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAHePWGuCB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAHePWGuCB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAHePWGuCB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAHePWGuCB .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAHePWGuCB .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHePWGuCB .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAHePWGuCB .navbar.collapsed .right-menu,
.cid-sAHePWGuCB .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAHePWGuCB .navbar .navbar-collapse.show,
  .cid-sAHePWGuCB .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAHePWGuCB .navbar .navbar-collapse.show .brand-container,
  .cid-sAHePWGuCB .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAHePWGuCB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAHePWGuCB .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAHePWGuCB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAHePWGuCB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAHePWGuCB .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-sAHePWGuCB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAHePWGuCB .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAHePWGuCB .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAHePWGuCB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAHePWGuCB .navbar .right-menu,
  .cid-sAHePWGuCB .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAHePWGuCB .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAHePWGuCB .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAHePWGuCB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAHePWGuCB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAHePWGuCB .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAHePWGuCB .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAHePWGuCB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAHePWGuCB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAHePWGuCB .dropdown-item.active,
.cid-sAHePWGuCB .dropdown-item:active {
  background-color: transparent;
}
.cid-sAHePWGuCB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAHePWGuCB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAHePWGuCB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAHePWGuCB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAHePWGuCB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAHePWGuCB ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAHePWGuCB ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAHePWGuCB .navbar-buttons {
  margin-left: auto;
}
.cid-sAHePWGuCB button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAHePWGuCB button.navbar-toggler:hover {
  outline: none;
}
.cid-sAHePWGuCB button.navbar-toggler:active {
  outline: none;
}
.cid-sAHePWGuCB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAHePWGuCB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAHePWGuCB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHePWGuCB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHePWGuCB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAHePWGuCB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHePWGuCB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAHePWGuCB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAHePWGuCB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHePWGuCB .navbar-dropdown {
  position: fixed;
}
.cid-sAHePWGuCB a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAHePWGuCB a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAHePWGuCB a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAHePWGuCB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAHePWGuCB .right-menu,
.cid-sAHePWGuCB .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAHePWGuCB .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHePWGuCB .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHePWGuCB .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHePWGuCB .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHePWGuCB .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAHePWGuCB .card-wrapper {
  z-index: 3;
}
.cid-sAHePWGuCB .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAHePWGuCB .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAHePWGuCB .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAHePWGuCB .navbar-brand img {
  width: auto !important;
}
.cid-sAHePXi9l6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAHePXi9l6 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAHePXi9l6 .copyright-section,
.cid-sAHePXi9l6 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAHePXi9l6 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAHePXi9l6 .logo-section img {
  margin: 0 auto;
}
.cid-sAHePXi9l6 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAHePXi9l6 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAHePXi9l6 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAHePXi9l6 .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAHePXi9l6 .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAHePXi9l6 .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAHePXi9l6 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAHePXi9l6 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAHePXi9l6 .copyright-section {
    order: 1;
  }
  .cid-sAHePXi9l6 .copyright-section hr {
    display: none;
  }
  .cid-sAHePXi9l6 .social-media {
    margin-top: 30px;
  }
  .cid-sAHePXi9l6 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAHePXi9l6 .line {
    margin: 25px 0;
  }
  .cid-sAHePXi9l6 .mobirise-rights,
  .cid-sAHePXi9l6 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAHePXi9l6 .mbr-text,
.cid-sAHePXi9l6 .copyright-section {
  color: #272727;
}
.cid-sHGdslD6po {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ob-18b703-capture-1200x364.jpg");
}
.cid-sHGdslD6po H1 {
  color: #000000;
}
.cid-sHGdslD6po .mbr-text,
.cid-sHGdslD6po .mbr-section-btn {
  color: #000000;
}
.cid-sHGdslD6po .mbr-subtitle {
  color: #000000;
}
.cid-sHGdslD6po .mbr-text {
  margin-top: 1.5rem;
}
.cid-sHGdslD6po .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAHfi9qh0w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHfi9qh0w .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHfi9qh0w .container-table {
  margin: 0 auto;
}
.cid-sAHfi9qh0w .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHfi9qh0w .dataTables_wrapper {
  display: block;
}
.cid-sAHfi9qh0w .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHfi9qh0w .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHfi9qh0w table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHfi9qh0w table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHfi9qh0w table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHfi9qh0w table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHfi9qh0w table.table {
  background: #ffffff;
}
.cid-sAHfi9qh0w .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHfi9qh0w .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHfi9qh0w .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHfi9qh0w .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHfi9qh0w .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHfi9qh0w .dataTables_filter {
    text-align: center;
  }
  .cid-sAHfi9qh0w .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHfi9qh0w LABEL {
  text-align: center;
}
.cid-sAHfi9qh0w .head-item {
  color: #f7bd50;
}
.cid-sAHfia9IMP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHfia9IMP .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHfia9IMP .container-table {
  margin: 0 auto;
}
.cid-sAHfia9IMP .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHfia9IMP .dataTables_wrapper {
  display: block;
}
.cid-sAHfia9IMP .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHfia9IMP .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHfia9IMP table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHfia9IMP table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHfia9IMP table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHfia9IMP table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHfia9IMP table.table {
  background: #ffffff;
}
.cid-sAHfia9IMP .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHfia9IMP .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHfia9IMP .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHfia9IMP .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHfia9IMP .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHfia9IMP .dataTables_filter {
    text-align: center;
  }
  .cid-sAHfia9IMP .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHfia9IMP LABEL {
  text-align: center;
}
.cid-sAHfia9IMP .body-item {
  text-align: left;
}
.cid-sAHfia9IMP .head-item {
  color: #f7bd50;
}
.cid-sAHfiaLTkk .modal-body .close {
  background: #1b1b1b;
}
.cid-sAHfiaLTkk .modal-body .close span {
  font-style: normal;
}
.cid-sAHfiaLTkk .carousel-inner > .active,
.cid-sAHfiaLTkk .carousel-inner > .next,
.cid-sAHfiaLTkk .carousel-inner > .prev {
  display: flex;
}
.cid-sAHfiaLTkk .carousel-control .icon-next,
.cid-sAHfiaLTkk .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAHfiaLTkk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAHfiaLTkk .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHfiaLTkk .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAHfiaLTkk .boxed-slider > div {
  position: relative;
}
.cid-sAHfiaLTkk .container img {
  width: 100%;
}
.cid-sAHfiaLTkk .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-sAHfiaLTkk .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHfiaLTkk .mbr-table-cell {
  padding: 0;
}
.cid-sAHfiaLTkk .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAHfiaLTkk .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-sAHfiaLTkk .mbr-overlay {
  z-index: 1;
}
.cid-sAHfiaLTkk .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHfiaLTkk .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAHfiaLTkk .carousel-item.active.right,
.cid-sAHfiaLTkk .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHfiaLTkk .carousel-item.active.left,
.cid-sAHfiaLTkk .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHfiaLTkk .carousel-item.active,
.cid-sAHfiaLTkk .carousel-item.next.left,
.cid-sAHfiaLTkk .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAHfiaLTkk .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAHfiaLTkk .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAHfiaLTkk .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAHfiaLTkk .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAHfiaLTkk .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAHfiaLTkk .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAHfiaLTkk .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAHfiaLTkk .mbr-slider .carousel-indicators li.active,
.cid-sAHfiaLTkk .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAHfiaLTkk .mbr-slider .carousel-indicators li::after,
.cid-sAHfiaLTkk .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAHfiaLTkk .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAHfiaLTkk .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAHfiaLTkk .mbr-slider > .container img {
  width: 100%;
}
.cid-sAHfiaLTkk .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-sAHfiaLTkk .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAHfiaLTkk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHfiaLTkk .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHfiaLTkk .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAHfiaLTkk .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAHfiaLTkk .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAHfiaLTkk .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAHfiaLTkk .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAHfiaLTkk .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHfiaLTkk .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAHfiaLTkk .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAHfiaLTkk .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAHfibOJxy {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAHfibOJxy .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAHfibOJxy .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAHfibOJxy .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAHfibOJxy H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAHfibOJxy .section-text,
.cid-sAHfibOJxy .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAHficnx8L .nav-item:focus,
.cid-sAHficnx8L .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAHficnx8L .nav-item {
    position: relative;
  }
}
.cid-sAHficnx8L .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAHficnx8L .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAHficnx8L .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAHficnx8L .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAHficnx8L .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAHficnx8L .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAHficnx8L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAHficnx8L .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHficnx8L .navbar.collapsed .navbar-collapse.show,
.cid-sAHficnx8L .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHficnx8L .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAHficnx8L .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAHficnx8L .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAHficnx8L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAHficnx8L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAHficnx8L .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAHficnx8L .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAHficnx8L .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHficnx8L .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAHficnx8L .navbar.collapsed .right-menu,
.cid-sAHficnx8L .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAHficnx8L .navbar .navbar-collapse.show,
  .cid-sAHficnx8L .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAHficnx8L .navbar .navbar-collapse.show .brand-container,
  .cid-sAHficnx8L .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAHficnx8L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAHficnx8L .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAHficnx8L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAHficnx8L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAHficnx8L .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-sAHficnx8L .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAHficnx8L .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAHficnx8L .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAHficnx8L .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAHficnx8L .navbar .right-menu,
  .cid-sAHficnx8L .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAHficnx8L .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAHficnx8L .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAHficnx8L .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAHficnx8L .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAHficnx8L .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAHficnx8L .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAHficnx8L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAHficnx8L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAHficnx8L .dropdown-item.active,
.cid-sAHficnx8L .dropdown-item:active {
  background-color: transparent;
}
.cid-sAHficnx8L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAHficnx8L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAHficnx8L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAHficnx8L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAHficnx8L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAHficnx8L ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAHficnx8L ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAHficnx8L .navbar-buttons {
  margin-left: auto;
}
.cid-sAHficnx8L button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAHficnx8L button.navbar-toggler:hover {
  outline: none;
}
.cid-sAHficnx8L button.navbar-toggler:active {
  outline: none;
}
.cid-sAHficnx8L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAHficnx8L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAHficnx8L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHficnx8L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHficnx8L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAHficnx8L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHficnx8L nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAHficnx8L nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAHficnx8L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHficnx8L .navbar-dropdown {
  position: fixed;
}
.cid-sAHficnx8L a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAHficnx8L a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAHficnx8L a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAHficnx8L .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAHficnx8L .right-menu,
.cid-sAHficnx8L .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAHficnx8L .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHficnx8L .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHficnx8L .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHficnx8L .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHficnx8L .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAHficnx8L .card-wrapper {
  z-index: 3;
}
.cid-sAHficnx8L .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAHficnx8L .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAHficnx8L .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAHficnx8L .navbar-brand img {
  width: auto !important;
}
.cid-sAHfid6lFe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAHfid6lFe .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAHfid6lFe .copyright-section,
.cid-sAHfid6lFe .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAHfid6lFe .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAHfid6lFe .logo-section img {
  margin: 0 auto;
}
.cid-sAHfid6lFe .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAHfid6lFe .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAHfid6lFe .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAHfid6lFe .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAHfid6lFe .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAHfid6lFe .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAHfid6lFe .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAHfid6lFe .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAHfid6lFe .copyright-section {
    order: 1;
  }
  .cid-sAHfid6lFe .copyright-section hr {
    display: none;
  }
  .cid-sAHfid6lFe .social-media {
    margin-top: 30px;
  }
  .cid-sAHfid6lFe .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAHfid6lFe .line {
    margin: 25px 0;
  }
  .cid-sAHfid6lFe .mobirise-rights,
  .cid-sAHfid6lFe .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAHfid6lFe .mbr-text,
.cid-sAHfid6lFe .copyright-section {
  color: #272727;
}
.cid-sHGpJbgTp7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/lotus-green-nature-flower-plant-bloom-blossom-natural-638287-jpgd-1200x794.jpg");
}
.cid-sHGpJbgTp7 H1 {
  color: #000000;
}
.cid-sHGpJbgTp7 .mbr-text,
.cid-sHGpJbgTp7 .mbr-section-btn {
  color: #000000;
}
.cid-sHGpJbgTp7 .mbr-subtitle {
  color: #000000;
}
.cid-sHGpJbgTp7 .mbr-text {
  margin-top: 1.5rem;
}
.cid-sHGpJbgTp7 .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAHge7RF7H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHge7RF7H .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHge7RF7H .container-table {
  margin: 0 auto;
}
.cid-sAHge7RF7H .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHge7RF7H .dataTables_wrapper {
  display: block;
}
.cid-sAHge7RF7H .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHge7RF7H .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHge7RF7H table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHge7RF7H table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHge7RF7H table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHge7RF7H table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHge7RF7H table.table {
  background: #ffffff;
}
.cid-sAHge7RF7H .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHge7RF7H .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHge7RF7H .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHge7RF7H .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHge7RF7H .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHge7RF7H .dataTables_filter {
    text-align: center;
  }
  .cid-sAHge7RF7H .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHge7RF7H LABEL {
  text-align: center;
}
.cid-sAHge7RF7H .head-item {
  color: #f7bd50;
}
.cid-sAHge8pKnr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHge8pKnr .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHge8pKnr .container-table {
  margin: 0 auto;
}
.cid-sAHge8pKnr .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHge8pKnr .dataTables_wrapper {
  display: block;
}
.cid-sAHge8pKnr .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHge8pKnr .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHge8pKnr table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHge8pKnr table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHge8pKnr table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHge8pKnr table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHge8pKnr table.table {
  background: #ffffff;
}
.cid-sAHge8pKnr .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHge8pKnr .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHge8pKnr .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHge8pKnr .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHge8pKnr .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHge8pKnr .dataTables_filter {
    text-align: center;
  }
  .cid-sAHge8pKnr .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHge8pKnr LABEL {
  text-align: center;
}
.cid-sAHge8pKnr .body-item {
  text-align: left;
}
.cid-sAHge8pKnr .head-item {
  color: #f7bd50;
}
.cid-sAHge8SmCW .modal-body .close {
  background: #1b1b1b;
}
.cid-sAHge8SmCW .modal-body .close span {
  font-style: normal;
}
.cid-sAHge8SmCW .carousel-inner > .active,
.cid-sAHge8SmCW .carousel-inner > .next,
.cid-sAHge8SmCW .carousel-inner > .prev {
  display: flex;
}
.cid-sAHge8SmCW .carousel-control .icon-next,
.cid-sAHge8SmCW .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAHge8SmCW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAHge8SmCW .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHge8SmCW .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAHge8SmCW .boxed-slider > div {
  position: relative;
}
.cid-sAHge8SmCW .container img {
  width: 100%;
}
.cid-sAHge8SmCW .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-sAHge8SmCW .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHge8SmCW .mbr-table-cell {
  padding: 0;
}
.cid-sAHge8SmCW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAHge8SmCW .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-sAHge8SmCW .mbr-overlay {
  z-index: 1;
}
.cid-sAHge8SmCW .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHge8SmCW .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAHge8SmCW .carousel-item.active.right,
.cid-sAHge8SmCW .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHge8SmCW .carousel-item.active.left,
.cid-sAHge8SmCW .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHge8SmCW .carousel-item.active,
.cid-sAHge8SmCW .carousel-item.next.left,
.cid-sAHge8SmCW .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAHge8SmCW .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAHge8SmCW .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAHge8SmCW .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAHge8SmCW .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAHge8SmCW .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAHge8SmCW .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAHge8SmCW .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAHge8SmCW .mbr-slider .carousel-indicators li.active,
.cid-sAHge8SmCW .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAHge8SmCW .mbr-slider .carousel-indicators li::after,
.cid-sAHge8SmCW .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAHge8SmCW .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAHge8SmCW .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAHge8SmCW .mbr-slider > .container img {
  width: 100%;
}
.cid-sAHge8SmCW .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-sAHge8SmCW .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAHge8SmCW .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHge8SmCW .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHge8SmCW .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAHge8SmCW .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAHge8SmCW .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAHge8SmCW .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAHge8SmCW .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAHge8SmCW .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHge8SmCW .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAHge8SmCW .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAHge8SmCW .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAHge9zLlm {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAHge9zLlm .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAHge9zLlm .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAHge9zLlm .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAHge9zLlm H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAHge9zLlm .section-text,
.cid-sAHge9zLlm .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAHgea7Wjy .nav-item:focus,
.cid-sAHgea7Wjy .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAHgea7Wjy .nav-item {
    position: relative;
  }
}
.cid-sAHgea7Wjy .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAHgea7Wjy .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAHgea7Wjy .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAHgea7Wjy .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAHgea7Wjy .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAHgea7Wjy .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAHgea7Wjy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAHgea7Wjy .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHgea7Wjy .navbar.collapsed .navbar-collapse.show,
.cid-sAHgea7Wjy .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHgea7Wjy .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAHgea7Wjy .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAHgea7Wjy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAHgea7Wjy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAHgea7Wjy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAHgea7Wjy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAHgea7Wjy .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAHgea7Wjy .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHgea7Wjy .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAHgea7Wjy .navbar.collapsed .right-menu,
.cid-sAHgea7Wjy .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAHgea7Wjy .navbar .navbar-collapse.show,
  .cid-sAHgea7Wjy .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAHgea7Wjy .navbar .navbar-collapse.show .brand-container,
  .cid-sAHgea7Wjy .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAHgea7Wjy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAHgea7Wjy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAHgea7Wjy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAHgea7Wjy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAHgea7Wjy .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-sAHgea7Wjy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAHgea7Wjy .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAHgea7Wjy .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAHgea7Wjy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAHgea7Wjy .navbar .right-menu,
  .cid-sAHgea7Wjy .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAHgea7Wjy .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAHgea7Wjy .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAHgea7Wjy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAHgea7Wjy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAHgea7Wjy .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAHgea7Wjy .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAHgea7Wjy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAHgea7Wjy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAHgea7Wjy .dropdown-item.active,
.cid-sAHgea7Wjy .dropdown-item:active {
  background-color: transparent;
}
.cid-sAHgea7Wjy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAHgea7Wjy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAHgea7Wjy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAHgea7Wjy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAHgea7Wjy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAHgea7Wjy ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAHgea7Wjy ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAHgea7Wjy .navbar-buttons {
  margin-left: auto;
}
.cid-sAHgea7Wjy button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAHgea7Wjy button.navbar-toggler:hover {
  outline: none;
}
.cid-sAHgea7Wjy button.navbar-toggler:active {
  outline: none;
}
.cid-sAHgea7Wjy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAHgea7Wjy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAHgea7Wjy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHgea7Wjy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHgea7Wjy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAHgea7Wjy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHgea7Wjy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAHgea7Wjy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAHgea7Wjy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHgea7Wjy .navbar-dropdown {
  position: fixed;
}
.cid-sAHgea7Wjy a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAHgea7Wjy a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAHgea7Wjy a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAHgea7Wjy .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAHgea7Wjy .right-menu,
.cid-sAHgea7Wjy .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAHgea7Wjy .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHgea7Wjy .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHgea7Wjy .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHgea7Wjy .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHgea7Wjy .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAHgea7Wjy .card-wrapper {
  z-index: 3;
}
.cid-sAHgea7Wjy .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAHgea7Wjy .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAHgea7Wjy .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAHgea7Wjy .navbar-brand img {
  width: auto !important;
}
.cid-sAHgeaDzzm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAHgeaDzzm .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAHgeaDzzm .copyright-section,
.cid-sAHgeaDzzm .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAHgeaDzzm .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAHgeaDzzm .logo-section img {
  margin: 0 auto;
}
.cid-sAHgeaDzzm .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAHgeaDzzm .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAHgeaDzzm .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAHgeaDzzm .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAHgeaDzzm .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAHgeaDzzm .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAHgeaDzzm .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAHgeaDzzm .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAHgeaDzzm .copyright-section {
    order: 1;
  }
  .cid-sAHgeaDzzm .copyright-section hr {
    display: none;
  }
  .cid-sAHgeaDzzm .social-media {
    margin-top: 30px;
  }
  .cid-sAHgeaDzzm .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAHgeaDzzm .line {
    margin: 25px 0;
  }
  .cid-sAHgeaDzzm .mobirise-rights,
  .cid-sAHgeaDzzm .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAHgeaDzzm .mbr-text,
.cid-sAHgeaDzzm .copyright-section {
  color: #272727;
}
.cid-sCoZ4AgGAF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/7258virginie-25-11-2018-640x426.jpg");
}
.cid-sCoZ4AgGAF H1 {
  color: #000000;
}
.cid-sCoZ4AgGAF .mbr-text,
.cid-sCoZ4AgGAF .mbr-section-btn {
  color: #000000;
}
.cid-sCoZ4AgGAF .mbr-subtitle {
  color: #000000;
}
.cid-sCoZ4AgGAF .mbr-text {
  margin-top: 1.5rem;
}
.cid-sCoZ4AgGAF .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAHgT0pwFx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHgT0pwFx .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHgT0pwFx .container-table {
  margin: 0 auto;
}
.cid-sAHgT0pwFx .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHgT0pwFx .dataTables_wrapper {
  display: block;
}
.cid-sAHgT0pwFx .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHgT0pwFx .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHgT0pwFx table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHgT0pwFx table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHgT0pwFx table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHgT0pwFx table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHgT0pwFx table.table {
  background: #ffffff;
}
.cid-sAHgT0pwFx .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHgT0pwFx .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHgT0pwFx .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHgT0pwFx .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHgT0pwFx .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHgT0pwFx .dataTables_filter {
    text-align: center;
  }
  .cid-sAHgT0pwFx .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHgT0pwFx LABEL {
  text-align: center;
}
.cid-sAHgT0pwFx .head-item {
  color: #f7bd50;
}
.cid-sAHgT19MjO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHgT19MjO .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHgT19MjO .container-table {
  margin: 0 auto;
}
.cid-sAHgT19MjO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHgT19MjO .dataTables_wrapper {
  display: block;
}
.cid-sAHgT19MjO .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHgT19MjO .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHgT19MjO table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHgT19MjO table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHgT19MjO table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHgT19MjO table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHgT19MjO table.table {
  background: #ffffff;
}
.cid-sAHgT19MjO .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHgT19MjO .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHgT19MjO .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHgT19MjO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHgT19MjO .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHgT19MjO .dataTables_filter {
    text-align: center;
  }
  .cid-sAHgT19MjO .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHgT19MjO LABEL {
  text-align: center;
}
.cid-sAHgT19MjO .body-item {
  text-align: left;
}
.cid-sAHgT19MjO .head-item {
  color: #f7bd50;
}
.cid-sAHgT1Btmu .modal-body .close {
  background: #1b1b1b;
}
.cid-sAHgT1Btmu .modal-body .close span {
  font-style: normal;
}
.cid-sAHgT1Btmu .carousel-inner > .active,
.cid-sAHgT1Btmu .carousel-inner > .next,
.cid-sAHgT1Btmu .carousel-inner > .prev {
  display: flex;
}
.cid-sAHgT1Btmu .carousel-control .icon-next,
.cid-sAHgT1Btmu .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAHgT1Btmu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAHgT1Btmu .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHgT1Btmu .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAHgT1Btmu .boxed-slider > div {
  position: relative;
}
.cid-sAHgT1Btmu .container img {
  width: 100%;
}
.cid-sAHgT1Btmu .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-sAHgT1Btmu .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHgT1Btmu .mbr-table-cell {
  padding: 0;
}
.cid-sAHgT1Btmu .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAHgT1Btmu .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-sAHgT1Btmu .mbr-overlay {
  z-index: 1;
}
.cid-sAHgT1Btmu .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHgT1Btmu .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAHgT1Btmu .carousel-item.active.right,
.cid-sAHgT1Btmu .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHgT1Btmu .carousel-item.active.left,
.cid-sAHgT1Btmu .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHgT1Btmu .carousel-item.active,
.cid-sAHgT1Btmu .carousel-item.next.left,
.cid-sAHgT1Btmu .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAHgT1Btmu .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAHgT1Btmu .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAHgT1Btmu .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAHgT1Btmu .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAHgT1Btmu .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAHgT1Btmu .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAHgT1Btmu .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAHgT1Btmu .mbr-slider .carousel-indicators li.active,
.cid-sAHgT1Btmu .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAHgT1Btmu .mbr-slider .carousel-indicators li::after,
.cid-sAHgT1Btmu .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAHgT1Btmu .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAHgT1Btmu .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAHgT1Btmu .mbr-slider > .container img {
  width: 100%;
}
.cid-sAHgT1Btmu .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-sAHgT1Btmu .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAHgT1Btmu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHgT1Btmu .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHgT1Btmu .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAHgT1Btmu .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAHgT1Btmu .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAHgT1Btmu .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAHgT1Btmu .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAHgT1Btmu .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHgT1Btmu .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAHgT1Btmu .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAHgT1Btmu .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAHgT2km4j {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAHgT2km4j .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAHgT2km4j .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAHgT2km4j .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAHgT2km4j H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAHgT2km4j .section-text,
.cid-sAHgT2km4j .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAHgT2KrmW .nav-item:focus,
.cid-sAHgT2KrmW .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAHgT2KrmW .nav-item {
    position: relative;
  }
}
.cid-sAHgT2KrmW .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAHgT2KrmW .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAHgT2KrmW .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAHgT2KrmW .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAHgT2KrmW .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAHgT2KrmW .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAHgT2KrmW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAHgT2KrmW .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHgT2KrmW .navbar.collapsed .navbar-collapse.show,
.cid-sAHgT2KrmW .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHgT2KrmW .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAHgT2KrmW .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAHgT2KrmW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAHgT2KrmW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAHgT2KrmW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAHgT2KrmW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAHgT2KrmW .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAHgT2KrmW .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHgT2KrmW .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAHgT2KrmW .navbar.collapsed .right-menu,
.cid-sAHgT2KrmW .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAHgT2KrmW .navbar .navbar-collapse.show,
  .cid-sAHgT2KrmW .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAHgT2KrmW .navbar .navbar-collapse.show .brand-container,
  .cid-sAHgT2KrmW .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAHgT2KrmW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAHgT2KrmW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAHgT2KrmW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAHgT2KrmW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAHgT2KrmW .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-sAHgT2KrmW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAHgT2KrmW .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAHgT2KrmW .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAHgT2KrmW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAHgT2KrmW .navbar .right-menu,
  .cid-sAHgT2KrmW .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAHgT2KrmW .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAHgT2KrmW .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAHgT2KrmW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAHgT2KrmW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAHgT2KrmW .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAHgT2KrmW .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAHgT2KrmW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAHgT2KrmW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAHgT2KrmW .dropdown-item.active,
.cid-sAHgT2KrmW .dropdown-item:active {
  background-color: transparent;
}
.cid-sAHgT2KrmW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAHgT2KrmW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAHgT2KrmW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAHgT2KrmW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAHgT2KrmW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAHgT2KrmW ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAHgT2KrmW ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAHgT2KrmW .navbar-buttons {
  margin-left: auto;
}
.cid-sAHgT2KrmW button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAHgT2KrmW button.navbar-toggler:hover {
  outline: none;
}
.cid-sAHgT2KrmW button.navbar-toggler:active {
  outline: none;
}
.cid-sAHgT2KrmW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAHgT2KrmW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAHgT2KrmW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHgT2KrmW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHgT2KrmW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAHgT2KrmW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHgT2KrmW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAHgT2KrmW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAHgT2KrmW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHgT2KrmW .navbar-dropdown {
  position: fixed;
}
.cid-sAHgT2KrmW a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAHgT2KrmW a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAHgT2KrmW a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAHgT2KrmW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAHgT2KrmW .right-menu,
.cid-sAHgT2KrmW .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAHgT2KrmW .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHgT2KrmW .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHgT2KrmW .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHgT2KrmW .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHgT2KrmW .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAHgT2KrmW .card-wrapper {
  z-index: 3;
}
.cid-sAHgT2KrmW .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAHgT2KrmW .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAHgT2KrmW .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAHgT2KrmW .navbar-brand img {
  width: auto !important;
}
.cid-sAHgT3ieMK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAHgT3ieMK .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAHgT3ieMK .copyright-section,
.cid-sAHgT3ieMK .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAHgT3ieMK .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAHgT3ieMK .logo-section img {
  margin: 0 auto;
}
.cid-sAHgT3ieMK .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAHgT3ieMK .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAHgT3ieMK .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAHgT3ieMK .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAHgT3ieMK .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAHgT3ieMK .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAHgT3ieMK .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAHgT3ieMK .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAHgT3ieMK .copyright-section {
    order: 1;
  }
  .cid-sAHgT3ieMK .copyright-section hr {
    display: none;
  }
  .cid-sAHgT3ieMK .social-media {
    margin-top: 30px;
  }
  .cid-sAHgT3ieMK .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAHgT3ieMK .line {
    margin: 25px 0;
  }
  .cid-sAHgT3ieMK .mobirise-rights,
  .cid-sAHgT3ieMK .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAHgT3ieMK .mbr-text,
.cid-sAHgT3ieMK .copyright-section {
  color: #272727;
}
.cid-sCoWXW4fcE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sCoWXW4fcE H1 {
  color: #000000;
}
.cid-sCoWXW4fcE .mbr-text,
.cid-sCoWXW4fcE .mbr-section-btn {
  color: #000000;
}
.cid-sCoWXW4fcE .mbr-subtitle {
  color: #000000;
}
.cid-sCoWXW4fcE .mbr-text {
  margin-top: 1.5rem;
}
.cid-sCoWXW4fcE .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAHhApP4gp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHhApP4gp .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHhApP4gp .container-table {
  margin: 0 auto;
}
.cid-sAHhApP4gp .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHhApP4gp .dataTables_wrapper {
  display: block;
}
.cid-sAHhApP4gp .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHhApP4gp .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHhApP4gp table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHhApP4gp table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHhApP4gp table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHhApP4gp table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHhApP4gp table.table {
  background: #ffffff;
}
.cid-sAHhApP4gp .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHhApP4gp .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHhApP4gp .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHhApP4gp .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHhApP4gp .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHhApP4gp .dataTables_filter {
    text-align: center;
  }
  .cid-sAHhApP4gp .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHhApP4gp LABEL {
  text-align: center;
}
.cid-sAHhApP4gp .head-item {
  color: #f7bd50;
}
.cid-sAHhAquHGm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHhAquHGm .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHhAquHGm .container-table {
  margin: 0 auto;
}
.cid-sAHhAquHGm .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHhAquHGm .dataTables_wrapper {
  display: block;
}
.cid-sAHhAquHGm .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHhAquHGm .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHhAquHGm table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHhAquHGm table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHhAquHGm table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHhAquHGm table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHhAquHGm table.table {
  background: #ffffff;
}
.cid-sAHhAquHGm .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHhAquHGm .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHhAquHGm .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHhAquHGm .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHhAquHGm .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHhAquHGm .dataTables_filter {
    text-align: center;
  }
  .cid-sAHhAquHGm .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHhAquHGm LABEL {
  text-align: center;
}
.cid-sAHhAquHGm .body-item {
  text-align: left;
}
.cid-sAHhAquHGm .head-item {
  color: #f7bd50;
}
.cid-sAHhAr0kLF .modal-body .close {
  background: #1b1b1b;
}
.cid-sAHhAr0kLF .modal-body .close span {
  font-style: normal;
}
.cid-sAHhAr0kLF .carousel-inner > .active,
.cid-sAHhAr0kLF .carousel-inner > .next,
.cid-sAHhAr0kLF .carousel-inner > .prev {
  display: flex;
}
.cid-sAHhAr0kLF .carousel-control .icon-next,
.cid-sAHhAr0kLF .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAHhAr0kLF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAHhAr0kLF .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHhAr0kLF .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAHhAr0kLF .boxed-slider > div {
  position: relative;
}
.cid-sAHhAr0kLF .container img {
  width: 100%;
}
.cid-sAHhAr0kLF .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-sAHhAr0kLF .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHhAr0kLF .mbr-table-cell {
  padding: 0;
}
.cid-sAHhAr0kLF .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAHhAr0kLF .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-sAHhAr0kLF .mbr-overlay {
  z-index: 1;
}
.cid-sAHhAr0kLF .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHhAr0kLF .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAHhAr0kLF .carousel-item.active.right,
.cid-sAHhAr0kLF .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHhAr0kLF .carousel-item.active.left,
.cid-sAHhAr0kLF .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHhAr0kLF .carousel-item.active,
.cid-sAHhAr0kLF .carousel-item.next.left,
.cid-sAHhAr0kLF .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAHhAr0kLF .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAHhAr0kLF .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAHhAr0kLF .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAHhAr0kLF .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAHhAr0kLF .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAHhAr0kLF .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAHhAr0kLF .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAHhAr0kLF .mbr-slider .carousel-indicators li.active,
.cid-sAHhAr0kLF .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAHhAr0kLF .mbr-slider .carousel-indicators li::after,
.cid-sAHhAr0kLF .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAHhAr0kLF .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAHhAr0kLF .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAHhAr0kLF .mbr-slider > .container img {
  width: 100%;
}
.cid-sAHhAr0kLF .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-sAHhAr0kLF .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAHhAr0kLF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHhAr0kLF .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHhAr0kLF .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAHhAr0kLF .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAHhAr0kLF .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAHhAr0kLF .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAHhAr0kLF .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAHhAr0kLF .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHhAr0kLF .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAHhAr0kLF .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAHhAr0kLF .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAHhArJI3h {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAHhArJI3h .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAHhArJI3h .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAHhArJI3h .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAHhArJI3h H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAHhArJI3h .section-text,
.cid-sAHhArJI3h .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAHhAsaTl2 .nav-item:focus,
.cid-sAHhAsaTl2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAHhAsaTl2 .nav-item {
    position: relative;
  }
}
.cid-sAHhAsaTl2 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAHhAsaTl2 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAHhAsaTl2 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAHhAsaTl2 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAHhAsaTl2 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAHhAsaTl2 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAHhAsaTl2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAHhAsaTl2 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHhAsaTl2 .navbar.collapsed .navbar-collapse.show,
.cid-sAHhAsaTl2 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHhAsaTl2 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAHhAsaTl2 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAHhAsaTl2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAHhAsaTl2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAHhAsaTl2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAHhAsaTl2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAHhAsaTl2 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAHhAsaTl2 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHhAsaTl2 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAHhAsaTl2 .navbar.collapsed .right-menu,
.cid-sAHhAsaTl2 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAHhAsaTl2 .navbar .navbar-collapse.show,
  .cid-sAHhAsaTl2 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAHhAsaTl2 .navbar .navbar-collapse.show .brand-container,
  .cid-sAHhAsaTl2 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAHhAsaTl2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAHhAsaTl2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAHhAsaTl2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAHhAsaTl2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAHhAsaTl2 .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-sAHhAsaTl2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAHhAsaTl2 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAHhAsaTl2 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAHhAsaTl2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAHhAsaTl2 .navbar .right-menu,
  .cid-sAHhAsaTl2 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAHhAsaTl2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAHhAsaTl2 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAHhAsaTl2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAHhAsaTl2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAHhAsaTl2 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAHhAsaTl2 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAHhAsaTl2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAHhAsaTl2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAHhAsaTl2 .dropdown-item.active,
.cid-sAHhAsaTl2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sAHhAsaTl2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAHhAsaTl2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAHhAsaTl2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAHhAsaTl2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAHhAsaTl2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAHhAsaTl2 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAHhAsaTl2 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAHhAsaTl2 .navbar-buttons {
  margin-left: auto;
}
.cid-sAHhAsaTl2 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAHhAsaTl2 button.navbar-toggler:hover {
  outline: none;
}
.cid-sAHhAsaTl2 button.navbar-toggler:active {
  outline: none;
}
.cid-sAHhAsaTl2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAHhAsaTl2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAHhAsaTl2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHhAsaTl2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHhAsaTl2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAHhAsaTl2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHhAsaTl2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAHhAsaTl2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAHhAsaTl2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHhAsaTl2 .navbar-dropdown {
  position: fixed;
}
.cid-sAHhAsaTl2 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAHhAsaTl2 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAHhAsaTl2 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAHhAsaTl2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAHhAsaTl2 .right-menu,
.cid-sAHhAsaTl2 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAHhAsaTl2 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHhAsaTl2 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHhAsaTl2 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHhAsaTl2 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHhAsaTl2 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAHhAsaTl2 .card-wrapper {
  z-index: 3;
}
.cid-sAHhAsaTl2 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAHhAsaTl2 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAHhAsaTl2 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAHhAsaTl2 .navbar-brand img {
  width: auto !important;
}
.cid-sAHhAsIfuQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAHhAsIfuQ .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAHhAsIfuQ .copyright-section,
.cid-sAHhAsIfuQ .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAHhAsIfuQ .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAHhAsIfuQ .logo-section img {
  margin: 0 auto;
}
.cid-sAHhAsIfuQ .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAHhAsIfuQ .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAHhAsIfuQ .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAHhAsIfuQ .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAHhAsIfuQ .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAHhAsIfuQ .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAHhAsIfuQ .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAHhAsIfuQ .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAHhAsIfuQ .copyright-section {
    order: 1;
  }
  .cid-sAHhAsIfuQ .copyright-section hr {
    display: none;
  }
  .cid-sAHhAsIfuQ .social-media {
    margin-top: 30px;
  }
  .cid-sAHhAsIfuQ .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAHhAsIfuQ .line {
    margin: 25px 0;
  }
  .cid-sAHhAsIfuQ .mobirise-rights,
  .cid-sAHhAsIfuQ .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAHhAsIfuQ .mbr-text,
.cid-sAHhAsIfuQ .copyright-section {
  color: #272727;
}
.cid-sCoVSbpZLP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1267.jpg");
}
.cid-sCoVSbpZLP H1 {
  color: #000000;
}
.cid-sCoVSbpZLP .mbr-text,
.cid-sCoVSbpZLP .mbr-section-btn {
  color: #000000;
}
.cid-sCoVSbpZLP .mbr-subtitle {
  color: #000000;
}
.cid-sCoVSbpZLP .mbr-text {
  margin-top: 1.5rem;
}
.cid-sCoVSbpZLP .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAHiskVtG1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHiskVtG1 .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHiskVtG1 .container-table {
  margin: 0 auto;
}
.cid-sAHiskVtG1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHiskVtG1 .dataTables_wrapper {
  display: block;
}
.cid-sAHiskVtG1 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHiskVtG1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHiskVtG1 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHiskVtG1 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHiskVtG1 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHiskVtG1 table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHiskVtG1 table.table {
  background: #ffffff;
}
.cid-sAHiskVtG1 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHiskVtG1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHiskVtG1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHiskVtG1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHiskVtG1 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHiskVtG1 .dataTables_filter {
    text-align: center;
  }
  .cid-sAHiskVtG1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHiskVtG1 LABEL {
  text-align: center;
}
.cid-sAHiskVtG1 .head-item {
  color: #f7bd50;
}
.cid-sAHislBv8m {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHislBv8m .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHislBv8m .container-table {
  margin: 0 auto;
}
.cid-sAHislBv8m .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHislBv8m .dataTables_wrapper {
  display: block;
}
.cid-sAHislBv8m .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHislBv8m .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHislBv8m table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHislBv8m table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHislBv8m table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHislBv8m table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHislBv8m table.table {
  background: #ffffff;
}
.cid-sAHislBv8m .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHislBv8m .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHislBv8m .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHislBv8m .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHislBv8m .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHislBv8m .dataTables_filter {
    text-align: center;
  }
  .cid-sAHislBv8m .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHislBv8m LABEL {
  text-align: center;
}
.cid-sAHislBv8m .body-item {
  text-align: left;
}
.cid-sAHislBv8m .head-item {
  color: #f7bd50;
}
.cid-sAHism4QWJ .modal-body .close {
  background: #1b1b1b;
}
.cid-sAHism4QWJ .modal-body .close span {
  font-style: normal;
}
.cid-sAHism4QWJ .carousel-inner > .active,
.cid-sAHism4QWJ .carousel-inner > .next,
.cid-sAHism4QWJ .carousel-inner > .prev {
  display: flex;
}
.cid-sAHism4QWJ .carousel-control .icon-next,
.cid-sAHism4QWJ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAHism4QWJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAHism4QWJ .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHism4QWJ .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAHism4QWJ .boxed-slider > div {
  position: relative;
}
.cid-sAHism4QWJ .container img {
  width: 100%;
}
.cid-sAHism4QWJ .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-sAHism4QWJ .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHism4QWJ .mbr-table-cell {
  padding: 0;
}
.cid-sAHism4QWJ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAHism4QWJ .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-sAHism4QWJ .mbr-overlay {
  z-index: 1;
}
.cid-sAHism4QWJ .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHism4QWJ .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAHism4QWJ .carousel-item.active.right,
.cid-sAHism4QWJ .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHism4QWJ .carousel-item.active.left,
.cid-sAHism4QWJ .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHism4QWJ .carousel-item.active,
.cid-sAHism4QWJ .carousel-item.next.left,
.cid-sAHism4QWJ .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAHism4QWJ .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAHism4QWJ .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAHism4QWJ .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAHism4QWJ .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAHism4QWJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAHism4QWJ .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAHism4QWJ .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAHism4QWJ .mbr-slider .carousel-indicators li.active,
.cid-sAHism4QWJ .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAHism4QWJ .mbr-slider .carousel-indicators li::after,
.cid-sAHism4QWJ .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAHism4QWJ .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAHism4QWJ .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAHism4QWJ .mbr-slider > .container img {
  width: 100%;
}
.cid-sAHism4QWJ .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-sAHism4QWJ .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAHism4QWJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHism4QWJ .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHism4QWJ .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAHism4QWJ .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAHism4QWJ .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAHism4QWJ .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAHism4QWJ .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAHism4QWJ .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHism4QWJ .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAHism4QWJ .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAHism4QWJ .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAHismM32s {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAHismM32s .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAHismM32s .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAHismM32s .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAHismM32s H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAHismM32s .section-text,
.cid-sAHismM32s .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAHisnioVB .nav-item:focus,
.cid-sAHisnioVB .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAHisnioVB .nav-item {
    position: relative;
  }
}
.cid-sAHisnioVB .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAHisnioVB .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAHisnioVB .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAHisnioVB .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAHisnioVB .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAHisnioVB .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAHisnioVB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAHisnioVB .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHisnioVB .navbar.collapsed .navbar-collapse.show,
.cid-sAHisnioVB .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHisnioVB .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAHisnioVB .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAHisnioVB .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAHisnioVB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAHisnioVB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAHisnioVB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAHisnioVB .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAHisnioVB .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHisnioVB .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAHisnioVB .navbar.collapsed .right-menu,
.cid-sAHisnioVB .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAHisnioVB .navbar .navbar-collapse.show,
  .cid-sAHisnioVB .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAHisnioVB .navbar .navbar-collapse.show .brand-container,
  .cid-sAHisnioVB .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAHisnioVB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAHisnioVB .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAHisnioVB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAHisnioVB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAHisnioVB .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-sAHisnioVB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAHisnioVB .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAHisnioVB .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAHisnioVB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAHisnioVB .navbar .right-menu,
  .cid-sAHisnioVB .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAHisnioVB .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAHisnioVB .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAHisnioVB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAHisnioVB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAHisnioVB .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAHisnioVB .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAHisnioVB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAHisnioVB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAHisnioVB .dropdown-item.active,
.cid-sAHisnioVB .dropdown-item:active {
  background-color: transparent;
}
.cid-sAHisnioVB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAHisnioVB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAHisnioVB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAHisnioVB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAHisnioVB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAHisnioVB ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAHisnioVB ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAHisnioVB .navbar-buttons {
  margin-left: auto;
}
.cid-sAHisnioVB button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAHisnioVB button.navbar-toggler:hover {
  outline: none;
}
.cid-sAHisnioVB button.navbar-toggler:active {
  outline: none;
}
.cid-sAHisnioVB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAHisnioVB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAHisnioVB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHisnioVB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHisnioVB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAHisnioVB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHisnioVB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAHisnioVB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAHisnioVB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHisnioVB .navbar-dropdown {
  position: fixed;
}
.cid-sAHisnioVB a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAHisnioVB a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAHisnioVB a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAHisnioVB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAHisnioVB .right-menu,
.cid-sAHisnioVB .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAHisnioVB .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHisnioVB .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHisnioVB .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHisnioVB .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHisnioVB .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAHisnioVB .card-wrapper {
  z-index: 3;
}
.cid-sAHisnioVB .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAHisnioVB .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAHisnioVB .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAHisnioVB .navbar-brand img {
  width: auto !important;
}
.cid-sAHisnP04G {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAHisnP04G .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAHisnP04G .copyright-section,
.cid-sAHisnP04G .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAHisnP04G .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAHisnP04G .logo-section img {
  margin: 0 auto;
}
.cid-sAHisnP04G .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAHisnP04G .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAHisnP04G .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAHisnP04G .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAHisnP04G .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAHisnP04G .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAHisnP04G .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAHisnP04G .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAHisnP04G .copyright-section {
    order: 1;
  }
  .cid-sAHisnP04G .copyright-section hr {
    display: none;
  }
  .cid-sAHisnP04G .social-media {
    margin-top: 30px;
  }
  .cid-sAHisnP04G .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAHisnP04G .line {
    margin: 25px 0;
  }
  .cid-sAHisnP04G .mobirise-rights,
  .cid-sAHisnP04G .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAHisnP04G .mbr-text,
.cid-sAHisnP04G .copyright-section {
  color: #272727;
}
.cid-sCoUS3NfxP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sCoUS3NfxP H1 {
  color: #000000;
}
.cid-sCoUS3NfxP .mbr-text,
.cid-sCoUS3NfxP .mbr-section-btn {
  color: #000000;
}
.cid-sCoUS3NfxP .mbr-subtitle {
  color: #000000;
}
.cid-sCoUS3NfxP .mbr-text {
  margin-top: 1.5rem;
}
.cid-sCoUS3NfxP .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAHjSl0fq2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHjSl0fq2 .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHjSl0fq2 .container-table {
  margin: 0 auto;
}
.cid-sAHjSl0fq2 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHjSl0fq2 .dataTables_wrapper {
  display: block;
}
.cid-sAHjSl0fq2 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHjSl0fq2 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHjSl0fq2 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHjSl0fq2 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHjSl0fq2 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHjSl0fq2 table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHjSl0fq2 table.table {
  background: #ffffff;
}
.cid-sAHjSl0fq2 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHjSl0fq2 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHjSl0fq2 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHjSl0fq2 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHjSl0fq2 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHjSl0fq2 .dataTables_filter {
    text-align: center;
  }
  .cid-sAHjSl0fq2 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHjSl0fq2 LABEL {
  text-align: center;
}
.cid-sAHjSl0fq2 .head-item {
  color: #f7bd50;
}
.cid-sAHjSlFrIW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHjSlFrIW .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHjSlFrIW .container-table {
  margin: 0 auto;
}
.cid-sAHjSlFrIW .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHjSlFrIW .dataTables_wrapper {
  display: block;
}
.cid-sAHjSlFrIW .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHjSlFrIW .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHjSlFrIW table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHjSlFrIW table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHjSlFrIW table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHjSlFrIW table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHjSlFrIW table.table {
  background: #ffffff;
}
.cid-sAHjSlFrIW .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHjSlFrIW .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHjSlFrIW .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHjSlFrIW .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHjSlFrIW .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHjSlFrIW .dataTables_filter {
    text-align: center;
  }
  .cid-sAHjSlFrIW .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHjSlFrIW LABEL {
  text-align: center;
}
.cid-sAHjSlFrIW .body-item {
  text-align: left;
}
.cid-sAHjSm81V8 .modal-body .close {
  background: #1b1b1b;
}
.cid-sAHjSm81V8 .modal-body .close span {
  font-style: normal;
}
.cid-sAHjSm81V8 .carousel-inner > .active,
.cid-sAHjSm81V8 .carousel-inner > .next,
.cid-sAHjSm81V8 .carousel-inner > .prev {
  display: flex;
}
.cid-sAHjSm81V8 .carousel-control .icon-next,
.cid-sAHjSm81V8 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAHjSm81V8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAHjSm81V8 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHjSm81V8 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAHjSm81V8 .boxed-slider > div {
  position: relative;
}
.cid-sAHjSm81V8 .container img {
  width: 100%;
}
.cid-sAHjSm81V8 .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-sAHjSm81V8 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHjSm81V8 .mbr-table-cell {
  padding: 0;
}
.cid-sAHjSm81V8 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAHjSm81V8 .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-sAHjSm81V8 .mbr-overlay {
  z-index: 1;
}
.cid-sAHjSm81V8 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHjSm81V8 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAHjSm81V8 .carousel-item.active.right,
.cid-sAHjSm81V8 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHjSm81V8 .carousel-item.active.left,
.cid-sAHjSm81V8 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHjSm81V8 .carousel-item.active,
.cid-sAHjSm81V8 .carousel-item.next.left,
.cid-sAHjSm81V8 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAHjSm81V8 .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAHjSm81V8 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAHjSm81V8 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAHjSm81V8 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAHjSm81V8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAHjSm81V8 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAHjSm81V8 .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAHjSm81V8 .mbr-slider .carousel-indicators li.active,
.cid-sAHjSm81V8 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAHjSm81V8 .mbr-slider .carousel-indicators li::after,
.cid-sAHjSm81V8 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAHjSm81V8 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAHjSm81V8 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAHjSm81V8 .mbr-slider > .container img {
  width: 100%;
}
.cid-sAHjSm81V8 .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-sAHjSm81V8 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAHjSm81V8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHjSm81V8 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHjSm81V8 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAHjSm81V8 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAHjSm81V8 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAHjSm81V8 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAHjSm81V8 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAHjSm81V8 .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHjSm81V8 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAHjSm81V8 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAHjSm81V8 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAHjSmPgGy {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAHjSmPgGy .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAHjSmPgGy .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAHjSmPgGy .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAHjSmPgGy H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAHjSmPgGy .section-text,
.cid-sAHjSmPgGy .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAHjSnk7be .nav-item:focus,
.cid-sAHjSnk7be .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAHjSnk7be .nav-item {
    position: relative;
  }
}
.cid-sAHjSnk7be .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAHjSnk7be .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAHjSnk7be .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAHjSnk7be .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAHjSnk7be .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAHjSnk7be .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAHjSnk7be .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAHjSnk7be .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHjSnk7be .navbar.collapsed .navbar-collapse.show,
.cid-sAHjSnk7be .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHjSnk7be .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAHjSnk7be .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAHjSnk7be .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAHjSnk7be .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAHjSnk7be .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAHjSnk7be .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAHjSnk7be .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAHjSnk7be .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHjSnk7be .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAHjSnk7be .navbar.collapsed .right-menu,
.cid-sAHjSnk7be .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAHjSnk7be .navbar .navbar-collapse.show,
  .cid-sAHjSnk7be .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAHjSnk7be .navbar .navbar-collapse.show .brand-container,
  .cid-sAHjSnk7be .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAHjSnk7be .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAHjSnk7be .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAHjSnk7be .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAHjSnk7be .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAHjSnk7be .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-sAHjSnk7be .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAHjSnk7be .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAHjSnk7be .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAHjSnk7be .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAHjSnk7be .navbar .right-menu,
  .cid-sAHjSnk7be .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAHjSnk7be .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAHjSnk7be .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAHjSnk7be .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAHjSnk7be .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAHjSnk7be .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAHjSnk7be .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAHjSnk7be .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAHjSnk7be .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAHjSnk7be .dropdown-item.active,
.cid-sAHjSnk7be .dropdown-item:active {
  background-color: transparent;
}
.cid-sAHjSnk7be .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAHjSnk7be .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAHjSnk7be .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAHjSnk7be .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAHjSnk7be .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAHjSnk7be ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAHjSnk7be ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAHjSnk7be .navbar-buttons {
  margin-left: auto;
}
.cid-sAHjSnk7be button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAHjSnk7be button.navbar-toggler:hover {
  outline: none;
}
.cid-sAHjSnk7be button.navbar-toggler:active {
  outline: none;
}
.cid-sAHjSnk7be button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAHjSnk7be button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAHjSnk7be button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHjSnk7be button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHjSnk7be button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAHjSnk7be nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHjSnk7be nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAHjSnk7be nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAHjSnk7be nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHjSnk7be .navbar-dropdown {
  position: fixed;
}
.cid-sAHjSnk7be a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAHjSnk7be a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAHjSnk7be a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAHjSnk7be .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAHjSnk7be .right-menu,
.cid-sAHjSnk7be .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAHjSnk7be .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHjSnk7be .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHjSnk7be .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHjSnk7be .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHjSnk7be .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAHjSnk7be .card-wrapper {
  z-index: 3;
}
.cid-sAHjSnk7be .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAHjSnk7be .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAHjSnk7be .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAHjSnk7be .navbar-brand img {
  width: auto !important;
}
.cid-sAHjSnRZbE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAHjSnRZbE .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAHjSnRZbE .copyright-section,
.cid-sAHjSnRZbE .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAHjSnRZbE .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAHjSnRZbE .logo-section img {
  margin: 0 auto;
}
.cid-sAHjSnRZbE .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAHjSnRZbE .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAHjSnRZbE .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAHjSnRZbE .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAHjSnRZbE .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAHjSnRZbE .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAHjSnRZbE .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAHjSnRZbE .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAHjSnRZbE .copyright-section {
    order: 1;
  }
  .cid-sAHjSnRZbE .copyright-section hr {
    display: none;
  }
  .cid-sAHjSnRZbE .social-media {
    margin-top: 30px;
  }
  .cid-sAHjSnRZbE .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAHjSnRZbE .line {
    margin: 25px 0;
  }
  .cid-sAHjSnRZbE .mobirise-rights,
  .cid-sAHjSnRZbE .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAHjSnRZbE .mbr-text,
.cid-sAHjSnRZbE .copyright-section {
  color: #272727;
}
.cid-sBQfdTCtgh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBQfdTCtgh H1 {
  color: #000000;
}
.cid-sBQfdTCtgh .mbr-text,
.cid-sBQfdTCtgh .mbr-section-btn {
  color: #000000;
}
.cid-sBQfdTCtgh .mbr-subtitle {
  color: #000000;
}
.cid-sBQfdTCtgh .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBQfdTCtgh .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAHllnhvxL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHllnhvxL .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHllnhvxL .container-table {
  margin: 0 auto;
}
.cid-sAHllnhvxL .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHllnhvxL .dataTables_wrapper {
  display: block;
}
.cid-sAHllnhvxL .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHllnhvxL .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHllnhvxL table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHllnhvxL table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHllnhvxL table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHllnhvxL table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHllnhvxL table.table {
  background: #ffffff;
}
.cid-sAHllnhvxL .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHllnhvxL .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHllnhvxL .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHllnhvxL .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHllnhvxL .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHllnhvxL .dataTables_filter {
    text-align: center;
  }
  .cid-sAHllnhvxL .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHllnhvxL LABEL {
  text-align: center;
}
.cid-sAHllnhvxL .head-item {
  color: #f7bd50;
}
.cid-sAHllnSHIR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHllnSHIR .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHllnSHIR .container-table {
  margin: 0 auto;
}
.cid-sAHllnSHIR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHllnSHIR .dataTables_wrapper {
  display: block;
}
.cid-sAHllnSHIR .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHllnSHIR .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHllnSHIR table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHllnSHIR table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHllnSHIR table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHllnSHIR table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHllnSHIR table.table {
  background: #ffffff;
}
.cid-sAHllnSHIR .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHllnSHIR .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHllnSHIR .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHllnSHIR .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHllnSHIR .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHllnSHIR .dataTables_filter {
    text-align: center;
  }
  .cid-sAHllnSHIR .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHllnSHIR LABEL {
  text-align: center;
}
.cid-sAHllnSHIR .body-item {
  text-align: left;
}
.cid-sAHllokdzh .modal-body .close {
  background: #1b1b1b;
}
.cid-sAHllokdzh .modal-body .close span {
  font-style: normal;
}
.cid-sAHllokdzh .carousel-inner > .active,
.cid-sAHllokdzh .carousel-inner > .next,
.cid-sAHllokdzh .carousel-inner > .prev {
  display: flex;
}
.cid-sAHllokdzh .carousel-control .icon-next,
.cid-sAHllokdzh .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAHllokdzh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAHllokdzh .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHllokdzh .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAHllokdzh .boxed-slider > div {
  position: relative;
}
.cid-sAHllokdzh .container img {
  width: 100%;
}
.cid-sAHllokdzh .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-sAHllokdzh .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHllokdzh .mbr-table-cell {
  padding: 0;
}
.cid-sAHllokdzh .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAHllokdzh .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-sAHllokdzh .mbr-overlay {
  z-index: 1;
}
.cid-sAHllokdzh .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHllokdzh .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAHllokdzh .carousel-item.active.right,
.cid-sAHllokdzh .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHllokdzh .carousel-item.active.left,
.cid-sAHllokdzh .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHllokdzh .carousel-item.active,
.cid-sAHllokdzh .carousel-item.next.left,
.cid-sAHllokdzh .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAHllokdzh .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAHllokdzh .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAHllokdzh .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAHllokdzh .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAHllokdzh .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAHllokdzh .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAHllokdzh .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAHllokdzh .mbr-slider .carousel-indicators li.active,
.cid-sAHllokdzh .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAHllokdzh .mbr-slider .carousel-indicators li::after,
.cid-sAHllokdzh .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAHllokdzh .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAHllokdzh .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAHllokdzh .mbr-slider > .container img {
  width: 100%;
}
.cid-sAHllokdzh .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-sAHllokdzh .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAHllokdzh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHllokdzh .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHllokdzh .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAHllokdzh .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAHllokdzh .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAHllokdzh .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAHllokdzh .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAHllokdzh .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHllokdzh .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAHllokdzh .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAHllokdzh .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAHllp1a3e {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAHllp1a3e .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAHllp1a3e .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAHllp1a3e .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAHllp1a3e H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAHllp1a3e .section-text,
.cid-sAHllp1a3e .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAHllpqBsS .nav-item:focus,
.cid-sAHllpqBsS .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAHllpqBsS .nav-item {
    position: relative;
  }
}
.cid-sAHllpqBsS .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAHllpqBsS .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAHllpqBsS .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAHllpqBsS .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAHllpqBsS .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAHllpqBsS .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAHllpqBsS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAHllpqBsS .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHllpqBsS .navbar.collapsed .navbar-collapse.show,
.cid-sAHllpqBsS .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHllpqBsS .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAHllpqBsS .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAHllpqBsS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAHllpqBsS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAHllpqBsS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAHllpqBsS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAHllpqBsS .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAHllpqBsS .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHllpqBsS .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAHllpqBsS .navbar.collapsed .right-menu,
.cid-sAHllpqBsS .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAHllpqBsS .navbar .navbar-collapse.show,
  .cid-sAHllpqBsS .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAHllpqBsS .navbar .navbar-collapse.show .brand-container,
  .cid-sAHllpqBsS .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAHllpqBsS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAHllpqBsS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAHllpqBsS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAHllpqBsS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAHllpqBsS .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-sAHllpqBsS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAHllpqBsS .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAHllpqBsS .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAHllpqBsS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAHllpqBsS .navbar .right-menu,
  .cid-sAHllpqBsS .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAHllpqBsS .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAHllpqBsS .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAHllpqBsS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAHllpqBsS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAHllpqBsS .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAHllpqBsS .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAHllpqBsS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAHllpqBsS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAHllpqBsS .dropdown-item.active,
.cid-sAHllpqBsS .dropdown-item:active {
  background-color: transparent;
}
.cid-sAHllpqBsS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAHllpqBsS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAHllpqBsS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAHllpqBsS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAHllpqBsS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAHllpqBsS ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAHllpqBsS ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAHllpqBsS .navbar-buttons {
  margin-left: auto;
}
.cid-sAHllpqBsS button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAHllpqBsS button.navbar-toggler:hover {
  outline: none;
}
.cid-sAHllpqBsS button.navbar-toggler:active {
  outline: none;
}
.cid-sAHllpqBsS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAHllpqBsS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAHllpqBsS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHllpqBsS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHllpqBsS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAHllpqBsS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHllpqBsS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAHllpqBsS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAHllpqBsS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHllpqBsS .navbar-dropdown {
  position: fixed;
}
.cid-sAHllpqBsS a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAHllpqBsS a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAHllpqBsS a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAHllpqBsS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAHllpqBsS .right-menu,
.cid-sAHllpqBsS .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAHllpqBsS .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHllpqBsS .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHllpqBsS .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHllpqBsS .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHllpqBsS .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAHllpqBsS .card-wrapper {
  z-index: 3;
}
.cid-sAHllpqBsS .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAHllpqBsS .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAHllpqBsS .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAHllpqBsS .navbar-brand img {
  width: auto !important;
}
.cid-sAHllpUJTM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAHllpUJTM .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAHllpUJTM .copyright-section,
.cid-sAHllpUJTM .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAHllpUJTM .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAHllpUJTM .logo-section img {
  margin: 0 auto;
}
.cid-sAHllpUJTM .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAHllpUJTM .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAHllpUJTM .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAHllpUJTM .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAHllpUJTM .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAHllpUJTM .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAHllpUJTM .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAHllpUJTM .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAHllpUJTM .copyright-section {
    order: 1;
  }
  .cid-sAHllpUJTM .copyright-section hr {
    display: none;
  }
  .cid-sAHllpUJTM .social-media {
    margin-top: 30px;
  }
  .cid-sAHllpUJTM .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAHllpUJTM .line {
    margin: 25px 0;
  }
  .cid-sAHllpUJTM .mobirise-rights,
  .cid-sAHllpUJTM .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAHllpUJTM .mbr-text,
.cid-sAHllpUJTM .copyright-section {
  color: #272727;
}
.cid-sBPdbkv5f3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBPdbkv5f3 H1 {
  color: #000000;
}
.cid-sBPdbkv5f3 .mbr-text,
.cid-sBPdbkv5f3 .mbr-section-btn {
  color: #000000;
}
.cid-sBPdbkv5f3 .mbr-subtitle {
  color: #000000;
}
.cid-sBPdbkv5f3 .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBPdbkv5f3 .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sAHoqIdCOJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sAHoqIdCOJ .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHoqIdCOJ .container-table {
  margin: 0 auto;
}
.cid-sAHoqIdCOJ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHoqIdCOJ .dataTables_wrapper {
  display: block;
}
.cid-sAHoqIdCOJ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHoqIdCOJ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHoqIdCOJ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHoqIdCOJ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHoqIdCOJ table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHoqIdCOJ table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHoqIdCOJ table.table {
  background: #ffffff;
}
.cid-sAHoqIdCOJ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHoqIdCOJ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHoqIdCOJ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHoqIdCOJ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHoqIdCOJ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHoqIdCOJ .dataTables_filter {
    text-align: center;
  }
  .cid-sAHoqIdCOJ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHoqIdCOJ LABEL {
  text-align: center;
}
.cid-sAHoqIdCOJ .head-item {
  color: #f7bd50;
}
.cid-sAHoqJ8ad4 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-sAHoqJ8ad4 .mbr-section-subtitle {
  color: #767676;
}
.cid-sAHoqJ8ad4 .container-table {
  margin: 0 auto;
}
.cid-sAHoqJ8ad4 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sAHoqJ8ad4 .dataTables_wrapper {
  display: block;
}
.cid-sAHoqJ8ad4 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sAHoqJ8ad4 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sAHoqJ8ad4 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sAHoqJ8ad4 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sAHoqJ8ad4 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sAHoqJ8ad4 table td {
  border-top: 1px solid #cccccc;
}
.cid-sAHoqJ8ad4 table.table {
  background: #ffffff;
}
.cid-sAHoqJ8ad4 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sAHoqJ8ad4 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sAHoqJ8ad4 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sAHoqJ8ad4 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sAHoqJ8ad4 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sAHoqJ8ad4 .dataTables_filter {
    text-align: center;
  }
  .cid-sAHoqJ8ad4 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sAHoqJ8ad4 LABEL {
  text-align: center;
}
.cid-sAHoqJ8ad4 .body-item {
  text-align: left;
}
.cid-sAHoqJHPJD .modal-body .close {
  background: #1b1b1b;
}
.cid-sAHoqJHPJD .modal-body .close span {
  font-style: normal;
}
.cid-sAHoqJHPJD .carousel-inner > .active,
.cid-sAHoqJHPJD .carousel-inner > .next,
.cid-sAHoqJHPJD .carousel-inner > .prev {
  display: flex;
}
.cid-sAHoqJHPJD .carousel-control .icon-next,
.cid-sAHoqJHPJD .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sAHoqJHPJD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sAHoqJHPJD .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHoqJHPJD .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sAHoqJHPJD .boxed-slider > div {
  position: relative;
}
.cid-sAHoqJHPJD .container img {
  width: 100%;
}
.cid-sAHoqJHPJD .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-sAHoqJHPJD .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHoqJHPJD .mbr-table-cell {
  padding: 0;
}
.cid-sAHoqJHPJD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sAHoqJHPJD .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-sAHoqJHPJD .mbr-overlay {
  z-index: 1;
}
.cid-sAHoqJHPJD .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHoqJHPJD .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sAHoqJHPJD .carousel-item.active.right,
.cid-sAHoqJHPJD .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHoqJHPJD .carousel-item.active.left,
.cid-sAHoqJHPJD .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sAHoqJHPJD .carousel-item.active,
.cid-sAHoqJHPJD .carousel-item.next.left,
.cid-sAHoqJHPJD .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sAHoqJHPJD .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sAHoqJHPJD .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAHoqJHPJD .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAHoqJHPJD .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sAHoqJHPJD .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sAHoqJHPJD .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sAHoqJHPJD .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sAHoqJHPJD .mbr-slider .carousel-indicators li.active,
.cid-sAHoqJHPJD .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sAHoqJHPJD .mbr-slider .carousel-indicators li::after,
.cid-sAHoqJHPJD .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sAHoqJHPJD .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sAHoqJHPJD .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sAHoqJHPJD .mbr-slider > .container img {
  width: 100%;
}
.cid-sAHoqJHPJD .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-sAHoqJHPJD .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sAHoqJHPJD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sAHoqJHPJD .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sAHoqJHPJD .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sAHoqJHPJD .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sAHoqJHPJD .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sAHoqJHPJD .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sAHoqJHPJD .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sAHoqJHPJD .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sAHoqJHPJD .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sAHoqJHPJD .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sAHoqJHPJD .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sAHoqKqAVG {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sAHoqKqAVG .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sAHoqKqAVG .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sAHoqKqAVG .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sAHoqKqAVG H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sAHoqKqAVG .section-text,
.cid-sAHoqKqAVG .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sAHoqKQxaL .nav-item:focus,
.cid-sAHoqKQxaL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sAHoqKQxaL .nav-item {
    position: relative;
  }
}
.cid-sAHoqKQxaL .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sAHoqKQxaL .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sAHoqKQxaL .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sAHoqKQxaL .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sAHoqKQxaL .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sAHoqKQxaL .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sAHoqKQxaL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sAHoqKQxaL .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHoqKQxaL .navbar.collapsed .navbar-collapse.show,
.cid-sAHoqKQxaL .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHoqKQxaL .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sAHoqKQxaL .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sAHoqKQxaL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAHoqKQxaL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAHoqKQxaL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAHoqKQxaL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAHoqKQxaL .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sAHoqKQxaL .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sAHoqKQxaL .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sAHoqKQxaL .navbar.collapsed .right-menu,
.cid-sAHoqKQxaL .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sAHoqKQxaL .navbar .navbar-collapse.show,
  .cid-sAHoqKQxaL .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sAHoqKQxaL .navbar .navbar-collapse.show .brand-container,
  .cid-sAHoqKQxaL .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sAHoqKQxaL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAHoqKQxaL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAHoqKQxaL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAHoqKQxaL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAHoqKQxaL .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-sAHoqKQxaL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAHoqKQxaL .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sAHoqKQxaL .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sAHoqKQxaL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sAHoqKQxaL .navbar .right-menu,
  .cid-sAHoqKQxaL .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sAHoqKQxaL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sAHoqKQxaL .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sAHoqKQxaL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAHoqKQxaL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sAHoqKQxaL .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sAHoqKQxaL .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sAHoqKQxaL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAHoqKQxaL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAHoqKQxaL .dropdown-item.active,
.cid-sAHoqKQxaL .dropdown-item:active {
  background-color: transparent;
}
.cid-sAHoqKQxaL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAHoqKQxaL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sAHoqKQxaL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sAHoqKQxaL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAHoqKQxaL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAHoqKQxaL ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sAHoqKQxaL ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sAHoqKQxaL .navbar-buttons {
  margin-left: auto;
}
.cid-sAHoqKQxaL button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sAHoqKQxaL button.navbar-toggler:hover {
  outline: none;
}
.cid-sAHoqKQxaL button.navbar-toggler:active {
  outline: none;
}
.cid-sAHoqKQxaL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAHoqKQxaL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAHoqKQxaL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHoqKQxaL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAHoqKQxaL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAHoqKQxaL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHoqKQxaL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sAHoqKQxaL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sAHoqKQxaL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAHoqKQxaL .navbar-dropdown {
  position: fixed;
}
.cid-sAHoqKQxaL a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sAHoqKQxaL a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sAHoqKQxaL a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sAHoqKQxaL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAHoqKQxaL .right-menu,
.cid-sAHoqKQxaL .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sAHoqKQxaL .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHoqKQxaL .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sAHoqKQxaL .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHoqKQxaL .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sAHoqKQxaL .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sAHoqKQxaL .card-wrapper {
  z-index: 3;
}
.cid-sAHoqKQxaL .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sAHoqKQxaL .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sAHoqKQxaL .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sAHoqKQxaL .navbar-brand img {
  width: auto !important;
}
.cid-sAHoqLoWZE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sAHoqLoWZE .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sAHoqLoWZE .copyright-section,
.cid-sAHoqLoWZE .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sAHoqLoWZE .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sAHoqLoWZE .logo-section img {
  margin: 0 auto;
}
.cid-sAHoqLoWZE .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sAHoqLoWZE .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sAHoqLoWZE .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sAHoqLoWZE .social-media ul li {
    margin-left: 30px;
  }
  .cid-sAHoqLoWZE .container-fluid {
    padding: 0 2rem;
  }
  .cid-sAHoqLoWZE .menu-container {
    margin-bottom: 20px;
  }
  .cid-sAHoqLoWZE .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sAHoqLoWZE .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sAHoqLoWZE .copyright-section {
    order: 1;
  }
  .cid-sAHoqLoWZE .copyright-section hr {
    display: none;
  }
  .cid-sAHoqLoWZE .social-media {
    margin-top: 30px;
  }
  .cid-sAHoqLoWZE .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sAHoqLoWZE .line {
    margin: 25px 0;
  }
  .cid-sAHoqLoWZE .mobirise-rights,
  .cid-sAHoqLoWZE .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sAHoqLoWZE .mbr-text,
.cid-sAHoqLoWZE .copyright-section {
  color: #272727;
}
.cid-sCotHvrZXA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sCotHvrZXA H1 {
  color: #000000;
}
.cid-sCotHvrZXA .mbr-text,
.cid-sCotHvrZXA .mbr-section-btn {
  color: #000000;
}
.cid-sCotHvrZXA .mbr-subtitle {
  color: #000000;
}
.cid-sCotHvrZXA .mbr-text {
  margin-top: 1.5rem;
}
.cid-sCotHvrZXA .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBmb479Rht {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmb479Rht .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmb479Rht .container-table {
  margin: 0 auto;
}
.cid-sBmb479Rht .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmb479Rht .dataTables_wrapper {
  display: block;
}
.cid-sBmb479Rht .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmb479Rht .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmb479Rht table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmb479Rht table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmb479Rht table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmb479Rht table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmb479Rht table.table {
  background: #ffffff;
}
.cid-sBmb479Rht .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmb479Rht .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmb479Rht .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmb479Rht .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmb479Rht .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmb479Rht .dataTables_filter {
    text-align: center;
  }
  .cid-sBmb479Rht .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmb479Rht LABEL {
  text-align: center;
}
.cid-sBmb479Rht .head-item {
  color: #f7bd50;
}
.cid-sBmb47JfrH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmb47JfrH .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmb47JfrH .container-table {
  margin: 0 auto;
}
.cid-sBmb47JfrH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmb47JfrH .dataTables_wrapper {
  display: block;
}
.cid-sBmb47JfrH .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmb47JfrH .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmb47JfrH table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmb47JfrH table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmb47JfrH table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmb47JfrH table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmb47JfrH table.table {
  background: #ffffff;
}
.cid-sBmb47JfrH .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmb47JfrH .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmb47JfrH .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmb47JfrH .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmb47JfrH .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmb47JfrH .dataTables_filter {
    text-align: center;
  }
  .cid-sBmb47JfrH .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmb47JfrH LABEL {
  text-align: center;
}
.cid-sBmb47JfrH .body-item {
  text-align: left;
}
.cid-sBmb48iytO .modal-body .close {
  background: #1b1b1b;
}
.cid-sBmb48iytO .modal-body .close span {
  font-style: normal;
}
.cid-sBmb48iytO .carousel-inner > .active,
.cid-sBmb48iytO .carousel-inner > .next,
.cid-sBmb48iytO .carousel-inner > .prev {
  display: flex;
}
.cid-sBmb48iytO .carousel-control .icon-next,
.cid-sBmb48iytO .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBmb48iytO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBmb48iytO .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmb48iytO .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBmb48iytO .boxed-slider > div {
  position: relative;
}
.cid-sBmb48iytO .container img {
  width: 100%;
}
.cid-sBmb48iytO .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-sBmb48iytO .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmb48iytO .mbr-table-cell {
  padding: 0;
}
.cid-sBmb48iytO .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBmb48iytO .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-sBmb48iytO .mbr-overlay {
  z-index: 1;
}
.cid-sBmb48iytO .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmb48iytO .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBmb48iytO .carousel-item.active.right,
.cid-sBmb48iytO .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmb48iytO .carousel-item.active.left,
.cid-sBmb48iytO .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmb48iytO .carousel-item.active,
.cid-sBmb48iytO .carousel-item.next.left,
.cid-sBmb48iytO .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBmb48iytO .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBmb48iytO .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBmb48iytO .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBmb48iytO .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBmb48iytO .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBmb48iytO .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBmb48iytO .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBmb48iytO .mbr-slider .carousel-indicators li.active,
.cid-sBmb48iytO .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBmb48iytO .mbr-slider .carousel-indicators li::after,
.cid-sBmb48iytO .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBmb48iytO .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBmb48iytO .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBmb48iytO .mbr-slider > .container img {
  width: 100%;
}
.cid-sBmb48iytO .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-sBmb48iytO .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBmb48iytO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmb48iytO .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmb48iytO .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBmb48iytO .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBmb48iytO .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBmb48iytO .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBmb48iytO .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBmb48iytO .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmb48iytO .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBmb48iytO .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBmb48iytO .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBmb49eK3Q {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBmb49eK3Q .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBmb49eK3Q .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBmb49eK3Q .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBmb49eK3Q H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBmb49eK3Q .section-text,
.cid-sBmb49eK3Q .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBmb49Lve5 .nav-item:focus,
.cid-sBmb49Lve5 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBmb49Lve5 .nav-item {
    position: relative;
  }
}
.cid-sBmb49Lve5 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBmb49Lve5 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBmb49Lve5 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBmb49Lve5 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBmb49Lve5 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBmb49Lve5 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBmb49Lve5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBmb49Lve5 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmb49Lve5 .navbar.collapsed .navbar-collapse.show,
.cid-sBmb49Lve5 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmb49Lve5 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBmb49Lve5 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBmb49Lve5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBmb49Lve5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBmb49Lve5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBmb49Lve5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBmb49Lve5 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBmb49Lve5 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmb49Lve5 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBmb49Lve5 .navbar.collapsed .right-menu,
.cid-sBmb49Lve5 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBmb49Lve5 .navbar .navbar-collapse.show,
  .cid-sBmb49Lve5 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBmb49Lve5 .navbar .navbar-collapse.show .brand-container,
  .cid-sBmb49Lve5 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBmb49Lve5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBmb49Lve5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBmb49Lve5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBmb49Lve5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBmb49Lve5 .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-sBmb49Lve5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBmb49Lve5 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBmb49Lve5 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBmb49Lve5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBmb49Lve5 .navbar .right-menu,
  .cid-sBmb49Lve5 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBmb49Lve5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBmb49Lve5 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBmb49Lve5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBmb49Lve5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBmb49Lve5 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBmb49Lve5 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBmb49Lve5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBmb49Lve5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBmb49Lve5 .dropdown-item.active,
.cid-sBmb49Lve5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sBmb49Lve5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBmb49Lve5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBmb49Lve5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBmb49Lve5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBmb49Lve5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBmb49Lve5 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBmb49Lve5 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBmb49Lve5 .navbar-buttons {
  margin-left: auto;
}
.cid-sBmb49Lve5 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBmb49Lve5 button.navbar-toggler:hover {
  outline: none;
}
.cid-sBmb49Lve5 button.navbar-toggler:active {
  outline: none;
}
.cid-sBmb49Lve5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBmb49Lve5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBmb49Lve5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmb49Lve5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmb49Lve5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBmb49Lve5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmb49Lve5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBmb49Lve5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBmb49Lve5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmb49Lve5 .navbar-dropdown {
  position: fixed;
}
.cid-sBmb49Lve5 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBmb49Lve5 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBmb49Lve5 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBmb49Lve5 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBmb49Lve5 .right-menu,
.cid-sBmb49Lve5 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBmb49Lve5 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmb49Lve5 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmb49Lve5 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmb49Lve5 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmb49Lve5 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBmb49Lve5 .card-wrapper {
  z-index: 3;
}
.cid-sBmb49Lve5 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBmb49Lve5 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBmb49Lve5 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBmb49Lve5 .navbar-brand img {
  width: auto !important;
}
.cid-sBmb4akurA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBmb4akurA .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBmb4akurA .copyright-section,
.cid-sBmb4akurA .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBmb4akurA .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBmb4akurA .logo-section img {
  margin: 0 auto;
}
.cid-sBmb4akurA .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBmb4akurA .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBmb4akurA .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBmb4akurA .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBmb4akurA .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBmb4akurA .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBmb4akurA .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBmb4akurA .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBmb4akurA .copyright-section {
    order: 1;
  }
  .cid-sBmb4akurA .copyright-section hr {
    display: none;
  }
  .cid-sBmb4akurA .social-media {
    margin-top: 30px;
  }
  .cid-sBmb4akurA .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBmb4akurA .line {
    margin: 25px 0;
  }
  .cid-sBmb4akurA .mobirise-rights,
  .cid-sBmb4akurA .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBmb4akurA .mbr-text,
.cid-sBmb4akurA .copyright-section {
  color: #272727;
}
.cid-sCosek5UwW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sCosek5UwW H1 {
  color: #000000;
}
.cid-sCosek5UwW .mbr-text,
.cid-sCosek5UwW .mbr-section-btn {
  color: #000000;
}
.cid-sCosek5UwW .mbr-subtitle {
  color: #000000;
}
.cid-sCosek5UwW .mbr-text {
  margin-top: 1.5rem;
}
.cid-sCosek5UwW .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBmbYIoANh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmbYIoANh .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmbYIoANh .container-table {
  margin: 0 auto;
}
.cid-sBmbYIoANh .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmbYIoANh .dataTables_wrapper {
  display: block;
}
.cid-sBmbYIoANh .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmbYIoANh .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmbYIoANh table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmbYIoANh table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmbYIoANh table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmbYIoANh table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmbYIoANh table.table {
  background: #ffffff;
}
.cid-sBmbYIoANh .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmbYIoANh .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmbYIoANh .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmbYIoANh .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmbYIoANh .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmbYIoANh .dataTables_filter {
    text-align: center;
  }
  .cid-sBmbYIoANh .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmbYIoANh LABEL {
  text-align: center;
}
.cid-sBmbYIoANh .head-item {
  color: #f7bd50;
}
.cid-sBmbYJ9Jzf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmbYJ9Jzf .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmbYJ9Jzf .container-table {
  margin: 0 auto;
}
.cid-sBmbYJ9Jzf .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmbYJ9Jzf .dataTables_wrapper {
  display: block;
}
.cid-sBmbYJ9Jzf .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmbYJ9Jzf .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmbYJ9Jzf table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmbYJ9Jzf table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmbYJ9Jzf table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmbYJ9Jzf table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmbYJ9Jzf table.table {
  background: #ffffff;
}
.cid-sBmbYJ9Jzf .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmbYJ9Jzf .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmbYJ9Jzf .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmbYJ9Jzf .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmbYJ9Jzf .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmbYJ9Jzf .dataTables_filter {
    text-align: center;
  }
  .cid-sBmbYJ9Jzf .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmbYJ9Jzf LABEL {
  text-align: center;
}
.cid-sBmbYJ9Jzf .body-item {
  text-align: left;
}
.cid-sBmbYJELoS .modal-body .close {
  background: #1b1b1b;
}
.cid-sBmbYJELoS .modal-body .close span {
  font-style: normal;
}
.cid-sBmbYJELoS .carousel-inner > .active,
.cid-sBmbYJELoS .carousel-inner > .next,
.cid-sBmbYJELoS .carousel-inner > .prev {
  display: flex;
}
.cid-sBmbYJELoS .carousel-control .icon-next,
.cid-sBmbYJELoS .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBmbYJELoS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBmbYJELoS .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmbYJELoS .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBmbYJELoS .boxed-slider > div {
  position: relative;
}
.cid-sBmbYJELoS .container img {
  width: 100%;
}
.cid-sBmbYJELoS .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-sBmbYJELoS .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmbYJELoS .mbr-table-cell {
  padding: 0;
}
.cid-sBmbYJELoS .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBmbYJELoS .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-sBmbYJELoS .mbr-overlay {
  z-index: 1;
}
.cid-sBmbYJELoS .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmbYJELoS .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBmbYJELoS .carousel-item.active.right,
.cid-sBmbYJELoS .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmbYJELoS .carousel-item.active.left,
.cid-sBmbYJELoS .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmbYJELoS .carousel-item.active,
.cid-sBmbYJELoS .carousel-item.next.left,
.cid-sBmbYJELoS .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBmbYJELoS .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBmbYJELoS .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBmbYJELoS .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBmbYJELoS .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBmbYJELoS .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBmbYJELoS .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBmbYJELoS .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBmbYJELoS .mbr-slider .carousel-indicators li.active,
.cid-sBmbYJELoS .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBmbYJELoS .mbr-slider .carousel-indicators li::after,
.cid-sBmbYJELoS .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBmbYJELoS .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBmbYJELoS .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBmbYJELoS .mbr-slider > .container img {
  width: 100%;
}
.cid-sBmbYJELoS .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-sBmbYJELoS .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBmbYJELoS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmbYJELoS .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmbYJELoS .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBmbYJELoS .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBmbYJELoS .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBmbYJELoS .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBmbYJELoS .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBmbYJELoS .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmbYJELoS .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBmbYJELoS .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBmbYJELoS .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBmbYKtb64 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBmbYKtb64 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBmbYKtb64 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBmbYKtb64 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBmbYKtb64 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBmbYKtb64 .section-text,
.cid-sBmbYKtb64 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBmbYL1Rwo .nav-item:focus,
.cid-sBmbYL1Rwo .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBmbYL1Rwo .nav-item {
    position: relative;
  }
}
.cid-sBmbYL1Rwo .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBmbYL1Rwo .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBmbYL1Rwo .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBmbYL1Rwo .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBmbYL1Rwo .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBmbYL1Rwo .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBmbYL1Rwo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBmbYL1Rwo .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmbYL1Rwo .navbar.collapsed .navbar-collapse.show,
.cid-sBmbYL1Rwo .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmbYL1Rwo .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBmbYL1Rwo .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBmbYL1Rwo .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBmbYL1Rwo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBmbYL1Rwo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBmbYL1Rwo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBmbYL1Rwo .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBmbYL1Rwo .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmbYL1Rwo .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBmbYL1Rwo .navbar.collapsed .right-menu,
.cid-sBmbYL1Rwo .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBmbYL1Rwo .navbar .navbar-collapse.show,
  .cid-sBmbYL1Rwo .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBmbYL1Rwo .navbar .navbar-collapse.show .brand-container,
  .cid-sBmbYL1Rwo .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBmbYL1Rwo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBmbYL1Rwo .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBmbYL1Rwo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBmbYL1Rwo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBmbYL1Rwo .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-sBmbYL1Rwo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBmbYL1Rwo .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBmbYL1Rwo .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBmbYL1Rwo .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBmbYL1Rwo .navbar .right-menu,
  .cid-sBmbYL1Rwo .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBmbYL1Rwo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBmbYL1Rwo .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBmbYL1Rwo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBmbYL1Rwo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBmbYL1Rwo .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBmbYL1Rwo .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBmbYL1Rwo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBmbYL1Rwo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBmbYL1Rwo .dropdown-item.active,
.cid-sBmbYL1Rwo .dropdown-item:active {
  background-color: transparent;
}
.cid-sBmbYL1Rwo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBmbYL1Rwo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBmbYL1Rwo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBmbYL1Rwo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBmbYL1Rwo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBmbYL1Rwo ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBmbYL1Rwo ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBmbYL1Rwo .navbar-buttons {
  margin-left: auto;
}
.cid-sBmbYL1Rwo button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBmbYL1Rwo button.navbar-toggler:hover {
  outline: none;
}
.cid-sBmbYL1Rwo button.navbar-toggler:active {
  outline: none;
}
.cid-sBmbYL1Rwo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBmbYL1Rwo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBmbYL1Rwo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmbYL1Rwo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmbYL1Rwo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBmbYL1Rwo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmbYL1Rwo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBmbYL1Rwo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBmbYL1Rwo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmbYL1Rwo .navbar-dropdown {
  position: fixed;
}
.cid-sBmbYL1Rwo a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBmbYL1Rwo a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBmbYL1Rwo a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBmbYL1Rwo .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBmbYL1Rwo .right-menu,
.cid-sBmbYL1Rwo .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBmbYL1Rwo .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmbYL1Rwo .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmbYL1Rwo .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmbYL1Rwo .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmbYL1Rwo .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBmbYL1Rwo .card-wrapper {
  z-index: 3;
}
.cid-sBmbYL1Rwo .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBmbYL1Rwo .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBmbYL1Rwo .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBmbYL1Rwo .navbar-brand img {
  width: auto !important;
}
.cid-sBmbYLCloC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBmbYLCloC .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBmbYLCloC .copyright-section,
.cid-sBmbYLCloC .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBmbYLCloC .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBmbYLCloC .logo-section img {
  margin: 0 auto;
}
.cid-sBmbYLCloC .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBmbYLCloC .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBmbYLCloC .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBmbYLCloC .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBmbYLCloC .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBmbYLCloC .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBmbYLCloC .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBmbYLCloC .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBmbYLCloC .copyright-section {
    order: 1;
  }
  .cid-sBmbYLCloC .copyright-section hr {
    display: none;
  }
  .cid-sBmbYLCloC .social-media {
    margin-top: 30px;
  }
  .cid-sBmbYLCloC .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBmbYLCloC .line {
    margin: 25px 0;
  }
  .cid-sBmbYLCloC .mobirise-rights,
  .cid-sBmbYLCloC .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBmbYLCloC .mbr-text,
.cid-sBmbYLCloC .copyright-section {
  color: #272727;
}
.cid-sCopFO2Yev {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sCopFO2Yev H1 {
  color: #000000;
}
.cid-sCopFO2Yev .mbr-text,
.cid-sCopFO2Yev .mbr-section-btn {
  color: #000000;
}
.cid-sCopFO2Yev .mbr-subtitle {
  color: #000000;
}
.cid-sCopFO2Yev .mbr-text {
  margin-top: 1.5rem;
}
.cid-sCopFO2Yev .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBmdrt4te9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmdrt4te9 .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmdrt4te9 .container-table {
  margin: 0 auto;
}
.cid-sBmdrt4te9 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmdrt4te9 .dataTables_wrapper {
  display: block;
}
.cid-sBmdrt4te9 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmdrt4te9 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmdrt4te9 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmdrt4te9 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmdrt4te9 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmdrt4te9 table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmdrt4te9 table.table {
  background: #ffffff;
}
.cid-sBmdrt4te9 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmdrt4te9 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmdrt4te9 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmdrt4te9 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmdrt4te9 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmdrt4te9 .dataTables_filter {
    text-align: center;
  }
  .cid-sBmdrt4te9 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmdrt4te9 LABEL {
  text-align: center;
}
.cid-sBmdrt4te9 .head-item {
  color: #f7bd50;
}
.cid-sBmdrtL1C9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmdrtL1C9 .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmdrtL1C9 .container-table {
  margin: 0 auto;
}
.cid-sBmdrtL1C9 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmdrtL1C9 .dataTables_wrapper {
  display: block;
}
.cid-sBmdrtL1C9 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmdrtL1C9 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmdrtL1C9 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmdrtL1C9 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmdrtL1C9 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmdrtL1C9 table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmdrtL1C9 table.table {
  background: #ffffff;
}
.cid-sBmdrtL1C9 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmdrtL1C9 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmdrtL1C9 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmdrtL1C9 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmdrtL1C9 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmdrtL1C9 .dataTables_filter {
    text-align: center;
  }
  .cid-sBmdrtL1C9 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmdrtL1C9 LABEL {
  text-align: center;
}
.cid-sBmdrtL1C9 .body-item {
  text-align: left;
}
.cid-sBmdrufGbN .modal-body .close {
  background: #1b1b1b;
}
.cid-sBmdrufGbN .modal-body .close span {
  font-style: normal;
}
.cid-sBmdrufGbN .carousel-inner > .active,
.cid-sBmdrufGbN .carousel-inner > .next,
.cid-sBmdrufGbN .carousel-inner > .prev {
  display: flex;
}
.cid-sBmdrufGbN .carousel-control .icon-next,
.cid-sBmdrufGbN .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBmdrufGbN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBmdrufGbN .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmdrufGbN .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBmdrufGbN .boxed-slider > div {
  position: relative;
}
.cid-sBmdrufGbN .container img {
  width: 100%;
}
.cid-sBmdrufGbN .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-sBmdrufGbN .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmdrufGbN .mbr-table-cell {
  padding: 0;
}
.cid-sBmdrufGbN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBmdrufGbN .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-sBmdrufGbN .mbr-overlay {
  z-index: 1;
}
.cid-sBmdrufGbN .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmdrufGbN .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBmdrufGbN .carousel-item.active.right,
.cid-sBmdrufGbN .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmdrufGbN .carousel-item.active.left,
.cid-sBmdrufGbN .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmdrufGbN .carousel-item.active,
.cid-sBmdrufGbN .carousel-item.next.left,
.cid-sBmdrufGbN .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBmdrufGbN .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBmdrufGbN .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBmdrufGbN .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBmdrufGbN .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBmdrufGbN .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBmdrufGbN .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBmdrufGbN .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBmdrufGbN .mbr-slider .carousel-indicators li.active,
.cid-sBmdrufGbN .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBmdrufGbN .mbr-slider .carousel-indicators li::after,
.cid-sBmdrufGbN .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBmdrufGbN .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBmdrufGbN .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBmdrufGbN .mbr-slider > .container img {
  width: 100%;
}
.cid-sBmdrufGbN .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-sBmdrufGbN .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBmdrufGbN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmdrufGbN .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmdrufGbN .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBmdrufGbN .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBmdrufGbN .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBmdrufGbN .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBmdrufGbN .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBmdrufGbN .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmdrufGbN .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBmdrufGbN .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBmdrufGbN .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBmdrv77K7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBmdrv77K7 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBmdrv77K7 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBmdrv77K7 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBmdrv77K7 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBmdrv77K7 .section-text,
.cid-sBmdrv77K7 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBmdrvA0IG .nav-item:focus,
.cid-sBmdrvA0IG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBmdrvA0IG .nav-item {
    position: relative;
  }
}
.cid-sBmdrvA0IG .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBmdrvA0IG .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBmdrvA0IG .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBmdrvA0IG .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBmdrvA0IG .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBmdrvA0IG .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBmdrvA0IG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBmdrvA0IG .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmdrvA0IG .navbar.collapsed .navbar-collapse.show,
.cid-sBmdrvA0IG .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmdrvA0IG .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBmdrvA0IG .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBmdrvA0IG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBmdrvA0IG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBmdrvA0IG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBmdrvA0IG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBmdrvA0IG .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBmdrvA0IG .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmdrvA0IG .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBmdrvA0IG .navbar.collapsed .right-menu,
.cid-sBmdrvA0IG .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBmdrvA0IG .navbar .navbar-collapse.show,
  .cid-sBmdrvA0IG .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBmdrvA0IG .navbar .navbar-collapse.show .brand-container,
  .cid-sBmdrvA0IG .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBmdrvA0IG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBmdrvA0IG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBmdrvA0IG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBmdrvA0IG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBmdrvA0IG .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-sBmdrvA0IG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBmdrvA0IG .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBmdrvA0IG .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBmdrvA0IG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBmdrvA0IG .navbar .right-menu,
  .cid-sBmdrvA0IG .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBmdrvA0IG .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBmdrvA0IG .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBmdrvA0IG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBmdrvA0IG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBmdrvA0IG .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBmdrvA0IG .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBmdrvA0IG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBmdrvA0IG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBmdrvA0IG .dropdown-item.active,
.cid-sBmdrvA0IG .dropdown-item:active {
  background-color: transparent;
}
.cid-sBmdrvA0IG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBmdrvA0IG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBmdrvA0IG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBmdrvA0IG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBmdrvA0IG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBmdrvA0IG ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBmdrvA0IG ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBmdrvA0IG .navbar-buttons {
  margin-left: auto;
}
.cid-sBmdrvA0IG button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBmdrvA0IG button.navbar-toggler:hover {
  outline: none;
}
.cid-sBmdrvA0IG button.navbar-toggler:active {
  outline: none;
}
.cid-sBmdrvA0IG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBmdrvA0IG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBmdrvA0IG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmdrvA0IG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmdrvA0IG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBmdrvA0IG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmdrvA0IG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBmdrvA0IG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBmdrvA0IG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmdrvA0IG .navbar-dropdown {
  position: fixed;
}
.cid-sBmdrvA0IG a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBmdrvA0IG a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBmdrvA0IG a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBmdrvA0IG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBmdrvA0IG .right-menu,
.cid-sBmdrvA0IG .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBmdrvA0IG .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmdrvA0IG .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmdrvA0IG .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmdrvA0IG .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmdrvA0IG .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBmdrvA0IG .card-wrapper {
  z-index: 3;
}
.cid-sBmdrvA0IG .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBmdrvA0IG .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBmdrvA0IG .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBmdrvA0IG .navbar-brand img {
  width: auto !important;
}
.cid-sBmdrw7Dri {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBmdrw7Dri .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBmdrw7Dri .copyright-section,
.cid-sBmdrw7Dri .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBmdrw7Dri .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBmdrw7Dri .logo-section img {
  margin: 0 auto;
}
.cid-sBmdrw7Dri .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBmdrw7Dri .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBmdrw7Dri .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBmdrw7Dri .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBmdrw7Dri .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBmdrw7Dri .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBmdrw7Dri .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBmdrw7Dri .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBmdrw7Dri .copyright-section {
    order: 1;
  }
  .cid-sBmdrw7Dri .copyright-section hr {
    display: none;
  }
  .cid-sBmdrw7Dri .social-media {
    margin-top: 30px;
  }
  .cid-sBmdrw7Dri .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBmdrw7Dri .line {
    margin: 25px 0;
  }
  .cid-sBmdrw7Dri .mobirise-rights,
  .cid-sBmdrw7Dri .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBmdrw7Dri .mbr-text,
.cid-sBmdrw7Dri .copyright-section {
  color: #272727;
}
.cid-sConyfVije {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sConyfVije H1 {
  color: #000000;
}
.cid-sConyfVije .mbr-text,
.cid-sConyfVije .mbr-section-btn {
  color: #000000;
}
.cid-sConyfVije .mbr-subtitle {
  color: #000000;
}
.cid-sConyfVije .mbr-text {
  margin-top: 1.5rem;
}
.cid-sConyfVije .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBmftsvpXT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmftsvpXT .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmftsvpXT .container-table {
  margin: 0 auto;
}
.cid-sBmftsvpXT .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmftsvpXT .dataTables_wrapper {
  display: block;
}
.cid-sBmftsvpXT .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmftsvpXT .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmftsvpXT table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmftsvpXT table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmftsvpXT table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmftsvpXT table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmftsvpXT table.table {
  background: #ffffff;
}
.cid-sBmftsvpXT .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmftsvpXT .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmftsvpXT .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmftsvpXT .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmftsvpXT .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmftsvpXT .dataTables_filter {
    text-align: center;
  }
  .cid-sBmftsvpXT .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmftsvpXT LABEL {
  text-align: center;
}
.cid-sBmftsvpXT .head-item {
  color: #f7bd50;
}
.cid-sBmfttdbug {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmfttdbug .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmfttdbug .container-table {
  margin: 0 auto;
}
.cid-sBmfttdbug .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmfttdbug .dataTables_wrapper {
  display: block;
}
.cid-sBmfttdbug .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmfttdbug .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmfttdbug table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmfttdbug table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmfttdbug table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmfttdbug table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmfttdbug table.table {
  background: #ffffff;
}
.cid-sBmfttdbug .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmfttdbug .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmfttdbug .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmfttdbug .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmfttdbug .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmfttdbug .dataTables_filter {
    text-align: center;
  }
  .cid-sBmfttdbug .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmfttdbug LABEL {
  text-align: center;
}
.cid-sBmfttdbug .body-item {
  text-align: left;
}
.cid-sBmfttGgc5 .modal-body .close {
  background: #1b1b1b;
}
.cid-sBmfttGgc5 .modal-body .close span {
  font-style: normal;
}
.cid-sBmfttGgc5 .carousel-inner > .active,
.cid-sBmfttGgc5 .carousel-inner > .next,
.cid-sBmfttGgc5 .carousel-inner > .prev {
  display: flex;
}
.cid-sBmfttGgc5 .carousel-control .icon-next,
.cid-sBmfttGgc5 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBmfttGgc5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBmfttGgc5 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmfttGgc5 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBmfttGgc5 .boxed-slider > div {
  position: relative;
}
.cid-sBmfttGgc5 .container img {
  width: 100%;
}
.cid-sBmfttGgc5 .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-sBmfttGgc5 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmfttGgc5 .mbr-table-cell {
  padding: 0;
}
.cid-sBmfttGgc5 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBmfttGgc5 .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-sBmfttGgc5 .mbr-overlay {
  z-index: 1;
}
.cid-sBmfttGgc5 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmfttGgc5 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBmfttGgc5 .carousel-item.active.right,
.cid-sBmfttGgc5 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmfttGgc5 .carousel-item.active.left,
.cid-sBmfttGgc5 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmfttGgc5 .carousel-item.active,
.cid-sBmfttGgc5 .carousel-item.next.left,
.cid-sBmfttGgc5 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBmfttGgc5 .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBmfttGgc5 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBmfttGgc5 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBmfttGgc5 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBmfttGgc5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBmfttGgc5 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBmfttGgc5 .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBmfttGgc5 .mbr-slider .carousel-indicators li.active,
.cid-sBmfttGgc5 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBmfttGgc5 .mbr-slider .carousel-indicators li::after,
.cid-sBmfttGgc5 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBmfttGgc5 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBmfttGgc5 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBmfttGgc5 .mbr-slider > .container img {
  width: 100%;
}
.cid-sBmfttGgc5 .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-sBmfttGgc5 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBmfttGgc5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmfttGgc5 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmfttGgc5 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBmfttGgc5 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBmfttGgc5 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBmfttGgc5 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBmfttGgc5 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBmfttGgc5 .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmfttGgc5 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBmfttGgc5 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBmfttGgc5 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBmftuvqIs {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBmftuvqIs .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBmftuvqIs .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBmftuvqIs .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBmftuvqIs H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBmftuvqIs .section-text,
.cid-sBmftuvqIs .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBmftv24ZE .nav-item:focus,
.cid-sBmftv24ZE .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBmftv24ZE .nav-item {
    position: relative;
  }
}
.cid-sBmftv24ZE .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBmftv24ZE .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBmftv24ZE .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBmftv24ZE .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBmftv24ZE .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBmftv24ZE .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBmftv24ZE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBmftv24ZE .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmftv24ZE .navbar.collapsed .navbar-collapse.show,
.cid-sBmftv24ZE .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmftv24ZE .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBmftv24ZE .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBmftv24ZE .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBmftv24ZE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBmftv24ZE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBmftv24ZE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBmftv24ZE .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBmftv24ZE .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmftv24ZE .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBmftv24ZE .navbar.collapsed .right-menu,
.cid-sBmftv24ZE .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBmftv24ZE .navbar .navbar-collapse.show,
  .cid-sBmftv24ZE .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBmftv24ZE .navbar .navbar-collapse.show .brand-container,
  .cid-sBmftv24ZE .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBmftv24ZE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBmftv24ZE .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBmftv24ZE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBmftv24ZE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBmftv24ZE .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-sBmftv24ZE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBmftv24ZE .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBmftv24ZE .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBmftv24ZE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBmftv24ZE .navbar .right-menu,
  .cid-sBmftv24ZE .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBmftv24ZE .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBmftv24ZE .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBmftv24ZE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBmftv24ZE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBmftv24ZE .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBmftv24ZE .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBmftv24ZE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBmftv24ZE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBmftv24ZE .dropdown-item.active,
.cid-sBmftv24ZE .dropdown-item:active {
  background-color: transparent;
}
.cid-sBmftv24ZE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBmftv24ZE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBmftv24ZE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBmftv24ZE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBmftv24ZE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBmftv24ZE ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBmftv24ZE ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBmftv24ZE .navbar-buttons {
  margin-left: auto;
}
.cid-sBmftv24ZE button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBmftv24ZE button.navbar-toggler:hover {
  outline: none;
}
.cid-sBmftv24ZE button.navbar-toggler:active {
  outline: none;
}
.cid-sBmftv24ZE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBmftv24ZE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBmftv24ZE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmftv24ZE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmftv24ZE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBmftv24ZE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmftv24ZE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBmftv24ZE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBmftv24ZE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmftv24ZE .navbar-dropdown {
  position: fixed;
}
.cid-sBmftv24ZE a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBmftv24ZE a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBmftv24ZE a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBmftv24ZE .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBmftv24ZE .right-menu,
.cid-sBmftv24ZE .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBmftv24ZE .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmftv24ZE .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmftv24ZE .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmftv24ZE .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmftv24ZE .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBmftv24ZE .card-wrapper {
  z-index: 3;
}
.cid-sBmftv24ZE .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBmftv24ZE .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBmftv24ZE .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBmftv24ZE .navbar-brand img {
  width: auto !important;
}
.cid-sBmftvCdm8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBmftvCdm8 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBmftvCdm8 .copyright-section,
.cid-sBmftvCdm8 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBmftvCdm8 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBmftvCdm8 .logo-section img {
  margin: 0 auto;
}
.cid-sBmftvCdm8 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBmftvCdm8 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBmftvCdm8 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBmftvCdm8 .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBmftvCdm8 .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBmftvCdm8 .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBmftvCdm8 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBmftvCdm8 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBmftvCdm8 .copyright-section {
    order: 1;
  }
  .cid-sBmftvCdm8 .copyright-section hr {
    display: none;
  }
  .cid-sBmftvCdm8 .social-media {
    margin-top: 30px;
  }
  .cid-sBmftvCdm8 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBmftvCdm8 .line {
    margin: 25px 0;
  }
  .cid-sBmftvCdm8 .mobirise-rights,
  .cid-sBmftvCdm8 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBmftvCdm8 .mbr-text,
.cid-sBmftvCdm8 .copyright-section {
  color: #272727;
}
.cid-sColKtJGK0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sColKtJGK0 H1 {
  color: #000000;
}
.cid-sColKtJGK0 .mbr-text,
.cid-sColKtJGK0 .mbr-section-btn {
  color: #000000;
}
.cid-sColKtJGK0 .mbr-subtitle {
  color: #000000;
}
.cid-sColKtJGK0 .mbr-text {
  margin-top: 1.5rem;
}
.cid-sColKtJGK0 .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBmfZk9gln {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmfZk9gln .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmfZk9gln .container-table {
  margin: 0 auto;
}
.cid-sBmfZk9gln .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmfZk9gln .dataTables_wrapper {
  display: block;
}
.cid-sBmfZk9gln .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmfZk9gln .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmfZk9gln table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmfZk9gln table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmfZk9gln table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmfZk9gln table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmfZk9gln table.table {
  background: #ffffff;
}
.cid-sBmfZk9gln .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmfZk9gln .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmfZk9gln .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmfZk9gln .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmfZk9gln .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmfZk9gln .dataTables_filter {
    text-align: center;
  }
  .cid-sBmfZk9gln .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmfZk9gln LABEL {
  text-align: center;
}
.cid-sBmfZk9gln .head-item {
  color: #f7bd50;
}
.cid-sBmfZkR3fK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmfZkR3fK .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmfZkR3fK .container-table {
  margin: 0 auto;
}
.cid-sBmfZkR3fK .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmfZkR3fK .dataTables_wrapper {
  display: block;
}
.cid-sBmfZkR3fK .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmfZkR3fK .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmfZkR3fK table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmfZkR3fK table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmfZkR3fK table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmfZkR3fK table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmfZkR3fK table.table {
  background: #ffffff;
}
.cid-sBmfZkR3fK .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmfZkR3fK .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmfZkR3fK .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmfZkR3fK .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmfZkR3fK .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmfZkR3fK .dataTables_filter {
    text-align: center;
  }
  .cid-sBmfZkR3fK .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmfZkR3fK LABEL {
  text-align: center;
}
.cid-sBmfZkR3fK .body-item {
  text-align: left;
}
.cid-sBmfZlkk5k .modal-body .close {
  background: #1b1b1b;
}
.cid-sBmfZlkk5k .modal-body .close span {
  font-style: normal;
}
.cid-sBmfZlkk5k .carousel-inner > .active,
.cid-sBmfZlkk5k .carousel-inner > .next,
.cid-sBmfZlkk5k .carousel-inner > .prev {
  display: flex;
}
.cid-sBmfZlkk5k .carousel-control .icon-next,
.cid-sBmfZlkk5k .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBmfZlkk5k .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBmfZlkk5k .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmfZlkk5k .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBmfZlkk5k .boxed-slider > div {
  position: relative;
}
.cid-sBmfZlkk5k .container img {
  width: 100%;
}
.cid-sBmfZlkk5k .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-sBmfZlkk5k .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmfZlkk5k .mbr-table-cell {
  padding: 0;
}
.cid-sBmfZlkk5k .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBmfZlkk5k .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-sBmfZlkk5k .mbr-overlay {
  z-index: 1;
}
.cid-sBmfZlkk5k .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmfZlkk5k .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBmfZlkk5k .carousel-item.active.right,
.cid-sBmfZlkk5k .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmfZlkk5k .carousel-item.active.left,
.cid-sBmfZlkk5k .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmfZlkk5k .carousel-item.active,
.cid-sBmfZlkk5k .carousel-item.next.left,
.cid-sBmfZlkk5k .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBmfZlkk5k .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBmfZlkk5k .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBmfZlkk5k .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBmfZlkk5k .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBmfZlkk5k .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBmfZlkk5k .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBmfZlkk5k .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBmfZlkk5k .mbr-slider .carousel-indicators li.active,
.cid-sBmfZlkk5k .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBmfZlkk5k .mbr-slider .carousel-indicators li::after,
.cid-sBmfZlkk5k .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBmfZlkk5k .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBmfZlkk5k .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBmfZlkk5k .mbr-slider > .container img {
  width: 100%;
}
.cid-sBmfZlkk5k .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-sBmfZlkk5k .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBmfZlkk5k .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmfZlkk5k .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmfZlkk5k .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBmfZlkk5k .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBmfZlkk5k .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBmfZlkk5k .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBmfZlkk5k .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBmfZlkk5k .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmfZlkk5k .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBmfZlkk5k .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBmfZlkk5k .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBmfZm9vRZ {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBmfZm9vRZ .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBmfZm9vRZ .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBmfZm9vRZ .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBmfZm9vRZ H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBmfZm9vRZ .section-text,
.cid-sBmfZm9vRZ .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBmfZmGhc9 .nav-item:focus,
.cid-sBmfZmGhc9 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBmfZmGhc9 .nav-item {
    position: relative;
  }
}
.cid-sBmfZmGhc9 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBmfZmGhc9 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBmfZmGhc9 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBmfZmGhc9 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBmfZmGhc9 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBmfZmGhc9 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBmfZmGhc9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBmfZmGhc9 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmfZmGhc9 .navbar.collapsed .navbar-collapse.show,
.cid-sBmfZmGhc9 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmfZmGhc9 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBmfZmGhc9 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBmfZmGhc9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBmfZmGhc9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBmfZmGhc9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBmfZmGhc9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBmfZmGhc9 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBmfZmGhc9 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmfZmGhc9 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBmfZmGhc9 .navbar.collapsed .right-menu,
.cid-sBmfZmGhc9 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBmfZmGhc9 .navbar .navbar-collapse.show,
  .cid-sBmfZmGhc9 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBmfZmGhc9 .navbar .navbar-collapse.show .brand-container,
  .cid-sBmfZmGhc9 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBmfZmGhc9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBmfZmGhc9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBmfZmGhc9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBmfZmGhc9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBmfZmGhc9 .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-sBmfZmGhc9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBmfZmGhc9 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBmfZmGhc9 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBmfZmGhc9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBmfZmGhc9 .navbar .right-menu,
  .cid-sBmfZmGhc9 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBmfZmGhc9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBmfZmGhc9 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBmfZmGhc9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBmfZmGhc9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBmfZmGhc9 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBmfZmGhc9 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBmfZmGhc9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBmfZmGhc9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBmfZmGhc9 .dropdown-item.active,
.cid-sBmfZmGhc9 .dropdown-item:active {
  background-color: transparent;
}
.cid-sBmfZmGhc9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBmfZmGhc9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBmfZmGhc9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBmfZmGhc9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBmfZmGhc9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBmfZmGhc9 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBmfZmGhc9 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBmfZmGhc9 .navbar-buttons {
  margin-left: auto;
}
.cid-sBmfZmGhc9 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBmfZmGhc9 button.navbar-toggler:hover {
  outline: none;
}
.cid-sBmfZmGhc9 button.navbar-toggler:active {
  outline: none;
}
.cid-sBmfZmGhc9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBmfZmGhc9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBmfZmGhc9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmfZmGhc9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmfZmGhc9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBmfZmGhc9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmfZmGhc9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBmfZmGhc9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBmfZmGhc9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmfZmGhc9 .navbar-dropdown {
  position: fixed;
}
.cid-sBmfZmGhc9 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBmfZmGhc9 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBmfZmGhc9 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBmfZmGhc9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBmfZmGhc9 .right-menu,
.cid-sBmfZmGhc9 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBmfZmGhc9 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmfZmGhc9 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmfZmGhc9 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmfZmGhc9 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmfZmGhc9 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBmfZmGhc9 .card-wrapper {
  z-index: 3;
}
.cid-sBmfZmGhc9 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBmfZmGhc9 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBmfZmGhc9 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBmfZmGhc9 .navbar-brand img {
  width: auto !important;
}
.cid-sBmfZnd9nA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBmfZnd9nA .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBmfZnd9nA .copyright-section,
.cid-sBmfZnd9nA .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBmfZnd9nA .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBmfZnd9nA .logo-section img {
  margin: 0 auto;
}
.cid-sBmfZnd9nA .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBmfZnd9nA .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBmfZnd9nA .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBmfZnd9nA .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBmfZnd9nA .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBmfZnd9nA .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBmfZnd9nA .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBmfZnd9nA .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBmfZnd9nA .copyright-section {
    order: 1;
  }
  .cid-sBmfZnd9nA .copyright-section hr {
    display: none;
  }
  .cid-sBmfZnd9nA .social-media {
    margin-top: 30px;
  }
  .cid-sBmfZnd9nA .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBmfZnd9nA .line {
    margin: 25px 0;
  }
  .cid-sBmfZnd9nA .mobirise-rights,
  .cid-sBmfZnd9nA .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBmfZnd9nA .mbr-text,
.cid-sBmfZnd9nA .copyright-section {
  color: #272727;
}
.cid-sCojbbBDIc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sCojbbBDIc H1 {
  color: #000000;
}
.cid-sCojbbBDIc .mbr-text,
.cid-sCojbbBDIc .mbr-section-btn {
  color: #000000;
}
.cid-sCojbbBDIc .mbr-subtitle {
  color: #000000;
}
.cid-sCojbbBDIc .mbr-text {
  margin-top: 1.5rem;
}
.cid-sCojbbBDIc .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBmh9KK67f {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmh9KK67f .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmh9KK67f .container-table {
  margin: 0 auto;
}
.cid-sBmh9KK67f .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmh9KK67f .dataTables_wrapper {
  display: block;
}
.cid-sBmh9KK67f .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmh9KK67f .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmh9KK67f table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmh9KK67f table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmh9KK67f table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmh9KK67f table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmh9KK67f table.table {
  background: #ffffff;
}
.cid-sBmh9KK67f .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmh9KK67f .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmh9KK67f .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmh9KK67f .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmh9KK67f .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmh9KK67f .dataTables_filter {
    text-align: center;
  }
  .cid-sBmh9KK67f .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmh9KK67f LABEL {
  text-align: center;
}
.cid-sBmh9KK67f .head-item {
  color: #f7bd50;
}
.cid-sBmh9LEhE9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmh9LEhE9 .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmh9LEhE9 .container-table {
  margin: 0 auto;
}
.cid-sBmh9LEhE9 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmh9LEhE9 .dataTables_wrapper {
  display: block;
}
.cid-sBmh9LEhE9 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmh9LEhE9 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmh9LEhE9 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmh9LEhE9 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmh9LEhE9 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmh9LEhE9 table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmh9LEhE9 table.table {
  background: #ffffff;
}
.cid-sBmh9LEhE9 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmh9LEhE9 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmh9LEhE9 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmh9LEhE9 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmh9LEhE9 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmh9LEhE9 .dataTables_filter {
    text-align: center;
  }
  .cid-sBmh9LEhE9 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmh9LEhE9 LABEL {
  text-align: center;
}
.cid-sBmh9LEhE9 .body-item {
  text-align: left;
}
.cid-sBmh9M7AZt .modal-body .close {
  background: #1b1b1b;
}
.cid-sBmh9M7AZt .modal-body .close span {
  font-style: normal;
}
.cid-sBmh9M7AZt .carousel-inner > .active,
.cid-sBmh9M7AZt .carousel-inner > .next,
.cid-sBmh9M7AZt .carousel-inner > .prev {
  display: flex;
}
.cid-sBmh9M7AZt .carousel-control .icon-next,
.cid-sBmh9M7AZt .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBmh9M7AZt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBmh9M7AZt .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmh9M7AZt .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBmh9M7AZt .boxed-slider > div {
  position: relative;
}
.cid-sBmh9M7AZt .container img {
  width: 100%;
}
.cid-sBmh9M7AZt .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-sBmh9M7AZt .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmh9M7AZt .mbr-table-cell {
  padding: 0;
}
.cid-sBmh9M7AZt .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBmh9M7AZt .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-sBmh9M7AZt .mbr-overlay {
  z-index: 1;
}
.cid-sBmh9M7AZt .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmh9M7AZt .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBmh9M7AZt .carousel-item.active.right,
.cid-sBmh9M7AZt .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmh9M7AZt .carousel-item.active.left,
.cid-sBmh9M7AZt .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmh9M7AZt .carousel-item.active,
.cid-sBmh9M7AZt .carousel-item.next.left,
.cid-sBmh9M7AZt .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBmh9M7AZt .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBmh9M7AZt .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBmh9M7AZt .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBmh9M7AZt .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBmh9M7AZt .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBmh9M7AZt .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBmh9M7AZt .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBmh9M7AZt .mbr-slider .carousel-indicators li.active,
.cid-sBmh9M7AZt .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBmh9M7AZt .mbr-slider .carousel-indicators li::after,
.cid-sBmh9M7AZt .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBmh9M7AZt .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBmh9M7AZt .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBmh9M7AZt .mbr-slider > .container img {
  width: 100%;
}
.cid-sBmh9M7AZt .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-sBmh9M7AZt .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBmh9M7AZt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmh9M7AZt .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmh9M7AZt .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBmh9M7AZt .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBmh9M7AZt .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBmh9M7AZt .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBmh9M7AZt .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBmh9M7AZt .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmh9M7AZt .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBmh9M7AZt .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBmh9M7AZt .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBmh9MVSp5 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBmh9MVSp5 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBmh9MVSp5 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBmh9MVSp5 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBmh9MVSp5 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBmh9MVSp5 .section-text,
.cid-sBmh9MVSp5 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBmh9NloEY .nav-item:focus,
.cid-sBmh9NloEY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBmh9NloEY .nav-item {
    position: relative;
  }
}
.cid-sBmh9NloEY .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBmh9NloEY .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBmh9NloEY .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBmh9NloEY .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBmh9NloEY .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBmh9NloEY .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBmh9NloEY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBmh9NloEY .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmh9NloEY .navbar.collapsed .navbar-collapse.show,
.cid-sBmh9NloEY .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmh9NloEY .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBmh9NloEY .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBmh9NloEY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBmh9NloEY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBmh9NloEY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBmh9NloEY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBmh9NloEY .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBmh9NloEY .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmh9NloEY .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBmh9NloEY .navbar.collapsed .right-menu,
.cid-sBmh9NloEY .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBmh9NloEY .navbar .navbar-collapse.show,
  .cid-sBmh9NloEY .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBmh9NloEY .navbar .navbar-collapse.show .brand-container,
  .cid-sBmh9NloEY .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBmh9NloEY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBmh9NloEY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBmh9NloEY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBmh9NloEY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBmh9NloEY .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-sBmh9NloEY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBmh9NloEY .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBmh9NloEY .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBmh9NloEY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBmh9NloEY .navbar .right-menu,
  .cid-sBmh9NloEY .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBmh9NloEY .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBmh9NloEY .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBmh9NloEY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBmh9NloEY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBmh9NloEY .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBmh9NloEY .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBmh9NloEY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBmh9NloEY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBmh9NloEY .dropdown-item.active,
.cid-sBmh9NloEY .dropdown-item:active {
  background-color: transparent;
}
.cid-sBmh9NloEY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBmh9NloEY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBmh9NloEY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBmh9NloEY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBmh9NloEY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBmh9NloEY ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBmh9NloEY ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBmh9NloEY .navbar-buttons {
  margin-left: auto;
}
.cid-sBmh9NloEY button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBmh9NloEY button.navbar-toggler:hover {
  outline: none;
}
.cid-sBmh9NloEY button.navbar-toggler:active {
  outline: none;
}
.cid-sBmh9NloEY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBmh9NloEY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBmh9NloEY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmh9NloEY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmh9NloEY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBmh9NloEY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmh9NloEY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBmh9NloEY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBmh9NloEY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmh9NloEY .navbar-dropdown {
  position: fixed;
}
.cid-sBmh9NloEY a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBmh9NloEY a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBmh9NloEY a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBmh9NloEY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBmh9NloEY .right-menu,
.cid-sBmh9NloEY .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBmh9NloEY .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmh9NloEY .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmh9NloEY .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmh9NloEY .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmh9NloEY .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBmh9NloEY .card-wrapper {
  z-index: 3;
}
.cid-sBmh9NloEY .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBmh9NloEY .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBmh9NloEY .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBmh9NloEY .navbar-brand img {
  width: auto !important;
}
.cid-sBmh9O5dN4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBmh9O5dN4 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBmh9O5dN4 .copyright-section,
.cid-sBmh9O5dN4 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBmh9O5dN4 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBmh9O5dN4 .logo-section img {
  margin: 0 auto;
}
.cid-sBmh9O5dN4 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBmh9O5dN4 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBmh9O5dN4 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBmh9O5dN4 .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBmh9O5dN4 .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBmh9O5dN4 .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBmh9O5dN4 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBmh9O5dN4 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBmh9O5dN4 .copyright-section {
    order: 1;
  }
  .cid-sBmh9O5dN4 .copyright-section hr {
    display: none;
  }
  .cid-sBmh9O5dN4 .social-media {
    margin-top: 30px;
  }
  .cid-sBmh9O5dN4 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBmh9O5dN4 .line {
    margin: 25px 0;
  }
  .cid-sBmh9O5dN4 .mobirise-rights,
  .cid-sBmh9O5dN4 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBmh9O5dN4 .mbr-text,
.cid-sBmh9O5dN4 .copyright-section {
  color: #272727;
}
.cid-sBQfZBs9G7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBQfZBs9G7 H1 {
  color: #000000;
}
.cid-sBQfZBs9G7 .mbr-text,
.cid-sBQfZBs9G7 .mbr-section-btn {
  color: #000000;
}
.cid-sBQfZBs9G7 .mbr-subtitle {
  color: #000000;
}
.cid-sBQfZBs9G7 .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBQfZBs9G7 .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBmq0Y9Ebj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmq0Y9Ebj .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmq0Y9Ebj .container-table {
  margin: 0 auto;
}
.cid-sBmq0Y9Ebj .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmq0Y9Ebj .dataTables_wrapper {
  display: block;
}
.cid-sBmq0Y9Ebj .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmq0Y9Ebj .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmq0Y9Ebj table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmq0Y9Ebj table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmq0Y9Ebj table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmq0Y9Ebj table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmq0Y9Ebj table.table {
  background: #ffffff;
}
.cid-sBmq0Y9Ebj .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmq0Y9Ebj .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmq0Y9Ebj .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmq0Y9Ebj .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmq0Y9Ebj .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmq0Y9Ebj .dataTables_filter {
    text-align: center;
  }
  .cid-sBmq0Y9Ebj .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmq0Y9Ebj LABEL {
  text-align: center;
}
.cid-sBmq0Y9Ebj .head-item {
  color: #f7bd50;
}
.cid-sBmq0YTOHa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmq0YTOHa .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmq0YTOHa .container-table {
  margin: 0 auto;
}
.cid-sBmq0YTOHa .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmq0YTOHa .dataTables_wrapper {
  display: block;
}
.cid-sBmq0YTOHa .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmq0YTOHa .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmq0YTOHa table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmq0YTOHa table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmq0YTOHa table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmq0YTOHa table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmq0YTOHa table.table {
  background: #ffffff;
}
.cid-sBmq0YTOHa .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmq0YTOHa .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmq0YTOHa .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmq0YTOHa .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmq0YTOHa .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmq0YTOHa .dataTables_filter {
    text-align: center;
  }
  .cid-sBmq0YTOHa .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmq0YTOHa LABEL {
  text-align: center;
}
.cid-sBmq0YTOHa .body-item {
  text-align: left;
}
.cid-sBmq0ZoBPh .modal-body .close {
  background: #1b1b1b;
}
.cid-sBmq0ZoBPh .modal-body .close span {
  font-style: normal;
}
.cid-sBmq0ZoBPh .carousel-inner > .active,
.cid-sBmq0ZoBPh .carousel-inner > .next,
.cid-sBmq0ZoBPh .carousel-inner > .prev {
  display: flex;
}
.cid-sBmq0ZoBPh .carousel-control .icon-next,
.cid-sBmq0ZoBPh .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBmq0ZoBPh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBmq0ZoBPh .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmq0ZoBPh .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBmq0ZoBPh .boxed-slider > div {
  position: relative;
}
.cid-sBmq0ZoBPh .container img {
  width: 100%;
}
.cid-sBmq0ZoBPh .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-sBmq0ZoBPh .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmq0ZoBPh .mbr-table-cell {
  padding: 0;
}
.cid-sBmq0ZoBPh .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBmq0ZoBPh .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-sBmq0ZoBPh .mbr-overlay {
  z-index: 1;
}
.cid-sBmq0ZoBPh .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmq0ZoBPh .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBmq0ZoBPh .carousel-item.active.right,
.cid-sBmq0ZoBPh .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmq0ZoBPh .carousel-item.active.left,
.cid-sBmq0ZoBPh .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmq0ZoBPh .carousel-item.active,
.cid-sBmq0ZoBPh .carousel-item.next.left,
.cid-sBmq0ZoBPh .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBmq0ZoBPh .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBmq0ZoBPh .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBmq0ZoBPh .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBmq0ZoBPh .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBmq0ZoBPh .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBmq0ZoBPh .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBmq0ZoBPh .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBmq0ZoBPh .mbr-slider .carousel-indicators li.active,
.cid-sBmq0ZoBPh .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBmq0ZoBPh .mbr-slider .carousel-indicators li::after,
.cid-sBmq0ZoBPh .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBmq0ZoBPh .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBmq0ZoBPh .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBmq0ZoBPh .mbr-slider > .container img {
  width: 100%;
}
.cid-sBmq0ZoBPh .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-sBmq0ZoBPh .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBmq0ZoBPh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmq0ZoBPh .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmq0ZoBPh .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBmq0ZoBPh .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBmq0ZoBPh .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBmq0ZoBPh .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBmq0ZoBPh .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBmq0ZoBPh .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmq0ZoBPh .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBmq0ZoBPh .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBmq0ZoBPh .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBmq10hpop {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBmq10hpop .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBmq10hpop .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBmq10hpop .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBmq10hpop H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBmq10hpop .section-text,
.cid-sBmq10hpop .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBmq10IRSz .nav-item:focus,
.cid-sBmq10IRSz .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBmq10IRSz .nav-item {
    position: relative;
  }
}
.cid-sBmq10IRSz .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBmq10IRSz .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBmq10IRSz .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBmq10IRSz .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBmq10IRSz .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBmq10IRSz .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBmq10IRSz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBmq10IRSz .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmq10IRSz .navbar.collapsed .navbar-collapse.show,
.cid-sBmq10IRSz .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmq10IRSz .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBmq10IRSz .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBmq10IRSz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBmq10IRSz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBmq10IRSz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBmq10IRSz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBmq10IRSz .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBmq10IRSz .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmq10IRSz .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBmq10IRSz .navbar.collapsed .right-menu,
.cid-sBmq10IRSz .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBmq10IRSz .navbar .navbar-collapse.show,
  .cid-sBmq10IRSz .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBmq10IRSz .navbar .navbar-collapse.show .brand-container,
  .cid-sBmq10IRSz .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBmq10IRSz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBmq10IRSz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBmq10IRSz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBmq10IRSz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBmq10IRSz .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-sBmq10IRSz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBmq10IRSz .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBmq10IRSz .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBmq10IRSz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBmq10IRSz .navbar .right-menu,
  .cid-sBmq10IRSz .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBmq10IRSz .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBmq10IRSz .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBmq10IRSz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBmq10IRSz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBmq10IRSz .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBmq10IRSz .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBmq10IRSz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBmq10IRSz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBmq10IRSz .dropdown-item.active,
.cid-sBmq10IRSz .dropdown-item:active {
  background-color: transparent;
}
.cid-sBmq10IRSz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBmq10IRSz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBmq10IRSz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBmq10IRSz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBmq10IRSz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBmq10IRSz ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBmq10IRSz ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBmq10IRSz .navbar-buttons {
  margin-left: auto;
}
.cid-sBmq10IRSz button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBmq10IRSz button.navbar-toggler:hover {
  outline: none;
}
.cid-sBmq10IRSz button.navbar-toggler:active {
  outline: none;
}
.cid-sBmq10IRSz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBmq10IRSz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBmq10IRSz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmq10IRSz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmq10IRSz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBmq10IRSz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmq10IRSz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBmq10IRSz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBmq10IRSz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmq10IRSz .navbar-dropdown {
  position: fixed;
}
.cid-sBmq10IRSz a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBmq10IRSz a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBmq10IRSz a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBmq10IRSz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBmq10IRSz .right-menu,
.cid-sBmq10IRSz .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBmq10IRSz .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmq10IRSz .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmq10IRSz .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmq10IRSz .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmq10IRSz .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBmq10IRSz .card-wrapper {
  z-index: 3;
}
.cid-sBmq10IRSz .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBmq10IRSz .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBmq10IRSz .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBmq10IRSz .navbar-brand img {
  width: auto !important;
}
.cid-sBmq11glEP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBmq11glEP .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBmq11glEP .copyright-section,
.cid-sBmq11glEP .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBmq11glEP .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBmq11glEP .logo-section img {
  margin: 0 auto;
}
.cid-sBmq11glEP .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBmq11glEP .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBmq11glEP .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBmq11glEP .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBmq11glEP .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBmq11glEP .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBmq11glEP .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBmq11glEP .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBmq11glEP .copyright-section {
    order: 1;
  }
  .cid-sBmq11glEP .copyright-section hr {
    display: none;
  }
  .cid-sBmq11glEP .social-media {
    margin-top: 30px;
  }
  .cid-sBmq11glEP .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBmq11glEP .line {
    margin: 25px 0;
  }
  .cid-sBmq11glEP .mobirise-rights,
  .cid-sBmq11glEP .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBmq11glEP .mbr-text,
.cid-sBmq11glEP .copyright-section {
  color: #272727;
}
.cid-sBQfIOAAAP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBQfIOAAAP H1 {
  color: #000000;
}
.cid-sBQfIOAAAP .mbr-text,
.cid-sBQfIOAAAP .mbr-section-btn {
  color: #000000;
}
.cid-sBQfIOAAAP .mbr-subtitle {
  color: #000000;
}
.cid-sBQfIOAAAP .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBQfIOAAAP .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBmqZoHvPn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmqZoHvPn .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmqZoHvPn .container-table {
  margin: 0 auto;
}
.cid-sBmqZoHvPn .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmqZoHvPn .dataTables_wrapper {
  display: block;
}
.cid-sBmqZoHvPn .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmqZoHvPn .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmqZoHvPn table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmqZoHvPn table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmqZoHvPn table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmqZoHvPn table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmqZoHvPn table.table {
  background: #ffffff;
}
.cid-sBmqZoHvPn .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmqZoHvPn .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmqZoHvPn .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmqZoHvPn .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmqZoHvPn .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmqZoHvPn .dataTables_filter {
    text-align: center;
  }
  .cid-sBmqZoHvPn .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmqZoHvPn LABEL {
  text-align: center;
}
.cid-sBmqZoHvPn .head-item {
  color: #f7bd50;
}
.cid-sBmqZpo8V8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmqZpo8V8 .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmqZpo8V8 .container-table {
  margin: 0 auto;
}
.cid-sBmqZpo8V8 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmqZpo8V8 .dataTables_wrapper {
  display: block;
}
.cid-sBmqZpo8V8 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmqZpo8V8 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmqZpo8V8 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmqZpo8V8 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmqZpo8V8 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmqZpo8V8 table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmqZpo8V8 table.table {
  background: #ffffff;
}
.cid-sBmqZpo8V8 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmqZpo8V8 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmqZpo8V8 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmqZpo8V8 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmqZpo8V8 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmqZpo8V8 .dataTables_filter {
    text-align: center;
  }
  .cid-sBmqZpo8V8 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmqZpo8V8 LABEL {
  text-align: center;
}
.cid-sBmqZpo8V8 .body-item {
  text-align: left;
}
.cid-sBmqZpS7ki .modal-body .close {
  background: #1b1b1b;
}
.cid-sBmqZpS7ki .modal-body .close span {
  font-style: normal;
}
.cid-sBmqZpS7ki .carousel-inner > .active,
.cid-sBmqZpS7ki .carousel-inner > .next,
.cid-sBmqZpS7ki .carousel-inner > .prev {
  display: flex;
}
.cid-sBmqZpS7ki .carousel-control .icon-next,
.cid-sBmqZpS7ki .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBmqZpS7ki .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBmqZpS7ki .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmqZpS7ki .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBmqZpS7ki .boxed-slider > div {
  position: relative;
}
.cid-sBmqZpS7ki .container img {
  width: 100%;
}
.cid-sBmqZpS7ki .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-sBmqZpS7ki .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmqZpS7ki .mbr-table-cell {
  padding: 0;
}
.cid-sBmqZpS7ki .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBmqZpS7ki .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-sBmqZpS7ki .mbr-overlay {
  z-index: 1;
}
.cid-sBmqZpS7ki .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmqZpS7ki .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBmqZpS7ki .carousel-item.active.right,
.cid-sBmqZpS7ki .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmqZpS7ki .carousel-item.active.left,
.cid-sBmqZpS7ki .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmqZpS7ki .carousel-item.active,
.cid-sBmqZpS7ki .carousel-item.next.left,
.cid-sBmqZpS7ki .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBmqZpS7ki .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBmqZpS7ki .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBmqZpS7ki .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBmqZpS7ki .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBmqZpS7ki .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBmqZpS7ki .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBmqZpS7ki .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBmqZpS7ki .mbr-slider .carousel-indicators li.active,
.cid-sBmqZpS7ki .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBmqZpS7ki .mbr-slider .carousel-indicators li::after,
.cid-sBmqZpS7ki .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBmqZpS7ki .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBmqZpS7ki .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBmqZpS7ki .mbr-slider > .container img {
  width: 100%;
}
.cid-sBmqZpS7ki .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-sBmqZpS7ki .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBmqZpS7ki .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmqZpS7ki .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmqZpS7ki .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBmqZpS7ki .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBmqZpS7ki .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBmqZpS7ki .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBmqZpS7ki .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBmqZpS7ki .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmqZpS7ki .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBmqZpS7ki .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBmqZpS7ki .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBmqZqLU7m {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBmqZqLU7m .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBmqZqLU7m .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBmqZqLU7m .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBmqZqLU7m H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBmqZqLU7m .section-text,
.cid-sBmqZqLU7m .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBmqZrdESR .nav-item:focus,
.cid-sBmqZrdESR .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBmqZrdESR .nav-item {
    position: relative;
  }
}
.cid-sBmqZrdESR .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBmqZrdESR .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBmqZrdESR .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBmqZrdESR .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBmqZrdESR .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBmqZrdESR .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBmqZrdESR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBmqZrdESR .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmqZrdESR .navbar.collapsed .navbar-collapse.show,
.cid-sBmqZrdESR .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmqZrdESR .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBmqZrdESR .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBmqZrdESR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBmqZrdESR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBmqZrdESR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBmqZrdESR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBmqZrdESR .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBmqZrdESR .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmqZrdESR .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBmqZrdESR .navbar.collapsed .right-menu,
.cid-sBmqZrdESR .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBmqZrdESR .navbar .navbar-collapse.show,
  .cid-sBmqZrdESR .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBmqZrdESR .navbar .navbar-collapse.show .brand-container,
  .cid-sBmqZrdESR .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBmqZrdESR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBmqZrdESR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBmqZrdESR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBmqZrdESR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBmqZrdESR .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-sBmqZrdESR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBmqZrdESR .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBmqZrdESR .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBmqZrdESR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBmqZrdESR .navbar .right-menu,
  .cid-sBmqZrdESR .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBmqZrdESR .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBmqZrdESR .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBmqZrdESR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBmqZrdESR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBmqZrdESR .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBmqZrdESR .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBmqZrdESR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBmqZrdESR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBmqZrdESR .dropdown-item.active,
.cid-sBmqZrdESR .dropdown-item:active {
  background-color: transparent;
}
.cid-sBmqZrdESR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBmqZrdESR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBmqZrdESR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBmqZrdESR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBmqZrdESR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBmqZrdESR ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBmqZrdESR ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBmqZrdESR .navbar-buttons {
  margin-left: auto;
}
.cid-sBmqZrdESR button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBmqZrdESR button.navbar-toggler:hover {
  outline: none;
}
.cid-sBmqZrdESR button.navbar-toggler:active {
  outline: none;
}
.cid-sBmqZrdESR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBmqZrdESR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBmqZrdESR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmqZrdESR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmqZrdESR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBmqZrdESR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmqZrdESR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBmqZrdESR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBmqZrdESR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmqZrdESR .navbar-dropdown {
  position: fixed;
}
.cid-sBmqZrdESR a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBmqZrdESR a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBmqZrdESR a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBmqZrdESR .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBmqZrdESR .right-menu,
.cid-sBmqZrdESR .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBmqZrdESR .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmqZrdESR .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmqZrdESR .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmqZrdESR .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmqZrdESR .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBmqZrdESR .card-wrapper {
  z-index: 3;
}
.cid-sBmqZrdESR .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBmqZrdESR .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBmqZrdESR .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBmqZrdESR .navbar-brand img {
  width: auto !important;
}
.cid-sBmqZrLVZr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBmqZrLVZr .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBmqZrLVZr .copyright-section,
.cid-sBmqZrLVZr .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBmqZrLVZr .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBmqZrLVZr .logo-section img {
  margin: 0 auto;
}
.cid-sBmqZrLVZr .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBmqZrLVZr .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBmqZrLVZr .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBmqZrLVZr .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBmqZrLVZr .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBmqZrLVZr .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBmqZrLVZr .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBmqZrLVZr .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBmqZrLVZr .copyright-section {
    order: 1;
  }
  .cid-sBmqZrLVZr .copyright-section hr {
    display: none;
  }
  .cid-sBmqZrLVZr .social-media {
    margin-top: 30px;
  }
  .cid-sBmqZrLVZr .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBmqZrLVZr .line {
    margin: 25px 0;
  }
  .cid-sBmqZrLVZr .mobirise-rights,
  .cid-sBmqZrLVZr .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBmqZrLVZr .mbr-text,
.cid-sBmqZrLVZr .copyright-section {
  color: #272727;
}
.cid-sBP9rRramN {
  padding-top: 135px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/e46fdecf-ffca-4d1e-8942-af210625283f-746x517.jpg");
}
.cid-sBP9rRramN H1 {
  color: #000000;
}
.cid-sBP9rRramN .mbr-text,
.cid-sBP9rRramN .mbr-section-btn {
  color: #000000;
}
.cid-sBP9rRramN .mbr-subtitle {
  color: #000000;
}
.cid-sBP9rRramN .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBP9rRramN .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBOEVhQvWm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBOEVhQvWm .mbr-section-subtitle {
  color: #767676;
}
.cid-sBOEVhQvWm .container-table {
  margin: 0 auto;
}
.cid-sBOEVhQvWm .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBOEVhQvWm .dataTables_wrapper {
  display: block;
}
.cid-sBOEVhQvWm .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBOEVhQvWm .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBOEVhQvWm table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBOEVhQvWm table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBOEVhQvWm table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBOEVhQvWm table td {
  border-top: 1px solid #cccccc;
}
.cid-sBOEVhQvWm table.table {
  background: #ffffff;
}
.cid-sBOEVhQvWm .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBOEVhQvWm .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBOEVhQvWm .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBOEVhQvWm .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBOEVhQvWm .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBOEVhQvWm .dataTables_filter {
    text-align: center;
  }
  .cid-sBOEVhQvWm .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBOEVhQvWm LABEL {
  text-align: center;
}
.cid-sBOEVhQvWm .head-item {
  color: #f7bd50;
}
.cid-sBOEVimhF1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBOEVimhF1 .mbr-section-subtitle {
  color: #767676;
}
.cid-sBOEVimhF1 .container-table {
  margin: 0 auto;
}
.cid-sBOEVimhF1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBOEVimhF1 .dataTables_wrapper {
  display: block;
}
.cid-sBOEVimhF1 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBOEVimhF1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBOEVimhF1 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBOEVimhF1 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBOEVimhF1 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBOEVimhF1 table td {
  border-top: 1px solid #cccccc;
}
.cid-sBOEVimhF1 table.table {
  background: #ffffff;
}
.cid-sBOEVimhF1 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBOEVimhF1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBOEVimhF1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBOEVimhF1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBOEVimhF1 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBOEVimhF1 .dataTables_filter {
    text-align: center;
  }
  .cid-sBOEVimhF1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBOEVimhF1 LABEL {
  text-align: center;
}
.cid-sBOEVimhF1 .body-item {
  text-align: left;
}
.cid-sBOEVimhF1 .head-item {
  color: #f7bd50;
}
.cid-sBOEViTEt1 .modal-body .close {
  background: #1b1b1b;
}
.cid-sBOEViTEt1 .modal-body .close span {
  font-style: normal;
}
.cid-sBOEViTEt1 .carousel-inner > .active,
.cid-sBOEViTEt1 .carousel-inner > .next,
.cid-sBOEViTEt1 .carousel-inner > .prev {
  display: flex;
}
.cid-sBOEViTEt1 .carousel-control .icon-next,
.cid-sBOEViTEt1 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBOEViTEt1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBOEViTEt1 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBOEViTEt1 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBOEViTEt1 .boxed-slider > div {
  position: relative;
}
.cid-sBOEViTEt1 .container img {
  width: 100%;
}
.cid-sBOEViTEt1 .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-sBOEViTEt1 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBOEViTEt1 .mbr-table-cell {
  padding: 0;
}
.cid-sBOEViTEt1 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBOEViTEt1 .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-sBOEViTEt1 .mbr-overlay {
  z-index: 1;
}
.cid-sBOEViTEt1 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBOEViTEt1 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBOEViTEt1 .carousel-item.active.right,
.cid-sBOEViTEt1 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBOEViTEt1 .carousel-item.active.left,
.cid-sBOEViTEt1 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBOEViTEt1 .carousel-item.active,
.cid-sBOEViTEt1 .carousel-item.next.left,
.cid-sBOEViTEt1 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBOEViTEt1 .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBOEViTEt1 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBOEViTEt1 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBOEViTEt1 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBOEViTEt1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBOEViTEt1 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBOEViTEt1 .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBOEViTEt1 .mbr-slider .carousel-indicators li.active,
.cid-sBOEViTEt1 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBOEViTEt1 .mbr-slider .carousel-indicators li::after,
.cid-sBOEViTEt1 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBOEViTEt1 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBOEViTEt1 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBOEViTEt1 .mbr-slider > .container img {
  width: 100%;
}
.cid-sBOEViTEt1 .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-sBOEViTEt1 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBOEViTEt1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBOEViTEt1 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBOEViTEt1 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBOEViTEt1 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBOEViTEt1 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBOEViTEt1 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBOEViTEt1 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBOEViTEt1 .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBOEViTEt1 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBOEViTEt1 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBOEViTEt1 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBOEVjHODm {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBOEVjHODm .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBOEVjHODm .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBOEVjHODm .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBOEVjHODm H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBOEVjHODm .section-text,
.cid-sBOEVjHODm .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBOEVkbDui .nav-item:focus,
.cid-sBOEVkbDui .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBOEVkbDui .nav-item {
    position: relative;
  }
}
.cid-sBOEVkbDui .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBOEVkbDui .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBOEVkbDui .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBOEVkbDui .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBOEVkbDui .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBOEVkbDui .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBOEVkbDui .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBOEVkbDui .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBOEVkbDui .navbar.collapsed .navbar-collapse.show,
.cid-sBOEVkbDui .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBOEVkbDui .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBOEVkbDui .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBOEVkbDui .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBOEVkbDui .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBOEVkbDui .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBOEVkbDui .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBOEVkbDui .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBOEVkbDui .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBOEVkbDui .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBOEVkbDui .navbar.collapsed .right-menu,
.cid-sBOEVkbDui .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBOEVkbDui .navbar .navbar-collapse.show,
  .cid-sBOEVkbDui .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBOEVkbDui .navbar .navbar-collapse.show .brand-container,
  .cid-sBOEVkbDui .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBOEVkbDui .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBOEVkbDui .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBOEVkbDui .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBOEVkbDui .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBOEVkbDui .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-sBOEVkbDui .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBOEVkbDui .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBOEVkbDui .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBOEVkbDui .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBOEVkbDui .navbar .right-menu,
  .cid-sBOEVkbDui .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBOEVkbDui .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBOEVkbDui .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBOEVkbDui .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBOEVkbDui .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBOEVkbDui .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBOEVkbDui .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBOEVkbDui .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBOEVkbDui .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBOEVkbDui .dropdown-item.active,
.cid-sBOEVkbDui .dropdown-item:active {
  background-color: transparent;
}
.cid-sBOEVkbDui .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBOEVkbDui .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBOEVkbDui .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBOEVkbDui .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBOEVkbDui .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBOEVkbDui ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBOEVkbDui ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBOEVkbDui .navbar-buttons {
  margin-left: auto;
}
.cid-sBOEVkbDui button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBOEVkbDui button.navbar-toggler:hover {
  outline: none;
}
.cid-sBOEVkbDui button.navbar-toggler:active {
  outline: none;
}
.cid-sBOEVkbDui button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBOEVkbDui button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBOEVkbDui button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBOEVkbDui button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBOEVkbDui button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBOEVkbDui nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBOEVkbDui nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBOEVkbDui nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBOEVkbDui nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBOEVkbDui .navbar-dropdown {
  position: fixed;
}
.cid-sBOEVkbDui a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBOEVkbDui a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBOEVkbDui a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBOEVkbDui .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBOEVkbDui .right-menu,
.cid-sBOEVkbDui .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBOEVkbDui .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBOEVkbDui .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBOEVkbDui .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBOEVkbDui .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBOEVkbDui .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBOEVkbDui .card-wrapper {
  z-index: 3;
}
.cid-sBOEVkbDui .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBOEVkbDui .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBOEVkbDui .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBOEVkbDui .navbar-brand img {
  width: auto !important;
}
.cid-sBOEVkIodd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBOEVkIodd .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBOEVkIodd .copyright-section,
.cid-sBOEVkIodd .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBOEVkIodd .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBOEVkIodd .logo-section img {
  margin: 0 auto;
}
.cid-sBOEVkIodd .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBOEVkIodd .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBOEVkIodd .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBOEVkIodd .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBOEVkIodd .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBOEVkIodd .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBOEVkIodd .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBOEVkIodd .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBOEVkIodd .copyright-section {
    order: 1;
  }
  .cid-sBOEVkIodd .copyright-section hr {
    display: none;
  }
  .cid-sBOEVkIodd .social-media {
    margin-top: 30px;
  }
  .cid-sBOEVkIodd .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBOEVkIodd .line {
    margin: 25px 0;
  }
  .cid-sBOEVkIodd .mobirise-rights,
  .cid-sBOEVkIodd .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBOEVkIodd .mbr-text,
.cid-sBOEVkIodd .copyright-section {
  color: #272727;
}
.cid-sBVIsZkJtC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBVIsZkJtC H1 {
  color: #000000;
}
.cid-sBVIsZkJtC .mbr-text,
.cid-sBVIsZkJtC .mbr-section-btn {
  color: #000000;
}
.cid-sBVIsZkJtC .mbr-subtitle {
  color: #000000;
}
.cid-sBVIsZkJtC .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBVIsZkJtC .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBVIt05jZt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBVIt05jZt .mbr-section-subtitle {
  color: #767676;
}
.cid-sBVIt05jZt .container-table {
  margin: 0 auto;
}
.cid-sBVIt05jZt .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBVIt05jZt .dataTables_wrapper {
  display: block;
}
.cid-sBVIt05jZt .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBVIt05jZt .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBVIt05jZt table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBVIt05jZt table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBVIt05jZt table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBVIt05jZt table td {
  border-top: 1px solid #cccccc;
}
.cid-sBVIt05jZt table.table {
  background: #ffffff;
}
.cid-sBVIt05jZt .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBVIt05jZt .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBVIt05jZt .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBVIt05jZt .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBVIt05jZt .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBVIt05jZt .dataTables_filter {
    text-align: center;
  }
  .cid-sBVIt05jZt .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBVIt05jZt LABEL {
  text-align: center;
}
.cid-sBVIt05jZt .head-item {
  color: #f7bd50;
}
.cid-sBVIt0BPyV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBVIt0BPyV .mbr-section-subtitle {
  color: #767676;
}
.cid-sBVIt0BPyV .container-table {
  margin: 0 auto;
}
.cid-sBVIt0BPyV .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBVIt0BPyV .dataTables_wrapper {
  display: block;
}
.cid-sBVIt0BPyV .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBVIt0BPyV .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBVIt0BPyV table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBVIt0BPyV table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBVIt0BPyV table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBVIt0BPyV table td {
  border-top: 1px solid #cccccc;
}
.cid-sBVIt0BPyV table.table {
  background: #ffffff;
}
.cid-sBVIt0BPyV .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBVIt0BPyV .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBVIt0BPyV .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBVIt0BPyV .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBVIt0BPyV .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBVIt0BPyV .dataTables_filter {
    text-align: center;
  }
  .cid-sBVIt0BPyV .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBVIt0BPyV LABEL {
  text-align: center;
}
.cid-sBVIt0BPyV .body-item {
  text-align: left;
}
.cid-sBVIt175ST .modal-body .close {
  background: #1b1b1b;
}
.cid-sBVIt175ST .modal-body .close span {
  font-style: normal;
}
.cid-sBVIt175ST .carousel-inner > .active,
.cid-sBVIt175ST .carousel-inner > .next,
.cid-sBVIt175ST .carousel-inner > .prev {
  display: flex;
}
.cid-sBVIt175ST .carousel-control .icon-next,
.cid-sBVIt175ST .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBVIt175ST .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBVIt175ST .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBVIt175ST .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBVIt175ST .boxed-slider > div {
  position: relative;
}
.cid-sBVIt175ST .container img {
  width: 100%;
}
.cid-sBVIt175ST .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-sBVIt175ST .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBVIt175ST .mbr-table-cell {
  padding: 0;
}
.cid-sBVIt175ST .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBVIt175ST .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-sBVIt175ST .mbr-overlay {
  z-index: 1;
}
.cid-sBVIt175ST .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBVIt175ST .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBVIt175ST .carousel-item.active.right,
.cid-sBVIt175ST .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBVIt175ST .carousel-item.active.left,
.cid-sBVIt175ST .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBVIt175ST .carousel-item.active,
.cid-sBVIt175ST .carousel-item.next.left,
.cid-sBVIt175ST .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBVIt175ST .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBVIt175ST .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBVIt175ST .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBVIt175ST .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBVIt175ST .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBVIt175ST .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBVIt175ST .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBVIt175ST .mbr-slider .carousel-indicators li.active,
.cid-sBVIt175ST .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBVIt175ST .mbr-slider .carousel-indicators li::after,
.cid-sBVIt175ST .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBVIt175ST .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBVIt175ST .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBVIt175ST .mbr-slider > .container img {
  width: 100%;
}
.cid-sBVIt175ST .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-sBVIt175ST .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBVIt175ST .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBVIt175ST .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBVIt175ST .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBVIt175ST .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBVIt175ST .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBVIt175ST .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBVIt175ST .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBVIt175ST .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBVIt175ST .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBVIt175ST .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBVIt175ST .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBVIt1XSsC {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBVIt1XSsC .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBVIt1XSsC .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBVIt1XSsC .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBVIt1XSsC H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBVIt1XSsC .section-text,
.cid-sBVIt1XSsC .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBVIt2plEe .nav-item:focus,
.cid-sBVIt2plEe .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBVIt2plEe .nav-item {
    position: relative;
  }
}
.cid-sBVIt2plEe .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBVIt2plEe .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBVIt2plEe .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBVIt2plEe .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBVIt2plEe .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBVIt2plEe .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBVIt2plEe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBVIt2plEe .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBVIt2plEe .navbar.collapsed .navbar-collapse.show,
.cid-sBVIt2plEe .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBVIt2plEe .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBVIt2plEe .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBVIt2plEe .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBVIt2plEe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBVIt2plEe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBVIt2plEe .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBVIt2plEe .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBVIt2plEe .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBVIt2plEe .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBVIt2plEe .navbar.collapsed .right-menu,
.cid-sBVIt2plEe .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBVIt2plEe .navbar .navbar-collapse.show,
  .cid-sBVIt2plEe .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBVIt2plEe .navbar .navbar-collapse.show .brand-container,
  .cid-sBVIt2plEe .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBVIt2plEe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBVIt2plEe .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBVIt2plEe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBVIt2plEe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBVIt2plEe .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-sBVIt2plEe .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBVIt2plEe .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBVIt2plEe .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBVIt2plEe .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBVIt2plEe .navbar .right-menu,
  .cid-sBVIt2plEe .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBVIt2plEe .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBVIt2plEe .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBVIt2plEe .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBVIt2plEe .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBVIt2plEe .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBVIt2plEe .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBVIt2plEe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBVIt2plEe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBVIt2plEe .dropdown-item.active,
.cid-sBVIt2plEe .dropdown-item:active {
  background-color: transparent;
}
.cid-sBVIt2plEe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBVIt2plEe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBVIt2plEe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBVIt2plEe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBVIt2plEe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBVIt2plEe ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBVIt2plEe ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBVIt2plEe .navbar-buttons {
  margin-left: auto;
}
.cid-sBVIt2plEe button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBVIt2plEe button.navbar-toggler:hover {
  outline: none;
}
.cid-sBVIt2plEe button.navbar-toggler:active {
  outline: none;
}
.cid-sBVIt2plEe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBVIt2plEe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBVIt2plEe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBVIt2plEe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBVIt2plEe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBVIt2plEe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBVIt2plEe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBVIt2plEe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBVIt2plEe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBVIt2plEe .navbar-dropdown {
  position: fixed;
}
.cid-sBVIt2plEe a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBVIt2plEe a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBVIt2plEe a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBVIt2plEe .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBVIt2plEe .right-menu,
.cid-sBVIt2plEe .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBVIt2plEe .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBVIt2plEe .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBVIt2plEe .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBVIt2plEe .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBVIt2plEe .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBVIt2plEe .card-wrapper {
  z-index: 3;
}
.cid-sBVIt2plEe .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBVIt2plEe .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBVIt2plEe .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBVIt2plEe .navbar-brand img {
  width: auto !important;
}
.cid-sBVIt2YS59 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBVIt2YS59 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBVIt2YS59 .copyright-section,
.cid-sBVIt2YS59 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBVIt2YS59 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBVIt2YS59 .logo-section img {
  margin: 0 auto;
}
.cid-sBVIt2YS59 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBVIt2YS59 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBVIt2YS59 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBVIt2YS59 .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBVIt2YS59 .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBVIt2YS59 .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBVIt2YS59 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBVIt2YS59 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBVIt2YS59 .copyright-section {
    order: 1;
  }
  .cid-sBVIt2YS59 .copyright-section hr {
    display: none;
  }
  .cid-sBVIt2YS59 .social-media {
    margin-top: 30px;
  }
  .cid-sBVIt2YS59 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBVIt2YS59 .line {
    margin: 25px 0;
  }
  .cid-sBVIt2YS59 .mobirise-rights,
  .cid-sBVIt2YS59 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBVIt2YS59 .mbr-text,
.cid-sBVIt2YS59 .copyright-section {
  color: #272727;
}
.cid-sBVKBSB92x {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/lepaon-1904x668.jpg");
}
.cid-sBVKBSB92x H1 {
  color: #000000;
}
.cid-sBVKBSB92x .mbr-text,
.cid-sBVKBSB92x .mbr-section-btn {
  color: #000000;
}
.cid-sBVKBSB92x .mbr-subtitle {
  color: #000000;
}
.cid-sBVKBSB92x .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBVKBSB92x .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBVKBSB92x .mbr-section-title,
.cid-sBVKBSB92x .mbr-section-btn {
  color: #000000;
}
.cid-sBVKBTggoo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBVKBTggoo .mbr-section-subtitle {
  color: #767676;
}
.cid-sBVKBTggoo .container-table {
  margin: 0 auto;
}
.cid-sBVKBTggoo .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBVKBTggoo .dataTables_wrapper {
  display: block;
}
.cid-sBVKBTggoo .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBVKBTggoo .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBVKBTggoo table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBVKBTggoo table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBVKBTggoo table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBVKBTggoo table td {
  border-top: 1px solid #cccccc;
}
.cid-sBVKBTggoo table.table {
  background: #ffffff;
}
.cid-sBVKBTggoo .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBVKBTggoo .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBVKBTggoo .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBVKBTggoo .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBVKBTggoo .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBVKBTggoo .dataTables_filter {
    text-align: center;
  }
  .cid-sBVKBTggoo .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBVKBTggoo LABEL {
  text-align: center;
}
.cid-sBVKBTggoo .head-item {
  color: #f7bd50;
}
.cid-sBVKBTX3Xp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBVKBTX3Xp .mbr-section-subtitle {
  color: #767676;
}
.cid-sBVKBTX3Xp .container-table {
  margin: 0 auto;
}
.cid-sBVKBTX3Xp .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBVKBTX3Xp .dataTables_wrapper {
  display: block;
}
.cid-sBVKBTX3Xp .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBVKBTX3Xp .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBVKBTX3Xp table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBVKBTX3Xp table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBVKBTX3Xp table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBVKBTX3Xp table td {
  border-top: 1px solid #cccccc;
}
.cid-sBVKBTX3Xp table.table {
  background: #ffffff;
}
.cid-sBVKBTX3Xp .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBVKBTX3Xp .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBVKBTX3Xp .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBVKBTX3Xp .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBVKBTX3Xp .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBVKBTX3Xp .dataTables_filter {
    text-align: center;
  }
  .cid-sBVKBTX3Xp .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBVKBTX3Xp LABEL {
  text-align: center;
}
.cid-sBVKBTX3Xp .body-item {
  text-align: left;
}
.cid-sBVKBTX3Xp .head-item {
  color: #f7bd50;
}
.cid-sBVKBUt1aA .modal-body .close {
  background: #1b1b1b;
}
.cid-sBVKBUt1aA .modal-body .close span {
  font-style: normal;
}
.cid-sBVKBUt1aA .carousel-inner > .active,
.cid-sBVKBUt1aA .carousel-inner > .next,
.cid-sBVKBUt1aA .carousel-inner > .prev {
  display: flex;
}
.cid-sBVKBUt1aA .carousel-control .icon-next,
.cid-sBVKBUt1aA .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBVKBUt1aA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBVKBUt1aA .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBVKBUt1aA .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBVKBUt1aA .boxed-slider > div {
  position: relative;
}
.cid-sBVKBUt1aA .container img {
  width: 100%;
}
.cid-sBVKBUt1aA .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-sBVKBUt1aA .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBVKBUt1aA .mbr-table-cell {
  padding: 0;
}
.cid-sBVKBUt1aA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBVKBUt1aA .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-sBVKBUt1aA .mbr-overlay {
  z-index: 1;
}
.cid-sBVKBUt1aA .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBVKBUt1aA .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBVKBUt1aA .carousel-item.active.right,
.cid-sBVKBUt1aA .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBVKBUt1aA .carousel-item.active.left,
.cid-sBVKBUt1aA .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBVKBUt1aA .carousel-item.active,
.cid-sBVKBUt1aA .carousel-item.next.left,
.cid-sBVKBUt1aA .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBVKBUt1aA .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBVKBUt1aA .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBVKBUt1aA .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBVKBUt1aA .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBVKBUt1aA .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBVKBUt1aA .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBVKBUt1aA .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBVKBUt1aA .mbr-slider .carousel-indicators li.active,
.cid-sBVKBUt1aA .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBVKBUt1aA .mbr-slider .carousel-indicators li::after,
.cid-sBVKBUt1aA .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBVKBUt1aA .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBVKBUt1aA .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBVKBUt1aA .mbr-slider > .container img {
  width: 100%;
}
.cid-sBVKBUt1aA .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-sBVKBUt1aA .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBVKBUt1aA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBVKBUt1aA .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBVKBUt1aA .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBVKBUt1aA .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBVKBUt1aA .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBVKBUt1aA .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBVKBUt1aA .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBVKBUt1aA .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBVKBUt1aA .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBVKBUt1aA .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBVKBUt1aA .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBVKBVhyY7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBVKBVhyY7 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBVKBVhyY7 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBVKBVhyY7 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBVKBVhyY7 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBVKBVhyY7 .section-text,
.cid-sBVKBVhyY7 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBVKBVOuCt .nav-item:focus,
.cid-sBVKBVOuCt .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBVKBVOuCt .nav-item {
    position: relative;
  }
}
.cid-sBVKBVOuCt .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBVKBVOuCt .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBVKBVOuCt .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBVKBVOuCt .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBVKBVOuCt .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBVKBVOuCt .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBVKBVOuCt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBVKBVOuCt .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBVKBVOuCt .navbar.collapsed .navbar-collapse.show,
.cid-sBVKBVOuCt .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBVKBVOuCt .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBVKBVOuCt .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBVKBVOuCt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBVKBVOuCt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBVKBVOuCt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBVKBVOuCt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBVKBVOuCt .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBVKBVOuCt .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBVKBVOuCt .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBVKBVOuCt .navbar.collapsed .right-menu,
.cid-sBVKBVOuCt .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBVKBVOuCt .navbar .navbar-collapse.show,
  .cid-sBVKBVOuCt .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBVKBVOuCt .navbar .navbar-collapse.show .brand-container,
  .cid-sBVKBVOuCt .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBVKBVOuCt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBVKBVOuCt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBVKBVOuCt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBVKBVOuCt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBVKBVOuCt .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-sBVKBVOuCt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBVKBVOuCt .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBVKBVOuCt .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBVKBVOuCt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBVKBVOuCt .navbar .right-menu,
  .cid-sBVKBVOuCt .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBVKBVOuCt .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBVKBVOuCt .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBVKBVOuCt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBVKBVOuCt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBVKBVOuCt .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBVKBVOuCt .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBVKBVOuCt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBVKBVOuCt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBVKBVOuCt .dropdown-item.active,
.cid-sBVKBVOuCt .dropdown-item:active {
  background-color: transparent;
}
.cid-sBVKBVOuCt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBVKBVOuCt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBVKBVOuCt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBVKBVOuCt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBVKBVOuCt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBVKBVOuCt ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBVKBVOuCt ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBVKBVOuCt .navbar-buttons {
  margin-left: auto;
}
.cid-sBVKBVOuCt button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBVKBVOuCt button.navbar-toggler:hover {
  outline: none;
}
.cid-sBVKBVOuCt button.navbar-toggler:active {
  outline: none;
}
.cid-sBVKBVOuCt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBVKBVOuCt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBVKBVOuCt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBVKBVOuCt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBVKBVOuCt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBVKBVOuCt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBVKBVOuCt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBVKBVOuCt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBVKBVOuCt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBVKBVOuCt .navbar-dropdown {
  position: fixed;
}
.cid-sBVKBVOuCt a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBVKBVOuCt a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBVKBVOuCt a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBVKBVOuCt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBVKBVOuCt .right-menu,
.cid-sBVKBVOuCt .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBVKBVOuCt .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBVKBVOuCt .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBVKBVOuCt .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBVKBVOuCt .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBVKBVOuCt .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBVKBVOuCt .card-wrapper {
  z-index: 3;
}
.cid-sBVKBVOuCt .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBVKBVOuCt .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBVKBVOuCt .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBVKBVOuCt .navbar-brand img {
  width: auto !important;
}
.cid-sBVKBWlXhN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBVKBWlXhN .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBVKBWlXhN .copyright-section,
.cid-sBVKBWlXhN .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBVKBWlXhN .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBVKBWlXhN .logo-section img {
  margin: 0 auto;
}
.cid-sBVKBWlXhN .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBVKBWlXhN .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBVKBWlXhN .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBVKBWlXhN .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBVKBWlXhN .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBVKBWlXhN .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBVKBWlXhN .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBVKBWlXhN .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBVKBWlXhN .copyright-section {
    order: 1;
  }
  .cid-sBVKBWlXhN .copyright-section hr {
    display: none;
  }
  .cid-sBVKBWlXhN .social-media {
    margin-top: 30px;
  }
  .cid-sBVKBWlXhN .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBVKBWlXhN .line {
    margin: 25px 0;
  }
  .cid-sBVKBWlXhN .mobirise-rights,
  .cid-sBVKBWlXhN .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBVKBWlXhN .mbr-text,
.cid-sBVKBWlXhN .copyright-section {
  color: #272727;
}
.cid-sCocbPqJNH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sCocbPqJNH H1 {
  color: #000000;
}
.cid-sCocbPqJNH .mbr-text,
.cid-sCocbPqJNH .mbr-section-btn {
  color: #000000;
}
.cid-sCocbPqJNH .mbr-subtitle {
  color: #000000;
}
.cid-sCocbPqJNH .mbr-text {
  margin-top: 1.5rem;
}
.cid-sCocbPqJNH .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sCocbQDDms {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sCocbQDDms .mbr-section-subtitle {
  color: #767676;
}
.cid-sCocbQDDms .container-table {
  margin: 0 auto;
}
.cid-sCocbQDDms .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sCocbQDDms .dataTables_wrapper {
  display: block;
}
.cid-sCocbQDDms .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sCocbQDDms .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sCocbQDDms table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sCocbQDDms table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sCocbQDDms table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sCocbQDDms table td {
  border-top: 1px solid #cccccc;
}
.cid-sCocbQDDms table.table {
  background: #ffffff;
}
.cid-sCocbQDDms .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sCocbQDDms .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sCocbQDDms .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sCocbQDDms .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sCocbQDDms .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sCocbQDDms .dataTables_filter {
    text-align: center;
  }
  .cid-sCocbQDDms .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sCocbQDDms LABEL {
  text-align: center;
}
.cid-sCocbQDDms .head-item {
  color: #f7bd50;
}
.cid-sCocbRotR3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sCocbRotR3 .mbr-section-subtitle {
  color: #767676;
}
.cid-sCocbRotR3 .container-table {
  margin: 0 auto;
}
.cid-sCocbRotR3 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sCocbRotR3 .dataTables_wrapper {
  display: block;
}
.cid-sCocbRotR3 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sCocbRotR3 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sCocbRotR3 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sCocbRotR3 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sCocbRotR3 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sCocbRotR3 table td {
  border-top: 1px solid #cccccc;
}
.cid-sCocbRotR3 table.table {
  background: #ffffff;
}
.cid-sCocbRotR3 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sCocbRotR3 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sCocbRotR3 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sCocbRotR3 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sCocbRotR3 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sCocbRotR3 .dataTables_filter {
    text-align: center;
  }
  .cid-sCocbRotR3 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sCocbRotR3 LABEL {
  text-align: center;
}
.cid-sCocbRotR3 .body-item {
  text-align: left;
}
.cid-sCocbRotR3 .head-item {
  color: #f7bd50;
}
.cid-sCocbRS3ZR .modal-body .close {
  background: #1b1b1b;
}
.cid-sCocbRS3ZR .modal-body .close span {
  font-style: normal;
}
.cid-sCocbRS3ZR .carousel-inner > .active,
.cid-sCocbRS3ZR .carousel-inner > .next,
.cid-sCocbRS3ZR .carousel-inner > .prev {
  display: flex;
}
.cid-sCocbRS3ZR .carousel-control .icon-next,
.cid-sCocbRS3ZR .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sCocbRS3ZR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCocbRS3ZR .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sCocbRS3ZR .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sCocbRS3ZR .boxed-slider > div {
  position: relative;
}
.cid-sCocbRS3ZR .container img {
  width: 100%;
}
.cid-sCocbRS3ZR .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-sCocbRS3ZR .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sCocbRS3ZR .mbr-table-cell {
  padding: 0;
}
.cid-sCocbRS3ZR .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sCocbRS3ZR .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-sCocbRS3ZR .mbr-overlay {
  z-index: 1;
}
.cid-sCocbRS3ZR .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sCocbRS3ZR .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sCocbRS3ZR .carousel-item.active.right,
.cid-sCocbRS3ZR .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sCocbRS3ZR .carousel-item.active.left,
.cid-sCocbRS3ZR .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sCocbRS3ZR .carousel-item.active,
.cid-sCocbRS3ZR .carousel-item.next.left,
.cid-sCocbRS3ZR .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sCocbRS3ZR .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sCocbRS3ZR .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCocbRS3ZR .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCocbRS3ZR .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sCocbRS3ZR .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCocbRS3ZR .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sCocbRS3ZR .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sCocbRS3ZR .mbr-slider .carousel-indicators li.active,
.cid-sCocbRS3ZR .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sCocbRS3ZR .mbr-slider .carousel-indicators li::after,
.cid-sCocbRS3ZR .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sCocbRS3ZR .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sCocbRS3ZR .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sCocbRS3ZR .mbr-slider > .container img {
  width: 100%;
}
.cid-sCocbRS3ZR .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-sCocbRS3ZR .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sCocbRS3ZR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sCocbRS3ZR .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sCocbRS3ZR .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sCocbRS3ZR .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sCocbRS3ZR .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sCocbRS3ZR .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sCocbRS3ZR .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sCocbRS3ZR .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sCocbRS3ZR .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sCocbRS3ZR .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sCocbRS3ZR .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sCocbSMo13 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sCocbSMo13 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sCocbSMo13 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sCocbSMo13 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sCocbSMo13 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sCocbSMo13 .section-text,
.cid-sCocbSMo13 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sCocbTdKND .nav-item:focus,
.cid-sCocbTdKND .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sCocbTdKND .nav-item {
    position: relative;
  }
}
.cid-sCocbTdKND .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sCocbTdKND .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sCocbTdKND .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sCocbTdKND .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sCocbTdKND .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sCocbTdKND .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sCocbTdKND .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sCocbTdKND .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sCocbTdKND .navbar.collapsed .navbar-collapse.show,
.cid-sCocbTdKND .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sCocbTdKND .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sCocbTdKND .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sCocbTdKND .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sCocbTdKND .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCocbTdKND .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCocbTdKND .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sCocbTdKND .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sCocbTdKND .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sCocbTdKND .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sCocbTdKND .navbar.collapsed .right-menu,
.cid-sCocbTdKND .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sCocbTdKND .navbar .navbar-collapse.show,
  .cid-sCocbTdKND .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sCocbTdKND .navbar .navbar-collapse.show .brand-container,
  .cid-sCocbTdKND .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sCocbTdKND .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCocbTdKND .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sCocbTdKND .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCocbTdKND .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCocbTdKND .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-sCocbTdKND .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sCocbTdKND .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sCocbTdKND .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sCocbTdKND .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sCocbTdKND .navbar .right-menu,
  .cid-sCocbTdKND .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sCocbTdKND .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCocbTdKND .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sCocbTdKND .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sCocbTdKND .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sCocbTdKND .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sCocbTdKND .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sCocbTdKND .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCocbTdKND .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCocbTdKND .dropdown-item.active,
.cid-sCocbTdKND .dropdown-item:active {
  background-color: transparent;
}
.cid-sCocbTdKND .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCocbTdKND .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sCocbTdKND .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sCocbTdKND .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCocbTdKND .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCocbTdKND ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sCocbTdKND ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sCocbTdKND .navbar-buttons {
  margin-left: auto;
}
.cid-sCocbTdKND button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sCocbTdKND button.navbar-toggler:hover {
  outline: none;
}
.cid-sCocbTdKND button.navbar-toggler:active {
  outline: none;
}
.cid-sCocbTdKND button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sCocbTdKND button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCocbTdKND button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCocbTdKND button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCocbTdKND button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCocbTdKND nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCocbTdKND nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sCocbTdKND nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sCocbTdKND nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCocbTdKND .navbar-dropdown {
  position: fixed;
}
.cid-sCocbTdKND a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sCocbTdKND a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sCocbTdKND a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sCocbTdKND .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sCocbTdKND .right-menu,
.cid-sCocbTdKND .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sCocbTdKND .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sCocbTdKND .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sCocbTdKND .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCocbTdKND .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sCocbTdKND .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sCocbTdKND .card-wrapper {
  z-index: 3;
}
.cid-sCocbTdKND .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sCocbTdKND .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sCocbTdKND .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sCocbTdKND .navbar-brand img {
  width: auto !important;
}
.cid-sCocbTOzud {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sCocbTOzud .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sCocbTOzud .copyright-section,
.cid-sCocbTOzud .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sCocbTOzud .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sCocbTOzud .logo-section img {
  margin: 0 auto;
}
.cid-sCocbTOzud .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sCocbTOzud .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sCocbTOzud .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sCocbTOzud .social-media ul li {
    margin-left: 30px;
  }
  .cid-sCocbTOzud .container-fluid {
    padding: 0 2rem;
  }
  .cid-sCocbTOzud .menu-container {
    margin-bottom: 20px;
  }
  .cid-sCocbTOzud .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sCocbTOzud .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sCocbTOzud .copyright-section {
    order: 1;
  }
  .cid-sCocbTOzud .copyright-section hr {
    display: none;
  }
  .cid-sCocbTOzud .social-media {
    margin-top: 30px;
  }
  .cid-sCocbTOzud .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sCocbTOzud .line {
    margin: 25px 0;
  }
  .cid-sCocbTOzud .mobirise-rights,
  .cid-sCocbTOzud .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sCocbTOzud .mbr-text,
.cid-sCocbTOzud .copyright-section {
  color: #272727;
}
.cid-sCohgmtKky {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/salle-3-607x407.jpg");
}
.cid-sCohgmtKky H1 {
  color: #000000;
}
.cid-sCohgmtKky .mbr-text,
.cid-sCohgmtKky .mbr-section-btn {
  color: #000000;
}
.cid-sCohgmtKky .mbr-subtitle {
  color: #000000;
}
.cid-sCohgmtKky .mbr-text {
  margin-top: 1.5rem;
}
.cid-sCohgmtKky .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBmice32uj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmice32uj .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmice32uj .container-table {
  margin: 0 auto;
}
.cid-sBmice32uj .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmice32uj .dataTables_wrapper {
  display: block;
}
.cid-sBmice32uj .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmice32uj .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmice32uj table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmice32uj table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmice32uj table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmice32uj table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmice32uj table.table {
  background: #ffffff;
}
.cid-sBmice32uj .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmice32uj .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmice32uj .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmice32uj .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmice32uj .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmice32uj .dataTables_filter {
    text-align: center;
  }
  .cid-sBmice32uj .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmice32uj LABEL {
  text-align: center;
}
.cid-sBmice32uj .head-item {
  color: #f7bd50;
}
.cid-sBmiceMKDn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmiceMKDn .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmiceMKDn .container-table {
  margin: 0 auto;
}
.cid-sBmiceMKDn .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmiceMKDn .dataTables_wrapper {
  display: block;
}
.cid-sBmiceMKDn .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmiceMKDn .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmiceMKDn table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmiceMKDn table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmiceMKDn table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmiceMKDn table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmiceMKDn table.table {
  background: #ffffff;
}
.cid-sBmiceMKDn .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmiceMKDn .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmiceMKDn .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmiceMKDn .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmiceMKDn .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmiceMKDn .dataTables_filter {
    text-align: center;
  }
  .cid-sBmiceMKDn .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmiceMKDn LABEL {
  text-align: center;
}
.cid-sBmiceMKDn .body-item {
  text-align: left;
}
.cid-sBmiceMKDn .head-item {
  color: #f7bd50;
}
.cid-sBmicffNhS .modal-body .close {
  background: #1b1b1b;
}
.cid-sBmicffNhS .modal-body .close span {
  font-style: normal;
}
.cid-sBmicffNhS .carousel-inner > .active,
.cid-sBmicffNhS .carousel-inner > .next,
.cid-sBmicffNhS .carousel-inner > .prev {
  display: flex;
}
.cid-sBmicffNhS .carousel-control .icon-next,
.cid-sBmicffNhS .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBmicffNhS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBmicffNhS .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmicffNhS .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBmicffNhS .boxed-slider > div {
  position: relative;
}
.cid-sBmicffNhS .container img {
  width: 100%;
}
.cid-sBmicffNhS .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-sBmicffNhS .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmicffNhS .mbr-table-cell {
  padding: 0;
}
.cid-sBmicffNhS .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBmicffNhS .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-sBmicffNhS .mbr-overlay {
  z-index: 1;
}
.cid-sBmicffNhS .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmicffNhS .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBmicffNhS .carousel-item.active.right,
.cid-sBmicffNhS .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmicffNhS .carousel-item.active.left,
.cid-sBmicffNhS .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmicffNhS .carousel-item.active,
.cid-sBmicffNhS .carousel-item.next.left,
.cid-sBmicffNhS .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBmicffNhS .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBmicffNhS .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBmicffNhS .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBmicffNhS .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBmicffNhS .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBmicffNhS .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBmicffNhS .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBmicffNhS .mbr-slider .carousel-indicators li.active,
.cid-sBmicffNhS .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBmicffNhS .mbr-slider .carousel-indicators li::after,
.cid-sBmicffNhS .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBmicffNhS .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBmicffNhS .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBmicffNhS .mbr-slider > .container img {
  width: 100%;
}
.cid-sBmicffNhS .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-sBmicffNhS .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBmicffNhS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmicffNhS .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmicffNhS .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBmicffNhS .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBmicffNhS .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBmicffNhS .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBmicffNhS .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBmicffNhS .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmicffNhS .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBmicffNhS .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBmicffNhS .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBmicg9HTp {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBmicg9HTp .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBmicg9HTp .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBmicg9HTp .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBmicg9HTp H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBmicg9HTp .section-text,
.cid-sBmicg9HTp .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBmicgAYUL .nav-item:focus,
.cid-sBmicgAYUL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBmicgAYUL .nav-item {
    position: relative;
  }
}
.cid-sBmicgAYUL .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBmicgAYUL .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBmicgAYUL .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBmicgAYUL .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBmicgAYUL .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBmicgAYUL .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBmicgAYUL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBmicgAYUL .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmicgAYUL .navbar.collapsed .navbar-collapse.show,
.cid-sBmicgAYUL .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmicgAYUL .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBmicgAYUL .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBmicgAYUL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBmicgAYUL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBmicgAYUL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBmicgAYUL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBmicgAYUL .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBmicgAYUL .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmicgAYUL .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBmicgAYUL .navbar.collapsed .right-menu,
.cid-sBmicgAYUL .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBmicgAYUL .navbar .navbar-collapse.show,
  .cid-sBmicgAYUL .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBmicgAYUL .navbar .navbar-collapse.show .brand-container,
  .cid-sBmicgAYUL .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBmicgAYUL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBmicgAYUL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBmicgAYUL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBmicgAYUL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBmicgAYUL .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-sBmicgAYUL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBmicgAYUL .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBmicgAYUL .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBmicgAYUL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBmicgAYUL .navbar .right-menu,
  .cid-sBmicgAYUL .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBmicgAYUL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBmicgAYUL .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBmicgAYUL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBmicgAYUL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBmicgAYUL .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBmicgAYUL .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBmicgAYUL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBmicgAYUL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBmicgAYUL .dropdown-item.active,
.cid-sBmicgAYUL .dropdown-item:active {
  background-color: transparent;
}
.cid-sBmicgAYUL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBmicgAYUL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBmicgAYUL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBmicgAYUL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBmicgAYUL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBmicgAYUL ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBmicgAYUL ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBmicgAYUL .navbar-buttons {
  margin-left: auto;
}
.cid-sBmicgAYUL button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBmicgAYUL button.navbar-toggler:hover {
  outline: none;
}
.cid-sBmicgAYUL button.navbar-toggler:active {
  outline: none;
}
.cid-sBmicgAYUL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBmicgAYUL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBmicgAYUL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmicgAYUL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmicgAYUL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBmicgAYUL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmicgAYUL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBmicgAYUL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBmicgAYUL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmicgAYUL .navbar-dropdown {
  position: fixed;
}
.cid-sBmicgAYUL a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBmicgAYUL a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBmicgAYUL a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBmicgAYUL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBmicgAYUL .right-menu,
.cid-sBmicgAYUL .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBmicgAYUL .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmicgAYUL .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmicgAYUL .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmicgAYUL .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmicgAYUL .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBmicgAYUL .card-wrapper {
  z-index: 3;
}
.cid-sBmicgAYUL .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBmicgAYUL .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBmicgAYUL .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBmicgAYUL .navbar-brand img {
  width: auto !important;
}
.cid-sBmich7bFM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBmich7bFM .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBmich7bFM .copyright-section,
.cid-sBmich7bFM .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBmich7bFM .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBmich7bFM .logo-section img {
  margin: 0 auto;
}
.cid-sBmich7bFM .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBmich7bFM .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBmich7bFM .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBmich7bFM .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBmich7bFM .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBmich7bFM .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBmich7bFM .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBmich7bFM .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBmich7bFM .copyright-section {
    order: 1;
  }
  .cid-sBmich7bFM .copyright-section hr {
    display: none;
  }
  .cid-sBmich7bFM .social-media {
    margin-top: 30px;
  }
  .cid-sBmich7bFM .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBmich7bFM .line {
    margin: 25px 0;
  }
  .cid-sBmich7bFM .mobirise-rights,
  .cid-sBmich7bFM .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBmich7bFM .mbr-text,
.cid-sBmich7bFM .copyright-section {
  color: #272727;
}
.cid-sBQgldTbWd {
  padding-top: 135px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/gorakshasana-posture-sage-goraksh-pascal-gontier-natha-yoga-nb-2000x1591.jpg");
}
.cid-sBQgldTbWd H1 {
  color: #000000;
}
.cid-sBQgldTbWd .mbr-text,
.cid-sBQgldTbWd .mbr-section-btn {
  color: #000000;
}
.cid-sBQgldTbWd .mbr-subtitle {
  color: #000000;
}
.cid-sBQgldTbWd .mbr-text {
  margin-top: 1.5rem;
}
.cid-sBQgldTbWd .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sBmo3gAO1H {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBmo3gAO1H .mbr-section-subtitle {
  color: #767676;
}
.cid-sBmo3gAO1H .container-table {
  margin: 0 auto;
}
.cid-sBmo3gAO1H .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBmo3gAO1H .dataTables_wrapper {
  display: block;
}
.cid-sBmo3gAO1H .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBmo3gAO1H .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBmo3gAO1H table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBmo3gAO1H table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBmo3gAO1H table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBmo3gAO1H table td {
  border-top: 1px solid #cccccc;
}
.cid-sBmo3gAO1H table.table {
  background: #ffffff;
}
.cid-sBmo3gAO1H .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBmo3gAO1H .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBmo3gAO1H .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBmo3gAO1H .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBmo3gAO1H .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBmo3gAO1H .dataTables_filter {
    text-align: center;
  }
  .cid-sBmo3gAO1H .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBmo3gAO1H LABEL {
  text-align: center;
}
.cid-sBmo3gAO1H .head-item {
  color: #f7bd50;
}
.cid-sBmo3hS5OR .modal-body .close {
  background: #1b1b1b;
}
.cid-sBmo3hS5OR .modal-body .close span {
  font-style: normal;
}
.cid-sBmo3hS5OR .carousel-inner > .active,
.cid-sBmo3hS5OR .carousel-inner > .next,
.cid-sBmo3hS5OR .carousel-inner > .prev {
  display: flex;
}
.cid-sBmo3hS5OR .carousel-control .icon-next,
.cid-sBmo3hS5OR .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sBmo3hS5OR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBmo3hS5OR .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmo3hS5OR .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sBmo3hS5OR .boxed-slider > div {
  position: relative;
}
.cid-sBmo3hS5OR .container img {
  width: 100%;
}
.cid-sBmo3hS5OR .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-sBmo3hS5OR .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmo3hS5OR .mbr-table-cell {
  padding: 0;
}
.cid-sBmo3hS5OR .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sBmo3hS5OR .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-sBmo3hS5OR .mbr-overlay {
  z-index: 1;
}
.cid-sBmo3hS5OR .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmo3hS5OR .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sBmo3hS5OR .carousel-item.active.right,
.cid-sBmo3hS5OR .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmo3hS5OR .carousel-item.active.left,
.cid-sBmo3hS5OR .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sBmo3hS5OR .carousel-item.active,
.cid-sBmo3hS5OR .carousel-item.next.left,
.cid-sBmo3hS5OR .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sBmo3hS5OR .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sBmo3hS5OR .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sBmo3hS5OR .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sBmo3hS5OR .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sBmo3hS5OR .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sBmo3hS5OR .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sBmo3hS5OR .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sBmo3hS5OR .mbr-slider .carousel-indicators li.active,
.cid-sBmo3hS5OR .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sBmo3hS5OR .mbr-slider .carousel-indicators li::after,
.cid-sBmo3hS5OR .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sBmo3hS5OR .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sBmo3hS5OR .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sBmo3hS5OR .mbr-slider > .container img {
  width: 100%;
}
.cid-sBmo3hS5OR .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-sBmo3hS5OR .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sBmo3hS5OR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sBmo3hS5OR .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sBmo3hS5OR .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sBmo3hS5OR .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sBmo3hS5OR .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sBmo3hS5OR .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sBmo3hS5OR .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sBmo3hS5OR .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sBmo3hS5OR .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sBmo3hS5OR .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sBmo3hS5OR .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sBmo3iIQq2 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sBmo3iIQq2 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sBmo3iIQq2 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sBmo3iIQq2 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sBmo3iIQq2 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sBmo3iIQq2 .section-text,
.cid-sBmo3iIQq2 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sBmo3j9xVp .nav-item:focus,
.cid-sBmo3j9xVp .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sBmo3j9xVp .nav-item {
    position: relative;
  }
}
.cid-sBmo3j9xVp .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sBmo3j9xVp .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sBmo3j9xVp .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sBmo3j9xVp .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sBmo3j9xVp .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sBmo3j9xVp .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sBmo3j9xVp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sBmo3j9xVp .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmo3j9xVp .navbar.collapsed .navbar-collapse.show,
.cid-sBmo3j9xVp .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmo3j9xVp .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sBmo3j9xVp .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sBmo3j9xVp .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBmo3j9xVp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBmo3j9xVp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBmo3j9xVp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sBmo3j9xVp .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sBmo3j9xVp .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sBmo3j9xVp .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sBmo3j9xVp .navbar.collapsed .right-menu,
.cid-sBmo3j9xVp .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sBmo3j9xVp .navbar .navbar-collapse.show,
  .cid-sBmo3j9xVp .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sBmo3j9xVp .navbar .navbar-collapse.show .brand-container,
  .cid-sBmo3j9xVp .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sBmo3j9xVp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBmo3j9xVp .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBmo3j9xVp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBmo3j9xVp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBmo3j9xVp .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-sBmo3j9xVp .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBmo3j9xVp .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sBmo3j9xVp .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sBmo3j9xVp .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sBmo3j9xVp .navbar .right-menu,
  .cid-sBmo3j9xVp .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sBmo3j9xVp .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBmo3j9xVp .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sBmo3j9xVp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBmo3j9xVp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sBmo3j9xVp .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sBmo3j9xVp .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sBmo3j9xVp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBmo3j9xVp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBmo3j9xVp .dropdown-item.active,
.cid-sBmo3j9xVp .dropdown-item:active {
  background-color: transparent;
}
.cid-sBmo3j9xVp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBmo3j9xVp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sBmo3j9xVp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sBmo3j9xVp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBmo3j9xVp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBmo3j9xVp ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sBmo3j9xVp ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sBmo3j9xVp .navbar-buttons {
  margin-left: auto;
}
.cid-sBmo3j9xVp button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sBmo3j9xVp button.navbar-toggler:hover {
  outline: none;
}
.cid-sBmo3j9xVp button.navbar-toggler:active {
  outline: none;
}
.cid-sBmo3j9xVp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBmo3j9xVp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBmo3j9xVp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmo3j9xVp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBmo3j9xVp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBmo3j9xVp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmo3j9xVp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sBmo3j9xVp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sBmo3j9xVp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBmo3j9xVp .navbar-dropdown {
  position: fixed;
}
.cid-sBmo3j9xVp a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sBmo3j9xVp a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sBmo3j9xVp a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sBmo3j9xVp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBmo3j9xVp .right-menu,
.cid-sBmo3j9xVp .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sBmo3j9xVp .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmo3j9xVp .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sBmo3j9xVp .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmo3j9xVp .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sBmo3j9xVp .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sBmo3j9xVp .card-wrapper {
  z-index: 3;
}
.cid-sBmo3j9xVp .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sBmo3j9xVp .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sBmo3j9xVp .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sBmo3j9xVp .navbar-brand img {
  width: auto !important;
}
.cid-sBmo3jIYzF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sBmo3jIYzF .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sBmo3jIYzF .copyright-section,
.cid-sBmo3jIYzF .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sBmo3jIYzF .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sBmo3jIYzF .logo-section img {
  margin: 0 auto;
}
.cid-sBmo3jIYzF .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sBmo3jIYzF .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sBmo3jIYzF .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sBmo3jIYzF .social-media ul li {
    margin-left: 30px;
  }
  .cid-sBmo3jIYzF .container-fluid {
    padding: 0 2rem;
  }
  .cid-sBmo3jIYzF .menu-container {
    margin-bottom: 20px;
  }
  .cid-sBmo3jIYzF .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sBmo3jIYzF .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sBmo3jIYzF .copyright-section {
    order: 1;
  }
  .cid-sBmo3jIYzF .copyright-section hr {
    display: none;
  }
  .cid-sBmo3jIYzF .social-media {
    margin-top: 30px;
  }
  .cid-sBmo3jIYzF .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sBmo3jIYzF .line {
    margin: 25px 0;
  }
  .cid-sBmo3jIYzF .mobirise-rights,
  .cid-sBmo3jIYzF .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sBmo3jIYzF .mbr-text,
.cid-sBmo3jIYzF .copyright-section {
  color: #272727;
}
.cid-twTalOx96a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/yoga-nidra-1500x1125.jpg");
}
.cid-twTalOx96a H1 {
  color: #000000;
}
.cid-twTalOx96a .mbr-text,
.cid-twTalOx96a .mbr-section-btn {
  color: #000000;
}
.cid-twTalOx96a .mbr-subtitle {
  color: #000000;
}
.cid-twTalOx96a .mbr-text {
  margin-top: 1.5rem;
}
.cid-twTalOx96a .mbr-section-btn {
  margin-top: 2rem;
}
.cid-twTalOUJfa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-twTalOUJfa .mbr-section-subtitle {
  color: #767676;
}
.cid-twTalOUJfa .container-table {
  margin: 0 auto;
}
.cid-twTalOUJfa .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-twTalOUJfa .dataTables_wrapper {
  display: block;
}
.cid-twTalOUJfa .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-twTalOUJfa .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-twTalOUJfa table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-twTalOUJfa table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-twTalOUJfa table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-twTalOUJfa table td {
  border-top: 1px solid #cccccc;
}
.cid-twTalOUJfa table.table {
  background: #ffffff;
}
.cid-twTalOUJfa .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-twTalOUJfa .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-twTalOUJfa .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-twTalOUJfa .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-twTalOUJfa .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-twTalOUJfa .dataTables_filter {
    text-align: center;
  }
  .cid-twTalOUJfa .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-twTalOUJfa LABEL {
  text-align: center;
}
.cid-twTalPrm5p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-twTalPrm5p .mbr-section-subtitle {
  color: #767676;
}
.cid-twTalPrm5p .container-table {
  margin: 0 auto;
}
.cid-twTalPrm5p .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-twTalPrm5p .dataTables_wrapper {
  display: block;
}
.cid-twTalPrm5p .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-twTalPrm5p .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-twTalPrm5p table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-twTalPrm5p table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-twTalPrm5p table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-twTalPrm5p table td {
  border-top: 1px solid #cccccc;
}
.cid-twTalPrm5p table.table {
  background: #ffffff;
}
.cid-twTalPrm5p .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-twTalPrm5p .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-twTalPrm5p .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-twTalPrm5p .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-twTalPrm5p .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-twTalPrm5p .dataTables_filter {
    text-align: center;
  }
  .cid-twTalPrm5p .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-twTalPrm5p LABEL {
  text-align: center;
}
.cid-twTalPrm5p .body-item {
  text-align: left;
}
.cid-twTalPU35n .modal-body .close {
  background: #1b1b1b;
}
.cid-twTalPU35n .modal-body .close span {
  font-style: normal;
}
.cid-twTalPU35n .carousel-inner > .active,
.cid-twTalPU35n .carousel-inner > .next,
.cid-twTalPU35n .carousel-inner > .prev {
  display: flex;
}
.cid-twTalPU35n .carousel-control .icon-next,
.cid-twTalPU35n .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-twTalPU35n .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-twTalPU35n .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-twTalPU35n .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-twTalPU35n .boxed-slider > div {
  position: relative;
}
.cid-twTalPU35n .container img {
  width: 100%;
}
.cid-twTalPU35n .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-twTalPU35n .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-twTalPU35n .mbr-table-cell {
  padding: 0;
}
.cid-twTalPU35n .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-twTalPU35n .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-twTalPU35n .mbr-overlay {
  z-index: 1;
}
.cid-twTalPU35n .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-twTalPU35n .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-twTalPU35n .carousel-item.active.right,
.cid-twTalPU35n .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-twTalPU35n .carousel-item.active.left,
.cid-twTalPU35n .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-twTalPU35n .carousel-item.active,
.cid-twTalPU35n .carousel-item.next.left,
.cid-twTalPU35n .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-twTalPU35n .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-twTalPU35n .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twTalPU35n .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twTalPU35n .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-twTalPU35n .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-twTalPU35n .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-twTalPU35n .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-twTalPU35n .mbr-slider .carousel-indicators li.active,
.cid-twTalPU35n .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-twTalPU35n .mbr-slider .carousel-indicators li::after,
.cid-twTalPU35n .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-twTalPU35n .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-twTalPU35n .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-twTalPU35n .mbr-slider > .container img {
  width: 100%;
}
.cid-twTalPU35n .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-twTalPU35n .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-twTalPU35n .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-twTalPU35n .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-twTalPU35n .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-twTalPU35n .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-twTalPU35n .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-twTalPU35n .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-twTalPU35n .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-twTalPU35n .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-twTalPU35n .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-twTalPU35n .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-twTalPU35n .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-twTalQHr6i {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-twTalQHr6i .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-twTalQHr6i .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-twTalQHr6i .title-text {
  color: #231f59;
  text-align: center;
}
.cid-twTalQHr6i H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-twTalQHr6i .section-text,
.cid-twTalQHr6i .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-twTalRaaG3 .nav-item:focus,
.cid-twTalRaaG3 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-twTalRaaG3 .nav-item {
    position: relative;
  }
}
.cid-twTalRaaG3 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-twTalRaaG3 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-twTalRaaG3 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-twTalRaaG3 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-twTalRaaG3 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-twTalRaaG3 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-twTalRaaG3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-twTalRaaG3 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-twTalRaaG3 .navbar.collapsed .navbar-collapse.show,
.cid-twTalRaaG3 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-twTalRaaG3 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-twTalRaaG3 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-twTalRaaG3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-twTalRaaG3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twTalRaaG3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-twTalRaaG3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-twTalRaaG3 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-twTalRaaG3 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-twTalRaaG3 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-twTalRaaG3 .navbar.collapsed .right-menu,
.cid-twTalRaaG3 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-twTalRaaG3 .navbar .navbar-collapse.show,
  .cid-twTalRaaG3 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-twTalRaaG3 .navbar .navbar-collapse.show .brand-container,
  .cid-twTalRaaG3 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-twTalRaaG3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twTalRaaG3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-twTalRaaG3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twTalRaaG3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-twTalRaaG3 .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-twTalRaaG3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-twTalRaaG3 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-twTalRaaG3 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-twTalRaaG3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-twTalRaaG3 .navbar .right-menu,
  .cid-twTalRaaG3 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-twTalRaaG3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-twTalRaaG3 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-twTalRaaG3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-twTalRaaG3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-twTalRaaG3 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-twTalRaaG3 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-twTalRaaG3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twTalRaaG3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twTalRaaG3 .dropdown-item.active,
.cid-twTalRaaG3 .dropdown-item:active {
  background-color: transparent;
}
.cid-twTalRaaG3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-twTalRaaG3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-twTalRaaG3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-twTalRaaG3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twTalRaaG3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twTalRaaG3 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-twTalRaaG3 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-twTalRaaG3 .navbar-buttons {
  margin-left: auto;
}
.cid-twTalRaaG3 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-twTalRaaG3 button.navbar-toggler:hover {
  outline: none;
}
.cid-twTalRaaG3 button.navbar-toggler:active {
  outline: none;
}
.cid-twTalRaaG3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-twTalRaaG3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-twTalRaaG3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-twTalRaaG3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-twTalRaaG3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-twTalRaaG3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-twTalRaaG3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-twTalRaaG3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-twTalRaaG3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-twTalRaaG3 .navbar-dropdown {
  position: fixed;
}
.cid-twTalRaaG3 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-twTalRaaG3 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-twTalRaaG3 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-twTalRaaG3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-twTalRaaG3 .right-menu,
.cid-twTalRaaG3 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-twTalRaaG3 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-twTalRaaG3 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-twTalRaaG3 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-twTalRaaG3 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-twTalRaaG3 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-twTalRaaG3 .card-wrapper {
  z-index: 3;
}
.cid-twTalRaaG3 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-twTalRaaG3 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-twTalRaaG3 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-twTalRaaG3 .navbar-brand img {
  width: auto !important;
}
.cid-twTalRJH8s {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-twTalRJH8s .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-twTalRJH8s .copyright-section,
.cid-twTalRJH8s .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-twTalRJH8s .line {
  margin: 10px 0;
  width: 100%;
}
.cid-twTalRJH8s .logo-section img {
  margin: 0 auto;
}
.cid-twTalRJH8s .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-twTalRJH8s .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-twTalRJH8s .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-twTalRJH8s .social-media ul li {
    margin-left: 30px;
  }
  .cid-twTalRJH8s .container-fluid {
    padding: 0 2rem;
  }
  .cid-twTalRJH8s .menu-container {
    margin-bottom: 20px;
  }
  .cid-twTalRJH8s .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-twTalRJH8s .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-twTalRJH8s .copyright-section {
    order: 1;
  }
  .cid-twTalRJH8s .copyright-section hr {
    display: none;
  }
  .cid-twTalRJH8s .social-media {
    margin-top: 30px;
  }
  .cid-twTalRJH8s .social-media li:first-child {
    margin-left: 0;
  }
  .cid-twTalRJH8s .line {
    margin: 25px 0;
  }
  .cid-twTalRJH8s .mobirise-rights,
  .cid-twTalRJH8s .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-twTalRJH8s .mbr-text,
.cid-twTalRJH8s .copyright-section {
  color: #272727;
}
.cid-twTddqPFoD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/lotus-green-nature-flower-plant-bloom-blossom-natural-638287-jpgd-1200x794.jpg");
}
.cid-twTddqPFoD H1 {
  color: #000000;
}
.cid-twTddqPFoD .mbr-text,
.cid-twTddqPFoD .mbr-section-btn {
  color: #000000;
}
.cid-twTddqPFoD .mbr-subtitle {
  color: #000000;
}
.cid-twTddqPFoD .mbr-text {
  margin-top: 1.5rem;
}
.cid-twTddqPFoD .mbr-section-btn {
  margin-top: 2rem;
}
.cid-twTddrRq0Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-twTddrRq0Q .mbr-section-subtitle {
  color: #767676;
}
.cid-twTddrRq0Q .container-table {
  margin: 0 auto;
}
.cid-twTddrRq0Q .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-twTddrRq0Q .dataTables_wrapper {
  display: block;
}
.cid-twTddrRq0Q .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-twTddrRq0Q .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-twTddrRq0Q table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-twTddrRq0Q table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-twTddrRq0Q table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-twTddrRq0Q table td {
  border-top: 1px solid #cccccc;
}
.cid-twTddrRq0Q table.table {
  background: #ffffff;
}
.cid-twTddrRq0Q .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-twTddrRq0Q .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-twTddrRq0Q .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-twTddrRq0Q .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-twTddrRq0Q .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-twTddrRq0Q .dataTables_filter {
    text-align: center;
  }
  .cid-twTddrRq0Q .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-twTddrRq0Q LABEL {
  text-align: center;
}
.cid-twTddrRq0Q .head-item {
  color: #f7bd50;
}
.cid-twTddt3GMJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-twTddt3GMJ .mbr-section-subtitle {
  color: #767676;
}
.cid-twTddt3GMJ .container-table {
  margin: 0 auto;
}
.cid-twTddt3GMJ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-twTddt3GMJ .dataTables_wrapper {
  display: block;
}
.cid-twTddt3GMJ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-twTddt3GMJ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-twTddt3GMJ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-twTddt3GMJ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-twTddt3GMJ table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-twTddt3GMJ table td {
  border-top: 1px solid #cccccc;
}
.cid-twTddt3GMJ table.table {
  background: #ffffff;
}
.cid-twTddt3GMJ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-twTddt3GMJ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-twTddt3GMJ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-twTddt3GMJ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-twTddt3GMJ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-twTddt3GMJ .dataTables_filter {
    text-align: center;
  }
  .cid-twTddt3GMJ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-twTddt3GMJ LABEL {
  text-align: center;
}
.cid-twTddt3GMJ .body-item {
  text-align: left;
}
.cid-twTddt3GMJ .head-item {
  color: #f7bd50;
}
.cid-twTddtASdd .modal-body .close {
  background: #1b1b1b;
}
.cid-twTddtASdd .modal-body .close span {
  font-style: normal;
}
.cid-twTddtASdd .carousel-inner > .active,
.cid-twTddtASdd .carousel-inner > .next,
.cid-twTddtASdd .carousel-inner > .prev {
  display: flex;
}
.cid-twTddtASdd .carousel-control .icon-next,
.cid-twTddtASdd .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-twTddtASdd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-twTddtASdd .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-twTddtASdd .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-twTddtASdd .boxed-slider > div {
  position: relative;
}
.cid-twTddtASdd .container img {
  width: 100%;
}
.cid-twTddtASdd .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-twTddtASdd .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-twTddtASdd .mbr-table-cell {
  padding: 0;
}
.cid-twTddtASdd .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-twTddtASdd .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-twTddtASdd .mbr-overlay {
  z-index: 1;
}
.cid-twTddtASdd .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-twTddtASdd .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-twTddtASdd .carousel-item.active.right,
.cid-twTddtASdd .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-twTddtASdd .carousel-item.active.left,
.cid-twTddtASdd .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-twTddtASdd .carousel-item.active,
.cid-twTddtASdd .carousel-item.next.left,
.cid-twTddtASdd .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-twTddtASdd .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-twTddtASdd .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-twTddtASdd .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-twTddtASdd .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-twTddtASdd .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-twTddtASdd .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-twTddtASdd .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-twTddtASdd .mbr-slider .carousel-indicators li.active,
.cid-twTddtASdd .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-twTddtASdd .mbr-slider .carousel-indicators li::after,
.cid-twTddtASdd .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-twTddtASdd .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-twTddtASdd .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-twTddtASdd .mbr-slider > .container img {
  width: 100%;
}
.cid-twTddtASdd .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-twTddtASdd .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-twTddtASdd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-twTddtASdd .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-twTddtASdd .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-twTddtASdd .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-twTddtASdd .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-twTddtASdd .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-twTddtASdd .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-twTddtASdd .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-twTddtASdd .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-twTddtASdd .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-twTddtASdd .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-twTdduh0zn {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-twTdduh0zn .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-twTdduh0zn .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-twTdduh0zn .title-text {
  color: #231f59;
  text-align: center;
}
.cid-twTdduh0zn H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-twTdduh0zn .section-text,
.cid-twTdduh0zn .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-twTdduPGN8 .nav-item:focus,
.cid-twTdduPGN8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-twTdduPGN8 .nav-item {
    position: relative;
  }
}
.cid-twTdduPGN8 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-twTdduPGN8 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-twTdduPGN8 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-twTdduPGN8 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-twTdduPGN8 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-twTdduPGN8 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-twTdduPGN8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-twTdduPGN8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-twTdduPGN8 .navbar.collapsed .navbar-collapse.show,
.cid-twTdduPGN8 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-twTdduPGN8 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-twTdduPGN8 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-twTdduPGN8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-twTdduPGN8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twTdduPGN8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-twTdduPGN8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-twTdduPGN8 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-twTdduPGN8 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-twTdduPGN8 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-twTdduPGN8 .navbar.collapsed .right-menu,
.cid-twTdduPGN8 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-twTdduPGN8 .navbar .navbar-collapse.show,
  .cid-twTdduPGN8 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-twTdduPGN8 .navbar .navbar-collapse.show .brand-container,
  .cid-twTdduPGN8 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-twTdduPGN8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twTdduPGN8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-twTdduPGN8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twTdduPGN8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-twTdduPGN8 .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-twTdduPGN8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-twTdduPGN8 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-twTdduPGN8 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-twTdduPGN8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-twTdduPGN8 .navbar .right-menu,
  .cid-twTdduPGN8 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-twTdduPGN8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-twTdduPGN8 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-twTdduPGN8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-twTdduPGN8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-twTdduPGN8 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-twTdduPGN8 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-twTdduPGN8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twTdduPGN8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twTdduPGN8 .dropdown-item.active,
.cid-twTdduPGN8 .dropdown-item:active {
  background-color: transparent;
}
.cid-twTdduPGN8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-twTdduPGN8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-twTdduPGN8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-twTdduPGN8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twTdduPGN8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twTdduPGN8 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-twTdduPGN8 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-twTdduPGN8 .navbar-buttons {
  margin-left: auto;
}
.cid-twTdduPGN8 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-twTdduPGN8 button.navbar-toggler:hover {
  outline: none;
}
.cid-twTdduPGN8 button.navbar-toggler:active {
  outline: none;
}
.cid-twTdduPGN8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-twTdduPGN8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-twTdduPGN8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-twTdduPGN8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-twTdduPGN8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-twTdduPGN8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-twTdduPGN8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-twTdduPGN8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-twTdduPGN8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-twTdduPGN8 .navbar-dropdown {
  position: fixed;
}
.cid-twTdduPGN8 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-twTdduPGN8 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-twTdduPGN8 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-twTdduPGN8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-twTdduPGN8 .right-menu,
.cid-twTdduPGN8 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-twTdduPGN8 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-twTdduPGN8 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-twTdduPGN8 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-twTdduPGN8 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-twTdduPGN8 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-twTdduPGN8 .card-wrapper {
  z-index: 3;
}
.cid-twTdduPGN8 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-twTdduPGN8 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-twTdduPGN8 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-twTdduPGN8 .navbar-brand img {
  width: auto !important;
}
.cid-twTddvgHr6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-twTddvgHr6 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-twTddvgHr6 .copyright-section,
.cid-twTddvgHr6 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-twTddvgHr6 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-twTddvgHr6 .logo-section img {
  margin: 0 auto;
}
.cid-twTddvgHr6 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-twTddvgHr6 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-twTddvgHr6 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-twTddvgHr6 .social-media ul li {
    margin-left: 30px;
  }
  .cid-twTddvgHr6 .container-fluid {
    padding: 0 2rem;
  }
  .cid-twTddvgHr6 .menu-container {
    margin-bottom: 20px;
  }
  .cid-twTddvgHr6 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-twTddvgHr6 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-twTddvgHr6 .copyright-section {
    order: 1;
  }
  .cid-twTddvgHr6 .copyright-section hr {
    display: none;
  }
  .cid-twTddvgHr6 .social-media {
    margin-top: 30px;
  }
  .cid-twTddvgHr6 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-twTddvgHr6 .line {
    margin: 25px 0;
  }
  .cid-twTddvgHr6 .mobirise-rights,
  .cid-twTddvgHr6 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-twTddvgHr6 .mbr-text,
.cid-twTddvgHr6 .copyright-section {
  color: #272727;
}
.cid-tYHG7pBgcS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tYHG7pBgcS H1 {
  color: #000000;
}
.cid-tYHG7pBgcS .mbr-text,
.cid-tYHG7pBgcS .mbr-section-btn {
  color: #000000;
}
.cid-tYHG7pBgcS .mbr-subtitle {
  color: #000000;
}
.cid-tYHG7pBgcS .mbr-text {
  margin-top: 1.5rem;
}
.cid-tYHG7pBgcS .mbr-section-btn {
  margin-top: 2rem;
}
.cid-tYHG7q5juq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tYHG7q5juq .mbr-section-subtitle {
  color: #767676;
}
.cid-tYHG7q5juq .container-table {
  margin: 0 auto;
}
.cid-tYHG7q5juq .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tYHG7q5juq .dataTables_wrapper {
  display: block;
}
.cid-tYHG7q5juq .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tYHG7q5juq .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tYHG7q5juq table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-tYHG7q5juq table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tYHG7q5juq table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-tYHG7q5juq table td {
  border-top: 1px solid #cccccc;
}
.cid-tYHG7q5juq table.table {
  background: #ffffff;
}
.cid-tYHG7q5juq .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tYHG7q5juq .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tYHG7q5juq .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tYHG7q5juq .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-tYHG7q5juq .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tYHG7q5juq .dataTables_filter {
    text-align: center;
  }
  .cid-tYHG7q5juq .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tYHG7q5juq LABEL {
  text-align: center;
}
.cid-tYHG7q5juq .head-item {
  color: #f7bd50;
}
.cid-tYHG7qEyXj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tYHG7qEyXj .mbr-section-subtitle {
  color: #767676;
}
.cid-tYHG7qEyXj .container-table {
  margin: 0 auto;
}
.cid-tYHG7qEyXj .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tYHG7qEyXj .dataTables_wrapper {
  display: block;
}
.cid-tYHG7qEyXj .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tYHG7qEyXj .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tYHG7qEyXj table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-tYHG7qEyXj table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tYHG7qEyXj table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-tYHG7qEyXj table td {
  border-top: 1px solid #cccccc;
}
.cid-tYHG7qEyXj table.table {
  background: #ffffff;
}
.cid-tYHG7qEyXj .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tYHG7qEyXj .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tYHG7qEyXj .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tYHG7qEyXj .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-tYHG7qEyXj .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tYHG7qEyXj .dataTables_filter {
    text-align: center;
  }
  .cid-tYHG7qEyXj .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tYHG7qEyXj LABEL {
  text-align: center;
}
.cid-tYHG7qEyXj .body-item {
  text-align: left;
}
.cid-tYHG7rb4MC .modal-body .close {
  background: #1b1b1b;
}
.cid-tYHG7rb4MC .modal-body .close span {
  font-style: normal;
}
.cid-tYHG7rb4MC .carousel-inner > .active,
.cid-tYHG7rb4MC .carousel-inner > .next,
.cid-tYHG7rb4MC .carousel-inner > .prev {
  display: flex;
}
.cid-tYHG7rb4MC .carousel-control .icon-next,
.cid-tYHG7rb4MC .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tYHG7rb4MC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tYHG7rb4MC .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tYHG7rb4MC .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tYHG7rb4MC .boxed-slider > div {
  position: relative;
}
.cid-tYHG7rb4MC .container img {
  width: 100%;
}
.cid-tYHG7rb4MC .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-tYHG7rb4MC .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tYHG7rb4MC .mbr-table-cell {
  padding: 0;
}
.cid-tYHG7rb4MC .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tYHG7rb4MC .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-tYHG7rb4MC .mbr-overlay {
  z-index: 1;
}
.cid-tYHG7rb4MC .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tYHG7rb4MC .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-tYHG7rb4MC .carousel-item.active.right,
.cid-tYHG7rb4MC .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tYHG7rb4MC .carousel-item.active.left,
.cid-tYHG7rb4MC .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tYHG7rb4MC .carousel-item.active,
.cid-tYHG7rb4MC .carousel-item.next.left,
.cid-tYHG7rb4MC .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-tYHG7rb4MC .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-tYHG7rb4MC .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tYHG7rb4MC .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tYHG7rb4MC .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tYHG7rb4MC .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tYHG7rb4MC .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tYHG7rb4MC .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-tYHG7rb4MC .mbr-slider .carousel-indicators li.active,
.cid-tYHG7rb4MC .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-tYHG7rb4MC .mbr-slider .carousel-indicators li::after,
.cid-tYHG7rb4MC .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tYHG7rb4MC .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tYHG7rb4MC .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tYHG7rb4MC .mbr-slider > .container img {
  width: 100%;
}
.cid-tYHG7rb4MC .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-tYHG7rb4MC .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tYHG7rb4MC .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tYHG7rb4MC .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tYHG7rb4MC .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tYHG7rb4MC .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-tYHG7rb4MC .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tYHG7rb4MC .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-tYHG7rb4MC .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tYHG7rb4MC .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tYHG7rb4MC .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tYHG7rb4MC .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tYHG7rb4MC .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tYHG7s0ZBJ {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-tYHG7s0ZBJ .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-tYHG7s0ZBJ .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-tYHG7s0ZBJ .title-text {
  color: #231f59;
  text-align: center;
}
.cid-tYHG7s0ZBJ H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-tYHG7s0ZBJ .section-text,
.cid-tYHG7s0ZBJ .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-tYHG7sy1N2 .nav-item:focus,
.cid-tYHG7sy1N2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tYHG7sy1N2 .nav-item {
    position: relative;
  }
}
.cid-tYHG7sy1N2 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-tYHG7sy1N2 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-tYHG7sy1N2 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-tYHG7sy1N2 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tYHG7sy1N2 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tYHG7sy1N2 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tYHG7sy1N2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tYHG7sy1N2 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tYHG7sy1N2 .navbar.collapsed .navbar-collapse.show,
.cid-tYHG7sy1N2 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tYHG7sy1N2 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tYHG7sy1N2 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tYHG7sy1N2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tYHG7sy1N2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYHG7sy1N2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYHG7sy1N2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tYHG7sy1N2 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tYHG7sy1N2 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tYHG7sy1N2 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-tYHG7sy1N2 .navbar.collapsed .right-menu,
.cid-tYHG7sy1N2 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tYHG7sy1N2 .navbar .navbar-collapse.show,
  .cid-tYHG7sy1N2 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tYHG7sy1N2 .navbar .navbar-collapse.show .brand-container,
  .cid-tYHG7sy1N2 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tYHG7sy1N2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYHG7sy1N2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tYHG7sy1N2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYHG7sy1N2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tYHG7sy1N2 .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-tYHG7sy1N2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tYHG7sy1N2 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tYHG7sy1N2 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tYHG7sy1N2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tYHG7sy1N2 .navbar .right-menu,
  .cid-tYHG7sy1N2 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tYHG7sy1N2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYHG7sy1N2 .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-tYHG7sy1N2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tYHG7sy1N2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tYHG7sy1N2 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-tYHG7sy1N2 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tYHG7sy1N2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tYHG7sy1N2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYHG7sy1N2 .dropdown-item.active,
.cid-tYHG7sy1N2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tYHG7sy1N2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tYHG7sy1N2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tYHG7sy1N2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-tYHG7sy1N2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYHG7sy1N2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYHG7sy1N2 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tYHG7sy1N2 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tYHG7sy1N2 .navbar-buttons {
  margin-left: auto;
}
.cid-tYHG7sy1N2 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-tYHG7sy1N2 button.navbar-toggler:hover {
  outline: none;
}
.cid-tYHG7sy1N2 button.navbar-toggler:active {
  outline: none;
}
.cid-tYHG7sy1N2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tYHG7sy1N2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tYHG7sy1N2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tYHG7sy1N2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tYHG7sy1N2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tYHG7sy1N2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tYHG7sy1N2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tYHG7sy1N2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tYHG7sy1N2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tYHG7sy1N2 .navbar-dropdown {
  position: fixed;
}
.cid-tYHG7sy1N2 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tYHG7sy1N2 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-tYHG7sy1N2 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-tYHG7sy1N2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tYHG7sy1N2 .right-menu,
.cid-tYHG7sy1N2 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tYHG7sy1N2 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tYHG7sy1N2 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tYHG7sy1N2 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tYHG7sy1N2 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tYHG7sy1N2 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tYHG7sy1N2 .card-wrapper {
  z-index: 3;
}
.cid-tYHG7sy1N2 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tYHG7sy1N2 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tYHG7sy1N2 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-tYHG7sy1N2 .navbar-brand img {
  width: auto !important;
}
.cid-tYHG7t60Lu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-tYHG7t60Lu .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-tYHG7t60Lu .copyright-section,
.cid-tYHG7t60Lu .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-tYHG7t60Lu .line {
  margin: 10px 0;
  width: 100%;
}
.cid-tYHG7t60Lu .logo-section img {
  margin: 0 auto;
}
.cid-tYHG7t60Lu .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-tYHG7t60Lu .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-tYHG7t60Lu .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-tYHG7t60Lu .social-media ul li {
    margin-left: 30px;
  }
  .cid-tYHG7t60Lu .container-fluid {
    padding: 0 2rem;
  }
  .cid-tYHG7t60Lu .menu-container {
    margin-bottom: 20px;
  }
  .cid-tYHG7t60Lu .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-tYHG7t60Lu .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-tYHG7t60Lu .copyright-section {
    order: 1;
  }
  .cid-tYHG7t60Lu .copyright-section hr {
    display: none;
  }
  .cid-tYHG7t60Lu .social-media {
    margin-top: 30px;
  }
  .cid-tYHG7t60Lu .social-media li:first-child {
    margin-left: 0;
  }
  .cid-tYHG7t60Lu .line {
    margin: 25px 0;
  }
  .cid-tYHG7t60Lu .mobirise-rights,
  .cid-tYHG7t60Lu .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-tYHG7t60Lu .mbr-text,
.cid-tYHG7t60Lu .copyright-section {
  color: #272727;
}
.cid-u6VqUP3jd3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bolstibetain-1920x800.jpg");
}
.cid-u6VqUP3jd3 H1 {
  color: #000000;
}
.cid-u6VqUP3jd3 .mbr-text,
.cid-u6VqUP3jd3 .mbr-section-btn {
  color: #000000;
}
.cid-u6VqUP3jd3 .mbr-subtitle {
  color: #000000;
}
.cid-u6VqUP3jd3 .mbr-text {
  margin-top: 1.5rem;
}
.cid-u6VqUP3jd3 .mbr-section-btn {
  margin-top: 2rem;
}
.cid-u6VqUP3jd3 .mbr-section-title,
.cid-u6VqUP3jd3 .mbr-section-btn {
  color: #000000;
}
.cid-u6VqUQ7R9m {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-u6VqUQ7R9m .mbr-section-subtitle {
  color: #767676;
}
.cid-u6VqUQ7R9m .container-table {
  margin: 0 auto;
}
.cid-u6VqUQ7R9m .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u6VqUQ7R9m .dataTables_wrapper {
  display: block;
}
.cid-u6VqUQ7R9m .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u6VqUQ7R9m .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u6VqUQ7R9m table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-u6VqUQ7R9m table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u6VqUQ7R9m table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-u6VqUQ7R9m table td {
  border-top: 1px solid #cccccc;
}
.cid-u6VqUQ7R9m table.table {
  background: #ffffff;
}
.cid-u6VqUQ7R9m .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u6VqUQ7R9m .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u6VqUQ7R9m .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u6VqUQ7R9m .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-u6VqUQ7R9m .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u6VqUQ7R9m .dataTables_filter {
    text-align: center;
  }
  .cid-u6VqUQ7R9m .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u6VqUQ7R9m LABEL {
  text-align: center;
}
.cid-u6VqUQ7R9m .head-item {
  color: #f7bd50;
}
.cid-u6VqUQWoSa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-u6VqUQWoSa .mbr-section-subtitle {
  color: #767676;
}
.cid-u6VqUQWoSa .container-table {
  margin: 0 auto;
}
.cid-u6VqUQWoSa .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u6VqUQWoSa .dataTables_wrapper {
  display: block;
}
.cid-u6VqUQWoSa .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-u6VqUQWoSa .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-u6VqUQWoSa table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-u6VqUQWoSa table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-u6VqUQWoSa table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-u6VqUQWoSa table td {
  border-top: 1px solid #cccccc;
}
.cid-u6VqUQWoSa table.table {
  background: #ffffff;
}
.cid-u6VqUQWoSa .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-u6VqUQWoSa .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-u6VqUQWoSa .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-u6VqUQWoSa .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-u6VqUQWoSa .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-u6VqUQWoSa .dataTables_filter {
    text-align: center;
  }
  .cid-u6VqUQWoSa .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-u6VqUQWoSa LABEL {
  text-align: center;
}
.cid-u6VqUQWoSa .body-item {
  text-align: left;
}
.cid-u6VqUQWoSa .head-item {
  color: #f7bd50;
}
.cid-u6VqURugS3 .modal-body .close {
  background: #1b1b1b;
}
.cid-u6VqURugS3 .modal-body .close span {
  font-style: normal;
}
.cid-u6VqURugS3 .carousel-inner > .active,
.cid-u6VqURugS3 .carousel-inner > .next,
.cid-u6VqURugS3 .carousel-inner > .prev {
  display: flex;
}
.cid-u6VqURugS3 .carousel-control .icon-next,
.cid-u6VqURugS3 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-u6VqURugS3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u6VqURugS3 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u6VqURugS3 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-u6VqURugS3 .boxed-slider > div {
  position: relative;
}
.cid-u6VqURugS3 .container img {
  width: 100%;
}
.cid-u6VqURugS3 .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-u6VqURugS3 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-u6VqURugS3 .mbr-table-cell {
  padding: 0;
}
.cid-u6VqURugS3 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u6VqURugS3 .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-u6VqURugS3 .mbr-overlay {
  z-index: 1;
}
.cid-u6VqURugS3 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-u6VqURugS3 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-u6VqURugS3 .carousel-item.active.right,
.cid-u6VqURugS3 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-u6VqURugS3 .carousel-item.active.left,
.cid-u6VqURugS3 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-u6VqURugS3 .carousel-item.active,
.cid-u6VqURugS3 .carousel-item.next.left,
.cid-u6VqURugS3 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-u6VqURugS3 .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-u6VqURugS3 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u6VqURugS3 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u6VqURugS3 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-u6VqURugS3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u6VqURugS3 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-u6VqURugS3 .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-u6VqURugS3 .mbr-slider .carousel-indicators li.active,
.cid-u6VqURugS3 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-u6VqURugS3 .mbr-slider .carousel-indicators li::after,
.cid-u6VqURugS3 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-u6VqURugS3 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-u6VqURugS3 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-u6VqURugS3 .mbr-slider > .container img {
  width: 100%;
}
.cid-u6VqURugS3 .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-u6VqURugS3 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-u6VqURugS3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u6VqURugS3 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-u6VqURugS3 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-u6VqURugS3 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-u6VqURugS3 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-u6VqURugS3 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-u6VqURugS3 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-u6VqURugS3 .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-u6VqURugS3 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-u6VqURugS3 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-u6VqURugS3 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-u6VqUSyfj4 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-u6VqUSyfj4 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-u6VqUSyfj4 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-u6VqUSyfj4 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-u6VqUSyfj4 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-u6VqUSyfj4 .section-text,
.cid-u6VqUSyfj4 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-u6VqUT1YDF .nav-item:focus,
.cid-u6VqUT1YDF .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u6VqUT1YDF .nav-item {
    position: relative;
  }
}
.cid-u6VqUT1YDF .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-u6VqUT1YDF .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-u6VqUT1YDF .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-u6VqUT1YDF .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-u6VqUT1YDF .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-u6VqUT1YDF .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-u6VqUT1YDF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6VqUT1YDF .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u6VqUT1YDF .navbar.collapsed .navbar-collapse.show,
.cid-u6VqUT1YDF .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-u6VqUT1YDF .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-u6VqUT1YDF .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-u6VqUT1YDF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u6VqUT1YDF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6VqUT1YDF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6VqUT1YDF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u6VqUT1YDF .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-u6VqUT1YDF .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-u6VqUT1YDF .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-u6VqUT1YDF .navbar.collapsed .right-menu,
.cid-u6VqUT1YDF .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-u6VqUT1YDF .navbar .navbar-collapse.show,
  .cid-u6VqUT1YDF .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-u6VqUT1YDF .navbar .navbar-collapse.show .brand-container,
  .cid-u6VqUT1YDF .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-u6VqUT1YDF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6VqUT1YDF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u6VqUT1YDF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6VqUT1YDF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6VqUT1YDF .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-u6VqUT1YDF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u6VqUT1YDF .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-u6VqUT1YDF .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-u6VqUT1YDF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-u6VqUT1YDF .navbar .right-menu,
  .cid-u6VqUT1YDF .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-u6VqUT1YDF .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6VqUT1YDF .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-u6VqUT1YDF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u6VqUT1YDF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u6VqUT1YDF .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-u6VqUT1YDF .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-u6VqUT1YDF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6VqUT1YDF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6VqUT1YDF .dropdown-item.active,
.cid-u6VqUT1YDF .dropdown-item:active {
  background-color: transparent;
}
.cid-u6VqUT1YDF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6VqUT1YDF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-u6VqUT1YDF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-u6VqUT1YDF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6VqUT1YDF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6VqUT1YDF ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-u6VqUT1YDF ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-u6VqUT1YDF .navbar-buttons {
  margin-left: auto;
}
.cid-u6VqUT1YDF button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-u6VqUT1YDF button.navbar-toggler:hover {
  outline: none;
}
.cid-u6VqUT1YDF button.navbar-toggler:active {
  outline: none;
}
.cid-u6VqUT1YDF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u6VqUT1YDF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u6VqUT1YDF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u6VqUT1YDF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u6VqUT1YDF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u6VqUT1YDF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u6VqUT1YDF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-u6VqUT1YDF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-u6VqUT1YDF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u6VqUT1YDF .navbar-dropdown {
  position: fixed;
}
.cid-u6VqUT1YDF a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-u6VqUT1YDF a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-u6VqUT1YDF a.nav-link:hover:before {
  transform: scale(1);
}
.cid-u6VqUT1YDF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-u6VqUT1YDF .right-menu,
.cid-u6VqUT1YDF .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-u6VqUT1YDF .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u6VqUT1YDF .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u6VqUT1YDF .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u6VqUT1YDF .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u6VqUT1YDF .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-u6VqUT1YDF .card-wrapper {
  z-index: 3;
}
.cid-u6VqUT1YDF .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-u6VqUT1YDF .navbar-collapse {
    padding-top: 0;
  }
}
.cid-u6VqUT1YDF .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-u6VqUT1YDF .navbar-brand img {
  width: auto !important;
}
.cid-u6VqUTAah0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-u6VqUTAah0 .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-u6VqUTAah0 .copyright-section,
.cid-u6VqUTAah0 .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-u6VqUTAah0 .line {
  margin: 10px 0;
  width: 100%;
}
.cid-u6VqUTAah0 .logo-section img {
  margin: 0 auto;
}
.cid-u6VqUTAah0 .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-u6VqUTAah0 .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-u6VqUTAah0 .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-u6VqUTAah0 .social-media ul li {
    margin-left: 30px;
  }
  .cid-u6VqUTAah0 .container-fluid {
    padding: 0 2rem;
  }
  .cid-u6VqUTAah0 .menu-container {
    margin-bottom: 20px;
  }
  .cid-u6VqUTAah0 .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-u6VqUTAah0 .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-u6VqUTAah0 .copyright-section {
    order: 1;
  }
  .cid-u6VqUTAah0 .copyright-section hr {
    display: none;
  }
  .cid-u6VqUTAah0 .social-media {
    margin-top: 30px;
  }
  .cid-u6VqUTAah0 .social-media li:first-child {
    margin-left: 0;
  }
  .cid-u6VqUTAah0 .line {
    margin: 25px 0;
  }
  .cid-u6VqUTAah0 .mobirise-rights,
  .cid-u6VqUTAah0 .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-u6VqUTAah0 .mbr-text,
.cid-u6VqUTAah0 .copyright-section {
  color: #272727;
}
.cid-uakEHQw4NR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/09-1013x1080.jpg");
}
.cid-uakEHQw4NR H1 {
  color: #000000;
}
.cid-uakEHQw4NR .mbr-text,
.cid-uakEHQw4NR .mbr-section-btn {
  color: #000000;
}
.cid-uakEHQw4NR .mbr-subtitle {
  color: #000000;
}
.cid-uakEHQw4NR .mbr-text {
  margin-top: 1.5rem;
}
.cid-uakEHQw4NR .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uakEHRk8Db {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-uakEHRk8Db .mbr-section-subtitle {
  color: #767676;
}
.cid-uakEHRk8Db .container-table {
  margin: 0 auto;
}
.cid-uakEHRk8Db .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uakEHRk8Db .dataTables_wrapper {
  display: block;
}
.cid-uakEHRk8Db .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uakEHRk8Db .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uakEHRk8Db table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uakEHRk8Db table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uakEHRk8Db table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uakEHRk8Db table td {
  border-top: 1px solid #cccccc;
}
.cid-uakEHRk8Db table.table {
  background: #ffffff;
}
.cid-uakEHRk8Db .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uakEHRk8Db .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uakEHRk8Db .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uakEHRk8Db .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-uakEHRk8Db .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uakEHRk8Db .dataTables_filter {
    text-align: center;
  }
  .cid-uakEHRk8Db .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uakEHRk8Db LABEL {
  text-align: center;
}
.cid-uakEHRVAQu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-uakEHRVAQu .mbr-section-subtitle {
  color: #767676;
}
.cid-uakEHRVAQu .container-table {
  margin: 0 auto;
}
.cid-uakEHRVAQu .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uakEHRVAQu .dataTables_wrapper {
  display: block;
}
.cid-uakEHRVAQu .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uakEHRVAQu .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uakEHRVAQu table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uakEHRVAQu table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uakEHRVAQu table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uakEHRVAQu table td {
  border-top: 1px solid #cccccc;
}
.cid-uakEHRVAQu table.table {
  background: #ffffff;
}
.cid-uakEHRVAQu .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uakEHRVAQu .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uakEHRVAQu .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uakEHRVAQu .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-uakEHRVAQu .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uakEHRVAQu .dataTables_filter {
    text-align: center;
  }
  .cid-uakEHRVAQu .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uakEHRVAQu LABEL {
  text-align: center;
}
.cid-uakEHRVAQu .body-item {
  text-align: left;
}
.cid-uakEHSq8mQ .modal-body .close {
  background: #1b1b1b;
}
.cid-uakEHSq8mQ .modal-body .close span {
  font-style: normal;
}
.cid-uakEHSq8mQ .carousel-inner > .active,
.cid-uakEHSq8mQ .carousel-inner > .next,
.cid-uakEHSq8mQ .carousel-inner > .prev {
  display: flex;
}
.cid-uakEHSq8mQ .carousel-control .icon-next,
.cid-uakEHSq8mQ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uakEHSq8mQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uakEHSq8mQ .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uakEHSq8mQ .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uakEHSq8mQ .boxed-slider > div {
  position: relative;
}
.cid-uakEHSq8mQ .container img {
  width: 100%;
}
.cid-uakEHSq8mQ .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-uakEHSq8mQ .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uakEHSq8mQ .mbr-table-cell {
  padding: 0;
}
.cid-uakEHSq8mQ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uakEHSq8mQ .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-uakEHSq8mQ .mbr-overlay {
  z-index: 1;
}
.cid-uakEHSq8mQ .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uakEHSq8mQ .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uakEHSq8mQ .carousel-item.active.right,
.cid-uakEHSq8mQ .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uakEHSq8mQ .carousel-item.active.left,
.cid-uakEHSq8mQ .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uakEHSq8mQ .carousel-item.active,
.cid-uakEHSq8mQ .carousel-item.next.left,
.cid-uakEHSq8mQ .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uakEHSq8mQ .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-uakEHSq8mQ .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uakEHSq8mQ .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uakEHSq8mQ .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uakEHSq8mQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uakEHSq8mQ .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uakEHSq8mQ .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uakEHSq8mQ .mbr-slider .carousel-indicators li.active,
.cid-uakEHSq8mQ .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uakEHSq8mQ .mbr-slider .carousel-indicators li::after,
.cid-uakEHSq8mQ .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uakEHSq8mQ .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uakEHSq8mQ .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uakEHSq8mQ .mbr-slider > .container img {
  width: 100%;
}
.cid-uakEHSq8mQ .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-uakEHSq8mQ .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uakEHSq8mQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uakEHSq8mQ .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uakEHSq8mQ .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uakEHSq8mQ .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uakEHSq8mQ .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uakEHSq8mQ .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uakEHSq8mQ .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uakEHSq8mQ .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uakEHSq8mQ .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uakEHSq8mQ .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uakEHSq8mQ .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uakEHTtDGK {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-uakEHTtDGK .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-uakEHTtDGK .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-uakEHTtDGK .title-text {
  color: #231f59;
  text-align: center;
}
.cid-uakEHTtDGK H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-uakEHTtDGK .section-text,
.cid-uakEHTtDGK .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-uakEHTUtzZ .nav-item:focus,
.cid-uakEHTUtzZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uakEHTUtzZ .nav-item {
    position: relative;
  }
}
.cid-uakEHTUtzZ .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uakEHTUtzZ .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-uakEHTUtzZ .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-uakEHTUtzZ .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uakEHTUtzZ .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uakEHTUtzZ .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uakEHTUtzZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uakEHTUtzZ .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uakEHTUtzZ .navbar.collapsed .navbar-collapse.show,
.cid-uakEHTUtzZ .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uakEHTUtzZ .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uakEHTUtzZ .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uakEHTUtzZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uakEHTUtzZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uakEHTUtzZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uakEHTUtzZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uakEHTUtzZ .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uakEHTUtzZ .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uakEHTUtzZ .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uakEHTUtzZ .navbar.collapsed .right-menu,
.cid-uakEHTUtzZ .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uakEHTUtzZ .navbar .navbar-collapse.show,
  .cid-uakEHTUtzZ .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uakEHTUtzZ .navbar .navbar-collapse.show .brand-container,
  .cid-uakEHTUtzZ .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uakEHTUtzZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uakEHTUtzZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uakEHTUtzZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uakEHTUtzZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uakEHTUtzZ .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-uakEHTUtzZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uakEHTUtzZ .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uakEHTUtzZ .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uakEHTUtzZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uakEHTUtzZ .navbar .right-menu,
  .cid-uakEHTUtzZ .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uakEHTUtzZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uakEHTUtzZ .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-uakEHTUtzZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uakEHTUtzZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uakEHTUtzZ .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uakEHTUtzZ .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uakEHTUtzZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uakEHTUtzZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uakEHTUtzZ .dropdown-item.active,
.cid-uakEHTUtzZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uakEHTUtzZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uakEHTUtzZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uakEHTUtzZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-uakEHTUtzZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uakEHTUtzZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uakEHTUtzZ ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uakEHTUtzZ ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uakEHTUtzZ .navbar-buttons {
  margin-left: auto;
}
.cid-uakEHTUtzZ button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uakEHTUtzZ button.navbar-toggler:hover {
  outline: none;
}
.cid-uakEHTUtzZ button.navbar-toggler:active {
  outline: none;
}
.cid-uakEHTUtzZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uakEHTUtzZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uakEHTUtzZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uakEHTUtzZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uakEHTUtzZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uakEHTUtzZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uakEHTUtzZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uakEHTUtzZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uakEHTUtzZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uakEHTUtzZ .navbar-dropdown {
  position: fixed;
}
.cid-uakEHTUtzZ a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uakEHTUtzZ a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uakEHTUtzZ a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uakEHTUtzZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uakEHTUtzZ .right-menu,
.cid-uakEHTUtzZ .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uakEHTUtzZ .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uakEHTUtzZ .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uakEHTUtzZ .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uakEHTUtzZ .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uakEHTUtzZ .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uakEHTUtzZ .card-wrapper {
  z-index: 3;
}
.cid-uakEHTUtzZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uakEHTUtzZ .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uakEHTUtzZ .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uakEHTUtzZ .navbar-brand img {
  width: auto !important;
}
.cid-uakEHUvlCy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-uakEHUvlCy .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uakEHUvlCy .copyright-section,
.cid-uakEHUvlCy .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-uakEHUvlCy .line {
  margin: 10px 0;
  width: 100%;
}
.cid-uakEHUvlCy .logo-section img {
  margin: 0 auto;
}
.cid-uakEHUvlCy .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-uakEHUvlCy .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-uakEHUvlCy .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-uakEHUvlCy .social-media ul li {
    margin-left: 30px;
  }
  .cid-uakEHUvlCy .container-fluid {
    padding: 0 2rem;
  }
  .cid-uakEHUvlCy .menu-container {
    margin-bottom: 20px;
  }
  .cid-uakEHUvlCy .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-uakEHUvlCy .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-uakEHUvlCy .copyright-section {
    order: 1;
  }
  .cid-uakEHUvlCy .copyright-section hr {
    display: none;
  }
  .cid-uakEHUvlCy .social-media {
    margin-top: 30px;
  }
  .cid-uakEHUvlCy .social-media li:first-child {
    margin-left: 0;
  }
  .cid-uakEHUvlCy .line {
    margin: 25px 0;
  }
  .cid-uakEHUvlCy .mobirise-rights,
  .cid-uakEHUvlCy .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-uakEHUvlCy .mbr-text,
.cid-uakEHUvlCy .copyright-section {
  color: #272727;
}
.cid-sHF0neIYsp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/yoga-nidra-1500x1125.jpg");
}
.cid-sHF0neIYsp H1 {
  color: #000000;
}
.cid-sHF0neIYsp .mbr-text,
.cid-sHF0neIYsp .mbr-section-btn {
  color: #000000;
}
.cid-sHF0neIYsp .mbr-subtitle {
  color: #000000;
}
.cid-sHF0neIYsp .mbr-text {
  margin-top: 1.5rem;
}
.cid-sHF0neIYsp .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sv86wlQ5BH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sv86wlQ5BH .mbr-section-subtitle {
  color: #767676;
}
.cid-sv86wlQ5BH .container-table {
  margin: 0 auto;
}
.cid-sv86wlQ5BH .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sv86wlQ5BH .dataTables_wrapper {
  display: block;
}
.cid-sv86wlQ5BH .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sv86wlQ5BH .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sv86wlQ5BH table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sv86wlQ5BH table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sv86wlQ5BH table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sv86wlQ5BH table td {
  border-top: 1px solid #cccccc;
}
.cid-sv86wlQ5BH table.table {
  background: #ffffff;
}
.cid-sv86wlQ5BH .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sv86wlQ5BH .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sv86wlQ5BH .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sv86wlQ5BH .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sv86wlQ5BH .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sv86wlQ5BH .dataTables_filter {
    text-align: center;
  }
  .cid-sv86wlQ5BH .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sv86wlQ5BH LABEL {
  text-align: center;
}
.cid-sv86wmMltb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sv86wmMltb .mbr-section-subtitle {
  color: #767676;
}
.cid-sv86wmMltb .container-table {
  margin: 0 auto;
}
.cid-sv86wmMltb .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sv86wmMltb .dataTables_wrapper {
  display: block;
}
.cid-sv86wmMltb .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sv86wmMltb .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sv86wmMltb table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sv86wmMltb table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sv86wmMltb table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sv86wmMltb table td {
  border-top: 1px solid #cccccc;
}
.cid-sv86wmMltb table.table {
  background: #ffffff;
}
.cid-sv86wmMltb .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sv86wmMltb .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sv86wmMltb .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sv86wmMltb .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sv86wmMltb .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sv86wmMltb .dataTables_filter {
    text-align: center;
  }
  .cid-sv86wmMltb .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sv86wmMltb LABEL {
  text-align: center;
}
.cid-sv86wmMltb .body-item {
  text-align: left;
}
.cid-sv86wnqMLP .modal-body .close {
  background: #1b1b1b;
}
.cid-sv86wnqMLP .modal-body .close span {
  font-style: normal;
}
.cid-sv86wnqMLP .carousel-inner > .active,
.cid-sv86wnqMLP .carousel-inner > .next,
.cid-sv86wnqMLP .carousel-inner > .prev {
  display: flex;
}
.cid-sv86wnqMLP .carousel-control .icon-next,
.cid-sv86wnqMLP .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sv86wnqMLP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sv86wnqMLP .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sv86wnqMLP .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sv86wnqMLP .boxed-slider > div {
  position: relative;
}
.cid-sv86wnqMLP .container img {
  width: 100%;
}
.cid-sv86wnqMLP .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-sv86wnqMLP .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sv86wnqMLP .mbr-table-cell {
  padding: 0;
}
.cid-sv86wnqMLP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sv86wnqMLP .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-sv86wnqMLP .mbr-overlay {
  z-index: 1;
}
.cid-sv86wnqMLP .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sv86wnqMLP .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sv86wnqMLP .carousel-item.active.right,
.cid-sv86wnqMLP .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sv86wnqMLP .carousel-item.active.left,
.cid-sv86wnqMLP .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sv86wnqMLP .carousel-item.active,
.cid-sv86wnqMLP .carousel-item.next.left,
.cid-sv86wnqMLP .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sv86wnqMLP .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sv86wnqMLP .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sv86wnqMLP .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sv86wnqMLP .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sv86wnqMLP .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sv86wnqMLP .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sv86wnqMLP .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sv86wnqMLP .mbr-slider .carousel-indicators li.active,
.cid-sv86wnqMLP .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sv86wnqMLP .mbr-slider .carousel-indicators li::after,
.cid-sv86wnqMLP .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sv86wnqMLP .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sv86wnqMLP .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sv86wnqMLP .mbr-slider > .container img {
  width: 100%;
}
.cid-sv86wnqMLP .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-sv86wnqMLP .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sv86wnqMLP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sv86wnqMLP .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sv86wnqMLP .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sv86wnqMLP .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sv86wnqMLP .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sv86wnqMLP .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sv86wnqMLP .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sv86wnqMLP .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sv86wnqMLP .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sv86wnqMLP .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sv86wnqMLP .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sv86woiO0W {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-sv86woiO0W .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-sv86woiO0W .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-sv86woiO0W .title-text {
  color: #231f59;
  text-align: center;
}
.cid-sv86woiO0W H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sv86woiO0W .section-text,
.cid-sv86woiO0W .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sv86woPOdg .nav-item:focus,
.cid-sv86woPOdg .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sv86woPOdg .nav-item {
    position: relative;
  }
}
.cid-sv86woPOdg .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sv86woPOdg .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-sv86woPOdg .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-sv86woPOdg .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sv86woPOdg .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-sv86woPOdg .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sv86woPOdg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sv86woPOdg .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv86woPOdg .navbar.collapsed .navbar-collapse.show,
.cid-sv86woPOdg .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sv86woPOdg .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sv86woPOdg .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sv86woPOdg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sv86woPOdg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sv86woPOdg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sv86woPOdg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sv86woPOdg .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-sv86woPOdg .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sv86woPOdg .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-sv86woPOdg .navbar.collapsed .right-menu,
.cid-sv86woPOdg .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sv86woPOdg .navbar .navbar-collapse.show,
  .cid-sv86woPOdg .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-sv86woPOdg .navbar .navbar-collapse.show .brand-container,
  .cid-sv86woPOdg .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sv86woPOdg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sv86woPOdg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sv86woPOdg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sv86woPOdg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sv86woPOdg .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-sv86woPOdg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sv86woPOdg .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-sv86woPOdg .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sv86woPOdg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sv86woPOdg .navbar .right-menu,
  .cid-sv86woPOdg .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sv86woPOdg .navbar.navbar-short {
  min-height: 60px;
}
.cid-sv86woPOdg .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-sv86woPOdg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sv86woPOdg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sv86woPOdg .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-sv86woPOdg .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sv86woPOdg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sv86woPOdg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sv86woPOdg .dropdown-item.active,
.cid-sv86woPOdg .dropdown-item:active {
  background-color: transparent;
}
.cid-sv86woPOdg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sv86woPOdg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-sv86woPOdg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-sv86woPOdg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sv86woPOdg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sv86woPOdg ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sv86woPOdg ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sv86woPOdg .navbar-buttons {
  margin-left: auto;
}
.cid-sv86woPOdg button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-sv86woPOdg button.navbar-toggler:hover {
  outline: none;
}
.cid-sv86woPOdg button.navbar-toggler:active {
  outline: none;
}
.cid-sv86woPOdg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sv86woPOdg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sv86woPOdg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sv86woPOdg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sv86woPOdg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sv86woPOdg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sv86woPOdg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sv86woPOdg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sv86woPOdg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sv86woPOdg .navbar-dropdown {
  position: fixed;
}
.cid-sv86woPOdg a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-sv86woPOdg a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-sv86woPOdg a.nav-link:hover:before {
  transform: scale(1);
}
.cid-sv86woPOdg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sv86woPOdg .right-menu,
.cid-sv86woPOdg .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sv86woPOdg .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv86woPOdg .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sv86woPOdg .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sv86woPOdg .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sv86woPOdg .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sv86woPOdg .card-wrapper {
  z-index: 3;
}
.cid-sv86woPOdg .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sv86woPOdg .navbar-collapse {
    padding-top: 0;
  }
}
.cid-sv86woPOdg .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-sv86woPOdg .navbar-brand img {
  width: auto !important;
}
.cid-sv86wpwxwB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-sv86wpwxwB .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-sv86wpwxwB .copyright-section,
.cid-sv86wpwxwB .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-sv86wpwxwB .line {
  margin: 10px 0;
  width: 100%;
}
.cid-sv86wpwxwB .logo-section img {
  margin: 0 auto;
}
.cid-sv86wpwxwB .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-sv86wpwxwB .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-sv86wpwxwB .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-sv86wpwxwB .social-media ul li {
    margin-left: 30px;
  }
  .cid-sv86wpwxwB .container-fluid {
    padding: 0 2rem;
  }
  .cid-sv86wpwxwB .menu-container {
    margin-bottom: 20px;
  }
  .cid-sv86wpwxwB .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-sv86wpwxwB .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-sv86wpwxwB .copyright-section {
    order: 1;
  }
  .cid-sv86wpwxwB .copyright-section hr {
    display: none;
  }
  .cid-sv86wpwxwB .social-media {
    margin-top: 30px;
  }
  .cid-sv86wpwxwB .social-media li:first-child {
    margin-left: 0;
  }
  .cid-sv86wpwxwB .line {
    margin: 25px 0;
  }
  .cid-sv86wpwxwB .mobirise-rights,
  .cid-sv86wpwxwB .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-sv86wpwxwB .mbr-text,
.cid-sv86wpwxwB .copyright-section {
  color: #272727;
}
.cid-sv81MGYh9w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/carte-de-kashi-benares-702x510.jpg");
}
.cid-sv81MGYh9w H1 {
  color: #000000;
}
.cid-sv81MGYh9w .mbr-text,
.cid-sv81MGYh9w .mbr-section-btn {
  color: #000000;
}
.cid-sv81MGYh9w .mbr-subtitle {
  color: #000000;
}
.cid-sv81MGYh9w .mbr-text {
  margin-top: 1.5rem;
}
.cid-sv81MGYh9w .mbr-section-btn {
  margin-top: 2rem;
}
.cid-suJftox1vr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-suJftox1vr .mbr-section-subtitle {
  color: #767676;
}
.cid-suJftox1vr .container-table {
  margin: 0 auto;
}
.cid-suJftox1vr .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-suJftox1vr .dataTables_wrapper {
  display: block;
}
.cid-suJftox1vr .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-suJftox1vr .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-suJftox1vr table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-suJftox1vr table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-suJftox1vr table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-suJftox1vr table td {
  border-top: 1px solid #cccccc;
}
.cid-suJftox1vr table.table {
  background: #ffffff;
}
.cid-suJftox1vr .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-suJftox1vr .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-suJftox1vr .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-suJftox1vr .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-suJftox1vr .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-suJftox1vr .dataTables_filter {
    text-align: center;
  }
  .cid-suJftox1vr .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-suJftox1vr LABEL {
  text-align: center;
}
.cid-suJftox1vr .head-item {
  color: #f7bd50;
}
.cid-sBPlVbrsoh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBPlVbrsoh .mbr-section-subtitle {
  color: #767676;
}
.cid-sBPlVbrsoh .container-table {
  margin: 0 auto;
}
.cid-sBPlVbrsoh .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBPlVbrsoh .dataTables_wrapper {
  display: block;
}
.cid-sBPlVbrsoh .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBPlVbrsoh .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBPlVbrsoh table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBPlVbrsoh table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBPlVbrsoh table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBPlVbrsoh table td {
  border-top: 1px solid #cccccc;
}
.cid-sBPlVbrsoh table.table {
  background: #ffffff;
}
.cid-sBPlVbrsoh .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBPlVbrsoh .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBPlVbrsoh .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBPlVbrsoh .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBPlVbrsoh .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBPlVbrsoh .dataTables_filter {
    text-align: center;
  }
  .cid-sBPlVbrsoh .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBPlVbrsoh LABEL {
  text-align: center;
}
.cid-sBPlVbrsoh .head-item {
  color: #f7bd50;
}
.cid-sBPnl1Og98 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBPnl1Og98 .mbr-section-subtitle {
  color: #767676;
}
.cid-sBPnl1Og98 .container-table {
  margin: 0 auto;
}
.cid-sBPnl1Og98 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBPnl1Og98 .dataTables_wrapper {
  display: block;
}
.cid-sBPnl1Og98 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBPnl1Og98 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBPnl1Og98 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBPnl1Og98 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBPnl1Og98 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBPnl1Og98 table td {
  border-top: 1px solid #cccccc;
}
.cid-sBPnl1Og98 table.table {
  background: #ffffff;
}
.cid-sBPnl1Og98 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBPnl1Og98 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBPnl1Og98 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBPnl1Og98 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBPnl1Og98 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBPnl1Og98 .dataTables_filter {
    text-align: center;
  }
  .cid-sBPnl1Og98 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBPnl1Og98 LABEL {
  text-align: center;
}
.cid-sBPnl1Og98 .head-item {
  color: #f7bd50;
}
.cid-sBPo1fLQDA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBPo1fLQDA .mbr-section-subtitle {
  color: #767676;
}
.cid-sBPo1fLQDA .container-table {
  margin: 0 auto;
}
.cid-sBPo1fLQDA .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBPo1fLQDA .dataTables_wrapper {
  display: block;
}
.cid-sBPo1fLQDA .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBPo1fLQDA .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBPo1fLQDA table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBPo1fLQDA table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBPo1fLQDA table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBPo1fLQDA table td {
  border-top: 1px solid #cccccc;
}
.cid-sBPo1fLQDA table.table {
  background: #ffffff;
}
.cid-sBPo1fLQDA .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBPo1fLQDA .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBPo1fLQDA .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBPo1fLQDA .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBPo1fLQDA .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBPo1fLQDA .dataTables_filter {
    text-align: center;
  }
  .cid-sBPo1fLQDA .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBPo1fLQDA LABEL {
  text-align: center;
}
.cid-sBPo1fLQDA .head-item {
  color: #f7bd50;
}
.cid-sBPotQdriL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBPotQdriL .mbr-section-subtitle {
  color: #767676;
}
.cid-sBPotQdriL .container-table {
  margin: 0 auto;
}
.cid-sBPotQdriL .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBPotQdriL .dataTables_wrapper {
  display: block;
}
.cid-sBPotQdriL .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBPotQdriL .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBPotQdriL table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBPotQdriL table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBPotQdriL table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBPotQdriL table td {
  border-top: 1px solid #cccccc;
}
.cid-sBPotQdriL table.table {
  background: #ffffff;
}
.cid-sBPotQdriL .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBPotQdriL .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBPotQdriL .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBPotQdriL .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBPotQdriL .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBPotQdriL .dataTables_filter {
    text-align: center;
  }
  .cid-sBPotQdriL .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBPotQdriL LABEL {
  text-align: center;
}
.cid-sBPotQdriL .head-item {
  color: #f7bd50;
}
.cid-sv7JMDEc2S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sv7JMDEc2S .mbr-section-subtitle {
  color: #767676;
}
.cid-sv7JMDEc2S .container-table {
  margin: 0 auto;
}
.cid-sv7JMDEc2S .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sv7JMDEc2S .dataTables_wrapper {
  display: block;
}
.cid-sv7JMDEc2S .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sv7JMDEc2S .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sv7JMDEc2S table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sv7JMDEc2S table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sv7JMDEc2S table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sv7JMDEc2S table td {
  border-top: 1px solid #cccccc;
}
.cid-sv7JMDEc2S table.table {
  background: #ffffff;
}
.cid-sv7JMDEc2S .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sv7JMDEc2S .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sv7JMDEc2S .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sv7JMDEc2S .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sv7JMDEc2S .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sv7JMDEc2S .dataTables_filter {
    text-align: center;
  }
  .cid-sv7JMDEc2S .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sv7JMDEc2S LABEL {
  text-align: center;
}
.cid-sv7JMDEc2S .body-item {
  text-align: left;
}
.cid-sv7JMDEc2S .head-item {
  color: #f7bd50;
}
.cid-sBPtptxoCz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-sBPtptxoCz .mbr-section-subtitle {
  color: #767676;
}
.cid-sBPtptxoCz .container-table {
  margin: 0 auto;
}
.cid-sBPtptxoCz .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sBPtptxoCz .dataTables_wrapper {
  display: block;
}
.cid-sBPtptxoCz .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sBPtptxoCz .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sBPtptxoCz table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sBPtptxoCz table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sBPtptxoCz table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sBPtptxoCz table td {
  border-top: 1px solid #cccccc;
}
.cid-sBPtptxoCz table.table {
  background: #ffffff;
}
.cid-sBPtptxoCz .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sBPtptxoCz .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sBPtptxoCz .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sBPtptxoCz .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sBPtptxoCz .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sBPtptxoCz .dataTables_filter {
    text-align: center;
  }
  .cid-sBPtptxoCz .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sBPtptxoCz LABEL {
  text-align: center;
}
.cid-sBPtptxoCz .head-item {
  text-align: center;
}
.cid-suJ4XUd6bY .modal-body .close {
  background: #1b1b1b;
}
.cid-suJ4XUd6bY .modal-body .close span {
  font-style: normal;
}
.cid-suJ4XUd6bY .carousel-inner > .active,
.cid-suJ4XUd6bY .carousel-inner > .next,
.cid-suJ4XUd6bY .carousel-inner > .prev {
  display: flex;
}
.cid-suJ4XUd6bY .carousel-control .icon-next,
.cid-suJ4XUd6bY .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-suJ4XUd6bY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-suJ4XUd6bY .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-suJ4XUd6bY .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-suJ4XUd6bY .boxed-slider > div {
  position: relative;
}
.cid-suJ4XUd6bY .container img {
  width: 100%;
}
.cid-suJ4XUd6bY .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-suJ4XUd6bY .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-suJ4XUd6bY .mbr-table-cell {
  padding: 0;
}
.cid-suJ4XUd6bY .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-suJ4XUd6bY .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-suJ4XUd6bY .mbr-overlay {
  z-index: 1;
}
.cid-suJ4XUd6bY .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-suJ4XUd6bY .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-suJ4XUd6bY .carousel-item.active.right,
.cid-suJ4XUd6bY .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-suJ4XUd6bY .carousel-item.active.left,
.cid-suJ4XUd6bY .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-suJ4XUd6bY .carousel-item.active,
.cid-suJ4XUd6bY .carousel-item.next.left,
.cid-suJ4XUd6bY .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-suJ4XUd6bY .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-suJ4XUd6bY .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-suJ4XUd6bY .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-suJ4XUd6bY .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-suJ4XUd6bY .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-suJ4XUd6bY .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-suJ4XUd6bY .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-suJ4XUd6bY .mbr-slider .carousel-indicators li.active,
.cid-suJ4XUd6bY .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-suJ4XUd6bY .mbr-slider .carousel-indicators li::after,
.cid-suJ4XUd6bY .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-suJ4XUd6bY .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-suJ4XUd6bY .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-suJ4XUd6bY .mbr-slider > .container img {
  width: 100%;
}
.cid-suJ4XUd6bY .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-suJ4XUd6bY .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-suJ4XUd6bY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-suJ4XUd6bY .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-suJ4XUd6bY .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-suJ4XUd6bY .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-suJ4XUd6bY .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-suJ4XUd6bY .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-suJ4XUd6bY .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-suJ4XUd6bY .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-suJ4XUd6bY .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-suJ4XUd6bY .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-suJ4XUd6bY .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-suJ4XTCa22 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-suJ4XTCa22 .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-suJ4XTCa22 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-suJ4XTCa22 .title-text {
  color: #231f59;
  text-align: center;
}
.cid-suJ4XTCa22 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-suJ4XTCa22 .section-text,
.cid-suJ4XTCa22 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-suJ4XV4s6a .nav-item:focus,
.cid-suJ4XV4s6a .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-suJ4XV4s6a .nav-item {
    position: relative;
  }
}
.cid-suJ4XV4s6a .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-suJ4XV4s6a .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-suJ4XV4s6a .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-suJ4XV4s6a .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-suJ4XV4s6a .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-suJ4XV4s6a .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-suJ4XV4s6a .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-suJ4XV4s6a .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suJ4XV4s6a .navbar.collapsed .navbar-collapse.show,
.cid-suJ4XV4s6a .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-suJ4XV4s6a .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-suJ4XV4s6a .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-suJ4XV4s6a .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-suJ4XV4s6a .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suJ4XV4s6a .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suJ4XV4s6a .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-suJ4XV4s6a .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-suJ4XV4s6a .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-suJ4XV4s6a .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-suJ4XV4s6a .navbar.collapsed .right-menu,
.cid-suJ4XV4s6a .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-suJ4XV4s6a .navbar .navbar-collapse.show,
  .cid-suJ4XV4s6a .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-suJ4XV4s6a .navbar .navbar-collapse.show .brand-container,
  .cid-suJ4XV4s6a .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-suJ4XV4s6a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suJ4XV4s6a .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-suJ4XV4s6a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suJ4XV4s6a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suJ4XV4s6a .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-suJ4XV4s6a .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suJ4XV4s6a .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-suJ4XV4s6a .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-suJ4XV4s6a .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-suJ4XV4s6a .navbar .right-menu,
  .cid-suJ4XV4s6a .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-suJ4XV4s6a .navbar.navbar-short {
  min-height: 60px;
}
.cid-suJ4XV4s6a .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-suJ4XV4s6a .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suJ4XV4s6a .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-suJ4XV4s6a .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-suJ4XV4s6a .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-suJ4XV4s6a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suJ4XV4s6a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suJ4XV4s6a .dropdown-item.active,
.cid-suJ4XV4s6a .dropdown-item:active {
  background-color: transparent;
}
.cid-suJ4XV4s6a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suJ4XV4s6a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-suJ4XV4s6a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-suJ4XV4s6a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suJ4XV4s6a .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suJ4XV4s6a ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-suJ4XV4s6a ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-suJ4XV4s6a .navbar-buttons {
  margin-left: auto;
}
.cid-suJ4XV4s6a button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-suJ4XV4s6a button.navbar-toggler:hover {
  outline: none;
}
.cid-suJ4XV4s6a button.navbar-toggler:active {
  outline: none;
}
.cid-suJ4XV4s6a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-suJ4XV4s6a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suJ4XV4s6a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suJ4XV4s6a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suJ4XV4s6a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suJ4XV4s6a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suJ4XV4s6a nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-suJ4XV4s6a nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-suJ4XV4s6a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suJ4XV4s6a .navbar-dropdown {
  position: fixed;
}
.cid-suJ4XV4s6a a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-suJ4XV4s6a a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-suJ4XV4s6a a.nav-link:hover:before {
  transform: scale(1);
}
.cid-suJ4XV4s6a .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suJ4XV4s6a .right-menu,
.cid-suJ4XV4s6a .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-suJ4XV4s6a .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suJ4XV4s6a .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-suJ4XV4s6a .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suJ4XV4s6a .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-suJ4XV4s6a .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-suJ4XV4s6a .card-wrapper {
  z-index: 3;
}
.cid-suJ4XV4s6a .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-suJ4XV4s6a .navbar-collapse {
    padding-top: 0;
  }
}
.cid-suJ4XV4s6a .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-suJ4XV4s6a .navbar-brand img {
  width: auto !important;
}
.cid-suJ4XVXUWz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-suJ4XVXUWz .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-suJ4XVXUWz .copyright-section,
.cid-suJ4XVXUWz .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-suJ4XVXUWz .line {
  margin: 10px 0;
  width: 100%;
}
.cid-suJ4XVXUWz .logo-section img {
  margin: 0 auto;
}
.cid-suJ4XVXUWz .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-suJ4XVXUWz .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-suJ4XVXUWz .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-suJ4XVXUWz .social-media ul li {
    margin-left: 30px;
  }
  .cid-suJ4XVXUWz .container-fluid {
    padding: 0 2rem;
  }
  .cid-suJ4XVXUWz .menu-container {
    margin-bottom: 20px;
  }
  .cid-suJ4XVXUWz .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-suJ4XVXUWz .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-suJ4XVXUWz .copyright-section {
    order: 1;
  }
  .cid-suJ4XVXUWz .copyright-section hr {
    display: none;
  }
  .cid-suJ4XVXUWz .social-media {
    margin-top: 30px;
  }
  .cid-suJ4XVXUWz .social-media li:first-child {
    margin-left: 0;
  }
  .cid-suJ4XVXUWz .line {
    margin: 25px 0;
  }
  .cid-suJ4XVXUWz .mobirise-rights,
  .cid-suJ4XVXUWz .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-suJ4XVXUWz .mbr-text,
.cid-suJ4XVXUWz .copyright-section {
  color: #272727;
}
.cid-ujfqNgzsjQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1267.jpg");
}
.cid-ujfqNgzsjQ H1 {
  color: #000000;
}
.cid-ujfqNgzsjQ .mbr-text,
.cid-ujfqNgzsjQ .mbr-section-btn {
  color: #000000;
}
.cid-ujfqNgzsjQ .mbr-subtitle {
  color: #000000;
}
.cid-ujfqNgzsjQ .mbr-text {
  margin-top: 1.5rem;
}
.cid-ujfqNgzsjQ .mbr-section-btn {
  margin-top: 2rem;
}
.cid-ujfqNh9NR0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-ujfqNh9NR0 .mbr-section-subtitle {
  color: #767676;
}
.cid-ujfqNh9NR0 .container-table {
  margin: 0 auto;
}
.cid-ujfqNh9NR0 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-ujfqNh9NR0 .dataTables_wrapper {
  display: block;
}
.cid-ujfqNh9NR0 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-ujfqNh9NR0 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-ujfqNh9NR0 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-ujfqNh9NR0 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-ujfqNh9NR0 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-ujfqNh9NR0 table td {
  border-top: 1px solid #cccccc;
}
.cid-ujfqNh9NR0 table.table {
  background: #ffffff;
}
.cid-ujfqNh9NR0 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-ujfqNh9NR0 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-ujfqNh9NR0 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-ujfqNh9NR0 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-ujfqNh9NR0 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-ujfqNh9NR0 .dataTables_filter {
    text-align: center;
  }
  .cid-ujfqNh9NR0 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-ujfqNh9NR0 LABEL {
  text-align: center;
}
.cid-ujfqNh9NR0 .head-item {
  color: #f7bd50;
}
.cid-ujfqNhIJc6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-ujfqNhIJc6 .mbr-section-subtitle {
  color: #767676;
}
.cid-ujfqNhIJc6 .container-table {
  margin: 0 auto;
}
.cid-ujfqNhIJc6 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-ujfqNhIJc6 .dataTables_wrapper {
  display: block;
}
.cid-ujfqNhIJc6 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-ujfqNhIJc6 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-ujfqNhIJc6 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-ujfqNhIJc6 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-ujfqNhIJc6 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-ujfqNhIJc6 table td {
  border-top: 1px solid #cccccc;
}
.cid-ujfqNhIJc6 table.table {
  background: #ffffff;
}
.cid-ujfqNhIJc6 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-ujfqNhIJc6 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-ujfqNhIJc6 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-ujfqNhIJc6 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-ujfqNhIJc6 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-ujfqNhIJc6 .dataTables_filter {
    text-align: center;
  }
  .cid-ujfqNhIJc6 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-ujfqNhIJc6 LABEL {
  text-align: center;
}
.cid-ujfqNhIJc6 .body-item {
  text-align: left;
}
.cid-ujfqNhIJc6 .head-item {
  color: #f7bd50;
}
.cid-ujfqNigypR .modal-body .close {
  background: #1b1b1b;
}
.cid-ujfqNigypR .modal-body .close span {
  font-style: normal;
}
.cid-ujfqNigypR .carousel-inner > .active,
.cid-ujfqNigypR .carousel-inner > .next,
.cid-ujfqNigypR .carousel-inner > .prev {
  display: flex;
}
.cid-ujfqNigypR .carousel-control .icon-next,
.cid-ujfqNigypR .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-ujfqNigypR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ujfqNigypR .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ujfqNigypR .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-ujfqNigypR .boxed-slider > div {
  position: relative;
}
.cid-ujfqNigypR .container img {
  width: 100%;
}
.cid-ujfqNigypR .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-ujfqNigypR .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-ujfqNigypR .mbr-table-cell {
  padding: 0;
}
.cid-ujfqNigypR .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ujfqNigypR .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-ujfqNigypR .mbr-overlay {
  z-index: 1;
}
.cid-ujfqNigypR .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-ujfqNigypR .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-ujfqNigypR .carousel-item.active.right,
.cid-ujfqNigypR .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-ujfqNigypR .carousel-item.active.left,
.cid-ujfqNigypR .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-ujfqNigypR .carousel-item.active,
.cid-ujfqNigypR .carousel-item.next.left,
.cid-ujfqNigypR .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-ujfqNigypR .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-ujfqNigypR .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ujfqNigypR .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ujfqNigypR .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-ujfqNigypR .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ujfqNigypR .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-ujfqNigypR .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-ujfqNigypR .mbr-slider .carousel-indicators li.active,
.cid-ujfqNigypR .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-ujfqNigypR .mbr-slider .carousel-indicators li::after,
.cid-ujfqNigypR .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-ujfqNigypR .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-ujfqNigypR .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-ujfqNigypR .mbr-slider > .container img {
  width: 100%;
}
.cid-ujfqNigypR .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-ujfqNigypR .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-ujfqNigypR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ujfqNigypR .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-ujfqNigypR .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-ujfqNigypR .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-ujfqNigypR .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-ujfqNigypR .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-ujfqNigypR .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-ujfqNigypR .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-ujfqNigypR .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-ujfqNigypR .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-ujfqNigypR .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-ujfqNjfaci {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-ujfqNjfaci .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-ujfqNjfaci .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-ujfqNjfaci .title-text {
  color: #231f59;
  text-align: center;
}
.cid-ujfqNjfaci H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-ujfqNjfaci .section-text,
.cid-ujfqNjfaci .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-ujfqNjOm3j .nav-item:focus,
.cid-ujfqNjOm3j .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-ujfqNjOm3j .nav-item {
    position: relative;
  }
}
.cid-ujfqNjOm3j .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-ujfqNjOm3j .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-ujfqNjOm3j .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-ujfqNjOm3j .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-ujfqNjOm3j .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-ujfqNjOm3j .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-ujfqNjOm3j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ujfqNjOm3j .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ujfqNjOm3j .navbar.collapsed .navbar-collapse.show,
.cid-ujfqNjOm3j .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-ujfqNjOm3j .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-ujfqNjOm3j .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-ujfqNjOm3j .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ujfqNjOm3j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujfqNjOm3j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujfqNjOm3j .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-ujfqNjOm3j .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-ujfqNjOm3j .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-ujfqNjOm3j .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-ujfqNjOm3j .navbar.collapsed .right-menu,
.cid-ujfqNjOm3j .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-ujfqNjOm3j .navbar .navbar-collapse.show,
  .cid-ujfqNjOm3j .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-ujfqNjOm3j .navbar .navbar-collapse.show .brand-container,
  .cid-ujfqNjOm3j .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-ujfqNjOm3j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujfqNjOm3j .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ujfqNjOm3j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujfqNjOm3j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujfqNjOm3j .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-ujfqNjOm3j .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ujfqNjOm3j .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-ujfqNjOm3j .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-ujfqNjOm3j .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-ujfqNjOm3j .navbar .right-menu,
  .cid-ujfqNjOm3j .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-ujfqNjOm3j .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujfqNjOm3j .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-ujfqNjOm3j .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ujfqNjOm3j .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-ujfqNjOm3j .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-ujfqNjOm3j .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-ujfqNjOm3j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujfqNjOm3j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujfqNjOm3j .dropdown-item.active,
.cid-ujfqNjOm3j .dropdown-item:active {
  background-color: transparent;
}
.cid-ujfqNjOm3j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujfqNjOm3j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-ujfqNjOm3j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-ujfqNjOm3j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujfqNjOm3j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujfqNjOm3j ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-ujfqNjOm3j ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-ujfqNjOm3j .navbar-buttons {
  margin-left: auto;
}
.cid-ujfqNjOm3j button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-ujfqNjOm3j button.navbar-toggler:hover {
  outline: none;
}
.cid-ujfqNjOm3j button.navbar-toggler:active {
  outline: none;
}
.cid-ujfqNjOm3j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ujfqNjOm3j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ujfqNjOm3j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ujfqNjOm3j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ujfqNjOm3j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ujfqNjOm3j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ujfqNjOm3j nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-ujfqNjOm3j nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-ujfqNjOm3j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ujfqNjOm3j .navbar-dropdown {
  position: fixed;
}
.cid-ujfqNjOm3j a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-ujfqNjOm3j a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-ujfqNjOm3j a.nav-link:hover:before {
  transform: scale(1);
}
.cid-ujfqNjOm3j .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ujfqNjOm3j .right-menu,
.cid-ujfqNjOm3j .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-ujfqNjOm3j .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ujfqNjOm3j .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ujfqNjOm3j .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ujfqNjOm3j .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ujfqNjOm3j .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-ujfqNjOm3j .card-wrapper {
  z-index: 3;
}
.cid-ujfqNjOm3j .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-ujfqNjOm3j .navbar-collapse {
    padding-top: 0;
  }
}
.cid-ujfqNjOm3j .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-ujfqNjOm3j .navbar-brand img {
  width: auto !important;
}
.cid-ujfqNkrWir {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-ujfqNkrWir .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-ujfqNkrWir .copyright-section,
.cid-ujfqNkrWir .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-ujfqNkrWir .line {
  margin: 10px 0;
  width: 100%;
}
.cid-ujfqNkrWir .logo-section img {
  margin: 0 auto;
}
.cid-ujfqNkrWir .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-ujfqNkrWir .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-ujfqNkrWir .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-ujfqNkrWir .social-media ul li {
    margin-left: 30px;
  }
  .cid-ujfqNkrWir .container-fluid {
    padding: 0 2rem;
  }
  .cid-ujfqNkrWir .menu-container {
    margin-bottom: 20px;
  }
  .cid-ujfqNkrWir .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-ujfqNkrWir .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-ujfqNkrWir .copyright-section {
    order: 1;
  }
  .cid-ujfqNkrWir .copyright-section hr {
    display: none;
  }
  .cid-ujfqNkrWir .social-media {
    margin-top: 30px;
  }
  .cid-ujfqNkrWir .social-media li:first-child {
    margin-left: 0;
  }
  .cid-ujfqNkrWir .line {
    margin: 25px 0;
  }
  .cid-ujfqNkrWir .mobirise-rights,
  .cid-ujfqNkrWir .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-ujfqNkrWir .mbr-text,
.cid-ujfqNkrWir .copyright-section {
  color: #272727;
}
.cid-uIIP5JlnpW {
  padding-top: 135px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/gorakshasana-posture-sage-goraksh-pascal-gontier-natha-yoga-nb-2000x1591.jpg");
}
.cid-uIIP5JlnpW H1 {
  color: #000000;
}
.cid-uIIP5JlnpW .mbr-text,
.cid-uIIP5JlnpW .mbr-section-btn {
  color: #000000;
}
.cid-uIIP5JlnpW .mbr-subtitle {
  color: #000000;
}
.cid-uIIP5JlnpW .mbr-text {
  margin-top: 1.5rem;
}
.cid-uIIP5JlnpW .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uIIP5K5Gc3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-uIIP5K5Gc3 .mbr-section-subtitle {
  color: #767676;
}
.cid-uIIP5K5Gc3 .container-table {
  margin: 0 auto;
}
.cid-uIIP5K5Gc3 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uIIP5K5Gc3 .dataTables_wrapper {
  display: block;
}
.cid-uIIP5K5Gc3 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uIIP5K5Gc3 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uIIP5K5Gc3 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uIIP5K5Gc3 table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uIIP5K5Gc3 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uIIP5K5Gc3 table td {
  border-top: 1px solid #cccccc;
}
.cid-uIIP5K5Gc3 table.table {
  background: #ffffff;
}
.cid-uIIP5K5Gc3 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uIIP5K5Gc3 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uIIP5K5Gc3 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uIIP5K5Gc3 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-uIIP5K5Gc3 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uIIP5K5Gc3 .dataTables_filter {
    text-align: center;
  }
  .cid-uIIP5K5Gc3 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uIIP5K5Gc3 LABEL {
  text-align: center;
}
.cid-uIIP5K5Gc3 .head-item {
  color: #f7bd50;
}
.cid-uIIP5KOVJc .modal-body .close {
  background: #1b1b1b;
}
.cid-uIIP5KOVJc .modal-body .close span {
  font-style: normal;
}
.cid-uIIP5KOVJc .carousel-inner > .active,
.cid-uIIP5KOVJc .carousel-inner > .next,
.cid-uIIP5KOVJc .carousel-inner > .prev {
  display: flex;
}
.cid-uIIP5KOVJc .carousel-control .icon-next,
.cid-uIIP5KOVJc .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uIIP5KOVJc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uIIP5KOVJc .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uIIP5KOVJc .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uIIP5KOVJc .boxed-slider > div {
  position: relative;
}
.cid-uIIP5KOVJc .container img {
  width: 100%;
}
.cid-uIIP5KOVJc .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-uIIP5KOVJc .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uIIP5KOVJc .mbr-table-cell {
  padding: 0;
}
.cid-uIIP5KOVJc .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uIIP5KOVJc .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-uIIP5KOVJc .mbr-overlay {
  z-index: 1;
}
.cid-uIIP5KOVJc .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uIIP5KOVJc .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uIIP5KOVJc .carousel-item.active.right,
.cid-uIIP5KOVJc .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uIIP5KOVJc .carousel-item.active.left,
.cid-uIIP5KOVJc .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uIIP5KOVJc .carousel-item.active,
.cid-uIIP5KOVJc .carousel-item.next.left,
.cid-uIIP5KOVJc .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uIIP5KOVJc .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: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-uIIP5KOVJc .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uIIP5KOVJc .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uIIP5KOVJc .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uIIP5KOVJc .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uIIP5KOVJc .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uIIP5KOVJc .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: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uIIP5KOVJc .mbr-slider .carousel-indicators li.active,
.cid-uIIP5KOVJc .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uIIP5KOVJc .mbr-slider .carousel-indicators li::after,
.cid-uIIP5KOVJc .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uIIP5KOVJc .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uIIP5KOVJc .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uIIP5KOVJc .mbr-slider > .container img {
  width: 100%;
}
.cid-uIIP5KOVJc .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-uIIP5KOVJc .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uIIP5KOVJc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uIIP5KOVJc .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uIIP5KOVJc .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uIIP5KOVJc .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uIIP5KOVJc .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uIIP5KOVJc .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uIIP5KOVJc .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uIIP5KOVJc .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uIIP5KOVJc .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uIIP5KOVJc .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uIIP5KOVJc .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uIIP5LCwxg {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-uIIP5LCwxg .mbr-overlay {
  padding: 0;
  background: #e9ddd8;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-uIIP5LCwxg .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-uIIP5LCwxg .title-text {
  color: #231f59;
  text-align: center;
}
.cid-uIIP5LCwxg H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-uIIP5LCwxg .section-text,
.cid-uIIP5LCwxg .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-uIIP5M2ZUi .nav-item:focus,
.cid-uIIP5M2ZUi .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uIIP5M2ZUi .nav-item {
    position: relative;
  }
}
.cid-uIIP5M2ZUi .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uIIP5M2ZUi .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #cbddea;
}
.cid-uIIP5M2ZUi .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #cbddea !important;
}
.cid-uIIP5M2ZUi .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uIIP5M2ZUi .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uIIP5M2ZUi .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uIIP5M2ZUi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uIIP5M2ZUi .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uIIP5M2ZUi .navbar.collapsed .navbar-collapse.show,
.cid-uIIP5M2ZUi .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uIIP5M2ZUi .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uIIP5M2ZUi .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uIIP5M2ZUi .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uIIP5M2ZUi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIIP5M2ZUi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIIP5M2ZUi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uIIP5M2ZUi .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uIIP5M2ZUi .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uIIP5M2ZUi .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uIIP5M2ZUi .navbar.collapsed .right-menu,
.cid-uIIP5M2ZUi .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uIIP5M2ZUi .navbar .navbar-collapse.show,
  .cid-uIIP5M2ZUi .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uIIP5M2ZUi .navbar .navbar-collapse.show .brand-container,
  .cid-uIIP5M2ZUi .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uIIP5M2ZUi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIIP5M2ZUi .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uIIP5M2ZUi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIIP5M2ZUi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIIP5M2ZUi .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-uIIP5M2ZUi .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uIIP5M2ZUi .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uIIP5M2ZUi .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uIIP5M2ZUi .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uIIP5M2ZUi .navbar .right-menu,
  .cid-uIIP5M2ZUi .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uIIP5M2ZUi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uIIP5M2ZUi .navbar.navbar-short .mbr-overlay {
  background: #cbddea !important;
}
.cid-uIIP5M2ZUi .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uIIP5M2ZUi .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uIIP5M2ZUi .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uIIP5M2ZUi .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uIIP5M2ZUi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIIP5M2ZUi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIIP5M2ZUi .dropdown-item.active,
.cid-uIIP5M2ZUi .dropdown-item:active {
  background-color: transparent;
}
.cid-uIIP5M2ZUi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIIP5M2ZUi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uIIP5M2ZUi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cbddea;
}
.cid-uIIP5M2ZUi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIIP5M2ZUi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIIP5M2ZUi ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uIIP5M2ZUi ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uIIP5M2ZUi .navbar-buttons {
  margin-left: auto;
}
.cid-uIIP5M2ZUi button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uIIP5M2ZUi button.navbar-toggler:hover {
  outline: none;
}
.cid-uIIP5M2ZUi button.navbar-toggler:active {
  outline: none;
}
.cid-uIIP5M2ZUi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uIIP5M2ZUi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uIIP5M2ZUi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uIIP5M2ZUi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uIIP5M2ZUi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uIIP5M2ZUi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIIP5M2ZUi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uIIP5M2ZUi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uIIP5M2ZUi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIIP5M2ZUi .navbar-dropdown {
  position: fixed;
}
.cid-uIIP5M2ZUi a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uIIP5M2ZUi a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uIIP5M2ZUi a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uIIP5M2ZUi .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uIIP5M2ZUi .right-menu,
.cid-uIIP5M2ZUi .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uIIP5M2ZUi .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uIIP5M2ZUi .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uIIP5M2ZUi .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uIIP5M2ZUi .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uIIP5M2ZUi .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uIIP5M2ZUi .card-wrapper {
  z-index: 3;
}
.cid-uIIP5M2ZUi .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uIIP5M2ZUi .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uIIP5M2ZUi .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uIIP5M2ZUi .navbar-brand img {
  width: auto !important;
}
.cid-uIIP5MFeko {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f7bd50;
}
.cid-uIIP5MFeko .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uIIP5MFeko .copyright-section,
.cid-uIIP5MFeko .social-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-uIIP5MFeko .line {
  margin: 10px 0;
  width: 100%;
}
.cid-uIIP5MFeko .logo-section img {
  margin: 0 auto;
}
.cid-uIIP5MFeko .social-media ul {
  padding: 0;
  margin-bottom: 0;
}
.cid-uIIP5MFeko .social-media ul li {
  display: inline-block;
  margin-left: 50px;
}
.cid-uIIP5MFeko .mobirise-rights {
  letter-spacing: .4px;
}
@media (max-width: 992px) {
  .cid-uIIP5MFeko .social-media ul li {
    margin-left: 30px;
  }
  .cid-uIIP5MFeko .container-fluid {
    padding: 0 2rem;
  }
  .cid-uIIP5MFeko .menu-container {
    margin-bottom: 20px;
  }
  .cid-uIIP5MFeko .mbr-list {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-uIIP5MFeko .mbr-list li {
    margin-bottom: .5rem;
  }
}
@media (max-width: 767px) {
  .cid-uIIP5MFeko .copyright-section {
    order: 1;
  }
  .cid-uIIP5MFeko .copyright-section hr {
    display: none;
  }
  .cid-uIIP5MFeko .social-media {
    margin-top: 30px;
  }
  .cid-uIIP5MFeko .social-media li:first-child {
    margin-left: 0;
  }
  .cid-uIIP5MFeko .line {
    margin: 25px 0;
  }
  .cid-uIIP5MFeko .mobirise-rights,
  .cid-uIIP5MFeko .social-media {
    align-items: center;
    text-align: center;
  }
}
.cid-uIIP5MFeko .mbr-text,
.cid-uIIP5MFeko .copyright-section {
  color: #272727;
}
