body {
  font-family: Poppins;
}
.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: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.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;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 2.2rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #bb1212 !important;
}
.bg-success {
  background-color: #f1894c !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #36404c !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bb1212 !important;
  border-color: #bb1212 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #bb1212 !important;
  background-color: transparent !important;
  border-color: #bb1212 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #750b0b !important;
  border-color: #750b0b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ed4266 !important;
  border-color: #ed4266 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ed4266 !important;
  background-color: transparent !important;
  border-color: #ed4266 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #cf143b !important;
  border-color: #cf143b !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #82786e !important;
  background-color: transparent !important;
  border-color: #82786e !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f1894c !important;
  border-color: #f1894c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #f1894c !important;
  background-color: transparent !important;
  border-color: #f1894c !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #df5d11 !important;
  border-color: #df5d11 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #36404c !important;
  border-color: #36404c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #36404c !important;
  background-color: transparent !important;
  border-color: #36404c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #161a1f !important;
  border-color: #161a1f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #b1a374 !important;
  background-color: transparent !important;
  border-color: #b1a374 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #333333 !important;
  background-color: transparent !important;
  border-color: #333333 !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 {
  background: none;
  border-color: #5e0909;
  color: #5e0909;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #bb1212;
  border-color: #bb1212;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bb1212 !important;
  border-color: #bb1212 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #b81134;
  color: #b81134;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ed4266;
  border-color: #ed4266;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ed4266 !important;
  border-color: #ed4266 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #c75410;
  color: #c75410;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #f1894c;
  border-color: #f1894c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f1894c !important;
  border-color: #f1894c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #0c0e10;
  color: #0c0e10;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #36404c;
  border-color: #36404c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #36404c !important;
  border-color: #36404c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #bb1212 !important;
}
.text-secondary {
  color: #ed4266 !important;
}
.text-success {
  color: #f1894c !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #36404c !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ed4266 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #b81134 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ed4266 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #ed4266 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #ed4266 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ed4266 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ed4266 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #ed4266 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #36404c;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bb1212;
  border-color: #bb1212;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #bb1212;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ef5d5d;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #a7b3c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
  -webkit-transform: rotate(45deg);
}
.form-control {
  background-color: #ffffff;
  box-shadow: none;
  color: #767676;
  border: 3px solid #ebeced;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.43;
  min-height: 46px;
  padding: 0.5rem 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
.form-control:focus {
  outline: none;
  border: 3px solid #ebeced;
  background-color: #f5f5f7;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
blockquote {
  border-color: #bb1212;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bb1212;
  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-number__spin {
  background-color: #ffffff;
  border: 3px solid #ebeced;
}
.jq-number__spin:focus {
  outline: none;
  border: 3px solid #ebeced;
  background-color: #f5f5f7;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #bb1212;
  border-bottom-color: #bb1212;
}
.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: #bb1212 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ed4266 !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='%23bb1212' %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-uBBVOJvqpa {
  background-image: url("../../../assets/images/dadmaher-2000x1500.jpeg");
  background-position: right;
}
.cid-uBBVOJvqpa .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-uBBVOJvqpa .wrapper:before {
  content: '';
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 3px;
  right: 0;
}
.cid-uBBVOJvqpa .wrapper:after {
  content: '';
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-uBBVOJvqpa img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-uBBVOJvqpa .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-uBBVOJvqpa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBVOJvqpa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ro4BmrkYCd {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ro4BmrkYCd a {
  font-weight: 400;
}
.cid-ro4BmrkYCd DIV {
  text-align: center;
}
.cid-ro4BmrkYCd .mbr-text,
.cid-ro4BmrkYCd .mbr-section-btn {
  text-align: center;
}
.cid-ro4IU1UenX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ro4IU1UenX .card-icon {
  font-size: 56px;
  color: #bb1212;
  transition: color 0.3s;
}
.cid-ro4IU1UenX .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-ro4IU1UenX p {
  font-weight: 400;
}
.cid-ro4IU1UenX .link-ico {
  font-size: 0.8rem;
  color: #36404c;
  border: 2px solid #36404c;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
  transition: all 0.3s;
}
.cid-ro4IU1UenX .link-ico:hover {
  background-color: #bb1212;
  border-color: #bb1212;
  color: white;
}
.cid-ro4IU1UenX .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #bb1212;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-ro4IU1UenX .card-wrapper {
  padding: 2rem;
  transition: background 0.3s;
  background: #ffffff;
}
.cid-ro4IU1UenX .card-wrapper:hover .link-ico {
  background-color: #bb1212;
  border-color: #bb1212;
  color: white;
}
.cid-ro4IU1UenX .card-wrapper:hover .card-title a {
  color: #ed4266 !important;
}
.cid-ro4IU1UenX .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.cid-ro4IU1UenX .card-title,
.cid-ro4IU1UenX .card-ico,
.cid-ro4IU1UenX .line-wrap {
  text-align: center;
}
.cid-ro4IU1UenX .mbr-text,
.cid-ro4IU1UenX .card-link {
  text-align: center;
  color: #232323;
}
.cid-uBBS8vikMC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uBBS8vikMC .mbr-section-subtitle {
  color: #767676;
}
.cid-uBBS8vikMC .container-fluid {
  padding: 0 !important;
}
.cid-uBBS8vikMC .col-md-12 {
  padding: 0;
}
.cid-uBBS8vikMC .row {
  margin: 0;
}
.cid-uBBS8vikMC .btn {
  margin: 0.3rem;
  margin-top: 2rem;
}
.cid-uBBS8vikMC .m-auto {
  max-width: 650px;
  padding: 2rem;
}
.cid-uBBS8vikMC .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #bb1212;
  transition: background 0.3s;
  margin-bottom: 3rem;
}
.cid-uBBS8vikMC .number-wrap {
  color: #767676;
  border-color: rgba(255, 255, 255, 0.15);
  border: 3px solid #ebeced;
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 10px 13px 10px;
  margin: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
.cid-uBBS8vikMC .number {
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #255085;
}
.cid-uBBS8vikMC .period {
  display: block;
}
.cid-uBBS8vikMC .dot {
  display: none;
}
.cid-uBBS8vikMC .countdown-cont {
  max-width: 700px;
}
.cid-uBBS8vikMC .col-xs-3 {
  padding-left: 0;
  padding-right: 0;
  margin-right: 20px;
  max-width: 20%;
  flex: 0 0 20%;
}
@media (max-width: 767px) {
  .cid-uBBS8vikMC .number-wrap {
    margin-bottom: 15px;
  }
  .cid-uBBS8vikMC .col-xs-3 {
    margin-right: 0px;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .cid-uBBS8vikMC .box {
    height: 400px !important;
  }
}
@media (max-width: 440px) {
  .cid-uBBS8vikMC .number,
  .cid-uBBS8vikMC .dot {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-uBBS8vikMC .period {
    font-size: 0.8rem;
  }
}
.cid-uBBS8vikMC .box {
  background-image: url("../../../assets/images/beige-minimalist-stay-tuned-coming-soon-instagram-post-2-2000x2000.png");
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBBS8vikMC .icon-wrap {
  background-color: #ffffff !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uBBS8vikMC .icon-wrap:hover {
  opacity: 0.8;
}
.cid-uBBS8vikMC .icon-wrap span {
  padding-left: 8px;
}
.cid-uBBS8vikMC .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #255085 !important;
}
.cid-uBBS8vikMC .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uBBS8vikMC .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uBBS8vikMC .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uBBS8vikMC .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uBBS8vikMC a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uBBS8vikMC a.close:hover {
  color: #ffffff;
}
.cid-uBBS8vikMC .mbr-text {
  color: #232323;
}
.cid-uBBS8vikMC H4 {
  color: #232323;
}
.cid-uBBS8vikMC H2 {
  color: #36404c;
}
.cid-uBBS8vikMC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBBS8vikMC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBBS8vikMC H3 {
  color: #232323;
}
.cid-ro4Jwo8Yd9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #255085;
}
.cid-ro4Jwo8Yd9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ro4Jwo8Yd9 .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-ro4Jwo8Yd9 H2 {
  margin: 0;
  width: 100%;
}
.cid-ro4Jwo8Yd9 h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ro4Jwo8Yd9 .title {
    margin-bottom: 2rem;
  }
  .cid-ro4Jwo8Yd9 .align-left,
  .cid-ro4Jwo8Yd9 .align-right {
    text-align: center;
  }
}
.cid-ro4Iy2oEb8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ro4Iy2oEb8 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #bb1212;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-ro4Iy2oEb8 H2 {
  color: #36404c;
}
.cid-ro4Iy2oEb8 H3 {
  color: #4f4943;
  text-align: left;
}
.cid-ro4Iy2oEb8 .mbr-text,
.cid-ro4Iy2oEb8 .mbr-section-btn {
  color: #232323;
}
.cid-ro4Iy2oEb8 .photo {
  width: 90%;
}
@media (max-width: 992px) {
  .cid-ro4Iy2oEb8 .md-pb {
    padding-bottom: 2rem;
  }
  .cid-ro4Iy2oEb8 .photo {
    width: 100%;
  }
}
.cid-ro4Iy2oEb8 .signature {
  filter: invert(0.5);
}
.cid-uBYD8VIY3e {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uBYD8VIY3e img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.cid-uBYD8VIY3e .wrapper:before {
  content: '';
  display: block;
  position: absolute;
  transition: opacity 0.3s;
  top: 0;
  right: 0;
  height: 100%;
  left: 0;
  background-color: #36404c;
  opacity: 0.6;
  pointer-events: none;
}
.cid-uBYD8VIY3e .col-lg-2 {
  margin: 0;
  padding: 0;
}
.cid-uBYD8VIY3e .col-lg-2:hover .wrapper:before {
  opacity: 0.2;
}
@media (max-width: 767px) {
  .cid-uBYD8VIY3e .wrapper:before {
    opacity: 0.2;
  }
}
.cid-uBYD8VIY3e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBYD8VIY3e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ro5mikFTEv {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ro5mikFTEv .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ro5mikFTEv textarea {
  min-height: 150px;
}
.cid-ro5mikFTEv .mbr-section-btn {
  margin: 0.4rem;
  padding-top: 1.5rem;
}
.cid-ro5mikFTEv .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-ro5mikFTEv .form-control,
.cid-ro5mikFTEv .field-input {
  padding: 0.5rem 1.2rem;
  background-color: #ffffff;
  border: 3px solid #ebeced;
  color: #767676;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  outline: none;
}
.cid-ro5mikFTEv .form-control:hover,
.cid-ro5mikFTEv .field-input:hover,
.cid-ro5mikFTEv .form-control:focus,
.cid-ro5mikFTEv .field-input:focus {
  background-color: #f5f5f7;
  border: 3px solid #ebeced;
  box-shadow: none;
  outline: none;
}
.cid-ro5mikFTEv input::-webkit-input-placeholder,
.cid-ro5mikFTEv textarea::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-ro5mikFTEv input:-moz-placeholder,
.cid-ro5mikFTEv textarea:-moz-placeholder {
  color: #c1c1c1;
}
.cid-ro5mikFTEv .jq-selectbox li,
.cid-ro5mikFTEv .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-ro5mikFTEv .jq-selectbox li:hover,
.cid-ro5mikFTEv .jq-selectbox li.selected {
  background-color: #f5f5f7;
  color: #000000;
}
.cid-ro5mikFTEv .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-ro5mikFTEv .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f7;
}
.cid-ro5mikFTEv H2 {
  color: #36404c;
}
.cid-ro5mikFTEv .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
}
.cid-ro5mikFTEv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ro5mikFTEv .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ro5mikFTEv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ro5mikFTEv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 992px) {
  .cid-ro5mikFTEv .md-pb {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-ro5mikFTEv .col-auto {
    margin: auto;
  }
}
.cid-ro4IrFNocJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ro4IrFNocJ .card-icon {
  font-size: 56px;
  color: #bb1212;
  transition: color 0.3s;
}
.cid-ro4IrFNocJ .icon2 {
  color: #255085;
}
.cid-ro4IrFNocJ .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-ro4IrFNocJ p {
  font-weight: 400;
}
.cid-ro4IrFNocJ .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #bb1212;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-ro4IrFNocJ .line2 {
  background: #255085;
}
.cid-ro4IrFNocJ .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-ro4IrFNocJ .card-wrapper:hover .link-ico {
  background-color: #bb1212;
  border-color: #bb1212;
  color: white;
}
.cid-ro4IrFNocJ .card2 {
  background: #bb1212;
}
.cid-ro4IrFNocJ .card-title,
.cid-ro4IrFNocJ .card-ico,
.cid-ro4IrFNocJ .line-wrap {
  text-align: center;
}
.cid-ro4IrFNocJ .mbr-text,
.cid-ro4IrFNocJ .card-link {
  text-align: center;
}
.cid-ro48xRcEz2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #36404c;
}
.cid-ro48xRcEz2 .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-ro48xRcEz2 section {
  position: relative;
}
.cid-ro48xRcEz2 h4 {
  margin: 0;
}
.cid-ro48xRcEz2 a {
  font-weight: 300;
}
.cid-ro48xRcEz2 .row {
  align-items: center;
}
.cid-ro48xRcEz2 .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-ro48xRcEz2 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-ro48xRcEz2 .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ro48xRcEz2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-ro48xRcEz2 .align-left {
    text-align: center;
  }
  .cid-ro48xRcEz2 .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-ro48xRcEz2 .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-ro48xRcEz2 .item {
    padding-bottom: 0.5rem;
  }
}
.cid-ro48xRcEz2 .item-title {
  color: #c1c1c1;
}
.cid-ro48xRcEz2 H4 {
  color: #c1c1c1;
}
