@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,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: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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 {
  border-radius: 100px;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn: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: #ff4f7b;
  border-color: #ff4f7b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
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 a {
  border-radius: 100px;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #ffffff;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #000000;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #ffffff;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #ff4f7b;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@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;
}
@media (min-width: 768px) {
  .rounded-left {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
  .rounded-left {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
}
.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-tk7kV1Lpij .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tk7kV1Lpij .nav-item,
.cid-tk7kV1Lpij .nav-link,
.cid-tk7kV1Lpij .navbar-caption {
  font-weight: normal;
}
.cid-tk7kV1Lpij .nav-item:focus,
.cid-tk7kV1Lpij .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tk7kV1Lpij .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tk7kV1Lpij .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tk7kV1Lpij .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tk7kV1Lpij .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tk7kV1Lpij .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tk7kV1Lpij .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tk7kV1Lpij .dropdown .dropdown-menu .dropdown-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-tk7kV1Lpij .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tk7kV1Lpij .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tk7kV1Lpij .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ff0066;
}
.cid-tk7kV1Lpij .navbar.opened {
  transition: all .3s;
  background: #ff0066 !important;
}
.cid-tk7kV1Lpij .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tk7kV1Lpij .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tk7kV1Lpij .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tk7kV1Lpij .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tk7kV1Lpij .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tk7kV1Lpij .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tk7kV1Lpij .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tk7kV1Lpij .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-tk7kV1Lpij .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tk7kV1Lpij .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tk7kV1Lpij .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tk7kV1Lpij .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tk7kV1Lpij .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tk7kV1Lpij .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tk7kV1Lpij .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tk7kV1Lpij .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-tk7kV1Lpij .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tk7kV1Lpij .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tk7kV1Lpij .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tk7kV1Lpij .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tk7kV1Lpij .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tk7kV1Lpij .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tk7kV1Lpij .navbar.navbar-short {
  background: #ff0066 !important;
  min-height: 60px;
}
.cid-tk7kV1Lpij .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tk7kV1Lpij .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tk7kV1Lpij .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-tk7kV1Lpij .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tk7kV1Lpij .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tk7kV1Lpij .dropdown-item.active,
.cid-tk7kV1Lpij .dropdown-item:active {
  background-color: transparent;
}
.cid-tk7kV1Lpij .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tk7kV1Lpij .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tk7kV1Lpij .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0066;
}
.cid-tk7kV1Lpij .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tk7kV1Lpij .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tk7kV1Lpij ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tk7kV1Lpij .navbar-buttons {
  text-align: center;
}
.cid-tk7kV1Lpij button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tk7kV1Lpij button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tk7kV1Lpij button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tk7kV1Lpij button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tk7kV1Lpij button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tk7kV1Lpij button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tk7kV1Lpij nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tk7kV1Lpij nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tk7kV1Lpij nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tk7kV1Lpij nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tk7kV1Lpij .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tk7kV1Lpij a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tk7kV1Lpij .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tk7kV1Lpij .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tk7kV1Lpij .soc-item {
  margin: .5rem .3rem;
}
.cid-tk7kV1Lpij .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tk7kV1Lpij .navbar {
    height: 77px;
  }
  .cid-tk7kV1Lpij .navbar.opened {
    height: auto;
  }
  .cid-tk7kV1Lpij .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tk80ZQolnR {
  background-image: url("../../../assets/images/how-long-should-bras-last-900x600.png");
}
.cid-tk80ZQolnR .mbr-overlay {
  background: #000000;
}
.cid-tk80ZQolnR .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tk82TQXwib {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-tk82TQXwib .card-text,
.cid-tk82TQXwib .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tk82TQXwib .main,
.cid-tk82TQXwib .main-reverse {
  border: 1px solid rgba(120, 130, 140, 0.13);
  margin: 0;
  background: #f4f8fa;
}
.cid-tk82TQXwib .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tk82TQXwib .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tk82TQXwib .image-element {
  padding: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tk82TQXwib .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tk82TQXwib .text-element {
  padding: 3rem 2rem;
}
.cid-tk82TQXwib .mbr-iconfont {
  font-size: 3rem;
  color: #188ef4;
}
.cid-tk82TQXwib .bottom-radius {
  overflow: hidden;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cid-tk82TQXwib .top-radius {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tk82TQXwib .main-reverse {
    flex-direction: row;
    -webkit-flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-tk82TQXwib .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-tk82TQXwib .image-element,
  .cid-tk82TQXwib .text-element {
    margin-bottom: 0;
  }
  .cid-tk82TQXwib .main:first-child {
    padding-top: 0;
  }
}
.cid-tk82TQXwib .mbr-section-title {
  color: #ffffff;
}
.cid-tk82TQXwib .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tkMTsDUsO1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tkMTsDUsO1 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tkMTsDUsO1 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tkMTsDUsO1 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tkMTsDUsO1 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tkMTsDUsO1 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tkMTsDUsO1 .icon-transition span:hover {
  background-color: #2bdc9d;
}
.cid-tkMTsDUsO1 .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-tkMTsDUsO1 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tkMTsDUsO1 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tkMTsDUsO1 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tkLA0Cm7FJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tkLA0Cm7FJ .nav-item,
.cid-tkLA0Cm7FJ .nav-link,
.cid-tkLA0Cm7FJ .navbar-caption {
  font-weight: normal;
}
.cid-tkLA0Cm7FJ .nav-item:focus,
.cid-tkLA0Cm7FJ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tkLA0Cm7FJ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tkLA0Cm7FJ .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tkLA0Cm7FJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tkLA0Cm7FJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tkLA0Cm7FJ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tkLA0Cm7FJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tkLA0Cm7FJ .dropdown .dropdown-menu .dropdown-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-tkLA0Cm7FJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkLA0Cm7FJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkLA0Cm7FJ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ff0066;
}
.cid-tkLA0Cm7FJ .navbar.opened {
  transition: all .3s;
  background: #ff0066 !important;
}
.cid-tkLA0Cm7FJ .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tkLA0Cm7FJ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkLA0Cm7FJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkLA0Cm7FJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkLA0Cm7FJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tkLA0Cm7FJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tkLA0Cm7FJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkLA0Cm7FJ .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-tkLA0Cm7FJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkLA0Cm7FJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tkLA0Cm7FJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tkLA0Cm7FJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkLA0Cm7FJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkLA0Cm7FJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tkLA0Cm7FJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkLA0Cm7FJ .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-tkLA0Cm7FJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tkLA0Cm7FJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkLA0Cm7FJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tkLA0Cm7FJ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tkLA0Cm7FJ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tkLA0Cm7FJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tkLA0Cm7FJ .navbar.navbar-short {
  background: #ff0066 !important;
  min-height: 60px;
}
.cid-tkLA0Cm7FJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tkLA0Cm7FJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tkLA0Cm7FJ .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-tkLA0Cm7FJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkLA0Cm7FJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkLA0Cm7FJ .dropdown-item.active,
.cid-tkLA0Cm7FJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tkLA0Cm7FJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkLA0Cm7FJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkLA0Cm7FJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0066;
}
.cid-tkLA0Cm7FJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkLA0Cm7FJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkLA0Cm7FJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tkLA0Cm7FJ .navbar-buttons {
  text-align: center;
}
.cid-tkLA0Cm7FJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tkLA0Cm7FJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tkLA0Cm7FJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tkLA0Cm7FJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tkLA0Cm7FJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tkLA0Cm7FJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tkLA0Cm7FJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkLA0Cm7FJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tkLA0Cm7FJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tkLA0Cm7FJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkLA0Cm7FJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tkLA0Cm7FJ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tkLA0Cm7FJ .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tkLA0Cm7FJ .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tkLA0Cm7FJ .soc-item {
  margin: .5rem .3rem;
}
.cid-tkLA0Cm7FJ .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tkLA0Cm7FJ .navbar {
    height: 77px;
  }
  .cid-tkLA0Cm7FJ .navbar.opened {
    height: auto;
  }
  .cid-tkLA0Cm7FJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkLA0E1651 {
  background-image: url("../../../assets/images/garments-1000x719.jpg");
}
.cid-tkLA0E1651 .mbr-overlay {
  background: #000000;
}
.cid-tkLA0E1651 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tlO4xLoiOG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tlO4xLoiOG .mbr-overlay {
  background: #efefef;
}
.cid-tlO4xLoiOG .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tlO4xLoiOG .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tlO4xLoiOG .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tlO4xLoiOG .mbr-text {
  color: #444444;
}
.cid-tlO4xLoiOG .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tlO4xLoiOG .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tlO4xLoiOG .card-title {
    text-align: center;
  }
  .cid-tlO4xLoiOG p.mbr-text,
  .cid-tlO4xLoiOG p.date {
    text-align: center;
  }
}
.cid-tlOAmxlNLb.popup-builder {
  background-color: #ffffff;
}
.cid-tlOAmxlNLb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOAmxlNLb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOAmxlNLb .modal-content,
.cid-tlOAmxlNLb .modal-dialog {
  height: auto;
}
.cid-tlOAmxlNLb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOAmxlNLb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOAmxlNLb .form-wrapper .mbr-form .form-group,
  .cid-tlOAmxlNLb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOAmxlNLb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOAmxlNLb .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-tlOAmxlNLb .mbr-text {
  text-align: center;
}
.cid-tlOAmxlNLb .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOAmxlNLb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOAmxlNLb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOAmxlNLb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOAmxlNLb .modal-open {
  overflow: hidden;
}
.cid-tlOAmxlNLb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOAmxlNLb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOAmxlNLb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOAmxlNLb .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-tlOAmxlNLb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOAmxlNLb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOAmxlNLb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOAmxlNLb .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-tlOAmxlNLb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOAmxlNLb .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOAmxlNLb .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOAmxlNLb .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-tlOAmxlNLb .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOAmxlNLb .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOAmxlNLb .modal-header .close:focus {
  outline: none;
}
.cid-tlOAmxlNLb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOAmxlNLb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOAmxlNLb .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-tlOAmxlNLb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOAmxlNLb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOAmxlNLb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOAmxlNLb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOAmxlNLb .modal-sm {
    max-width: 300px;
  }
  .cid-tlOAmxlNLb .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOAmxlNLb .modal-lg,
  .cid-tlOAmxlNLb .modal-xl {
    max-width: 800px;
  }
  .cid-tlOAmxlNLb .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOAmxlNLb .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOAmxlNLb .container {
    max-width: 1140px;
  }
}
.cid-tlOAmxlNLb .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOAmxlNLb .container {
    max-width: 720px;
  }
}
.cid-tlOAmxlNLb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOAmxlNLb .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-tlOAmxlNLb .form-group {
  margin-bottom: 1rem;
}
.cid-tlOAmxlNLb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOAmxlNLb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOAmxlNLb .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-tlOBJxxnYS.popup-builder {
  background-color: #ffffff;
}
.cid-tlOBJxxnYS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOBJxxnYS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOBJxxnYS .modal-content,
.cid-tlOBJxxnYS .modal-dialog {
  height: auto;
}
.cid-tlOBJxxnYS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOBJxxnYS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOBJxxnYS .form-wrapper .mbr-form .form-group,
  .cid-tlOBJxxnYS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOBJxxnYS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOBJxxnYS .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-tlOBJxxnYS .mbr-text {
  text-align: center;
}
.cid-tlOBJxxnYS .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOBJxxnYS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOBJxxnYS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOBJxxnYS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOBJxxnYS .modal-open {
  overflow: hidden;
}
.cid-tlOBJxxnYS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOBJxxnYS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOBJxxnYS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOBJxxnYS .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-tlOBJxxnYS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOBJxxnYS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOBJxxnYS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOBJxxnYS .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-tlOBJxxnYS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOBJxxnYS .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOBJxxnYS .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOBJxxnYS .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-tlOBJxxnYS .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOBJxxnYS .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOBJxxnYS .modal-header .close:focus {
  outline: none;
}
.cid-tlOBJxxnYS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOBJxxnYS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOBJxxnYS .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-tlOBJxxnYS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOBJxxnYS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOBJxxnYS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOBJxxnYS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOBJxxnYS .modal-sm {
    max-width: 300px;
  }
  .cid-tlOBJxxnYS .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOBJxxnYS .modal-lg,
  .cid-tlOBJxxnYS .modal-xl {
    max-width: 800px;
  }
  .cid-tlOBJxxnYS .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOBJxxnYS .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOBJxxnYS .container {
    max-width: 1140px;
  }
}
.cid-tlOBJxxnYS .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOBJxxnYS .container {
    max-width: 720px;
  }
}
.cid-tlOBJxxnYS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOBJxxnYS .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-tlOBJxxnYS .form-group {
  margin-bottom: 1rem;
}
.cid-tlOBJxxnYS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOBJxxnYS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOBJxxnYS .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-tlOBK9JTsJ.popup-builder {
  background-color: #ffffff;
}
.cid-tlOBK9JTsJ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOBK9JTsJ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOBK9JTsJ .modal-content,
.cid-tlOBK9JTsJ .modal-dialog {
  height: auto;
}
.cid-tlOBK9JTsJ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOBK9JTsJ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOBK9JTsJ .form-wrapper .mbr-form .form-group,
  .cid-tlOBK9JTsJ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOBK9JTsJ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOBK9JTsJ .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-tlOBK9JTsJ .mbr-text {
  text-align: center;
}
.cid-tlOBK9JTsJ .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOBK9JTsJ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOBK9JTsJ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOBK9JTsJ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOBK9JTsJ .modal-open {
  overflow: hidden;
}
.cid-tlOBK9JTsJ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOBK9JTsJ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOBK9JTsJ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOBK9JTsJ .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-tlOBK9JTsJ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOBK9JTsJ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOBK9JTsJ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOBK9JTsJ .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-tlOBK9JTsJ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOBK9JTsJ .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOBK9JTsJ .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOBK9JTsJ .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-tlOBK9JTsJ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOBK9JTsJ .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOBK9JTsJ .modal-header .close:focus {
  outline: none;
}
.cid-tlOBK9JTsJ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOBK9JTsJ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOBK9JTsJ .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-tlOBK9JTsJ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOBK9JTsJ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOBK9JTsJ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOBK9JTsJ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOBK9JTsJ .modal-sm {
    max-width: 300px;
  }
  .cid-tlOBK9JTsJ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOBK9JTsJ .modal-lg,
  .cid-tlOBK9JTsJ .modal-xl {
    max-width: 800px;
  }
  .cid-tlOBK9JTsJ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOBK9JTsJ .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOBK9JTsJ .container {
    max-width: 1140px;
  }
}
.cid-tlOBK9JTsJ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOBK9JTsJ .container {
    max-width: 720px;
  }
}
.cid-tlOBK9JTsJ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOBK9JTsJ .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-tlOBK9JTsJ .form-group {
  margin-bottom: 1rem;
}
.cid-tlOBK9JTsJ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOBK9JTsJ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOBK9JTsJ .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-tlOrkPQflt {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tlOrkPQflt .mbr-overlay {
  background: #efefef;
}
.cid-tlOrkPQflt .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tlOrkPQflt .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tlOrkPQflt .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tlOrkPQflt .mbr-text {
  color: #444444;
}
.cid-tlOrkPQflt .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tlOrkPQflt .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tlOrkPQflt .card-title {
    text-align: center;
  }
  .cid-tlOrkPQflt p.mbr-text,
  .cid-tlOrkPQflt p.date {
    text-align: center;
  }
}
.cid-tlOCzZTgRb.popup-builder {
  background-color: #ffffff;
}
.cid-tlOCzZTgRb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOCzZTgRb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOCzZTgRb .modal-content,
.cid-tlOCzZTgRb .modal-dialog {
  height: auto;
}
.cid-tlOCzZTgRb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOCzZTgRb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOCzZTgRb .form-wrapper .mbr-form .form-group,
  .cid-tlOCzZTgRb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOCzZTgRb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOCzZTgRb .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-tlOCzZTgRb .mbr-text {
  text-align: center;
}
.cid-tlOCzZTgRb .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOCzZTgRb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOCzZTgRb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOCzZTgRb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOCzZTgRb .modal-open {
  overflow: hidden;
}
.cid-tlOCzZTgRb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOCzZTgRb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOCzZTgRb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOCzZTgRb .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-tlOCzZTgRb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOCzZTgRb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOCzZTgRb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOCzZTgRb .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-tlOCzZTgRb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOCzZTgRb .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOCzZTgRb .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOCzZTgRb .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-tlOCzZTgRb .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOCzZTgRb .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOCzZTgRb .modal-header .close:focus {
  outline: none;
}
.cid-tlOCzZTgRb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOCzZTgRb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOCzZTgRb .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-tlOCzZTgRb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOCzZTgRb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOCzZTgRb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOCzZTgRb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOCzZTgRb .modal-sm {
    max-width: 300px;
  }
  .cid-tlOCzZTgRb .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOCzZTgRb .modal-lg,
  .cid-tlOCzZTgRb .modal-xl {
    max-width: 800px;
  }
  .cid-tlOCzZTgRb .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOCzZTgRb .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOCzZTgRb .container {
    max-width: 1140px;
  }
}
.cid-tlOCzZTgRb .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOCzZTgRb .container {
    max-width: 720px;
  }
}
.cid-tlOCzZTgRb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOCzZTgRb .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-tlOCzZTgRb .form-group {
  margin-bottom: 1rem;
}
.cid-tlOCzZTgRb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOCzZTgRb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOCzZTgRb .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-tlOCAukdmo.popup-builder {
  background-color: #ffffff;
}
.cid-tlOCAukdmo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOCAukdmo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOCAukdmo .modal-content,
.cid-tlOCAukdmo .modal-dialog {
  height: auto;
}
.cid-tlOCAukdmo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOCAukdmo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOCAukdmo .form-wrapper .mbr-form .form-group,
  .cid-tlOCAukdmo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOCAukdmo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOCAukdmo .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-tlOCAukdmo .mbr-text {
  text-align: center;
}
.cid-tlOCAukdmo .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOCAukdmo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOCAukdmo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOCAukdmo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOCAukdmo .modal-open {
  overflow: hidden;
}
.cid-tlOCAukdmo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOCAukdmo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOCAukdmo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOCAukdmo .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-tlOCAukdmo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOCAukdmo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOCAukdmo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOCAukdmo .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-tlOCAukdmo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOCAukdmo .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOCAukdmo .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOCAukdmo .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-tlOCAukdmo .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOCAukdmo .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOCAukdmo .modal-header .close:focus {
  outline: none;
}
.cid-tlOCAukdmo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOCAukdmo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOCAukdmo .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-tlOCAukdmo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOCAukdmo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOCAukdmo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOCAukdmo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOCAukdmo .modal-sm {
    max-width: 300px;
  }
  .cid-tlOCAukdmo .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOCAukdmo .modal-lg,
  .cid-tlOCAukdmo .modal-xl {
    max-width: 800px;
  }
  .cid-tlOCAukdmo .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOCAukdmo .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOCAukdmo .container {
    max-width: 1140px;
  }
}
.cid-tlOCAukdmo .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOCAukdmo .container {
    max-width: 720px;
  }
}
.cid-tlOCAukdmo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOCAukdmo .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-tlOCAukdmo .form-group {
  margin-bottom: 1rem;
}
.cid-tlOCAukdmo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOCAukdmo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOCAukdmo .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-tlOCBlsUJj.popup-builder {
  background-color: #ffffff;
}
.cid-tlOCBlsUJj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOCBlsUJj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOCBlsUJj .modal-content,
.cid-tlOCBlsUJj .modal-dialog {
  height: auto;
}
.cid-tlOCBlsUJj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOCBlsUJj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOCBlsUJj .form-wrapper .mbr-form .form-group,
  .cid-tlOCBlsUJj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOCBlsUJj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOCBlsUJj .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-tlOCBlsUJj .mbr-text {
  text-align: center;
}
.cid-tlOCBlsUJj .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOCBlsUJj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOCBlsUJj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOCBlsUJj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOCBlsUJj .modal-open {
  overflow: hidden;
}
.cid-tlOCBlsUJj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOCBlsUJj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOCBlsUJj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOCBlsUJj .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-tlOCBlsUJj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOCBlsUJj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOCBlsUJj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOCBlsUJj .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-tlOCBlsUJj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOCBlsUJj .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOCBlsUJj .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOCBlsUJj .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-tlOCBlsUJj .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOCBlsUJj .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOCBlsUJj .modal-header .close:focus {
  outline: none;
}
.cid-tlOCBlsUJj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOCBlsUJj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOCBlsUJj .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-tlOCBlsUJj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOCBlsUJj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOCBlsUJj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOCBlsUJj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOCBlsUJj .modal-sm {
    max-width: 300px;
  }
  .cid-tlOCBlsUJj .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOCBlsUJj .modal-lg,
  .cid-tlOCBlsUJj .modal-xl {
    max-width: 800px;
  }
  .cid-tlOCBlsUJj .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOCBlsUJj .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOCBlsUJj .container {
    max-width: 1140px;
  }
}
.cid-tlOCBlsUJj .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOCBlsUJj .container {
    max-width: 720px;
  }
}
.cid-tlOCBlsUJj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOCBlsUJj .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-tlOCBlsUJj .form-group {
  margin-bottom: 1rem;
}
.cid-tlOCBlsUJj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOCBlsUJj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOCBlsUJj .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-tlOrVIs9kb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tlOrVIs9kb .mbr-overlay {
  background: #efefef;
}
.cid-tlOrVIs9kb .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tlOrVIs9kb .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tlOrVIs9kb .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tlOrVIs9kb .mbr-text {
  color: #444444;
}
.cid-tlOrVIs9kb .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tlOrVIs9kb .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tlOrVIs9kb .card-title {
    text-align: center;
  }
  .cid-tlOrVIs9kb p.mbr-text,
  .cid-tlOrVIs9kb p.date {
    text-align: center;
  }
}
.cid-tlOCU95csv.popup-builder {
  background-color: #ffffff;
}
.cid-tlOCU95csv.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOCU95csv.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOCU95csv .modal-content,
.cid-tlOCU95csv .modal-dialog {
  height: auto;
}
.cid-tlOCU95csv .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOCU95csv .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOCU95csv .form-wrapper .mbr-form .form-group,
  .cid-tlOCU95csv .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOCU95csv .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOCU95csv .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-tlOCU95csv .mbr-text {
  text-align: center;
}
.cid-tlOCU95csv .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOCU95csv .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOCU95csv .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOCU95csv .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOCU95csv .modal-open {
  overflow: hidden;
}
.cid-tlOCU95csv .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOCU95csv .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOCU95csv .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOCU95csv .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-tlOCU95csv .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOCU95csv .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOCU95csv .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOCU95csv .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-tlOCU95csv .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOCU95csv .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOCU95csv .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOCU95csv .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-tlOCU95csv .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOCU95csv .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOCU95csv .modal-header .close:focus {
  outline: none;
}
.cid-tlOCU95csv .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOCU95csv .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOCU95csv .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-tlOCU95csv .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOCU95csv .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOCU95csv .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOCU95csv .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOCU95csv .modal-sm {
    max-width: 300px;
  }
  .cid-tlOCU95csv .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOCU95csv .modal-lg,
  .cid-tlOCU95csv .modal-xl {
    max-width: 800px;
  }
  .cid-tlOCU95csv .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOCU95csv .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOCU95csv .container {
    max-width: 1140px;
  }
}
.cid-tlOCU95csv .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOCU95csv .container {
    max-width: 720px;
  }
}
.cid-tlOCU95csv .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOCU95csv .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-tlOCU95csv .form-group {
  margin-bottom: 1rem;
}
.cid-tlOCU95csv .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOCU95csv .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOCU95csv .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-tlOCUSRZKP.popup-builder {
  background-color: #ffffff;
}
.cid-tlOCUSRZKP.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOCUSRZKP.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOCUSRZKP .modal-content,
.cid-tlOCUSRZKP .modal-dialog {
  height: auto;
}
.cid-tlOCUSRZKP .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOCUSRZKP .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOCUSRZKP .form-wrapper .mbr-form .form-group,
  .cid-tlOCUSRZKP .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOCUSRZKP .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOCUSRZKP .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-tlOCUSRZKP .mbr-text {
  text-align: center;
}
.cid-tlOCUSRZKP .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOCUSRZKP .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOCUSRZKP .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOCUSRZKP .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOCUSRZKP .modal-open {
  overflow: hidden;
}
.cid-tlOCUSRZKP .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOCUSRZKP .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOCUSRZKP .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOCUSRZKP .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-tlOCUSRZKP .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOCUSRZKP .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOCUSRZKP .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOCUSRZKP .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-tlOCUSRZKP .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOCUSRZKP .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOCUSRZKP .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOCUSRZKP .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-tlOCUSRZKP .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOCUSRZKP .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOCUSRZKP .modal-header .close:focus {
  outline: none;
}
.cid-tlOCUSRZKP .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOCUSRZKP .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOCUSRZKP .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-tlOCUSRZKP .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOCUSRZKP .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOCUSRZKP .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOCUSRZKP .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOCUSRZKP .modal-sm {
    max-width: 300px;
  }
  .cid-tlOCUSRZKP .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOCUSRZKP .modal-lg,
  .cid-tlOCUSRZKP .modal-xl {
    max-width: 800px;
  }
  .cid-tlOCUSRZKP .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOCUSRZKP .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOCUSRZKP .container {
    max-width: 1140px;
  }
}
.cid-tlOCUSRZKP .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOCUSRZKP .container {
    max-width: 720px;
  }
}
.cid-tlOCUSRZKP .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOCUSRZKP .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-tlOCUSRZKP .form-group {
  margin-bottom: 1rem;
}
.cid-tlOCUSRZKP .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOCUSRZKP .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOCUSRZKP .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-tlOCVXmfoJ.popup-builder {
  background-color: #ffffff;
}
.cid-tlOCVXmfoJ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOCVXmfoJ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOCVXmfoJ .modal-content,
.cid-tlOCVXmfoJ .modal-dialog {
  height: auto;
}
.cid-tlOCVXmfoJ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOCVXmfoJ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOCVXmfoJ .form-wrapper .mbr-form .form-group,
  .cid-tlOCVXmfoJ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOCVXmfoJ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOCVXmfoJ .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-tlOCVXmfoJ .mbr-text {
  text-align: center;
}
.cid-tlOCVXmfoJ .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOCVXmfoJ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOCVXmfoJ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOCVXmfoJ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOCVXmfoJ .modal-open {
  overflow: hidden;
}
.cid-tlOCVXmfoJ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOCVXmfoJ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOCVXmfoJ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOCVXmfoJ .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-tlOCVXmfoJ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOCVXmfoJ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOCVXmfoJ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOCVXmfoJ .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-tlOCVXmfoJ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOCVXmfoJ .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOCVXmfoJ .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOCVXmfoJ .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-tlOCVXmfoJ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOCVXmfoJ .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOCVXmfoJ .modal-header .close:focus {
  outline: none;
}
.cid-tlOCVXmfoJ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOCVXmfoJ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOCVXmfoJ .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-tlOCVXmfoJ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOCVXmfoJ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOCVXmfoJ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOCVXmfoJ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOCVXmfoJ .modal-sm {
    max-width: 300px;
  }
  .cid-tlOCVXmfoJ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOCVXmfoJ .modal-lg,
  .cid-tlOCVXmfoJ .modal-xl {
    max-width: 800px;
  }
  .cid-tlOCVXmfoJ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOCVXmfoJ .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOCVXmfoJ .container {
    max-width: 1140px;
  }
}
.cid-tlOCVXmfoJ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOCVXmfoJ .container {
    max-width: 720px;
  }
}
.cid-tlOCVXmfoJ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOCVXmfoJ .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-tlOCVXmfoJ .form-group {
  margin-bottom: 1rem;
}
.cid-tlOCVXmfoJ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOCVXmfoJ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOCVXmfoJ .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-tlOsyJDr1e {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tlOsyJDr1e .mbr-overlay {
  background: #efefef;
}
.cid-tlOsyJDr1e .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tlOsyJDr1e .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tlOsyJDr1e .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tlOsyJDr1e .mbr-text {
  color: #444444;
}
.cid-tlOsyJDr1e .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tlOsyJDr1e .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tlOsyJDr1e .card-title {
    text-align: center;
  }
  .cid-tlOsyJDr1e p.mbr-text,
  .cid-tlOsyJDr1e p.date {
    text-align: center;
  }
}
.cid-tlOFcGM4uj.popup-builder {
  background-color: #ffffff;
}
.cid-tlOFcGM4uj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOFcGM4uj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOFcGM4uj .modal-content,
.cid-tlOFcGM4uj .modal-dialog {
  height: auto;
}
.cid-tlOFcGM4uj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOFcGM4uj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOFcGM4uj .form-wrapper .mbr-form .form-group,
  .cid-tlOFcGM4uj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOFcGM4uj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOFcGM4uj .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-tlOFcGM4uj .mbr-text {
  text-align: center;
}
.cid-tlOFcGM4uj .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOFcGM4uj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOFcGM4uj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOFcGM4uj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOFcGM4uj .modal-open {
  overflow: hidden;
}
.cid-tlOFcGM4uj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOFcGM4uj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOFcGM4uj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOFcGM4uj .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-tlOFcGM4uj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOFcGM4uj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOFcGM4uj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOFcGM4uj .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-tlOFcGM4uj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOFcGM4uj .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOFcGM4uj .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOFcGM4uj .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-tlOFcGM4uj .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOFcGM4uj .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOFcGM4uj .modal-header .close:focus {
  outline: none;
}
.cid-tlOFcGM4uj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOFcGM4uj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOFcGM4uj .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-tlOFcGM4uj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOFcGM4uj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOFcGM4uj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOFcGM4uj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOFcGM4uj .modal-sm {
    max-width: 300px;
  }
  .cid-tlOFcGM4uj .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOFcGM4uj .modal-lg,
  .cid-tlOFcGM4uj .modal-xl {
    max-width: 800px;
  }
  .cid-tlOFcGM4uj .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOFcGM4uj .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOFcGM4uj .container {
    max-width: 1140px;
  }
}
.cid-tlOFcGM4uj .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOFcGM4uj .container {
    max-width: 720px;
  }
}
.cid-tlOFcGM4uj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOFcGM4uj .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-tlOFcGM4uj .form-group {
  margin-bottom: 1rem;
}
.cid-tlOFcGM4uj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOFcGM4uj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOFcGM4uj .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-tlOFdmTIgQ.popup-builder {
  background-color: #ffffff;
}
.cid-tlOFdmTIgQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOFdmTIgQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOFdmTIgQ .modal-content,
.cid-tlOFdmTIgQ .modal-dialog {
  height: auto;
}
.cid-tlOFdmTIgQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOFdmTIgQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOFdmTIgQ .form-wrapper .mbr-form .form-group,
  .cid-tlOFdmTIgQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOFdmTIgQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOFdmTIgQ .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-tlOFdmTIgQ .mbr-text {
  text-align: center;
}
.cid-tlOFdmTIgQ .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOFdmTIgQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOFdmTIgQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOFdmTIgQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOFdmTIgQ .modal-open {
  overflow: hidden;
}
.cid-tlOFdmTIgQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOFdmTIgQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOFdmTIgQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOFdmTIgQ .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-tlOFdmTIgQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOFdmTIgQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOFdmTIgQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOFdmTIgQ .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-tlOFdmTIgQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOFdmTIgQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOFdmTIgQ .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOFdmTIgQ .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-tlOFdmTIgQ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOFdmTIgQ .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOFdmTIgQ .modal-header .close:focus {
  outline: none;
}
.cid-tlOFdmTIgQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOFdmTIgQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOFdmTIgQ .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-tlOFdmTIgQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOFdmTIgQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOFdmTIgQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOFdmTIgQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOFdmTIgQ .modal-sm {
    max-width: 300px;
  }
  .cid-tlOFdmTIgQ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOFdmTIgQ .modal-lg,
  .cid-tlOFdmTIgQ .modal-xl {
    max-width: 800px;
  }
  .cid-tlOFdmTIgQ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOFdmTIgQ .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOFdmTIgQ .container {
    max-width: 1140px;
  }
}
.cid-tlOFdmTIgQ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOFdmTIgQ .container {
    max-width: 720px;
  }
}
.cid-tlOFdmTIgQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOFdmTIgQ .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-tlOFdmTIgQ .form-group {
  margin-bottom: 1rem;
}
.cid-tlOFdmTIgQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOFdmTIgQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOFdmTIgQ .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-tlOFdZtrb2.popup-builder {
  background-color: #ffffff;
}
.cid-tlOFdZtrb2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOFdZtrb2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOFdZtrb2 .modal-content,
.cid-tlOFdZtrb2 .modal-dialog {
  height: auto;
}
.cid-tlOFdZtrb2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOFdZtrb2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOFdZtrb2 .form-wrapper .mbr-form .form-group,
  .cid-tlOFdZtrb2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOFdZtrb2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOFdZtrb2 .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-tlOFdZtrb2 .mbr-text {
  text-align: center;
}
.cid-tlOFdZtrb2 .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOFdZtrb2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOFdZtrb2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOFdZtrb2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOFdZtrb2 .modal-open {
  overflow: hidden;
}
.cid-tlOFdZtrb2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOFdZtrb2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOFdZtrb2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOFdZtrb2 .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-tlOFdZtrb2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOFdZtrb2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOFdZtrb2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOFdZtrb2 .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-tlOFdZtrb2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOFdZtrb2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOFdZtrb2 .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOFdZtrb2 .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-tlOFdZtrb2 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOFdZtrb2 .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOFdZtrb2 .modal-header .close:focus {
  outline: none;
}
.cid-tlOFdZtrb2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOFdZtrb2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOFdZtrb2 .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-tlOFdZtrb2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOFdZtrb2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOFdZtrb2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOFdZtrb2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOFdZtrb2 .modal-sm {
    max-width: 300px;
  }
  .cid-tlOFdZtrb2 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOFdZtrb2 .modal-lg,
  .cid-tlOFdZtrb2 .modal-xl {
    max-width: 800px;
  }
  .cid-tlOFdZtrb2 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOFdZtrb2 .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOFdZtrb2 .container {
    max-width: 1140px;
  }
}
.cid-tlOFdZtrb2 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOFdZtrb2 .container {
    max-width: 720px;
  }
}
.cid-tlOFdZtrb2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOFdZtrb2 .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-tlOFdZtrb2 .form-group {
  margin-bottom: 1rem;
}
.cid-tlOFdZtrb2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOFdZtrb2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOFdZtrb2 .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-tlOvxxc8rf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tlOvxxc8rf .mbr-overlay {
  background: #efefef;
}
.cid-tlOvxxc8rf .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tlOvxxc8rf .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tlOvxxc8rf .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tlOvxxc8rf .mbr-text {
  color: #444444;
}
.cid-tlOvxxc8rf .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tlOvxxc8rf .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tlOvxxc8rf .card-title {
    text-align: center;
  }
  .cid-tlOvxxc8rf p.mbr-text,
  .cid-tlOvxxc8rf p.date {
    text-align: center;
  }
}
.cid-tlOFrVk8IR.popup-builder {
  background-color: #ffffff;
}
.cid-tlOFrVk8IR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOFrVk8IR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOFrVk8IR .modal-content,
.cid-tlOFrVk8IR .modal-dialog {
  height: auto;
}
.cid-tlOFrVk8IR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOFrVk8IR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOFrVk8IR .form-wrapper .mbr-form .form-group,
  .cid-tlOFrVk8IR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOFrVk8IR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOFrVk8IR .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-tlOFrVk8IR .mbr-text {
  text-align: center;
}
.cid-tlOFrVk8IR .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOFrVk8IR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOFrVk8IR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOFrVk8IR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOFrVk8IR .modal-open {
  overflow: hidden;
}
.cid-tlOFrVk8IR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOFrVk8IR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOFrVk8IR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOFrVk8IR .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-tlOFrVk8IR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOFrVk8IR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOFrVk8IR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOFrVk8IR .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-tlOFrVk8IR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOFrVk8IR .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOFrVk8IR .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOFrVk8IR .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-tlOFrVk8IR .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOFrVk8IR .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOFrVk8IR .modal-header .close:focus {
  outline: none;
}
.cid-tlOFrVk8IR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOFrVk8IR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOFrVk8IR .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-tlOFrVk8IR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOFrVk8IR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOFrVk8IR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOFrVk8IR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOFrVk8IR .modal-sm {
    max-width: 300px;
  }
  .cid-tlOFrVk8IR .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOFrVk8IR .modal-lg,
  .cid-tlOFrVk8IR .modal-xl {
    max-width: 800px;
  }
  .cid-tlOFrVk8IR .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOFrVk8IR .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOFrVk8IR .container {
    max-width: 1140px;
  }
}
.cid-tlOFrVk8IR .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOFrVk8IR .container {
    max-width: 720px;
  }
}
.cid-tlOFrVk8IR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOFrVk8IR .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-tlOFrVk8IR .form-group {
  margin-bottom: 1rem;
}
.cid-tlOFrVk8IR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOFrVk8IR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOFrVk8IR .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-tlOFsHinWd.popup-builder {
  background-color: #ffffff;
}
.cid-tlOFsHinWd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOFsHinWd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOFsHinWd .modal-content,
.cid-tlOFsHinWd .modal-dialog {
  height: auto;
}
.cid-tlOFsHinWd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOFsHinWd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOFsHinWd .form-wrapper .mbr-form .form-group,
  .cid-tlOFsHinWd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOFsHinWd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOFsHinWd .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-tlOFsHinWd .mbr-text {
  text-align: center;
}
.cid-tlOFsHinWd .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOFsHinWd .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOFsHinWd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOFsHinWd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOFsHinWd .modal-open {
  overflow: hidden;
}
.cid-tlOFsHinWd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOFsHinWd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOFsHinWd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOFsHinWd .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-tlOFsHinWd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOFsHinWd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOFsHinWd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOFsHinWd .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-tlOFsHinWd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOFsHinWd .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOFsHinWd .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOFsHinWd .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-tlOFsHinWd .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOFsHinWd .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOFsHinWd .modal-header .close:focus {
  outline: none;
}
.cid-tlOFsHinWd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOFsHinWd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOFsHinWd .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-tlOFsHinWd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOFsHinWd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOFsHinWd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOFsHinWd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOFsHinWd .modal-sm {
    max-width: 300px;
  }
  .cid-tlOFsHinWd .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOFsHinWd .modal-lg,
  .cid-tlOFsHinWd .modal-xl {
    max-width: 800px;
  }
  .cid-tlOFsHinWd .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOFsHinWd .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOFsHinWd .container {
    max-width: 1140px;
  }
}
.cid-tlOFsHinWd .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOFsHinWd .container {
    max-width: 720px;
  }
}
.cid-tlOFsHinWd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOFsHinWd .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-tlOFsHinWd .form-group {
  margin-bottom: 1rem;
}
.cid-tlOFsHinWd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOFsHinWd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOFsHinWd .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-tlOFtjuhwA.popup-builder {
  background-color: #ffffff;
}
.cid-tlOFtjuhwA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlOFtjuhwA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlOFtjuhwA .modal-content,
.cid-tlOFtjuhwA .modal-dialog {
  height: auto;
}
.cid-tlOFtjuhwA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlOFtjuhwA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlOFtjuhwA .form-wrapper .mbr-form .form-group,
  .cid-tlOFtjuhwA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlOFtjuhwA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlOFtjuhwA .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-tlOFtjuhwA .mbr-text {
  text-align: center;
}
.cid-tlOFtjuhwA .pt-0 {
  padding-top: 0 !important;
}
.cid-tlOFtjuhwA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlOFtjuhwA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlOFtjuhwA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlOFtjuhwA .modal-open {
  overflow: hidden;
}
.cid-tlOFtjuhwA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlOFtjuhwA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlOFtjuhwA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlOFtjuhwA .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-tlOFtjuhwA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlOFtjuhwA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlOFtjuhwA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlOFtjuhwA .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-tlOFtjuhwA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlOFtjuhwA .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlOFtjuhwA .modal-backdrop.show {
  opacity: .5;
}
.cid-tlOFtjuhwA .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-tlOFtjuhwA .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlOFtjuhwA .modal-header .close:hover {
  opacity: 1;
}
.cid-tlOFtjuhwA .modal-header .close:focus {
  outline: none;
}
.cid-tlOFtjuhwA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlOFtjuhwA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlOFtjuhwA .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-tlOFtjuhwA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlOFtjuhwA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlOFtjuhwA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlOFtjuhwA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlOFtjuhwA .modal-sm {
    max-width: 300px;
  }
  .cid-tlOFtjuhwA .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlOFtjuhwA .modal-lg,
  .cid-tlOFtjuhwA .modal-xl {
    max-width: 800px;
  }
  .cid-tlOFtjuhwA .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlOFtjuhwA .modal-xl {
    max-width: 1140px;
  }
  .cid-tlOFtjuhwA .container {
    max-width: 1140px;
  }
}
.cid-tlOFtjuhwA .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlOFtjuhwA .container {
    max-width: 720px;
  }
}
.cid-tlOFtjuhwA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlOFtjuhwA .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-tlOFtjuhwA .form-group {
  margin-bottom: 1rem;
}
.cid-tlOFtjuhwA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlOFtjuhwA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlOFtjuhwA .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-tlQ3LnVLOQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tlQ3LnVLOQ .mbr-overlay {
  background: #efefef;
}
.cid-tlQ3LnVLOQ .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tlQ3LnVLOQ .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tlQ3LnVLOQ .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tlQ3LnVLOQ .mbr-text {
  color: #444444;
}
.cid-tlQ3LnVLOQ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tlQ3LnVLOQ .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tlQ3LnVLOQ .card-title {
    text-align: center;
  }
  .cid-tlQ3LnVLOQ p.mbr-text,
  .cid-tlQ3LnVLOQ p.date {
    text-align: center;
  }
}
.cid-tlQ40V4Ftj.popup-builder {
  background-color: #ffffff;
}
.cid-tlQ40V4Ftj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlQ40V4Ftj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlQ40V4Ftj .modal-content,
.cid-tlQ40V4Ftj .modal-dialog {
  height: auto;
}
.cid-tlQ40V4Ftj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlQ40V4Ftj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlQ40V4Ftj .form-wrapper .mbr-form .form-group,
  .cid-tlQ40V4Ftj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlQ40V4Ftj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlQ40V4Ftj .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-tlQ40V4Ftj .mbr-text {
  text-align: center;
}
.cid-tlQ40V4Ftj .pt-0 {
  padding-top: 0 !important;
}
.cid-tlQ40V4Ftj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlQ40V4Ftj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlQ40V4Ftj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlQ40V4Ftj .modal-open {
  overflow: hidden;
}
.cid-tlQ40V4Ftj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlQ40V4Ftj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlQ40V4Ftj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlQ40V4Ftj .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-tlQ40V4Ftj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlQ40V4Ftj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlQ40V4Ftj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlQ40V4Ftj .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-tlQ40V4Ftj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlQ40V4Ftj .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlQ40V4Ftj .modal-backdrop.show {
  opacity: .5;
}
.cid-tlQ40V4Ftj .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-tlQ40V4Ftj .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlQ40V4Ftj .modal-header .close:hover {
  opacity: 1;
}
.cid-tlQ40V4Ftj .modal-header .close:focus {
  outline: none;
}
.cid-tlQ40V4Ftj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlQ40V4Ftj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlQ40V4Ftj .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-tlQ40V4Ftj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlQ40V4Ftj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlQ40V4Ftj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlQ40V4Ftj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlQ40V4Ftj .modal-sm {
    max-width: 300px;
  }
  .cid-tlQ40V4Ftj .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlQ40V4Ftj .modal-lg,
  .cid-tlQ40V4Ftj .modal-xl {
    max-width: 800px;
  }
  .cid-tlQ40V4Ftj .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlQ40V4Ftj .modal-xl {
    max-width: 1140px;
  }
  .cid-tlQ40V4Ftj .container {
    max-width: 1140px;
  }
}
.cid-tlQ40V4Ftj .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlQ40V4Ftj .container {
    max-width: 720px;
  }
}
.cid-tlQ40V4Ftj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlQ40V4Ftj .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-tlQ40V4Ftj .form-group {
  margin-bottom: 1rem;
}
.cid-tlQ40V4Ftj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlQ40V4Ftj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlQ40V4Ftj .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-tlRbTQ1yEG.popup-builder {
  background-color: #ffffff;
}
.cid-tlRbTQ1yEG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlRbTQ1yEG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlRbTQ1yEG .modal-content,
.cid-tlRbTQ1yEG .modal-dialog {
  height: auto;
}
.cid-tlRbTQ1yEG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlRbTQ1yEG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlRbTQ1yEG .form-wrapper .mbr-form .form-group,
  .cid-tlRbTQ1yEG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlRbTQ1yEG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlRbTQ1yEG .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-tlRbTQ1yEG .mbr-text {
  text-align: center;
}
.cid-tlRbTQ1yEG .pt-0 {
  padding-top: 0 !important;
}
.cid-tlRbTQ1yEG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlRbTQ1yEG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlRbTQ1yEG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlRbTQ1yEG .modal-open {
  overflow: hidden;
}
.cid-tlRbTQ1yEG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlRbTQ1yEG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlRbTQ1yEG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlRbTQ1yEG .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-tlRbTQ1yEG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlRbTQ1yEG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlRbTQ1yEG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlRbTQ1yEG .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-tlRbTQ1yEG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlRbTQ1yEG .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlRbTQ1yEG .modal-backdrop.show {
  opacity: .5;
}
.cid-tlRbTQ1yEG .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-tlRbTQ1yEG .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlRbTQ1yEG .modal-header .close:hover {
  opacity: 1;
}
.cid-tlRbTQ1yEG .modal-header .close:focus {
  outline: none;
}
.cid-tlRbTQ1yEG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlRbTQ1yEG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlRbTQ1yEG .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-tlRbTQ1yEG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlRbTQ1yEG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlRbTQ1yEG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlRbTQ1yEG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlRbTQ1yEG .modal-sm {
    max-width: 300px;
  }
  .cid-tlRbTQ1yEG .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlRbTQ1yEG .modal-lg,
  .cid-tlRbTQ1yEG .modal-xl {
    max-width: 800px;
  }
  .cid-tlRbTQ1yEG .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlRbTQ1yEG .modal-xl {
    max-width: 1140px;
  }
  .cid-tlRbTQ1yEG .container {
    max-width: 1140px;
  }
}
.cid-tlRbTQ1yEG .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlRbTQ1yEG .container {
    max-width: 720px;
  }
}
.cid-tlRbTQ1yEG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlRbTQ1yEG .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-tlRbTQ1yEG .form-group {
  margin-bottom: 1rem;
}
.cid-tlRbTQ1yEG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlRbTQ1yEG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlRbTQ1yEG .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-tlRbV3wnZq.popup-builder {
  background-color: #ffffff;
}
.cid-tlRbV3wnZq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlRbV3wnZq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlRbV3wnZq .modal-content,
.cid-tlRbV3wnZq .modal-dialog {
  height: auto;
}
.cid-tlRbV3wnZq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlRbV3wnZq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlRbV3wnZq .form-wrapper .mbr-form .form-group,
  .cid-tlRbV3wnZq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlRbV3wnZq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlRbV3wnZq .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-tlRbV3wnZq .mbr-text {
  text-align: center;
}
.cid-tlRbV3wnZq .pt-0 {
  padding-top: 0 !important;
}
.cid-tlRbV3wnZq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlRbV3wnZq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlRbV3wnZq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlRbV3wnZq .modal-open {
  overflow: hidden;
}
.cid-tlRbV3wnZq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlRbV3wnZq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlRbV3wnZq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlRbV3wnZq .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-tlRbV3wnZq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlRbV3wnZq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlRbV3wnZq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlRbV3wnZq .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-tlRbV3wnZq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlRbV3wnZq .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlRbV3wnZq .modal-backdrop.show {
  opacity: .5;
}
.cid-tlRbV3wnZq .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-tlRbV3wnZq .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlRbV3wnZq .modal-header .close:hover {
  opacity: 1;
}
.cid-tlRbV3wnZq .modal-header .close:focus {
  outline: none;
}
.cid-tlRbV3wnZq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tlRbV3wnZq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlRbV3wnZq .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-tlRbV3wnZq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlRbV3wnZq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlRbV3wnZq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlRbV3wnZq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlRbV3wnZq .modal-sm {
    max-width: 300px;
  }
  .cid-tlRbV3wnZq .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlRbV3wnZq .modal-lg,
  .cid-tlRbV3wnZq .modal-xl {
    max-width: 800px;
  }
  .cid-tlRbV3wnZq .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlRbV3wnZq .modal-xl {
    max-width: 1140px;
  }
  .cid-tlRbV3wnZq .container {
    max-width: 1140px;
  }
}
.cid-tlRbV3wnZq .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlRbV3wnZq .container {
    max-width: 720px;
  }
}
.cid-tlRbV3wnZq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlRbV3wnZq .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-tlRbV3wnZq .form-group {
  margin-bottom: 1rem;
}
.cid-tlRbV3wnZq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlRbV3wnZq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlRbV3wnZq .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-tkMUZ1dLLA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tkMUZ1dLLA .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tkMUZ1dLLA .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tkMUZ1dLLA .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tkMUZ1dLLA .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tkMUZ1dLLA .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tkMUZ1dLLA .icon-transition span:hover {
  background-color: #2bdc9d;
}
.cid-tkMUZ1dLLA .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-tkMUZ1dLLA .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tkMUZ1dLLA .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tkMUZ1dLLA .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tlQ655qOCr.popup-builder {
  background-color: #ffffff;
}
.cid-tlQ655qOCr.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlQ655qOCr.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlQ655qOCr .modal-content,
.cid-tlQ655qOCr .modal-dialog {
  height: auto;
}
.cid-tlQ655qOCr .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlQ655qOCr .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlQ655qOCr .form-wrapper .mbr-form .form-group,
  .cid-tlQ655qOCr .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlQ655qOCr .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlQ655qOCr .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-tlQ655qOCr .mbr-text {
  text-align: center;
}
.cid-tlQ655qOCr .pt-0 {
  padding-top: 0 !important;
}
.cid-tlQ655qOCr .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlQ655qOCr .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlQ655qOCr .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlQ655qOCr .modal-open {
  overflow: hidden;
}
.cid-tlQ655qOCr .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlQ655qOCr .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlQ655qOCr .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlQ655qOCr .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-tlQ655qOCr .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlQ655qOCr .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlQ655qOCr .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlQ655qOCr .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-tlQ655qOCr .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlQ655qOCr .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlQ655qOCr .modal-backdrop.show {
  opacity: .5;
}
.cid-tlQ655qOCr .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-tlQ655qOCr .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlQ655qOCr .modal-header .close:hover {
  opacity: 1;
}
.cid-tlQ655qOCr .modal-header .close:focus {
  outline: none;
}
.cid-tlQ655qOCr .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ff0066;
}
.cid-tlQ655qOCr .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlQ655qOCr .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-tlQ655qOCr .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlQ655qOCr .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlQ655qOCr .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlQ655qOCr .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlQ655qOCr .modal-sm {
    max-width: 300px;
  }
  .cid-tlQ655qOCr .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlQ655qOCr .modal-lg,
  .cid-tlQ655qOCr .modal-xl {
    max-width: 800px;
  }
  .cid-tlQ655qOCr .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlQ655qOCr .modal-xl {
    max-width: 1140px;
  }
  .cid-tlQ655qOCr .container {
    max-width: 1140px;
  }
}
.cid-tlQ655qOCr .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlQ655qOCr .container {
    max-width: 720px;
  }
}
.cid-tlQ655qOCr .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlQ655qOCr .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-tlQ655qOCr .form-group {
  margin-bottom: 1rem;
}
.cid-tlQ655qOCr .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlQ655qOCr .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlQ655qOCr .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-tkLA3O4N5w .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tkLA3O4N5w .nav-item,
.cid-tkLA3O4N5w .nav-link,
.cid-tkLA3O4N5w .navbar-caption {
  font-weight: normal;
}
.cid-tkLA3O4N5w .nav-item:focus,
.cid-tkLA3O4N5w .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tkLA3O4N5w .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tkLA3O4N5w .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tkLA3O4N5w .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tkLA3O4N5w .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tkLA3O4N5w .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tkLA3O4N5w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tkLA3O4N5w .dropdown .dropdown-menu .dropdown-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-tkLA3O4N5w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkLA3O4N5w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkLA3O4N5w .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ff0066;
}
.cid-tkLA3O4N5w .navbar.opened {
  transition: all .3s;
  background: #ff0066 !important;
}
.cid-tkLA3O4N5w .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tkLA3O4N5w .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkLA3O4N5w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkLA3O4N5w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkLA3O4N5w .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tkLA3O4N5w .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tkLA3O4N5w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkLA3O4N5w .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-tkLA3O4N5w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkLA3O4N5w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tkLA3O4N5w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tkLA3O4N5w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkLA3O4N5w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkLA3O4N5w .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tkLA3O4N5w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkLA3O4N5w .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-tkLA3O4N5w .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tkLA3O4N5w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkLA3O4N5w .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tkLA3O4N5w .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tkLA3O4N5w .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tkLA3O4N5w .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tkLA3O4N5w .navbar.navbar-short {
  background: #ff0066 !important;
  min-height: 60px;
}
.cid-tkLA3O4N5w .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tkLA3O4N5w .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tkLA3O4N5w .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-tkLA3O4N5w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkLA3O4N5w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkLA3O4N5w .dropdown-item.active,
.cid-tkLA3O4N5w .dropdown-item:active {
  background-color: transparent;
}
.cid-tkLA3O4N5w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkLA3O4N5w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkLA3O4N5w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0066;
}
.cid-tkLA3O4N5w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkLA3O4N5w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkLA3O4N5w ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tkLA3O4N5w .navbar-buttons {
  text-align: center;
}
.cid-tkLA3O4N5w button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tkLA3O4N5w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tkLA3O4N5w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tkLA3O4N5w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tkLA3O4N5w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tkLA3O4N5w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tkLA3O4N5w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkLA3O4N5w nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tkLA3O4N5w nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tkLA3O4N5w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkLA3O4N5w .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tkLA3O4N5w a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tkLA3O4N5w .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tkLA3O4N5w .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tkLA3O4N5w .soc-item {
  margin: .5rem .3rem;
}
.cid-tkLA3O4N5w .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tkLA3O4N5w .navbar {
    height: 77px;
  }
  .cid-tkLA3O4N5w .navbar.opened {
    height: auto;
  }
  .cid-tkLA3O4N5w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkLA3PCJFK {
  background-image: url("../../../assets/images/mbr-1920x730.jpg");
}
.cid-tkLA3PCJFK .mbr-overlay {
  background: #000000;
}
.cid-tkLA3PCJFK .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tkMSUk3mA9 {
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-tkMSUk3mA9 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-tkMSUk3mA9 ul li {
  padding: 1rem 0;
}
.cid-tkMSUk3mA9 ul li:hover {
  color: #ff4f7b;
}
.cid-tkMSUk3mA9 .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-tkMSUk3mA9 .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-tkMSUk3mA9 .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-tkMSUk3mA9 .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tkMSUk3mA9 .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-tkMSUk3mA9 .map {
    height: auto;
  }
}
.cid-tkMSUk3mA9 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-tkMSUk3mA9 .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-tkMSUk3mA9 .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tkMSUk3mA9 .social-list a:hover {
  opacity: 1;
}
.cid-tkMSUk3mA9 .row-element,
.cid-tkMSUk3mA9 .image-element {
  padding: 0;
}
.cid-tkMSUk3mA9 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tkMSUk3mA9 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff4f7b, #2bdc9d);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tkMSUk3mA9 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-tkMSUk3mA9 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tkMSUk3mA9 .text-content {
    padding: 2rem 1rem;
  }
  .cid-tkMSUk3mA9 .underline .line {
    height: 2px;
  }
  .cid-tkMSUk3mA9 .mbr-title,
  .cid-tkMSUk3mA9 .underline,
  .cid-tkMSUk3mA9 .mbr-text,
  .cid-tkMSUk3mA9 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tkMSUk3mA9 .mbr-title,
