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





body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #ff4f7b !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #e8003a !important;
  color: #e8003a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff4f7b !important;
}
.text-secondary {
  color: #2bdc9d !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e8003a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !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: #1dc9cb;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4f7b;
  border-color: #ff4f7b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff4f7b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.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: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff4f7b;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ff4f7b;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ff4f7b;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4f7b;
  color: #ffffff;
}
.jq-number__spin {
  background-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: #ff4f7b;
  border-bottom-color: #ff4f7b;
}
.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: #ff4f7b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #2bdc9d !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='%23ff4f7b' %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-saiaDUjn85 {
  background-image: url("../../../assets/images/fullmoon-1084-2-1-1144x647.jpg");
}
.cid-saiaDUjn85 .mbr-text,
.cid-saiaDUjn85 .typed-text,
.cid-saiaDUjn85 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-saiaDUjn85 .btn {
  margin-left: 4px !important;
}
.cid-saiaDUjn85 .animated-element {
  color: #51aafa;
}
.cid-saiaDUjn85 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #51aafa;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-saiaDUjn85 .mbr-section-title {
  color: #ffffff;
}
.cid-saiaDUjn85 .mbr-section-text,
.cid-saiaDUjn85 .mbr-section-btn {
  color: #fb1905;
}
.cid-saoLwfKXU3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-saoLwfKXU3 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-saoLwfKXU3 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-saoLwfKXU3 .text-content {
  padding-right: 1.5rem;
}
.cid-saoLwfKXU3 .mbr-text {
  color: #8d97ad;
}
.cid-saoLwfKXU3 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-saoLwfKXU3 .counter-container {
  padding-top: 1rem;
}
.cid-saoLwfKXU3 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-saoLwfKXU3 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-saoLwfKXU3 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #1dc9cb;
}
@media (max-width: 991px) {
  .cid-saoLwfKXU3 .main-row {
    margin: 0;
  }
  .cid-saoLwfKXU3 .mbr-section-title,
  .cid-saoLwfKXU3 .mbr-text,
  .cid-saoLwfKXU3 .list,
  .cid-saoLwfKXU3 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-saoLwfKXU3 .text-content {
    padding: 0;
  }
}
.cid-saoLwfKXU3 .mbr-text,
.cid-saoLwfKXU3 .mbr-section-btn {
  color: #000000;
}
.cid-saoRsavJrm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-saoRsavJrm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-saoRsavJrm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-saoRsavJrm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-saoRsavJrm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-saoRsavJrm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-saoRsavJrm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-saoRsavJrm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-saoRsavJrm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-saoRsavJrm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-saoLHa0qDT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-saoLHa0qDT .mbr-section-subtitle {
  color: #8d97ad;
  text-align: center;
}
.cid-saoLHa0qDT .mbr-section-title {
  text-align: center;
}
.cid-saoLBYNwlq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-saoLBYNwlq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-saoLBYNwlq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-saoLBYNwlq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-saoLBYNwlq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-saoLBYNwlq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-saoLBYNwlq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-saoLBYNwlq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-saoLBYNwlq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-saoLBYNwlq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-saoP1rs5Jc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-saoP1rs5Jc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-saoP1rs5Jc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-saoP1rs5Jc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-saoP1rs5Jc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-saoP1rs5Jc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-saoP1rs5Jc .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-saoP1rs5Jc .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-saoP1rs5Jc .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-saoP1rs5Jc .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-saoLJHerru {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-saoLJHerru .mbr-text {
  color: #444444;
  text-align: center;
}
.cid-saoSCYJ9tm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-saoSCYJ9tm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-saoSCYJ9tm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-saoSCYJ9tm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-saoSCYJ9tm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-saoSCYJ9tm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-saoSCYJ9tm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-saoSCYJ9tm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-saoSCYJ9tm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-saoSCYJ9tm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-saLEIRUnYj {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #f4f8fa, #f4f8fa);
}
.cid-saLEIRUnYj .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-saLEIRUnYj .mbr-text {
  color: #8d97ad;
}
.cid-saLEIRUnYj .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-saLDPyRvS1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f4f8fa;
}
.cid-saLDPyRvS1 .mbr-section-title {
  color: #233d63;
  margin-bottom: 25px;
}
.cid-saLDPyRvS1 .icon__block {
  background: linear-gradient(135deg, rgba(191, 108, 255, 0.54) 0%, rgba(191, 108, 255, 0.85) 60%, #bf6cff 100%);
}
.cid-saLDPyRvS1 .mbr-section-title,
.cid-saLDPyRvS1 .icon__wrap {
  text-align: center;
  color: #64697a;
}
.cid-saLDPyRvS1 .mbr-section-subtitle {
  text-align: center;
}
.cid-saLDQ9286M {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f4f8fa;
}
.cid-saLDQ9286M .mbr-section-title {
  color: #233d63;
  margin-bottom: 25px;
}
.cid-saLDQ9286M .icon__block {
  background: linear-gradient(135deg, rgba(191, 108, 255, 0.54) 0%, rgba(191, 108, 255, 0.85) 60%, #bf6cff 100%);
}
.cid-saLDQ9286M .mbr-section-title,
.cid-saLDQ9286M .icon__wrap {
  text-align: center;
  color: #64697a;
}
.cid-saLDQ9286M .mbr-section-subtitle {
  text-align: center;
}
.cid-saLDR4Yxnp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f4f8fa;
}
.cid-saLDR4Yxnp .mbr-gallery-filter {
  text-align: left;
}
.cid-saLDR4Yxnp .mbr-gallery-filter ul {
  position: relative;
}
@media (min-width: 768px) {
  .cid-saLDR4Yxnp .mbr-gallery-filter ul {
    margin: 5px 0 60px;
    padding-left: 190px;
  }
  .cid-saLDR4Yxnp .mbr-gallery-filter ul:before {
    content: '';
    width: 150px;
    height: 2px;
    position: absolute;
    top: 20px;
    left: 0;
    background: #c1c1c1;
  }
}
.cid-saLDR4Yxnp .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-saLDR4Yxnp .mbr-gallery-filter ul li a.btn {
  border: none !important;
  margin: 0;
  font-size: 24px;
  min-width: auto !important;
  background: transparent !important;
  box-shadow: none;
}
@media (max-width: 767px) {
  .cid-saLDR4Yxnp .mbr-gallery-filter ul li a.btn {
    margin-right: 35px;
  }
}
.cid-saLDR4Yxnp .mbr-gallery-filter ul li a.btn:before {
  background: transparent !important;
}
.cid-saLDR4Yxnp .mbr-gallery-filter ul li a.btn:hover {
  background-color: transparent !important;
  color: #c1c1c1 !important;
}
.cid-saLDR4Yxnp .mbr-gallery-filter ul li.active .btn {
  background-color: transparent !important;
  color: #c1c1c1 !important;
}
.cid-saLDR4Yxnp .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-saLDR4Yxnp .mbr-gallery-item > div img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-saLDR4Yxnp .mbr-gallery-item > div .icon-focus {
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px !important;
  transition: all 0.3s ease-in-out;
  font-family: 'FontAwesome' !important;
}
.cid-saLDR4Yxnp .mbr-gallery-item > div .icon-focus:before {
  content: "\f00e";
}
.cid-saLDR4Yxnp .mbr-gallery-item > div:after {
  content: '';
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  opacity: 0;
  border: 1px solid #fff;
  z-index: 2;
  transition: 0.5s opacity ease-in-out;
}
.cid-saLDR4Yxnp .mbr-slider .carousel-control {
  background: #1b1b1b;
  border-radius: 0;
}
.cid-saLDR4Yxnp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-saLDR4Yxnp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-saLDR4Yxnp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-saLDR4Yxnp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #233d63;
  opacity: 0;
  z-index: 2;
  -webkit-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
}
.cid-saLDR4Yxnp .mbr-gallery-item > div > span {
  color: #ffffff;
}
.cid-saLDR4Yxnp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-saLDR4Yxnp .mbr-gallery-item > div:hover:after {
  opacity: 1;
}
.cid-saLDR4Yxnp .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-saLDR4Yxnp .mbr-gallery-item > div:hover img {
  transform: scale3d(1.1, 1.1, 1);
}
.cid-saLDR4Yxnp .mbr-gallery-item > div:hover .icon-focus {
  bottom: 33%;
  bottom: 50%;
}
.cid-saLDR4Yxnp .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
  opacity: 1;
  position: absolute;
  width: 100%;
  bottom: 40%;
  padding: 35px;
  font-weight: 500;
  text-align: center;
  z-index: 5;
  transition: bottom 0.3s ease-in-out;
}
.cid-saLDR4Yxnp .mbr-gallery-item > div:hover .mbr-gallery-title:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: transparent;
  transition: 0.3s background ease-in-out;
}
.cid-saLDR4Yxnp .mbr-gallery-title {
  opacity: 0;
  left: 0;
  bottom: 0;
  position: absolute;
}
.cid-saLDR4Yxnp .modal-body .close {
  top: 0;
  right: 0;
  border-radius: 0;
  font-size: 16px;
  line-height: 40px;
  width: 40px;
  height: 40px;
}
.cid-saoU5zzwTW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-saoU5zzwTW h2,
.cid-saoU5zzwTW h3,
.cid-saoU5zzwTW p,
.cid-saoU5zzwTW h4 {
  color: #0a0a0a;
}
.cid-saoU5zzwTW .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-saoU5zzwTW .mbr-iconfont {
  color: #ff4f7b;
  font-size: 2rem;
}
.cid-saoU5zzwTW .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #52e5e5;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-saoU5zzwTW .form-control:focus,
.cid-saoU5zzwTW .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-saoU5zzwTW .form-group {
  margin-bottom: 1rem;
}
.cid-saoU5zzwTW input::-webkit-input-placeholder,
.cid-saoU5zzwTW textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-saoU5zzwTW input:-moz-placeholder,
.cid-saoU5zzwTW textarea:-moz-placeholder {
  color: #656565;
}
.cid-saoU5zzwTW .jq-selectbox li,
.cid-saoU5zzwTW .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-saoU5zzwTW .jq-selectbox li:hover,
.cid-saoU5zzwTW .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-saoU5zzwTW .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-saoU5zzwTW .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-saoU5zzwTW .mbr-text {
  color: #767676;
}
.cid-saoU5zzwTW a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-saoU5zzwTW .input-group-btn {
  display: block;
  text-align: center;
}
.cid-saoU5zzwTW .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-saoU5zzwTW textarea.form-control {
  resize: none;
}
.cid-saoU5zzwTW .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-saoU5zzwTW .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-saoU5zzwTW h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-saoU5zzwTW .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-saoU5zzwTW .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-saoU5zzwTW .img-block-wrap {
    position: relative;
  }
  .cid-saoU5zzwTW .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-saoU5zzwTW .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-saoU5zzwTW .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-saoU5zzwTW .google-map {
    padding-bottom: 2rem;
  }
  .cid-saoU5zzwTW .img-block {
    overflow: hidden;
  }
}
