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





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 15px 0;
  border-radius: 15px 0;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #258 !important;
     color: white !important;
}
.bg-success {
  background-color: #365c9a !important;
     color: white !important;
}
.bg-info {
  background-color: #e96188 !important;
     color: white !important;
}
.bg-warning {
  background-color: #fac769 !important;
     color: black !important;
}
.bg-danger {
  background-color: #f00 !important;
    color: white !important;
}
.bg-gold {
  background-color: darkgoldenrod !important;
  color: black !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #258 !important;
  border-color: #258 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #412c5b !important;
  border-color: #412c5b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #f00 !important;
  border-color: #f00 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #f00 !important;
  border-color: #f00 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #352449;
  color: #352449 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #66458e;
  border-color: #66458e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #66458e !important;
  border-color: #66458e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #66458e !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #352449 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
	color:black;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 15px 0;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 15px 0 !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #66458e;
  border-color: #66458e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 10px 10px 0 0 !important;
}
a,
a:hover {
  color: #66458e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #258;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 15px 0;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #66458e;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 15px 0 !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: 15px 0 !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 15px 0 !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 15px 0 !important;
}
.input-group-btn a.btn {
  border-radius: 15px 0 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #66458e;
  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: #66458e;
  border-bottom-color: #66458e;
}
.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: #66458e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ca4336 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2366458e' %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-rOw88vRMSE .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rOw88vRMSE .nav-item,
.cid-rOw88vRMSE .nav-link,
.cid-rOw88vRMSE .navbar-caption {
  font-weight: normal;
}
.cid-rOw88vRMSE .nav-item:focus,
.cid-rOw88vRMSE .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rOw88vRMSE .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rOw88vRMSE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rOw88vRMSE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rOw88vRMSE .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rOw88vRMSE .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rOw88vRMSE .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rOw88vRMSE .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rOw88vRMSE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rOw88vRMSE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rOw88vRMSE .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #212529;
}
.cid-rOw88vRMSE .navbar.opened {
  transition: all .3s;
  background: #212529 !important;
}
.cid-rOw88vRMSE .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rOw88vRMSE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rOw88vRMSE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rOw88vRMSE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rOw88vRMSE .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rOw88vRMSE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rOw88vRMSE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rOw88vRMSE .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-rOw88vRMSE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rOw88vRMSE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rOw88vRMSE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rOw88vRMSE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rOw88vRMSE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rOw88vRMSE .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rOw88vRMSE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rOw88vRMSE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rOw88vRMSE .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-rOw88vRMSE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rOw88vRMSE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rOw88vRMSE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rOw88vRMSE .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rOw88vRMSE .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rOw88vRMSE .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rOw88vRMSE .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rOw88vRMSE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rOw88vRMSE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rOw88vRMSE .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-rOw88vRMSE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rOw88vRMSE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rOw88vRMSE .dropdown-item.active,
.cid-rOw88vRMSE .dropdown-item:active {
  background-color: transparent;
}
.cid-rOw88vRMSE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rOw88vRMSE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rOw88vRMSE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rOw88vRMSE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #343a40;
}
.cid-rOw88vRMSE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rOw88vRMSE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rOw88vRMSE ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rOw88vRMSE .navbar-buttons {
  text-align: center;
}
.cid-rOw88vRMSE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rOw88vRMSE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rOw88vRMSE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rOw88vRMSE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rOw88vRMSE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rOw88vRMSE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rOw88vRMSE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rOw88vRMSE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rOw88vRMSE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rOw88vRMSE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rOw88vRMSE .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rOw88vRMSE a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rOw88vRMSE .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-rOw88vRMSE .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 15px 0;
}
.cid-rOw88vRMSE .soc-item {
  margin: .5rem .3rem;
}
.cid-rOw88vRMSE .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rOw88vRMSE a.nav-link,
.cid-rOw88vRMSE a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-rOw88vRMSE a.nav-link .mbr-iconfont-btn,
.cid-rOw88vRMSE a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rOw88vRMSE a.nav-link:hover .mbr-iconfont-btn,
.cid-rOw88vRMSE a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rOw88vRMSE a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rOw88vRMSE .navbar {
    height: 77px;
  }
  .cid-rOw88vRMSE .navbar.opened {
    height: auto;
  }
  .cid-rOw88vRMSE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rOw8hqAVRx {
  background-image: url("../../../assets/images/aziz-acharki-kfbgt78zsve-unsplash-2000x1191.jpg");
}
.cid-rOw8hqAVRx .row {
  align-items: center;
  -webkit-align-items: center;
}
.cid-rOw8hqAVRx .form-1 {
  z-index: 1;
  background-color: transparent;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cid-rOw8hqAVRx .form-1 .mbr-overlay {
  z-index: -1;
}
.cid-rOw8hqAVRx .form-group {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-rOw8hqAVRx .form-control {
  color: #ffffff !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-rOw8hqAVRx .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rOw8hqAVRx .input-group-btn {
  display: block;
  padding-left: 0;
}
.cid-rOw8hqAVRx input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-rOw8hqAVRx input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-rOw8hqAVRx .form-subtitle {
  line-height: 1.6;
  color: #767676;
}
.cid-rOw8hqAVRx .mbr-section-subtitle {
  color: #e96188;
}
.cid-rOw8hqAVRx .form-text {
  line-height: 1.6;
  color: #767676;
  margin: 0;
}
@media (min-width: 992px) {
  .cid-rOw8hqAVRx .text-element {
    padding-right: 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rOw8hqAVRx .form-1 {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rOw8hqAVRx .underline .line {
    height: 2px;
  }
  .cid-rOw8hqAVRx .text-element {
    padding-bottom: 1rem;
  }
  .cid-rOw8hqAVRx .form-1 {
    padding: 2rem;
    margin: 1rem;
  }
  .cid-rOw8hqAVRx .mbr-section-subtitle,
  .cid-rOw8hqAVRx .mbr-section-title,
  .cid-rOw8hqAVRx .mbr-text,
  .cid-rOw8hqAVRx .mbr-section-btn,
  .cid-rOw8hqAVRx .form-title,
  .cid-rOw8hqAVRx .form-subtitle,
  .cid-rOw8hqAVRx .input-group-btn,
  .cid-rOw8hqAVRx .form-text {
    text-align: center !important;
  }
}
.cid-rOw8wKiISy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rOw8wKiISy .mbr-text,
.cid-rOw8wKiISy .mbr-section-subtitle {
  color: #767676;
}
.cid-rOw8wKiISy .card-title {
  color: #66458e;
}
.cid-rOw8wKiISy .card .card-img span {
  color: #66458e;
  font-size: 60px;
  background: linear-gradient(45deg, #66458e, #66458e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rOw8wKiISy .mbr-section-subtitle,
  .cid-rOw8wKiISy .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rOw8wKiISy .card .card-img span {
    background: none;
  }
}
.cid-rOwp1rQVIr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rOwp1rQVIr .mbr-text {
  text-align: center;
}
.cid-rONHQF3Ij7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rONHQF3Ij7 .card-box {
  background-color: #66458e;
  padding: 4rem 2rem;
}
.cid-rONHQF3Ij7 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rONHQF3Ij7 p {
  color: #767676;
  text-align: left;
}
.cid-rONHQF3Ij7 .card-wrapper {
  border: 1px solid #efefef;
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rONHQF3Ij7 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rONHQF3Ij7 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rONHQF3Ij7 h3 {
  position: relative;
  margin-top: 2rem;
  letter-spacing: 2px;
}
.cid-rONHQF3Ij7 h3:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-rONHQF3Ij7 h3:hover:after {
  margin-left: -15px;
}
.cid-rONHQF3Ij7 P {
  text-align: center;
  color: #ffffff;
}
.cid-rONHQF3Ij7 .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-rONHQF3Ij7 H3 {
  text-align: center;
}
.cid-rONHQF3Ij7 .number {
  text-align: center;
  color: #ffffff;
}
.cid-rONHQF3Ij7 H1 {
  text-align: center;
}
.cid-rONk43nRus {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rONk43nRus .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-rONk43nRus .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-rONk43nRus .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-rONk43nRus .form-group {
  padding-right: 0;
}
.cid-rONk43nRus .card {
  padding: 3rem;
}
.cid-rONk43nRus .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-rONk43nRus .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-rONk43nRus .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-rONk43nRus .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rONk43nRus .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rONk43nRus .map-placeholder {
  display: none;
}
.cid-rONk43nRus .btn-primary {
  border: 1px solid #66458e !important;
}
.cid-rONk43nRus .btn-primary:hover {
  border: 1px solid #66458e !important;
}
.cid-rONk43nRus .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-rONk43nRus .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-rONk43nRus .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-rONk43nRus .mbr-text {
  color: #444;
}
.cid-rONk43nRus h5 {
  margin-bottom: 0;
}
.cid-rONk43nRus .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-rONk43nRus .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rONk43nRus .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-rONk43nRus .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rONk43nRus .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rONk43nRus .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-rONk43nRus .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-rONk43nRus .social-list a:hover {
  opacity: 0.4;
}
.cid-rONk43nRus .media-container-row > div {
  padding: 0px;
}
.cid-rONk43nRus .text2 {
  color: #000000;
  text-align: left;
}
.cid-rONk43nRus .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-rONk43nRus .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 1200px) {
  .cid-rONk43nRus .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-rONk43nRus .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-rONk43nRus h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-rONk43nRus .form-group {
    max-width: 180px;
  }
  .cid-rONk43nRus .card {
    padding: 2rem 1rem;
  }
}
.cid-rONk43nRus .links span {
  color: #9e9e9e;
}
.cid-rONk43nRus .logo-title,
.cid-rONk43nRus .logo-sub-title {
  text-align: center;
}
.cid-rONk43nRus .logo-sub-title i {
  color: #9e9e9e;
}
.cid-rOw8T2qFEG {
/*  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #04367c, #6441a5);*/
}
.cid-rOw8T2qFEG .plan-body .btn-bgr {
  z-index: 0;
}
.cid-rOw8T2qFEG .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-rOw8T2qFEG .price-term {
  display: block;
  line-height: 1;
  margin-top: 0.45rem;
}
.cid-rOw8T2qFEG .plan-title {
  background-color: #4284df;
}
.cid-rOw8T2qFEG .plan-header {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.cid-rOw8T2qFEG .plan-body {
  border-radius: 0 0 8px 8px;
}
.cid-rOw8T2qFEG .plan {
  position: relative;
  /*max-width: 330px;*/
  padding-right: 0;
  padding-left: 0;
  color: #767676;
	    background-color: whitesmoke;
}
.cid-rOw8T2qFEG .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: transparent;
}
.cid-rOw8T2qFEG .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-rOw8T2qFEG .plan:nth-child(2) .plan-title {
  background-color: #eb4e6f;
}
.cid-rOw8T2qFEG .plan-header,
.cid-rOw8T2qFEG .plan-body {
  /*background-color: #ffffff;*/
  /*border-bottom: solid 2px rgba(0, 0, 0, 0.07);*/
}
.cid-rOw8T2qFEG .price-figure {
  font-weight: 600;
  color: #232323;
}
.cid-rOw8T2qFEG .price-value {
  font-weight: 700;
  vertical-align: top;
  line-height: 1;
  margin-right: 0.25rem;
}
@media (max-width: 550px) {
  .cid-rOw8T2qFEG .price-figure {
    font-size: 2rem;
  }
}
.cid-rOw8EANLMO {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rOw8EANLMO .mbr-section-subtitle {
  color: #767676;
}
.cid-rOw8EANLMO ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rOw8EANLMO ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-rOw8EANLMO ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-rOw8EANLMO ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-rOw8EANLMO .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-rOw93Odn85 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8ff;
}
.cid-rOw93Odn85 .row-main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rOw93Odn85 .card {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding-bottom: 0.5rem;
}
.cid-rOw93Odn85 .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-rOw93Odn85 .img {
  margin: auto;
}
.cid-rOw93Odn85 .card-box {
  width: 100%;
}
.cid-rOw93Odn85 p {
  line-height: 1.5;
  margin: 0;
}
.cid-rOw93Odn85 .box {
  padding: 3rem 5rem;
  margin: auto;
}
.cid-rOw93Odn85 .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-rOw93Odn85 .card-img span {
  color: #232323;
  font-size: 3.6rem;
}
.cid-rOw93Odn85 img {
  width: 100%;
}
.cid-rOw93Odn85 .mbr-text {
  color: #767676;
}
@media (max-width: 1500px) {
  .cid-rOw93Odn85 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rOw93Odn85 .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-rOw93Odn85 .box {
    padding: 2rem 3rem;
  }
}
.cid-rOw93Odn85 .card-title,
.cid-rOw93Odn85 .card-img {
  color: #232bc0;
  text-align: left;
}
.cid-rOw93Odn85 .mbr-section-title {
  text-align: center;
}
.cid-rOw93Odn85 .mbr-section-sub-title {
  text-align: center;
  color: #000000;
}
.cid-rOw93Odn85 .mbr-section-title,
.cid-rOw93Odn85 .line-wrap {
  text-align: center;
  width: 100%;
  color: #000000;
}
.cid-rOw93Odn85 .mbr-text,
.cid-rOw93Odn85 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-rOw8XiM4li {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-rOw8XiM4li .content {
    text-align: center;
  }
  .cid-rOw8XiM4li .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rOw8XiM4li .img-logo img {
  height: 6rem;
}
.cid-rOw8XiM4li .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rOw8XiM4li .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rOw8XiM4li .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 15px 0;
}
.cid-rOw8XiM4li .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rOw8XiM4li .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rOw8XiM4li .social-list a:hover {
  opacity: 1;
}
.cid-rOw8XiM4li .form-control {
  min-height: auto;
  color: #ffffff !important;
  border: none;
  width: 100%;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-rOw8XiM4li .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rOw8XiM4li input::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-rOw8XiM4li input::-moz-placeholder {
  color: #ffffff;
}
.cid-rOw8XiM4li textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-rOw8XiM4li textarea::-moz-placeholder {
  color: #ffffff;
}
.cid-rOw8XiM4li .list {
  list-style-type: none;
  padding: 0;
}
.cid-rOw8XiM4li .list li {
  padding-bottom: .5rem;
}
.cid-rOw8XiM4li .list li:last-child {
  padding-bottom: 0;
}
.cid-rOw8XiM4li .mbr-footer-list,
.cid-rOw8XiM4li .form-text {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rOw8XiM4li .mbr-footer-list,
  .cid-rOw8XiM4li .form-text,
  .cid-rOw8XiM4li .footer-title,
  .cid-rOw8XiM4li .footer-main-title,
  .cid-rOw8XiM4li .form-text,
  .cid-rOw8XiM4li .list {
    text-align: center !important;
  }
  .cid-rOw8XiM4li .mbr-form,
  .cid-rOw8XiM4li .social-list {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
