body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #3b215b !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #3b215b !important;
  border-color: #3b215b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #170d23 !important;
  border-color: #170d23 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #170d23 !important;
  border-color: #170d23 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #0a0610;
  color: #0a0610 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #3b215b;
  border-color: #3b215b;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #3b215b !important;
  border-color: #3b215b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #3b215b !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0a0610 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #3b215b;
  border-color: #3b215b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #3b215b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #7843b9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #3b215b;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #3b215b;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #3b215b;
  border-bottom-color: #3b215b;
}
.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: #3b215b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ca4336 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%233b215b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
/* .cid-sMvdUF6JrH {
  padding-top: 225px;
  background-image: url("../../../assets/images/mbr-4.jpg");
} */
/* 
.cid-sMvdUF6JrH {
  padding-top: 225px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}

.cid-sMvdUF6JrH .text-content {
  padding-bottom: 60px;
}
.cid-sMvdUF6JrH .content-container .btn-bgr {
  z-index: 0;
}
.cid-sMvdUF6JrH .box-item-text {
  color: #767676;
}
.cid-sMvdUF6JrH .box-item {
  padding: 2.5rem;
}
.cid-sMvdUF6JrH .box-item:first-child {
  background-color: #efefef;
}
.cid-sMvdUF6JrH .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sMvdUF6JrH .box-item:last-child {
  background-color: #efefef;
}
.cid-sMvdUF6JrH .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sMvdUF6JrH .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sMvdUF6JrH .box-list li:last-child {
  border-bottom: none;
}
.cid-sMvdUF6JrH .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sMvdUF6JrH .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-sMvdUF6JrH .media-container-row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-sMvdUF6JrH .mbr-section-subtitle,
  .cid-sMvdUF6JrH .mbr-section-title,
  .cid-sMvdUF6JrH .mbr-text,
  .cid-sMvdUF6JrH .mbr-section-btn,
  .cid-sMvdUF6JrH .icon-block-top,
  .cid-sMvdUF6JrH .box-item-title,
  .cid-sMvdUF6JrH .box-item-text {
    text-align: center !important;
  }
}
.cid-sMvdUF6JrH .mbr-section-subtitle {
  color: #efefef;
}
.cid-sMvdUF6JrH .mbr-section-title {
  color: #ffffff;
} */
.cid-sMLklB3zMq {
  padding-top: 90px;
  padding-bottom: 10px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-sMLklB3zMq .mbr-section-subtitle {
  color: #767676;
}
.cid-sMLklB3zMq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sMLklB3zMq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sMLklB3zMq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sMLklB3zMq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sMLklB3zMq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #59585d;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sMLklB3zMq .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sMLklB3zMq .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMLklB3zMq .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sMLklB3zMq .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMLklB3zMq .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sMLklB3zMq ul {
  font-size: 0;
}
.cid-sMLklB3zMq .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sMLklB3zMq .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sMLklB3zMq .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sMLklB3zMq .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sMLklB3zMq .mbr-gallery-filter ul li:first-child,
.cid-sMLklB3zMq .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sMLklB3zMq .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sMLklB3zMq .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-sMLklB3zMq .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sMLklB3zMq .btn.active:after {
  animation: none;
}
.cid-sMLklB3zMq .btn:active {
  box-shadow: none !important;
}
.cid-sMLklB3zMq .btn:hover {
  background: transparent !important;
}
.cid-sMLklB3zMq .btn:hover:before {
  background: transparent !important;
}
.cid-sMLklB3zMq .btn:before {
  background-color: transparent !important;
}
.cid-sMLklB3zMq .btn:focus {
  box-shadow: none !important;
}
.cid-sMvfdtPDlK {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #7a81a8;
}
.cid-sMvfdtPDlK h2,
.cid-sMvfdtPDlK h3,
.cid-sMvfdtPDlK h4,
.cid-sMvfdtPDlK p {
  color: #ffffff;
}
.cid-sMvfdtPDlK .mbr-overlay {
  z-index: -1;
}
.cid-sMvfdtPDlK .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sMvfdtPDlK .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-sMvfdtPDlK .form-control:focus,
.cid-sMvfdtPDlK .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-sMvfdtPDlK .form-group {
  margin-bottom: 1rem;
}
.cid-sMvfdtPDlK input::-webkit-input-placeholder,
.cid-sMvfdtPDlK textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-sMvfdtPDlK input:-moz-placeholder,
.cid-sMvfdtPDlK textarea:-moz-placeholder {
  color: #656565;
}
.cid-sMvfdtPDlK .jq-selectbox li,
.cid-sMvfdtPDlK .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sMvfdtPDlK .jq-selectbox li:hover,
.cid-sMvfdtPDlK .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sMvfdtPDlK .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sMvfdtPDlK .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sMvfdtPDlK .subtext {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.cid-sMvfdtPDlK .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMvfdtPDlK .mbr-text {
  color: #767676;
}
.cid-sMvfdtPDlK .form-block {
  padding: 3rem;
  position: relative;
}
.cid-sMvfdtPDlK .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-sMvfdtPDlK .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-sMvfdtPDlK a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sMvfdtPDlK .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sMvfdtPDlK .input-group-btn {
  display: block;
  text-align: center;
}
.cid-sMvfdtPDlK textarea.form-control {
  resize: none;
}
.cid-sMvfdtPDlK .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .cid-sMvfdtPDlK .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sMvfdtPDlK .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-sMvfdtPDlK .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sMvfdtPDlK h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sMvfdtPDlK .block-content {
    padding: 0;
  }
  .cid-sMvfdtPDlK .form-block {
    padding: 1rem;
  }
}
.cid-sMvfejYCYa {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sMvfejYCYa .main {
  flex-direction: row-reverse;
}
.cid-sMvfejYCYa .row-element,
.cid-sMvfejYCYa .image-element {
  padding: 0;
}
.cid-sMvfejYCYa .image-element {
  display: flex;
  justify-content: center;
}
.cid-sMvfejYCYa .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sMvfejYCYa .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-sMvfejYCYa .text-content {
    padding: 2rem 1rem;
  }
  .cid-sMvfejYCYa .mbr-title,
  .cid-sMvfejYCYa .underline,
  .cid-sMvfejYCYa .mbr-text,
  .cid-sMvfejYCYa .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sMvfejYCYa .mbr-text,
.cid-sMvfejYCYa .mbr-section-btn {
  color: #232323;
}
.cid-sMvfejYCYa .mbr-title {
  color: #2e2c5c;
}
.cid-sMve6Ai2WG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #2e2c5c;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sMve6Ai2WG .nav-item,
.cid-sMve6Ai2WG .nav-link,
.cid-sMve6Ai2WG .navbar-caption {
  font-weight: normal;
}
.cid-sMve6Ai2WG .nav-item:focus,
.cid-sMve6Ai2WG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sMve6Ai2WG .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sMve6Ai2WG .nav-item .nav-link {
    position: relative;
  }
  .cid-sMve6Ai2WG .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #2e2c5c;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-sMve6Ai2WG .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-sMve6Ai2WG .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-sMve6Ai2WG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-sMve6Ai2WG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMve6Ai2WG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-sMve6Ai2WG .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sMve6Ai2WG .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sMve6Ai2WG .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sMve6Ai2WG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMve6Ai2WG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMve6Ai2WG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sMve6Ai2WG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sMve6Ai2WG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sMve6Ai2WG .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMve6Ai2WG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMve6Ai2WG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sMve6Ai2WG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-sMve6Ai2WG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sMve6Ai2WG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMve6Ai2WG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMve6Ai2WG .navbar.collapsed .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-sMve6Ai2WG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMve6Ai2WG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sMve6Ai2WG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sMve6Ai2WG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMve6Ai2WG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMve6Ai2WG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sMve6Ai2WG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMve6Ai2WG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMve6Ai2WG .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-sMve6Ai2WG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sMve6Ai2WG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMve6Ai2WG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMve6Ai2WG .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sMve6Ai2WG .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sMve6Ai2WG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sMve6Ai2WG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sMve6Ai2WG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sMve6Ai2WG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sMve6Ai2WG .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sMve6Ai2WG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMve6Ai2WG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMve6Ai2WG .dropdown-item.active,
.cid-sMve6Ai2WG .dropdown-item:active {
  background-color: transparent;
}
.cid-sMve6Ai2WG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMve6Ai2WG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMve6Ai2WG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMve6Ai2WG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-sMve6Ai2WG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-sMve6Ai2WG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sMve6Ai2WG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMve6Ai2WG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMve6Ai2WG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sMve6Ai2WG .navbar-buttons {
  text-align: center;
}
.cid-sMve6Ai2WG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sMve6Ai2WG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sMve6Ai2WG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sMve6Ai2WG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sMve6Ai2WG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sMve6Ai2WG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sMve6Ai2WG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sMve6Ai2WG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sMve6Ai2WG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sMve6Ai2WG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sMve6Ai2WG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sMve6Ai2WG a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMve6Ai2WG .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-sMve6Ai2WG .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sMve6Ai2WG .soc-item {
  margin: .5rem .3rem;
}
.cid-sMve6Ai2WG .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMve6Ai2WG a.nav-link,
.cid-sMve6Ai2WG a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-sMve6Ai2WG a.nav-link .mbr-iconfont-btn,
.cid-sMve6Ai2WG a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-sMve6Ai2WG a.nav-link:hover .mbr-iconfont-btn,
.cid-sMve6Ai2WG a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-sMve6Ai2WG a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sMve6Ai2WG .navbar {
    height: 77px;
  }
  .cid-sMve6Ai2WG .navbar.opened {
    height: auto;
  }
  .cid-sMve6Ai2WG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMveuUDpZk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1920x1439.jpg");
}
.cid-sMveuUDpZk .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMveuUDpZk .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sMveuUDpZk .mbr-section-subtitle {
  color: #767676;
}
.cid-sMveuUDpZk .panel-group {
  width: 100%;
}
.cid-sMveuUDpZk .panel-text {
  color: #232323;
}
.cid-sMveuUDpZk .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-sMveuUDpZk .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sMveuUDpZk .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #2e2c5c;
  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-sMveuUDpZk .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-sMveuUDpZk .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sMveuUDpZk .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-sMveuUDpZk .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-sMveuUDpZk .card .panel-body {
  background: #efefef;
}
.cid-sMveuUDpZk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sMvevwBtPH {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sMvevwBtPH *:focus {
  outline: none;
}
.cid-sMvevwBtPH .input-wrap {
  padding-bottom: 1rem;
}
.cid-sMvevwBtPH .form-control,
.cid-sMvevwBtPH .field {
  width: 100%;
  min-height: auto;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #232323;
}
.cid-sMvevwBtPH .form-control:focus,
.cid-sMvevwBtPH .field:focus {
  outline: none;
}
.cid-sMvevwBtPH input::-webkit-input-placeholder {
  color: #232323;
}
.cid-sMvevwBtPH input::-moz-placeholder {
  color: #232323;
}
.cid-sMvevwBtPH textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-sMvevwBtPH textarea::-moz-placeholder {
  color: #232323;
}
.cid-sMvevwBtPH .soc-item {
  display: inline-block;
  margin: 0 .1rem .2rem .1rem;
  padding: 10px 11px 0 11px;
  border: 1px solid #66458e;
  border-radius: 50%;
}
.cid-sMvevwBtPH .soc-item:hover {
  opacity: .5;
}
.cid-sMvevwBtPH .soc-item .socicon {
  font-size: 1.5rem;
  color: #66458e;
}
.cid-sMvevwBtPH .days-column,
.cid-sMvevwBtPH .hours-column {
  display: inline-block;
}
.cid-sMvevwBtPH .days-column span,
.cid-sMvevwBtPH .hours-column span {
  display: block;
}
.cid-sMvevwBtPH .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-sMvevwBtPH .days-column {
    padding-right: 0 !important;
  }
  .cid-sMvevwBtPH .hours-column {
    max-width: 50% !important;
  }
  .cid-sMvevwBtPH .opening-hours {
    padding-bottom: 48px !important;
  }
}
.cid-sMvevwBtPH .follow-title,
.cid-sMvevwBtPH .social-list {
  text-align: center;
}
.cid-sMviaSnHkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sMviaSnHkw p {
  text-align: center;
}
.cid-sMviaSnHkw .mbr-iconfont-social {
  font-size: 1rem;
  color: #000000;
}
.cid-sMviaSnHkw .social-list a:focus {
  text-decoration: none;
}
.cid-sMviaSnHkw .text-copyright {
  width: 100%;
}
.cid-sMviaSnHkw .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sMviaSnHkw .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sMviaSnHkw .logo-footer {
  line-height: normal;
}
.cid-sMviaSnHkw .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMviaSnHkw .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMviaSnHkw .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMviaSnHkw img {
  display: inline;
}
.cid-sMLNg3Qyai.popup-builder {
  background-color: #ffffff;
}
.cid-sMLNg3Qyai.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sMLNg3Qyai.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sMLNg3Qyai .modal-content,
.cid-sMLNg3Qyai .modal-dialog {
  height: auto;
}
.cid-sMLNg3Qyai .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sMLNg3Qyai .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sMLNg3Qyai .form-wrapper .mbr-form .form-group,
  .cid-sMLNg3Qyai .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sMLNg3Qyai .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sMLNg3Qyai .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-sMLNg3Qyai .mbr-text {
  text-align: center;
}
.cid-sMLNg3Qyai .pt-0 {
  padding-top: 0 !important;
}
.cid-sMLNg3Qyai .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sMLNg3Qyai .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sMLNg3Qyai .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sMLNg3Qyai .modal-open {
  overflow: hidden;
}
.cid-sMLNg3Qyai .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sMLNg3Qyai .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sMLNg3Qyai .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sMLNg3Qyai .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-sMLNg3Qyai .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sMLNg3Qyai .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sMLNg3Qyai .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sMLNg3Qyai .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-sMLNg3Qyai .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sMLNg3Qyai .modal-backdrop.fade {
  opacity: 0;
}
.cid-sMLNg3Qyai .modal-backdrop.show {
  opacity: .5;
}
.cid-sMLNg3Qyai .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-sMLNg3Qyai .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sMLNg3Qyai .modal-header .close:hover {
  opacity: 1;
}
.cid-sMLNg3Qyai .modal-header .close:focus {
  outline: none;
}
.cid-sMLNg3Qyai .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sMLNg3Qyai .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sMLNg3Qyai .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-sMLNg3Qyai .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sMLNg3Qyai .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sMLNg3Qyai .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sMLNg3Qyai .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sMLNg3Qyai .modal-sm {
    max-width: 300px;
  }
  .cid-sMLNg3Qyai .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sMLNg3Qyai .modal-lg,
  .cid-sMLNg3Qyai .modal-xl {
    max-width: 800px;
  }
  .cid-sMLNg3Qyai .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sMLNg3Qyai .modal-xl {
    max-width: 1140px;
  }
  .cid-sMLNg3Qyai .container {
    max-width: 1140px;
  }
}
.cid-sMLNg3Qyai .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sMLNg3Qyai .container {
    max-width: 720px;
  }
}
.cid-sMLNg3Qyai .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sMLNg3Qyai .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-sMLNg3Qyai .form-group {
  margin-bottom: 1rem;
}
.cid-sMLNg3Qyai .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sMLNg3Qyai .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sMLNg3Qyai .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-sMLNg3Qyai .mbr-section-subtitle {
  color: #767676;
}
.cid-sMLNg3Qyai .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sMLNg3Qyai .table-wrapper {
  margin: 0 auto;
}
.cid-sMLNg3Qyai table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sMLNg3Qyai table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #66458e;
  color: white;
  vertical-align: middle;
}
.cid-sMLNg3Qyai table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sMLNg3Qyai .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sMLNg3Qyai .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sMLNg3Qyai .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sMLNg3Qyai .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-sMLNg3Qyai .dataTables_wrapper {
  display: block;
}
.cid-sMLNg3Qyai .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sMLNg3Qyai .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sMLNg3Qyai .head-item:after,
.cid-sMLNg3Qyai .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-sMLNg3Qyai .dataTables_filter {
    text-align: center;
  }
  .cid-sMLNg3Qyai .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-sMLNg3Qyai .dataTables_filter {
    text-align: center;
  }
  .cid-sMLNg3Qyai .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-sMLNg3Qyai table th,
  .cid-sMLNg3Qyai table td {
    padding: .75rem;
  }
}
.cid-sMLNg3Qyai .dataTables_scrollHeadInner {
  width: 100% !important;
}