.cid-tkMSUk3mA9 .underline {
  color: #ffffff;
}
.cid-tkMSUk3mA9 .mbr-text,
.cid-tkMSUk3mA9 .mbr-section-btn {
  color: #ffffff;
}
.cid-tkMSUk3mA9 mbr-list LI {
  color: #ffffff;
}
.cid-tkMSUk3mA9 mbr-list {
  text-align: center;
}
.cid-tkMSUk3mA9 .mbr-list,
.cid-tkMSUk3mA9 .social-list mbr-list {
  color: #ffffff;
}
.cid-tlPbJDe4ap.popup-builder {
  background-color: #ffffff;
}
.cid-tlPbJDe4ap.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tlPbJDe4ap.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tlPbJDe4ap .modal-content,
.cid-tlPbJDe4ap .modal-dialog {
  height: auto;
}
.cid-tlPbJDe4ap .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tlPbJDe4ap .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tlPbJDe4ap .form-wrapper .mbr-form .form-group,
  .cid-tlPbJDe4ap .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tlPbJDe4ap .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tlPbJDe4ap .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-tlPbJDe4ap .mbr-text {
  text-align: center;
}
.cid-tlPbJDe4ap .pt-0 {
  padding-top: 0 !important;
}
.cid-tlPbJDe4ap .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tlPbJDe4ap .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tlPbJDe4ap .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tlPbJDe4ap .modal-open {
  overflow: hidden;
}
.cid-tlPbJDe4ap .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tlPbJDe4ap .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tlPbJDe4ap .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tlPbJDe4ap .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-tlPbJDe4ap .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tlPbJDe4ap .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tlPbJDe4ap .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tlPbJDe4ap .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-tlPbJDe4ap .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tlPbJDe4ap .modal-backdrop.fade {
  opacity: 0;
}
.cid-tlPbJDe4ap .modal-backdrop.show {
  opacity: .5;
}
.cid-tlPbJDe4ap .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-tlPbJDe4ap .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tlPbJDe4ap .modal-header .close:hover {
  opacity: 1;
}
.cid-tlPbJDe4ap .modal-header .close:focus {
  outline: none;
}
.cid-tlPbJDe4ap .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ff0066;
}
.cid-tlPbJDe4ap .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tlPbJDe4ap .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-tlPbJDe4ap .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tlPbJDe4ap .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tlPbJDe4ap .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tlPbJDe4ap .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tlPbJDe4ap .modal-sm {
    max-width: 300px;
  }
  .cid-tlPbJDe4ap .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tlPbJDe4ap .modal-lg,
  .cid-tlPbJDe4ap .modal-xl {
    max-width: 800px;
  }
  .cid-tlPbJDe4ap .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tlPbJDe4ap .modal-xl {
    max-width: 1140px;
  }
  .cid-tlPbJDe4ap .container {
    max-width: 1140px;
  }
}
.cid-tlPbJDe4ap .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tlPbJDe4ap .container {
    max-width: 720px;
  }
}
.cid-tlPbJDe4ap .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tlPbJDe4ap .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-tlPbJDe4ap .form-group {
  margin-bottom: 1rem;
}
.cid-tlPbJDe4ap .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tlPbJDe4ap .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tlPbJDe4ap .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-tkMVcjGaRR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tkMVcjGaRR .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tkMVcjGaRR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tkMVcjGaRR .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tkMVcjGaRR .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tkMVcjGaRR .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tkMVcjGaRR .icon-transition span:hover {
  background-color: #2bdc9d;
}
.cid-tkMVcjGaRR .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-tkMVcjGaRR .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tkMVcjGaRR .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tkMVcjGaRR .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tlOpExV0qd .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tlOpExV0qd .nav-item,
.cid-tlOpExV0qd .nav-link,
.cid-tlOpExV0qd .navbar-caption {
  font-weight: normal;
}
.cid-tlOpExV0qd .nav-item:focus,
.cid-tlOpExV0qd .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tlOpExV0qd .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tlOpExV0qd .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tlOpExV0qd .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tlOpExV0qd .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tlOpExV0qd .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tlOpExV0qd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tlOpExV0qd .dropdown .dropdown-menu .dropdown-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-tlOpExV0qd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlOpExV0qd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlOpExV0qd .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ff0066;
}
.cid-tlOpExV0qd .navbar.opened {
  transition: all .3s;
  background: #ff0066 !important;
}
.cid-tlOpExV0qd .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tlOpExV0qd .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlOpExV0qd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlOpExV0qd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlOpExV0qd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tlOpExV0qd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tlOpExV0qd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlOpExV0qd .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-tlOpExV0qd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlOpExV0qd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tlOpExV0qd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tlOpExV0qd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlOpExV0qd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlOpExV0qd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tlOpExV0qd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlOpExV0qd .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-tlOpExV0qd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tlOpExV0qd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlOpExV0qd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tlOpExV0qd .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tlOpExV0qd .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tlOpExV0qd .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tlOpExV0qd .navbar.navbar-short {
  background: #ff0066 !important;
  min-height: 60px;
}
.cid-tlOpExV0qd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tlOpExV0qd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tlOpExV0qd .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-tlOpExV0qd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlOpExV0qd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlOpExV0qd .dropdown-item.active,
.cid-tlOpExV0qd .dropdown-item:active {
  background-color: transparent;
}
.cid-tlOpExV0qd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlOpExV0qd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlOpExV0qd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0066;
}
.cid-tlOpExV0qd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlOpExV0qd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlOpExV0qd ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tlOpExV0qd .navbar-buttons {
  text-align: center;
}
.cid-tlOpExV0qd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tlOpExV0qd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tlOpExV0qd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tlOpExV0qd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tlOpExV0qd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tlOpExV0qd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tlOpExV0qd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tlOpExV0qd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tlOpExV0qd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tlOpExV0qd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tlOpExV0qd .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tlOpExV0qd a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tlOpExV0qd .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tlOpExV0qd .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tlOpExV0qd .soc-item {
  margin: .5rem .3rem;
}
.cid-tlOpExV0qd .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tlOpExV0qd .navbar {
    height: 77px;
  }
  .cid-tlOpExV0qd .navbar.opened {
    height: auto;
  }
  .cid-tlOpExV0qd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlOpEzERUT {
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-tlOpEzERUT .mbr-overlay {
  background: #000000;
}
.cid-tlOpEzERUT .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tlOpEEBX4N {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tlOpEEBX4N .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tlOpEEBX4N .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tlOpEEBX4N .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tlOpEEBX4N .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tlOpEEBX4N .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #f9e2af);
}
.cid-tlOpEEBX4N .icon-focus {
  display: none;
}
.cid-tlOpEEBX4N .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-tlOpEEBX4N ul {
  font-size: 0;
}
.cid-tlOpEEBX4N .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tlOpEEBX4N .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-tlOpEEBX4N .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff4f7b, #2bdc9d);
}
.cid-tlOpEEBX4N .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tlOpEEBX4N .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-tlOpEEBX4N .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tlOpEEBX4N .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-tlOpEEBX4N .btn:hover {
  background: transparent !important;
}
.cid-tlOpEEBX4N .btn:hover:before {
  background: transparent !important;
}
.cid-tlOpEEBX4N .btn:before {
  background-color: transparent !important;
}
.cid-tlOpEEBX4N .btn:focus {
  box-shadow: none;
}
.cid-tlOpEEBX4N .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-tlOpEIsUzX {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tlOpEIsUzX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tlOpEIsUzX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tlOpEIsUzX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tlOpEIsUzX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tlOpEIsUzX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #f9e2af);
}
.cid-tlOpEIsUzX .icon-focus {
  display: none;
}
.cid-tlOpEIsUzX .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-tlOpEIsUzX ul {
  font-size: 0;
}
.cid-tlOpEIsUzX .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tlOpEIsUzX .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-tlOpEIsUzX .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff4f7b, #2bdc9d);
}
.cid-tlOpEIsUzX .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tlOpEIsUzX .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-tlOpEIsUzX .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tlOpEIsUzX .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-tlOpEIsUzX .btn:hover {
  background: transparent !important;
}
.cid-tlOpEIsUzX .btn:hover:before {
  background: transparent !important;
}
.cid-tlOpEIsUzX .btn:before {
  background-color: transparent !important;
}
.cid-tlOpEIsUzX .btn:focus {
  box-shadow: none;
}
.cid-tlOpEIsUzX .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-trcqNxRcJA {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-trcqNxRcJA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trcqNxRcJA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trcqNxRcJA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trcqNxRcJA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trcqNxRcJA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #f9e2af);
}
.cid-trcqNxRcJA .icon-focus {
  display: none;
}
.cid-trcqNxRcJA .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-trcqNxRcJA ul {
  font-size: 0;
}
.cid-trcqNxRcJA .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-trcqNxRcJA .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-trcqNxRcJA .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff4f7b, #2bdc9d);
}
.cid-trcqNxRcJA .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-trcqNxRcJA .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-trcqNxRcJA .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-trcqNxRcJA .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-trcqNxRcJA .btn:hover {
  background: transparent !important;
}
.cid-trcqNxRcJA .btn:hover:before {
  background: transparent !important;
}
.cid-trcqNxRcJA .btn:before {
  background-color: transparent !important;
}
.cid-trcqNxRcJA .btn:focus {
  box-shadow: none;
}
.cid-trcqNxRcJA .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-trQ51EABmB {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-trQ51EABmB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-trQ51EABmB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trQ51EABmB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trQ51EABmB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-trQ51EABmB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #f9e2af);
}
.cid-trQ51EABmB .icon-focus {
  display: none;
}
.cid-trQ51EABmB .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  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-trQ51EABmB ul {
  font-size: 0;
}
.cid-trQ51EABmB .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-trQ51EABmB .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-trQ51EABmB .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff4f7b, #2bdc9d);
}
.cid-trQ51EABmB .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-trQ51EABmB .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-trQ51EABmB .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-trQ51EABmB .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-trQ51EABmB .btn:hover {
  background: transparent !important;
}
.cid-trQ51EABmB .btn:hover:before {
  background: transparent !important;
}
.cid-trQ51EABmB .btn:before {
  background-color: transparent !important;
}
.cid-trQ51EABmB .btn:focus {
  box-shadow: none;
}
.cid-trQ51EABmB .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-tlOpEKi2VP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tlOpEKi2VP .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tlOpEKi2VP .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tlOpEKi2VP .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tlOpEKi2VP .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tlOpEKi2VP .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tlOpEKi2VP .icon-transition span:hover {
  background-color: #2bdc9d;
}
.cid-tlOpEKi2VP .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-tlOpEKi2VP .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tlOpEKi2VP .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tlOpEKi2VP .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tkLzXIbbhj .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tkLzXIbbhj .nav-item,
.cid-tkLzXIbbhj .nav-link,
.cid-tkLzXIbbhj .navbar-caption {
  font-weight: normal;
}
.cid-tkLzXIbbhj .nav-item:focus,
.cid-tkLzXIbbhj .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tkLzXIbbhj .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tkLzXIbbhj .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tkLzXIbbhj .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tkLzXIbbhj .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tkLzXIbbhj .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tkLzXIbbhj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tkLzXIbbhj .dropdown .dropdown-menu .dropdown-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-tkLzXIbbhj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkLzXIbbhj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkLzXIbbhj .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ff0066;
}
.cid-tkLzXIbbhj .navbar.opened {
  transition: all .3s;
  background: #ff0066 !important;
}
.cid-tkLzXIbbhj .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tkLzXIbbhj .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkLzXIbbhj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkLzXIbbhj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkLzXIbbhj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tkLzXIbbhj .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tkLzXIbbhj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkLzXIbbhj .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-tkLzXIbbhj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkLzXIbbhj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tkLzXIbbhj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tkLzXIbbhj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkLzXIbbhj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkLzXIbbhj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tkLzXIbbhj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkLzXIbbhj .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-tkLzXIbbhj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tkLzXIbbhj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkLzXIbbhj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tkLzXIbbhj .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tkLzXIbbhj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tkLzXIbbhj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tkLzXIbbhj .navbar.navbar-short {
  background: #ff0066 !important;
  min-height: 60px;
}
.cid-tkLzXIbbhj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tkLzXIbbhj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tkLzXIbbhj .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-tkLzXIbbhj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkLzXIbbhj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkLzXIbbhj .dropdown-item.active,
.cid-tkLzXIbbhj .dropdown-item:active {
  background-color: transparent;
}
.cid-tkLzXIbbhj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkLzXIbbhj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkLzXIbbhj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0066;
}
.cid-tkLzXIbbhj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkLzXIbbhj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkLzXIbbhj ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tkLzXIbbhj .navbar-buttons {
  text-align: center;
}
.cid-tkLzXIbbhj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tkLzXIbbhj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tkLzXIbbhj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tkLzXIbbhj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tkLzXIbbhj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tkLzXIbbhj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tkLzXIbbhj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkLzXIbbhj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tkLzXIbbhj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tkLzXIbbhj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkLzXIbbhj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tkLzXIbbhj a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tkLzXIbbhj .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tkLzXIbbhj .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tkLzXIbbhj .soc-item {
  margin: .5rem .3rem;
}
.cid-tkLzXIbbhj .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tkLzXIbbhj .navbar {
    height: 77px;
  }
  .cid-tkLzXIbbhj .navbar.opened {
    height: auto;
  }
  .cid-tkLzXIbbhj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkLzXJJYrH {
  background-image: url("../../../assets/images/mbr-1920x1156.jpg");
}
.cid-tkLzXJJYrH .mbr-overlay {
  background: #000000;
}
.cid-tkLzXJJYrH .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tkLCSpFObq {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tkLCSpFObq .mbr-section-subtitle {
  color: #8d97ad;
  text-align: center;
}
.cid-tkLCSpFObq .mbr-section-title {
  text-align: center;
  color: #ff0066;
}
.cid-tkLCTP8fLA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tkLCTP8fLA .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tkLCUsLt03 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tkLCUsLt03 .mbr-text {
  color: #232323;
}
.cid-tkLCUsLt03 .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-tkLCUsLt03 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tkLCUsLt03 .counter-container ul li:before {
  position: absolute;
  left: 0px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff0066;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cid-tkMUJWdBAJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tkMUJWdBAJ .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tkMUJWdBAJ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tkMUJWdBAJ .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tkMUJWdBAJ .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tkMUJWdBAJ .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tkMUJWdBAJ .icon-transition span:hover {
  background-color: #2bdc9d;
}
.cid-tkMUJWdBAJ .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-tkMUJWdBAJ .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tkMUJWdBAJ .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tkMUJWdBAJ .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tsw4aIop5c .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-tsw4aIop5c .nav-item,
.cid-tsw4aIop5c .nav-link,
.cid-tsw4aIop5c .navbar-caption {
  font-weight: normal;
}
.cid-tsw4aIop5c .nav-item:focus,
.cid-tsw4aIop5c .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tsw4aIop5c .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tsw4aIop5c .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tsw4aIop5c .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tsw4aIop5c .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tsw4aIop5c .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tsw4aIop5c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tsw4aIop5c .dropdown .dropdown-menu .dropdown-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-tsw4aIop5c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsw4aIop5c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsw4aIop5c .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ff0066;
}
.cid-tsw4aIop5c .navbar.opened {
  transition: all .3s;
  background: #ff0066 !important;
}
.cid-tsw4aIop5c .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tsw4aIop5c .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsw4aIop5c .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsw4aIop5c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsw4aIop5c .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tsw4aIop5c .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tsw4aIop5c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsw4aIop5c .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-tsw4aIop5c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsw4aIop5c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tsw4aIop5c .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tsw4aIop5c .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsw4aIop5c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsw4aIop5c .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tsw4aIop5c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsw4aIop5c .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-tsw4aIop5c .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tsw4aIop5c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsw4aIop5c .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tsw4aIop5c .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tsw4aIop5c .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tsw4aIop5c .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tsw4aIop5c .navbar.navbar-short {
  background: #ff0066 !important;
  min-height: 60px;
}
.cid-tsw4aIop5c .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tsw4aIop5c .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tsw4aIop5c .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-tsw4aIop5c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsw4aIop5c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsw4aIop5c .dropdown-item.active,
.cid-tsw4aIop5c .dropdown-item:active {
  background-color: transparent;
}
.cid-tsw4aIop5c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsw4aIop5c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsw4aIop5c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0066;
}
.cid-tsw4aIop5c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsw4aIop5c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsw4aIop5c ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tsw4aIop5c .navbar-buttons {
  text-align: center;
}
.cid-tsw4aIop5c button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsw4aIop5c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsw4aIop5c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsw4aIop5c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsw4aIop5c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsw4aIop5c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsw4aIop5c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsw4aIop5c nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsw4aIop5c nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsw4aIop5c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsw4aIop5c .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tsw4aIop5c a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsw4aIop5c .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tsw4aIop5c .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tsw4aIop5c .soc-item {
  margin: .5rem .3rem;
}
.cid-tsw4aIop5c .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsw4aIop5c .navbar {
    height: 77px;
  }
  .cid-tsw4aIop5c .navbar.opened {
    height: auto;
  }
  .cid-tsw4aIop5c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsw4aL7Xr6 {
  background-image: url("../../../assets/images/mbr-1920x1111.jpg");
}
.cid-tsw4aL7Xr6 .mbr-overlay {
  background: #000000;
}
.cid-tsw4aL7Xr6 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tsw4BPGnT6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-tsw4BPGnT6 .mbr-overlay {
  background: #efefef;
}
.cid-tsw4BPGnT6 .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tsw4BPGnT6 .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tsw4BPGnT6 .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tsw4BPGnT6 .mbr-text {
  color: #444444;
}
.cid-tsw4BPGnT6 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tsw4BPGnT6 .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tsw4BPGnT6 .card-title {
    text-align: center;
  }
  .cid-tsw4BPGnT6 p.mbr-text,
  .cid-tsw4BPGnT6 p.date {
    text-align: center;
  }
}
.cid-tsw4BPGnT6 H2 {
  color: #c1c1c1;
}
.cid-tsw4EMpzjK.popup-builder {
  background-color: #ffffff;
}
.cid-tsw4EMpzjK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsw4EMpzjK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsw4EMpzjK .modal-content,
.cid-tsw4EMpzjK .modal-dialog {
  height: auto;
}
.cid-tsw4EMpzjK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsw4EMpzjK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsw4EMpzjK .form-wrapper .mbr-form .form-group,
  .cid-tsw4EMpzjK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsw4EMpzjK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsw4EMpzjK .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-tsw4EMpzjK .mbr-text {
  text-align: center;
}
.cid-tsw4EMpzjK .pt-0 {
  padding-top: 0 !important;
}
.cid-tsw4EMpzjK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsw4EMpzjK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsw4EMpzjK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsw4EMpzjK .modal-open {
  overflow: hidden;
}
.cid-tsw4EMpzjK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsw4EMpzjK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsw4EMpzjK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsw4EMpzjK .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-tsw4EMpzjK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsw4EMpzjK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsw4EMpzjK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsw4EMpzjK .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-tsw4EMpzjK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsw4EMpzjK .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsw4EMpzjK .modal-backdrop.show {
  opacity: .5;
}
.cid-tsw4EMpzjK .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-tsw4EMpzjK .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsw4EMpzjK .modal-header .close:hover {
  opacity: 1;
}
.cid-tsw4EMpzjK .modal-header .close:focus {
  outline: none;
}
.cid-tsw4EMpzjK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tsw4EMpzjK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tsw4EMpzjK .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-tsw4EMpzjK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsw4EMpzjK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsw4EMpzjK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsw4EMpzjK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsw4EMpzjK .modal-sm {
    max-width: 300px;
  }
  .cid-tsw4EMpzjK .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tsw4EMpzjK .modal-lg,
  .cid-tsw4EMpzjK .modal-xl {
    max-width: 800px;
  }
  .cid-tsw4EMpzjK .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tsw4EMpzjK .modal-xl {
    max-width: 1140px;
  }
  .cid-tsw4EMpzjK .container {
    max-width: 1140px;
  }
}
.cid-tsw4EMpzjK .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tsw4EMpzjK .container {
    max-width: 720px;
  }
}
.cid-tsw4EMpzjK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsw4EMpzjK .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-tsw4EMpzjK .form-group {
  margin-bottom: 1rem;
}
.cid-tsw4EMpzjK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsw4EMpzjK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsw4EMpzjK .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-tsw4bJJNQs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tsw4bJJNQs .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tsw4bJJNQs .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tsw4bJJNQs .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tsw4bJJNQs .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tsw4bJJNQs .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tsw4bJJNQs .icon-transition span:hover {
  background-color: #2bdc9d;
}
.cid-tsw4bJJNQs .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-tsw4bJJNQs .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tsw4bJJNQs .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tsw4bJJNQs .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tsw4bM7BjS.popup-builder {
  background-color: #ffffff;
}
.cid-tsw4bM7BjS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tsw4bM7BjS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tsw4bM7BjS .modal-content,
.cid-tsw4bM7BjS .modal-dialog {
  height: auto;
}
.cid-tsw4bM7BjS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tsw4bM7BjS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tsw4bM7BjS .form-wrapper .mbr-form .form-group,
  .cid-tsw4bM7BjS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tsw4bM7BjS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tsw4bM7BjS .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-tsw4bM7BjS .mbr-text {
  text-align: center;
}
.cid-tsw4bM7BjS .pt-0 {
  padding-top: 0 !important;
}
.cid-tsw4bM7BjS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tsw4bM7BjS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tsw4bM7BjS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tsw4bM7BjS .modal-open {
  overflow: hidden;
}
.cid-tsw4bM7BjS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tsw4bM7BjS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tsw4bM7BjS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tsw4bM7BjS .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-tsw4bM7BjS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tsw4bM7BjS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tsw4bM7BjS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tsw4bM7BjS .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-tsw4bM7BjS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tsw4bM7BjS .modal-backdrop.fade {
  opacity: 0;
}
.cid-tsw4bM7BjS .modal-backdrop.show {
  opacity: .5;
}
.cid-tsw4bM7BjS .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-tsw4bM7BjS .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tsw4bM7BjS .modal-header .close:hover {
  opacity: 1;
}
.cid-tsw4bM7BjS .modal-header .close:focus {
  outline: none;
}
.cid-tsw4bM7BjS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ff0066;
}
.cid-tsw4bM7BjS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tsw4bM7BjS .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-tsw4bM7BjS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tsw4bM7BjS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tsw4bM7BjS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tsw4bM7BjS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tsw4bM7BjS .modal-sm {
    max-width: 300px;
  }
  .cid-tsw4bM7BjS .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tsw4bM7BjS .modal-lg,
  .cid-tsw4bM7BjS .modal-xl {
    max-width: 800px;
  }
  .cid-tsw4bM7BjS .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tsw4bM7BjS .modal-xl {
    max-width: 1140px;
  }
  .cid-tsw4bM7BjS .container {
    max-width: 1140px;
  }
}
.cid-tsw4bM7BjS .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tsw4bM7BjS .container {
    max-width: 720px;
  }
}
.cid-tsw4bM7BjS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tsw4bM7BjS .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-tsw4bM7BjS .form-group {
  margin-bottom: 1rem;
}
.cid-tsw4bM7BjS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tsw4bM7BjS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tsw4bM7BjS .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%;
}