.cid-sNeaTkVoM7 {
  padding-top: 120px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-sNeaTkVoM7 .mbr-text,
.cid-sNeaTkVoM7 .mbr-section-subtitle {
  color: #767676;
}
.cid-sNeaTkVoM7 .card-title {
  color: #66458e;
}
.cid-sNeaTkVoM7 .card .card-img span {
  color: #66458e;
  font-size: 60px;
  background: linear-gradient(45deg, #66458e, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sNeaTkVoM7 .mbr-section-subtitle,
  .cid-sNeaTkVoM7 .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sNeaTkVoM7 .card .card-img span {
    background: none;
  }
}

.cid-sNefzzoqUt {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sNefzzoqUt span {
  color: #c1c1c1;
}
.cid-sNefzzoqUt .mbr-text {
  padding-left: 1.5rem;
}
.cid-sNefzzoqUt .mbr-section-title {
  padding-left: 1.5px;
}
.cid-sNefzzoqUt .mbr-section-btn {
  margin-top: 22.5px;
}
.cid-sNefzzoqUt H1 {
  text-align: center;
  color: #2d2c4f;
}
.cid-sNefzzoqUt .mbr-text,
.cid-sNefzzoqUt .mbr-section-btn {
  text-align: left;
  color: #000000;
}
/* video gallery */
.cid-sNvLcKGeVp {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sNvLcKGeVp {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cid-sNvLcKGeVp .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-sNvLcKGeVp .box {
  background-size: cover;
  background-position: center;
  height: 200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sNvLcKGeVp .bg1 {
  /* background-image: url("../../../assets/images/mbr-1-1920x1280.jpg"); */
  background-image: url("../../../vendor/gDriveMedia/4Video_tvcNews.png");
}
.cid-sNvLcKGeVp .bg2 {
  /* background-image: url("../../../assets/images/mbr-4.jpg"); */
  background-image: url("../../../vendor/gDriveMedia/4Video_keyResources.png");
}
.cid-sNvLcKGeVp .bg3 {
  /* background-image: url("../../../assets/images/mbr-1920x1439.jpg"); */
  background-image: url("../../../vendor/gDriveMedia/4Video_IMG_20210624_074924_173.png");
}
.cid-sNvLcKGeVp .bg4 {
  margin-top: 25px;
  /* background-image: url("../../../assets/images/02.jpg"); */
  background-image: url("../../../vendor/gDriveMedia/4Video_LIBRARYPRACTICESESSION.png");
}
.cid-sNvLcKGeVp .bg5 {
  margin-top: 25px;
  /* background-image: url("../../../assets/images/05.jpg"); */
  background-image: url("../../../vendor/gDriveMedia/4Video_20200227_114819Secretarial.png");
}
.cid-sNvLcKGeVp .bg6 {
  margin-top: 25px;
  /* background-image: url("../../../assets/images/04.jpg"); */
  background-image: url("../../../vendor/gDriveMedia/4Video_ioplsMarketingVideoProper2.png");
}
.cid-sNvLcKGeVp .bg7 {
  margin-top: 25px;
  /* background-image: url("../../../assets/images/03.jpg"); */
  background-image: url("../../../vendor/gDriveMedia/4Video_courses.jpg");
}
.cid-sNvLcKGeVp .bg8 {
  margin-top: 25px;
  /* background-image: url("../../../assets/images/mbr-2.jpg"); */
  background-image: url("../../../vendor/gDriveMedia/4Video_mission.jpg");
}
.cid-sNvLcKGeVp .bg9 {
  margin-top: 25px;
  /* background-image: url("../../../assets/images/mbr-3.jpg"); */
  background-image: url("../../../vendor/gDriveMedia/4Video_founder1.jpg");
}
.cid-sNvLcKGeVp .icon-wrap {
  background-color: #ffffff !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sNvLcKGeVp .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-sNvLcKGeVp .icon-wrap span {
  padding-left: 8px;
}
.cid-sNvLcKGeVp .mbr-media span {
  font-size: 38px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #b06e6e !important;
}
.cid-sNvLcKGeVp .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sNvLcKGeVp .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sNvLcKGeVp .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sNvLcKGeVp .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sNvLcKGeVp a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sNvLcKGeVp a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sNvLcKGeVp {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-sNvLcKGeVp .box {
    height: 150px;
  }
  .cid-sNvLcKGeVp .modalWindow .modalWindow-container {
    display: table-cell;
    vertical-align: middle;
  }
  .cid-sNvLcKGeVp .modalWindow .modalWindow-video {
    height: 150px;
  }
}

.cid-smF2gYZ04O {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/pexels-christina-morillo-1181355-2000x1335.jpg");
}
.cid-smF2gYZ04O .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-smF2gYZ04O .form-head {
  background: #efefef;
  padding: 2rem;
}
.cid-smF2gYZ04O .form1 {
  background: #ffffff;
  padding: 2rem;
}
.cid-smF2gYZ04O .form-group {
  margin-bottom: 1rem;
}
.cid-smF2gYZ04O .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-smF2gYZ04O textarea.form-control {
  min-height: 96px;
}
.cid-smF2gYZ04O .input-group-btn {
  width: 100%;
}
.cid-smF2gYZ04O .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-smF2gYZ04O .form-control-label {
  color: #333333;
  font-size: 1rem;
  font-weight: 100 !important;
}
@media (max-width: 767px) {
  .cid-smF2gYZ04O .form1 {
    padding: 1.5rem;
  }
}
.cid-smF2gYZ04O .form-title {
  color: #352f6c;
}

.cid-sp1ep0Kmr0 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/pexels-christina-morillo-1181355-2000x1335.jpg");
}
.cid-sp1ep0Kmr0 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sp1ep0Kmr0 .form-head {
  background: #efefef;
  padding: 2rem;
}
.cid-sp1ep0Kmr0 .form1 {
  background: #ffffff;
  padding: 2rem;
}
.cid-sp1ep0Kmr0 .form-group {
  margin-bottom: 1rem;
}
.cid-sp1ep0Kmr0 .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-sp1ep0Kmr0 textarea.form-control {
  min-height: 96px;
}
.cid-sp1ep0Kmr0 .input-group-btn {
  width: 100%;
}
.cid-sp1ep0Kmr0 .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-sp1ep0Kmr0 .form-control-label {
  color: #333333;
  font-size: 1rem;
  font-weight: 100 !important;
}
@media (max-width: 767px) {
  .cid-sp1ep0Kmr0 .form1 {
    padding: 1.5rem;
  }
}
.cid-sp1ep0Kmr0 .form-title {
  color: #352f6c;
}
.cid-sp1evVKM4c {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/pexels-christina-morillo-1181355-2000x1335.jpg");
}
.cid-sp1evVKM4c .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sp1evVKM4c .form-head {
  background: #efefef;
  padding: 2rem;
}
.cid-sp1evVKM4c .form1 {
  background: #ffffff;
  padding: 2rem;
}
.cid-sp1evVKM4c .form-group {
  margin-bottom: 1rem;
}
.cid-sp1evVKM4c .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-sp1evVKM4c textarea.form-control {
  min-height: 96px;
}
.cid-sp1evVKM4c .input-group-btn {
  width: 100%;
}
.cid-sp1evVKM4c .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-sp1evVKM4c .form-control-label {
  color: #333333;
  font-size: 1rem;
  font-weight: 100 !important;
}
@media (max-width: 767px) {
  .cid-sp1evVKM4c .form1 {
    padding: 1.5rem;
  }
}
.cid-sp1evVKM4c .form-title {
  color: #352f6c;
}
.cid-sp1eBLnnzd {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/pexels-christina-morillo-1181355-2000x1335.jpg");
}
.cid-sp1eBLnnzd .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sp1eBLnnzd .form-head {
  background: #efefef;
  padding: 2rem;
}
.cid-sp1eBLnnzd .form1 {
  background: #ffffff;
  padding: 2rem;
}
.cid-sp1eBLnnzd .form-group {
  margin-bottom: 1rem;
}
.cid-sp1eBLnnzd .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-sp1eBLnnzd textarea.form-control {
  min-height: 96px;
}
.cid-sp1eBLnnzd .input-group-btn {
  width: 100%;
}
.cid-sp1eBLnnzd .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-sp1eBLnnzd .form-control-label {
  color: #333333;
  font-size: 1rem;
  font-weight: 100 !important;
}
@media (max-width: 767px) {
  .cid-sp1eBLnnzd .form1 {
    padding: 1.5rem;
  }
}
.cid-sp1eBLnnzd .form-title {
  color: #352f6c;
}
.cid-sp2jQ4iyhg {
  background-image: url("../../../assets/images/mbr-7-1920x1280.jpg");
}
.cid-sp2jQ4iyhg .mbr-overlay {
  background: #879a9f;
}
.cid-sp2jQ4iyhg .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
}
.cid-sp2jQ4iyhg .mbr-section-subtitle {
  color: #232323;
}
.cid-sp0LsXjlPp {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
.cid-sp0LsXjlPp .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sp0LsXjlPp .form-head {
  background: #efefef;
  padding: 2rem;
}
.cid-sp0LsXjlPp .form1 {
  background: #ffffff;
  padding: 2rem;
}
.cid-sp0LsXjlPp .form-group {
  margin-bottom: 1rem;
}
.cid-sp0LsXjlPp .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-sp0LsXjlPp textarea.form-control {
  min-height: 96px;
}
.cid-sp0LsXjlPp .input-group-btn {
  width: 100%;
}
.cid-sp0LsXjlPp .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-sp0LsXjlPp .form-control-label {
  color: #333333;
  font-size: 1rem;
  font-weight: 100 !important;
}
@media (max-width: 767px) {
  .cid-sp0LsXjlPp .form1 {
    padding: 1.5rem;
  }
}
.cid-sp0LsXjlPp .form-subtitle {
  color: #352f6c;
}
.cid-sqExPOmAHT {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #efeeee;
}
.cid-sqExPOmAHT .media-container-row .mbr-text {
  color: #333333;
}
.cid-sqEs1KHWAe {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-sqEs1KHWAe h2,
.cid-sqEs1KHWAe h3,
.cid-sqEs1KHWAe p,
.cid-sqEs1KHWAe h4 {
  color: #0a0a0a;
}
.cid-sqEs1KHWAe .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-sqEs1KHWAe .mbr-iconfont {
  color: #352f6c;
  font-size: 2rem;
}
.cid-sqEs1KHWAe .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-sqEs1KHWAe .form-control:focus,
.cid-sqEs1KHWAe .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-sqEs1KHWAe .form-group {
  margin-bottom: 1rem;
}
.cid-sqEs1KHWAe input::-webkit-input-placeholder,
.cid-sqEs1KHWAe textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-sqEs1KHWAe input:-moz-placeholder,
.cid-sqEs1KHWAe textarea:-moz-placeholder {
  color: #656565;
}
.cid-sqEs1KHWAe .jq-selectbox li,
.cid-sqEs1KHWAe .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sqEs1KHWAe .jq-selectbox li:hover,
.cid-sqEs1KHWAe .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sqEs1KHWAe .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sqEs1KHWAe .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sqEs1KHWAe .mbr-text {
  color: #767676;
}
.cid-sqEs1KHWAe a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sqEs1KHWAe .input-group-btn {
  display: block;
  text-align: center;
}
.cid-sqEs1KHWAe .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-sqEs1KHWAe textarea.form-control {
  resize: none;
}
.cid-sqEs1KHWAe .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-sqEs1KHWAe .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-sqEs1KHWAe h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-sqEs1KHWAe .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sqEs1KHWAe .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-sqEs1KHWAe .img-block-wrap {
    position: relative;
  }
  .cid-sqEs1KHWAe .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-sqEs1KHWAe .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-sqEs1KHWAe .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sqEs1KHWAe .google-map {
    padding-bottom: 2rem;
  }
  .cid-sqEs1KHWAe .img-block {
    overflow: hidden;
  }
}
.cid-swJeMntimU {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-swJeMntimU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-swJeMntimU .mbr-section-title {
  color: #ffffff;
}
.cid-swM9P91gOi {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-swM9P91gOi .mbr-section-subtitle {
  color: #767676;
}
.cid-swM9P91gOi .item-image {
  position: relative;
}
@media (min-width: 992px) {
  .cid-swM9P91gOi .container {
    max-width: 1600px;
  }
}
.cid-swM9P91gOi .container {
  padding: 0 2rem;
}
.cid-swM9P91gOi .mbr-iconfont {
  color: #ffffff !important;
}
.cid-swM9P91gOi .item-caption {
  padding: 3rem;
  padding-bottom: 1rem;
}
.cid-swM9P91gOi .item-social {
  position: absolute;
  left: 50%;
  align-items: center;
  right: 50%;
  transform: translate(-50%, -50%);
  bottom: -3rem;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, #000000 200%);
  height: 6rem;
}
.cid-swM9P91gOi .bg1 {
  background: #29a7c6;
}
.cid-swM9P91gOi .bg2 {
  background: #ed6031;
}
.cid-swM9P91gOi .bg3 {
  background: #000000;
}
.cid-swM9P91gOi .bg4 {
  background: #d6952c;
}
.cid-swM9P91gOi .team-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: fit-content;
  transition: all .2s;
  margin-bottom: 0rem;
}
.cid-swM9P91gOi .team-item:hover .item-social {
  opacity: 1;
}
.cid-swM9P91gOi .team-item .item-image img {
  width: 100%;
}
.cid-swM9P91gOi .team-item .item-name p {
  margin-bottom: 0;
}
.cid-swM9P91gOi .team-item .item-role p {
  margin-bottom: 0;
}
.cid-swM9P91gOi .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-swM9P91gOi .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-swM9P91gOi .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
@media (max-width: 767px) {
  .cid-swM9P91gOi .item-caption {
    padding: 2rem 1rem;
  }
  .cid-swM9P91gOi .item-social {
    opacity: 1;
  }
}
.cid-swM9P91gOi {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-swM9P91gOi .mbr-section-subtitle {
  color: #767676;
}
.cid-swM9P91gOi .item-image {
  position: relative;
}
@media (min-width: 992px) {
  .cid-swM9P91gOi .container {
    max-width: 1600px;
  }
}
.cid-swM9P91gOi .container {
  padding: 0 2rem;
}
.cid-swM9P91gOi .mbr-iconfont {
  color: #ffffff !important;
}
.cid-swM9P91gOi .item-caption {
  padding: 3rem;
  padding-bottom: 1rem;
}
.cid-swM9P91gOi .item-social {
  position: absolute;
  left: 50%;
  align-items: center;
  right: 50%;
  transform: translate(-50%, -50%);
  bottom: -3rem;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, #000000 200%);
  height: 6rem;
}
.cid-swM9P91gOi .bg1 {
  background: #29a7c6;
}
.cid-swM9P91gOi .bg2 {
  background: #ed6031;
}
.cid-swM9P91gOi .bg3 {
  background: #000000;
}
.cid-swM9P91gOi .bg4 {
  background: #d6952c;
}
.cid-swM9P91gOi .team-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: fit-content;
  transition: all .2s;
  margin-bottom: 0rem;
}
.cid-swM9P91gOi .team-item:hover .item-social {
  opacity: 1;
}
.cid-swM9P91gOi .team-item .item-image img {
  width: 100%;
}
.cid-swM9P91gOi .team-item .item-name p {
  margin-bottom: 0;
}
.cid-swM9P91gOi .team-item .item-role p {
  margin-bottom: 0;
}
.cid-swM9P91gOi .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-swM9P91gOi .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-swM9P91gOi .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
@media (max-width: 767px) {
  .cid-swM9P91gOi .item-caption {
    padding: 2rem 1rem;
  }
  .cid-swM9P91gOi .item-social {
    opacity: 1;
  }
}
.cid-swM9VzHEFw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-swM9VzHEFw .mbr-section-subtitle {
  color: #767676;
}
.cid-swM9VzHEFw .item-image {
  position: relative;
}
@media (min-width: 992px) {
  .cid-swM9VzHEFw .container {
    max-width: 1600px;
  }
}
.cid-swM9VzHEFw .container {
  padding: 0 2rem;
}
.cid-swM9VzHEFw .mbr-iconfont {
  color: #ffffff !important;
}
.cid-swM9VzHEFw .item-caption {
  padding: 3rem;
  padding-bottom: 1rem;
}
.cid-swM9VzHEFw .item-social {
  position: absolute;
  left: 50%;
  align-items: center;
  right: 50%;
  transform: translate(-50%, -50%);
  bottom: -3rem;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, #000000 200%);
  height: 6rem;
}
.cid-swM9VzHEFw .bg1 {
  background: #352f6c;
}
.cid-swM9VzHEFw .bg2 {
  background: #d6952c;
}
.cid-swM9VzHEFw .bg3 {
  background: #7a81a8;
}
.cid-swM9VzHEFw .bg4 {
  background: #ed6031;
}
.cid-swM9VzHEFw .team-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: fit-content;
  transition: all .2s;
  margin-bottom: 0rem;
}
.cid-swM9VzHEFw .team-item:hover .item-social {
  opacity: 1;
}
.cid-swM9VzHEFw .team-item .item-image img {
  width: 100%;
}
.cid-swM9VzHEFw .team-item .item-name p {
  margin-bottom: 0;
}
.cid-swM9VzHEFw .team-item .item-role p {
  margin-bottom: 0;
}
.cid-swM9VzHEFw .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-swM9VzHEFw .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-swM9VzHEFw .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
@media (max-width: 767px) {
  .cid-swM9VzHEFw .item-caption {
    padding: 2rem 1rem;
  }
  .cid-swM9VzHEFw .item-social {
    opacity: 1;
  }
}
.cid-sxxMeihYSU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sxxMeihYSU .mbr-section-subtitle {
  color: #767676;
}
.cid-sxxMeihYSU .item-image {
  position: relative;
}
@media (min-width: 992px) {
  .cid-sxxMeihYSU .container {
    max-width: 1600px;
  }
}
.cid-sxxMeihYSU .container {
  padding: 0 2rem;
}
.cid-sxxMeihYSU .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sxxMeihYSU .item-caption {
  padding: 3rem;
  padding-bottom: 1rem;
}
.cid-sxxMeihYSU .item-social {
  position: absolute;
  left: 50%;
  align-items: center;
  right: 50%;
  transform: translate(-50%, -50%);
  bottom: -3rem;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, #000000 200%);
  height: 6rem;
}
.cid-sxxMeihYSU .bg1 {
  background: #29a7c6;
}
.cid-sxxMeihYSU .bg2 {
  background: #ed6031;
}
.cid-sxxMeihYSU .bg3 {
  background: #000000;
}
.cid-sxxMeihYSU .bg4 {
  background: #d6952c;
}
.cid-sxxMeihYSU .team-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: fit-content;
  transition: all .2s;
  margin-bottom: 0rem;
}
.cid-sxxMeihYSU .team-item:hover .item-social {
  opacity: 1;
}
.cid-sxxMeihYSU .team-item .item-image img {
  width: 100%;
}
.cid-sxxMeihYSU .team-item .item-name p {
  margin-bottom: 0;
}
.cid-sxxMeihYSU .team-item .item-role p {
  margin-bottom: 0;
}
.cid-sxxMeihYSU .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sxxMeihYSU .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-sxxMeihYSU .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
@media (max-width: 767px) {
  .cid-sxxMeihYSU .item-caption {
    padding: 2rem 1rem;
  }
  .cid-sxxMeihYSU .item-social {
    opacity: 1;
  }
}
.cid-sxxTjJmAPq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sxxTjJmAPq .mbr-section-subtitle {
  color: #767676;
}
.cid-sxxTjJmAPq .item-image {
  position: relative;
}
@media (min-width: 992px) {
  .cid-sxxTjJmAPq .container {
    max-width: 1600px;
  }
}
.cid-sxxTjJmAPq .container {
  padding: 0 2rem;
}
.cid-sxxTjJmAPq .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sxxTjJmAPq .item-caption {
  padding: 3rem;
  padding-bottom: 1rem;
}
.cid-sxxTjJmAPq .item-social {
  position: absolute;
  left: 50%;
  align-items: center;
  right: 50%;
  transform: translate(-50%, -50%);
  bottom: -3rem;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, #000000 200%);
  height: 6rem;
}
.cid-sxxTjJmAPq .bg1 {
  background: #352f6c;
}
.cid-sxxTjJmAPq .bg2 {
  background: #d6952c;
}
.cid-sxxTjJmAPq .bg3 {
  background: #7a81a8;
}
.cid-sxxTjJmAPq .bg4 {
  background: #ed6031;
}
.cid-sxxTjJmAPq .team-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: fit-content;
  transition: all .2s;
  margin-bottom: 0rem;
}
.cid-sxxTjJmAPq .team-item:hover .item-social {
  opacity: 1;
}
.cid-sxxTjJmAPq .team-item .item-image img {
  width: 100%;
}
.cid-sxxTjJmAPq .team-item .item-name p {
  margin-bottom: 0;
}
.cid-sxxTjJmAPq .team-item .item-role p {
  margin-bottom: 0;
}
.cid-sxxTjJmAPq .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sxxTjJmAPq .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-sxxTjJmAPq .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
@media (max-width: 767px) {
  .cid-sxxTjJmAPq .item-caption {
    padding: 2rem 1rem;
  }
  .cid-sxxTjJmAPq .item-social {
    opacity: 1;
  }
}
.cid-sxycOesXuH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sxycOesXuH .mbr-section-subtitle {
  color: #767676;
}
.cid-sxycOesXuH .item-image {
  position: relative;
}
@media (min-width: 992px) {
  .cid-sxycOesXuH .container {
    max-width: 1600px;
  }
}
.cid-sxycOesXuH .container {
  padding: 0 2rem;
}
.cid-sxycOesXuH .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sxycOesXuH .item-caption {
  padding: 3rem;
  padding-bottom: 1rem;
}
.cid-sxycOesXuH .item-social {
  position: absolute;
  left: 50%;
  align-items: center;
  right: 50%;
  transform: translate(-50%, -50%);
  bottom: -3rem;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, #000000 200%);
  height: 6rem;
}
.cid-sxycOesXuH .bg1 {
  background: #29a7c6;
}
.cid-sxycOesXuH .bg2 {
  background: #ed6031;
}
.cid-sxycOesXuH .bg3 {
  background: #000000;
}
.cid-sxycOesXuH .bg4 {
  background: #d6952c;
}
.cid-sxycOesXuH .team-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: fit-content;
  transition: all .2s;
  margin-bottom: 0rem;
}
.cid-sxycOesXuH .team-item:hover .item-social {
  opacity: 1;
}
.cid-sxycOesXuH .team-item .item-image img {
  width: 100%;
}
.cid-sxycOesXuH .team-item .item-name p {
  margin-bottom: 0;
}
.cid-sxycOesXuH .team-item .item-role p {
  margin-bottom: 0;
}
.cid-sxycOesXuH .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sxycOesXuH .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-sxycOesXuH .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
@media (max-width: 767px) {
  .cid-sxycOesXuH .item-caption {
    padding: 2rem 1rem;
  }
  .cid-sxycOesXuH .item-social {
    opacity: 1;
  }
}
.cid-qIoWJUOnqf {
  padding-top: 225px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-qIoWJUOnqf .text-content {
  padding-bottom: 60px;
}
.cid-qIoWJUOnqf .content-container .btn-bgr {
  z-index: 0;
}
.cid-qIoWJUOnqf .box-item-text {
  color: #767676;
}
.cid-qIoWJUOnqf .box-item {
  padding: 2.5rem;
}
.cid-qIoWJUOnqf .box-item:first-child {
  background-color: #efefef;
}
.cid-qIoWJUOnqf .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-qIoWJUOnqf .box-item:last-child {
  background-color: #efefef;
}
.cid-qIoWJUOnqf .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-qIoWJUOnqf .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-qIoWJUOnqf .box-list li:last-child {
  border-bottom: none;
}
.cid-qIoWJUOnqf .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qIoWJUOnqf .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-qIoWJUOnqf .media-container-row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-qIoWJUOnqf .mbr-section-subtitle,
  .cid-qIoWJUOnqf .mbr-section-title,
  .cid-qIoWJUOnqf .mbr-text,
  .cid-qIoWJUOnqf .mbr-section-btn,
  .cid-qIoWJUOnqf .icon-block-top,
  .cid-qIoWJUOnqf .box-item-title,
  .cid-qIoWJUOnqf .box-item-text {
    text-align: center !important;
  }
}
.cid-qIoWJUOnqf .mbr-section-subtitle {
  color: #efefef;
}
.cid-qIoWJUOnqf .mbr-section-title {
  color: #ffffff;
}
.cid-qIp7KFGlXe {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qIp7KFGlXe .mbr-section-subtitle {
  color: #767676;
}
.cid-qIp7KFGlXe .mbr-section-title {
  color: #2e2c5c;
}
.cid-szRo2oB6to {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #333333;
}
.cid-szRo2oB6to .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-szRo2oB6to input,
.cid-szRo2oB6to textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 0;
  min-height: 3rem;
  padding: 0rem!important;
  font-size: 1rem;
}
.cid-szRo2oB6to input:focus,
.cid-szRo2oB6to textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-szRo2oB6to .form-control,
.cid-szRo2oB6to .field-input {
  padding: 0.5rem;
  background-color: #333333;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-szRo2oB6to .form-control:hover,
.cid-szRo2oB6to .field-input:hover,
.cid-szRo2oB6to .form-control:focus,
.cid-szRo2oB6to .field-input:focus {
  background-color: #333333;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-szRo2oB6to input::-webkit-input-placeholder,
.cid-szRo2oB6to textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.cid-szRo2oB6to input:-moz-placeholder,
.cid-szRo2oB6to textarea:-moz-placeholder {
  color: #cccccc;
}
.cid-szRo2oB6to .jq-selectbox li,
.cid-szRo2oB6to .jq-selectbox li {
  background-color: #333333;
  color: #ffffff;
}
.cid-szRo2oB6to .jq-selectbox li:hover,
.cid-szRo2oB6to .jq-selectbox li.selected {
  background-color: #333333;
  color: #ffffff;
}
.cid-szRo2oB6to .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #333333;
}
.cid-szRo2oB6to .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #333333;
}
.cid-szRo2oB6to img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-szRo2oB6to .mbr-form {
  max-width: 450px;
}
.cid-szRo2oB6to textarea {
  min-height: 150px;
}
.cid-szRo2oB6to .mbr-text {
  color: #cccccc;
}
.cid-szRo2oB6to .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-szRo2oB6to .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-szRqGNTN7y {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background12.jpg");
}
.cid-szRqGNTN7y .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szRqGNTN7y .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-szRqGNTN7y .mbr-section-subtitle {
  color: #767676;
}
.cid-szRqGNTN7y .panel-group {
  width: 100%;
}
.cid-szRqGNTN7y .panel-text {
  color: #767676;
}
.cid-szRqGNTN7y .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-szRqGNTN7y .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-szRqGNTN7y .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #352f6c;
  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-szRqGNTN7y .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-szRqGNTN7y .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-szRqGNTN7y .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-szRqGNTN7y .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-szRqGNTN7y .card .panel-body {
  background: #efefef;
}
.cid-sA2zP7EOlc.popup-builder {
  background-color: #ffffff;
}
.cid-sA2zP7EOlc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sA2zP7EOlc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sA2zP7EOlc .modal-content,
.cid-sA2zP7EOlc .modal-dialog {
  height: auto;
}
.cid-sA2zP7EOlc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sA2zP7EOlc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sA2zP7EOlc .form-wrapper .mbr-form .form-group,
  .cid-sA2zP7EOlc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sA2zP7EOlc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sA2zP7EOlc .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-sA2zP7EOlc .mbr-text {
  text-align: center;
}
.cid-sA2zP7EOlc .pt-0 {
  padding-top: 0 !important;
}
.cid-sA2zP7EOlc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sA2zP7EOlc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sA2zP7EOlc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sA2zP7EOlc .modal-open {
  overflow: hidden;
}
.cid-sA2zP7EOlc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sA2zP7EOlc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sA2zP7EOlc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sA2zP7EOlc .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-sA2zP7EOlc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sA2zP7EOlc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sA2zP7EOlc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sA2zP7EOlc .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-sA2zP7EOlc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sA2zP7EOlc .modal-backdrop.fade {
  opacity: 0;
}
.cid-sA2zP7EOlc .modal-backdrop.show {
  opacity: .5;
}
.cid-sA2zP7EOlc .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-sA2zP7EOlc .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sA2zP7EOlc .modal-header .close:hover {
  opacity: 1;
}
.cid-sA2zP7EOlc .modal-header .close:focus {
  outline: none;
}
.cid-sA2zP7EOlc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sA2zP7EOlc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sA2zP7EOlc .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-sA2zP7EOlc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sA2zP7EOlc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sA2zP7EOlc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sA2zP7EOlc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sA2zP7EOlc .modal-sm {
    max-width: 300px;
  }
  .cid-sA2zP7EOlc .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sA2zP7EOlc .modal-lg,
  .cid-sA2zP7EOlc .modal-xl {
    max-width: 800px;
  }
  .cid-sA2zP7EOlc .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sA2zP7EOlc .modal-xl {
    max-width: 1140px;
  }
  .cid-sA2zP7EOlc .container {
    max-width: 1140px;
  }
}
.cid-sA2zP7EOlc .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sA2zP7EOlc .container {
    max-width: 720px;
  }
}
.cid-sA2zP7EOlc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sA2zP7EOlc .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-sA2zP7EOlc .form-group {
  margin-bottom: 1rem;
}
.cid-sA2zP7EOlc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sA2zP7EOlc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sA2zP7EOlc .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-sA2zP7EOlc textarea {
  min-height: 150px;
}
.cid-sA2zP7EOlc .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #4554c1;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.cid-sA2zP7EOlc .form-control,
.cid-sA2zP7EOlc .field-input {
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #767676;
  color: #767676 !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 8px;
  outline: none;
}
.cid-sA2zP7EOlc .form-control input::-webkit-input-placeholder,
.cid-sA2zP7EOlc .field-input input::-webkit-input-placeholder,
.cid-sA2zP7EOlc .form-control textarea::-webkit-input-placeholder,
.cid-sA2zP7EOlc .field-input textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-sA2zP7EOlc .form-control input:-moz-placeholder,
.cid-sA2zP7EOlc .field-input input:-moz-placeholder,
.cid-sA2zP7EOlc .form-control textarea:-moz-placeholder,
.cid-sA2zP7EOlc .field-input textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-sA2zP7EOlc .form-control:hover,
.cid-sA2zP7EOlc .field-input:hover,
.cid-sA2zP7EOlc .form-control:focus,
.cid-sA2zP7EOlc .field-input:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sA2zP7EOlc .form-control:hover input::-webkit-input-placeholder,
.cid-sA2zP7EOlc .field-input:hover input::-webkit-input-placeholder,
.cid-sA2zP7EOlc .form-control:focus input::-webkit-input-placeholder,
.cid-sA2zP7EOlc .field-input:focus input::-webkit-input-placeholder,
.cid-sA2zP7EOlc .form-control:hover textarea::-webkit-input-placeholder,
.cid-sA2zP7EOlc .field-input:hover textarea::-webkit-input-placeholder,
.cid-sA2zP7EOlc .form-control:focus textarea::-webkit-input-placeholder,
.cid-sA2zP7EOlc .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-sA2zP7EOlc .form-control:hover input:-moz-placeholder,
.cid-sA2zP7EOlc .field-input:hover input:-moz-placeholder,
.cid-sA2zP7EOlc .form-control:focus input:-moz-placeholder,
.cid-sA2zP7EOlc .field-input:focus input:-moz-placeholder,
.cid-sA2zP7EOlc .form-control:hover textarea:-moz-placeholder,
.cid-sA2zP7EOlc .field-input:hover textarea:-moz-placeholder,
.cid-sA2zP7EOlc .form-control:focus textarea:-moz-placeholder,
.cid-sA2zP7EOlc .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-sA2zP7EOlc .jq-number__spin:hover,
.cid-sA2zP7EOlc .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sA2zP7EOlc .jq-number__spin {
  background-color: #ffffff;
  border-color: #767676;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sA2zP7EOlc .jq-selectbox li,
.cid-sA2zP7EOlc .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sA2zP7EOlc .jq-selectbox li:hover,
.cid-sA2zP7EOlc .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sA2zP7EOlc .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sA2zP7EOlc .jq-number__spin.minus:hover:after,
.cid-sA2zP7EOlc .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sA2zP7EOlc .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sA2zP7EOlc .jq-number__spin.minus:after,
.cid-sA2zP7EOlc .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sA2zP7EOlc input::-webkit-clear-button {
  display: none;
}
.cid-sA2zP7EOlc input::-webkit-inner-spin-button {
  display: none;
}
.cid-sA2zP7EOlc input::-webkit-outer-spin-button {
  display: none;
}
.cid-sA2zP7EOlc input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sA2zP7EOlc .roundedButton {
  border-radius: 55px;
}

.cid-sV0APFO2UB.popup-builder {
  background-color: #ffffff;
}
.cid-sV0APFO2UB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sV0APFO2UB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sV0APFO2UB .modal-content,
.cid-sV0APFO2UB .modal-dialog {
  height: auto;
}
.cid-sV0APFO2UB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sV0APFO2UB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sV0APFO2UB .form-wrapper .mbr-form .form-group,
  .cid-sV0APFO2UB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sV0APFO2UB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sV0APFO2UB .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-sV0APFO2UB .mbr-text {
  text-align: center;
}
.cid-sV0APFO2UB .pt-0 {
  padding-top: 0 !important;
}
.cid-sV0APFO2UB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sV0APFO2UB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sV0APFO2UB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sV0APFO2UB .modal-open {
  overflow: hidden;
}
.cid-sV0APFO2UB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sV0APFO2UB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sV0APFO2UB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sV0APFO2UB .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-sV0APFO2UB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sV0APFO2UB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sV0APFO2UB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sV0APFO2UB .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-sV0APFO2UB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sV0APFO2UB .modal-backdrop.fade {
  opacity: 0;
}
.cid-sV0APFO2UB .modal-backdrop.show {
  opacity: .5;
}
.cid-sV0APFO2UB .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-sV0APFO2UB .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sV0APFO2UB .modal-header .close:hover {
  opacity: 1;
}
.cid-sV0APFO2UB .modal-header .close:focus {
  outline: none;
}
.cid-sV0APFO2UB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sV0APFO2UB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sV0APFO2UB .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-sV0APFO2UB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sV0APFO2UB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sV0APFO2UB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sV0APFO2UB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sV0APFO2UB .modal-sm {
    max-width: 300px;
  }
  .cid-sV0APFO2UB .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sV0APFO2UB .modal-lg,
  .cid-sV0APFO2UB .modal-xl {
    max-width: 800px;
  }
  .cid-sV0APFO2UB .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sV0APFO2UB .modal-xl {
    max-width: 1140px;
  }
  .cid-sV0APFO2UB .container {
    max-width: 1140px;
  }
}
.cid-sV0APFO2UB .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sV0APFO2UB .container {
    max-width: 720px;
  }
}
.cid-sV0APFO2UB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sV0APFO2UB .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-sV0APFO2UB .form-group {
  margin-bottom: 1rem;
}
.cid-sV0APFO2UB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sV0APFO2UB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sV0APFO2UB .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-sV0APFO2UB textarea {
  min-height: 150px;
}
.cid-sV0APFO2UB .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #4554c1;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.cid-sV0APFO2UB .form-control,
.cid-sV0APFO2UB .field-input {
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #767676;
  color: #767676 !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 8px;
  outline: none;
}
.cid-sV0APFO2UB .form-control input::-webkit-input-placeholder,
.cid-sV0APFO2UB .field-input input::-webkit-input-placeholder,
.cid-sV0APFO2UB .form-control textarea::-webkit-input-placeholder,
.cid-sV0APFO2UB .field-input textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-sV0APFO2UB .form-control input:-moz-placeholder,
.cid-sV0APFO2UB .field-input input:-moz-placeholder,
.cid-sV0APFO2UB .form-control textarea:-moz-placeholder,
.cid-sV0APFO2UB .field-input textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-sV0APFO2UB .form-control:hover,
.cid-sV0APFO2UB .field-input:hover,
.cid-sV0APFO2UB .form-control:focus,
.cid-sV0APFO2UB .field-input:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sV0APFO2UB .form-control:hover input::-webkit-input-placeholder,
.cid-sV0APFO2UB .field-input:hover input::-webkit-input-placeholder,
.cid-sV0APFO2UB .form-control:focus input::-webkit-input-placeholder,
.cid-sV0APFO2UB .field-input:focus input::-webkit-input-placeholder,
.cid-sV0APFO2UB .form-control:hover textarea::-webkit-input-placeholder,
.cid-sV0APFO2UB .field-input:hover textarea::-webkit-input-placeholder,
.cid-sV0APFO2UB .form-control:focus textarea::-webkit-input-placeholder,
.cid-sV0APFO2UB .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-sV0APFO2UB .form-control:hover input:-moz-placeholder,
.cid-sV0APFO2UB .field-input:hover input:-moz-placeholder,
.cid-sV0APFO2UB .form-control:focus input:-moz-placeholder,
.cid-sV0APFO2UB .field-input:focus input:-moz-placeholder,
.cid-sV0APFO2UB .form-control:hover textarea:-moz-placeholder,
.cid-sV0APFO2UB .field-input:hover textarea:-moz-placeholder,
.cid-sV0APFO2UB .form-control:focus textarea:-moz-placeholder,
.cid-sV0APFO2UB .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-sV0APFO2UB .jq-number__spin:hover,
.cid-sV0APFO2UB .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sV0APFO2UB .jq-number__spin {
  background-color: #ffffff;
  border-color: #767676;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sV0APFO2UB .jq-selectbox li,
.cid-sV0APFO2UB .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sV0APFO2UB .jq-selectbox li:hover,
.cid-sV0APFO2UB .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sV0APFO2UB .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sV0APFO2UB .jq-number__spin.minus:hover:after,
.cid-sV0APFO2UB .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sV0APFO2UB .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sV0APFO2UB .jq-number__spin.minus:after,
.cid-sV0APFO2UB .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sV0APFO2UB input::-webkit-clear-button {
  display: none;
}
.cid-sV0APFO2UB input::-webkit-inner-spin-button {
  display: none;
}
.cid-sV0APFO2UB input::-webkit-outer-spin-button {
  display: none;
}
.cid-sV0APFO2UB input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sV0APFO2UB .roundedButton {
  border-radius: 55px;
}

.cid-sqJ79BV4fJ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-sqJ79BV4fJ .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sqJ79BV4fJ .form-head {
  background: #efefef;
  padding: 2rem;
}
.cid-sqJ79BV4fJ .form1 {
  background: #ffffff;
  padding: 2rem;
}
.cid-sqJ79BV4fJ .form-group {
  margin-bottom: 1rem;
}
.cid-sqJ79BV4fJ .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-sqJ79BV4fJ textarea.form-control {
  min-height: 96px;
}
.cid-sqJ79BV4fJ .input-group-btn {
  width: 100%;
}
.cid-sqJ79BV4fJ .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-sqJ79BV4fJ .form-control-label {
  color: #333333;
  font-size: 1rem;
  font-weight: 100 !important;
}
@media (max-width: 767px) {
  .cid-sqJ79BV4fJ .form1 {
    padding: 1.5rem;
  }
}
.cid-sqJ79BV4fJ .form-subtitle {
  color: #352f6c;
}

.cid-trgrpvYf3Z.popup-builder {
  background-color: #ffffff;
}
.cid-trgrpvYf3Z.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-trgrpvYf3Z.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-trgrpvYf3Z .modal-content,
.cid-trgrpvYf3Z .modal-dialog {
  height: auto;
}
.cid-trgrpvYf3Z .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-trgrpvYf3Z .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-trgrpvYf3Z .form-wrapper .mbr-form .form-group,
  .cid-trgrpvYf3Z .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-trgrpvYf3Z .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-trgrpvYf3Z .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-trgrpvYf3Z .mbr-text {
  text-align: center;
}
.cid-trgrpvYf3Z .pt-0 {
  padding-top: 0 !important;
}
.cid-trgrpvYf3Z .pb-0 {
  padding-bottom: 0 !important;
}
.cid-trgrpvYf3Z .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-trgrpvYf3Z .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-trgrpvYf3Z .modal-open {
  overflow: hidden;
}
.cid-trgrpvYf3Z .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-trgrpvYf3Z .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-trgrpvYf3Z .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-trgrpvYf3Z .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-trgrpvYf3Z .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-trgrpvYf3Z .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-trgrpvYf3Z .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-trgrpvYf3Z .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-trgrpvYf3Z .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-trgrpvYf3Z .modal-backdrop.fade {
  opacity: 0;
}
.cid-trgrpvYf3Z .modal-backdrop.show {
  opacity: .5;
}
.cid-trgrpvYf3Z .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-trgrpvYf3Z .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-trgrpvYf3Z .modal-header .close:hover {
  opacity: 1;
}
.cid-trgrpvYf3Z .modal-header .close:focus {
  outline: none;
}
.cid-trgrpvYf3Z .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-trgrpvYf3Z .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-trgrpvYf3Z .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-trgrpvYf3Z .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-trgrpvYf3Z .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-trgrpvYf3Z .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-trgrpvYf3Z .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-trgrpvYf3Z .modal-sm {
    max-width: 300px;
  }
  .cid-trgrpvYf3Z .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-trgrpvYf3Z .modal-lg,
  .cid-trgrpvYf3Z .modal-xl {
    max-width: 800px;
  }
  .cid-trgrpvYf3Z .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-trgrpvYf3Z .modal-xl {
    max-width: 1140px;
  }
  .cid-trgrpvYf3Z .container {
    max-width: 1140px;
  }
}
.cid-trgrpvYf3Z .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-trgrpvYf3Z .container {
    max-width: 720px;
  }
}
.cid-trgrpvYf3Z .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-trgrpvYf3Z .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-trgrpvYf3Z .form-group {
  margin-bottom: 1rem;
}
.cid-trgrpvYf3Z .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-trgrpvYf3Z .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-trgrpvYf3Z .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-trgrpvYf3Z textarea {
  min-height: 150px;
}
.cid-trgrpvYf3Z .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #4554c1;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.cid-trgrpvYf3Z .form-control,
.cid-trgrpvYf3Z .field-input {
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #767676;
  color: #767676 !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 8px;
  outline: none;
}
.cid-trgrpvYf3Z .form-control input::-webkit-input-placeholder,
.cid-trgrpvYf3Z .field-input input::-webkit-input-placeholder,
.cid-trgrpvYf3Z .form-control textarea::-webkit-input-placeholder,
.cid-trgrpvYf3Z .field-input textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-trgrpvYf3Z .form-control input:-moz-placeholder,
.cid-trgrpvYf3Z .field-input input:-moz-placeholder,
.cid-trgrpvYf3Z .form-control textarea:-moz-placeholder,
.cid-trgrpvYf3Z .field-input textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-trgrpvYf3Z .form-control:hover,
.cid-trgrpvYf3Z .field-input:hover,
.cid-trgrpvYf3Z .form-control:focus,
.cid-trgrpvYf3Z .field-input:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-trgrpvYf3Z .form-control:hover input::-webkit-input-placeholder,
.cid-trgrpvYf3Z .field-input:hover input::-webkit-input-placeholder,
.cid-trgrpvYf3Z .form-control:focus input::-webkit-input-placeholder,
.cid-trgrpvYf3Z .field-input:focus input::-webkit-input-placeholder,
.cid-trgrpvYf3Z .form-control:hover textarea::-webkit-input-placeholder,
.cid-trgrpvYf3Z .field-input:hover textarea::-webkit-input-placeholder,
.cid-trgrpvYf3Z .form-control:focus textarea::-webkit-input-placeholder,
.cid-trgrpvYf3Z .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-trgrpvYf3Z .form-control:hover input:-moz-placeholder,
.cid-trgrpvYf3Z .field-input:hover input:-moz-placeholder,
.cid-trgrpvYf3Z .form-control:focus input:-moz-placeholder,
.cid-trgrpvYf3Z .field-input:focus input:-moz-placeholder,
.cid-trgrpvYf3Z .form-control:hover textarea:-moz-placeholder,
.cid-trgrpvYf3Z .field-input:hover textarea:-moz-placeholder,
.cid-trgrpvYf3Z .form-control:focus textarea:-moz-placeholder,
.cid-trgrpvYf3Z .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-trgrpvYf3Z .jq-number__spin:hover,
.cid-trgrpvYf3Z .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-trgrpvYf3Z .jq-number__spin {
  background-color: #ffffff;
  border-color: #767676;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-trgrpvYf3Z .jq-selectbox li,
.cid-trgrpvYf3Z .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-trgrpvYf3Z .jq-selectbox li:hover,
.cid-trgrpvYf3Z .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-trgrpvYf3Z .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-trgrpvYf3Z .jq-number__spin.minus:hover:after,
.cid-trgrpvYf3Z .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-trgrpvYf3Z .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-trgrpvYf3Z .jq-number__spin.minus:after,
.cid-trgrpvYf3Z .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-trgrpvYf3Z input::-webkit-clear-button {
  display: none;
}
.cid-trgrpvYf3Z input::-webkit-inner-spin-button {
  display: none;
}
.cid-trgrpvYf3Z input::-webkit-outer-spin-button {
  display: none;
}
.cid-trgrpvYf3Z input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-trgrpvYf3Z .roundedButton {
  border-radius: 55px;
}

.cid-sp1LsXjlWb {
  padding-top: 90px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-webinar.jpg");
}
.cid-sp1LsXjlWb .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sp1LsXjlWb .form-head {
  background: #efefef;
  padding: 2rem;
}
.cid-sp1LsXjlWb .form1 {
  background: #ffffff;
  padding: 2rem;
}
.cid-sp1LsXjlWb .form-group {
  margin-bottom: 1rem;
}
.cid-sp1LsXjlWb .form-control {
  border: none;
  border-radius: 0;
  padding: .5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-sp1LsXjlWb textarea.form-control {
  min-height: 96px;
}
.cid-sp1LsXjlWb .input-group-btn {
  width: 100%;
}
.cid-sp1LsXjlWb .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-sp1LsXjlWb .form-control-label {
  color: #333333;
  font-size: 1rem;
  font-weight: 100 !important;
}
@media (max-width: 767px) {
  .cid-sp1LsXjlWb .form1 {
    padding: 1.5rem;
  }
}
.cid-sp1LsXjlWb .form-subtitle {
  color: #352f6c;
}