body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins-Medium';
  font-size: 4rem;
}
.display-2 {
  font-family: 'Poppins-Medium';
  font-size: 2.8rem;
}
.display-4 {
  font-family: 'Poppins-Medium';
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Poppins-Medium';
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Rubik-VariableFont_wght';
  font-size: 1.2rem;
}
/* ---- 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: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #85de00 !important;
}
.bg-success {
  background-color: #00489a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #85de00 !important;
  border-color: #85de00 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #579200 !important;
  border-color: #579200 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #579200 !important;
  border-color: #579200 !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: #00489a !important;
  border-color: #00489a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #00244e !important;
  border-color: #00244e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #00244e !important;
  border-color: #00244e !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #487800;
  color: #487800 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #85de00;
  border-color: #85de00;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #85de00 !important;
  border-color: #85de00 !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: #001834;
  color: #001834 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #00489a;
  border-color: #00489a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #00489a !important;
  border-color: #00489a !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: #85de00 !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #00489a !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: #487800 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #001834 !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: #00489a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #85de00;
  border-color: #85de00;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #85de00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ddffab;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #1b85ff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik-VariableFont_wght';
  font-size: 1.2rem;
}
blockquote {
  border-color: #85de00;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #85de00;
  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: #85de00;
  border-bottom-color: #85de00;
}
.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: #000000 !important;
  background-color: #85de00 !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='%2385de00' %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-rzBdwvh61V .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #85de00;
  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-rzBdwvh61V .nav-item,
.cid-rzBdwvh61V .nav-link,
.cid-rzBdwvh61V .navbar-caption {
  font-weight: normal;
}
.cid-rzBdwvh61V .nav-item:focus,
.cid-rzBdwvh61V .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rzBdwvh61V .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rzBdwvh61V .nav-item .nav-link {
    position: relative;
  }
  .cid-rzBdwvh61V .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #85de00;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-rzBdwvh61V .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-rzBdwvh61V .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-rzBdwvh61V .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-rzBdwvh61V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rzBdwvh61V .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rzBdwvh61V .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rzBdwvh61V .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rzBdwvh61V .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-rzBdwvh61V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rzBdwvh61V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rzBdwvh61V .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rzBdwvh61V .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rzBdwvh61V .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rzBdwvh61V .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rzBdwvh61V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rzBdwvh61V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzBdwvh61V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-rzBdwvh61V .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rzBdwvh61V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzBdwvh61V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rzBdwvh61V .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-rzBdwvh61V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzBdwvh61V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rzBdwvh61V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rzBdwvh61V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rzBdwvh61V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzBdwvh61V .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rzBdwvh61V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzBdwvh61V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rzBdwvh61V .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-rzBdwvh61V .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzBdwvh61V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzBdwvh61V .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rzBdwvh61V .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rzBdwvh61V .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rzBdwvh61V .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rzBdwvh61V .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rzBdwvh61V .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzBdwvh61V .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzBdwvh61V .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-rzBdwvh61V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rzBdwvh61V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzBdwvh61V .dropdown-item.active,
.cid-rzBdwvh61V .dropdown-item:active {
  background-color: transparent;
}
.cid-rzBdwvh61V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rzBdwvh61V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzBdwvh61V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzBdwvh61V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-rzBdwvh61V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-rzBdwvh61V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rzBdwvh61V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rzBdwvh61V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzBdwvh61V ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rzBdwvh61V .navbar-buttons {
  text-align: center;
}
.cid-rzBdwvh61V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzBdwvh61V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rzBdwvh61V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzBdwvh61V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzBdwvh61V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzBdwvh61V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzBdwvh61V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzBdwvh61V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzBdwvh61V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzBdwvh61V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzBdwvh61V .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzBdwvh61V a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzBdwvh61V .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-rzBdwvh61V .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rzBdwvh61V .soc-item {
  margin: .5rem .3rem;
}
.cid-rzBdwvh61V .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-rzBdwvh61V a.nav-link,
.cid-rzBdwvh61V a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-rzBdwvh61V a.nav-link .mbr-iconfont-btn,
.cid-rzBdwvh61V a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rzBdwvh61V a.nav-link:hover .mbr-iconfont-btn,
.cid-rzBdwvh61V a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rzBdwvh61V a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rzBdwvh61V .navbar {
    height: 77px;
  }
  .cid-rzBdwvh61V .navbar.opened {
    height: auto;
  }
  .cid-rzBdwvh61V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qIoWJUOnqf {
  padding-top: 225px;
  background-image: url("../../../assets/images/home-xaler-istock-2029713924-1920x1281.jpg");
}
.cid-qIoWJUOnqf .text-content {
  padding-bottom: 60px;
}
.cid-qIoWJUOnqf .content-container .btn-bgr {
  z-index: 0;
}
.cid-qIoWJUOnqf .box-item-text {
  color: #767676;
}
.cid-qIoWJUOnqf .box-item {
  padding: 2.5rem;
}
.cid-qIoWJUOnqf .box-item:first-child {
  background-color: #ffffff;
}
.cid-qIoWJUOnqf .box-item:nth-child(2) {
  background-color: #efefef;
}
.cid-qIoWJUOnqf .box-item:last-child {
  background-color: #ffffff;
}
.cid-qIoWJUOnqf .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-qIoWJUOnqf .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-qIoWJUOnqf .box-list li:last-child {
  border-bottom: none;
}
.cid-qIoWJUOnqf .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qIoWJUOnqf .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-qIoWJUOnqf .media-container-row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-qIoWJUOnqf .mbr-section-subtitle,
  .cid-qIoWJUOnqf .mbr-section-title,
  .cid-qIoWJUOnqf .mbr-text,
  .cid-qIoWJUOnqf .mbr-section-btn,
  .cid-qIoWJUOnqf .icon-block-top,
  .cid-qIoWJUOnqf .box-item-title,
  .cid-qIoWJUOnqf .box-item-text {
    text-align: center !important;
  }
}
.cid-qIoWJUOnqf .mbr-section-subtitle {
  color: #efefef;
}
.cid-qIp7KFGlXe {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qIp7KFGlXe .mbr-section-subtitle {
  color: #767676;
}
.cid-qIp0qVn2Fg {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-qIp0qVn2Fg .row-element,
.cid-qIp0qVn2Fg .image-element {
  padding: 0;
}
.cid-qIp0qVn2Fg .image-element {
  display: flex;
  justify-content: center;
}
.cid-qIp0qVn2Fg .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qIp0qVn2Fg .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-qIp0qVn2Fg .text-content {
    padding: 2rem 1rem;
  }
  .cid-qIp0qVn2Fg .mbr-title,
  .cid-qIp0qVn2Fg .mbr-text,
  .cid-qIp0qVn2Fg .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qIp0qVn2Fg .mbr-text,
.cid-qIp0qVn2Fg .mbr-section-btn {
  color: #767676;
}
.cid-qIp0qVn2Fg .mbr-title {
  color: #85de00;
}
.cid-qIp0uk8TbN {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qIp0uk8TbN .main {
  flex-direction: row-reverse;
}
.cid-qIp0uk8TbN .row-element,
.cid-qIp0uk8TbN .image-element {
  padding: 0;
}
.cid-qIp0uk8TbN .image-element {
  display: flex;
  justify-content: center;
}
.cid-qIp0uk8TbN .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qIp0uk8TbN .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-qIp0uk8TbN .text-content {
    padding: 2rem 1rem;
  }
  .cid-qIp0uk8TbN .mbr-title,
  .cid-qIp0uk8TbN .underline,
  .cid-qIp0uk8TbN .mbr-text,
  .cid-qIp0uk8TbN .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qIp0uk8TbN .mbr-text,
.cid-qIp0uk8TbN .mbr-section-btn {
  color: #232323;
}
.cid-qIp0uk8TbN .mbr-title {
  color: #85de00;
}
.cid-uab9taZMee {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uab9taZMee .row-element,
.cid-uab9taZMee .image-element {
  padding: 0;
}
.cid-uab9taZMee .image-element {
  display: flex;
  justify-content: center;
}
.cid-uab9taZMee .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uab9taZMee .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uab9taZMee .text-content {
    padding: 2rem 1rem;
  }
  .cid-uab9taZMee .mbr-title,
  .cid-uab9taZMee .underline,
  .cid-uab9taZMee .mbr-text,
  .cid-uab9taZMee .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uab9taZMee .mbr-text,
.cid-uab9taZMee .mbr-section-btn {
  color: #232323;
}
.cid-uab9taZMee .mbr-title {
  color: #85de00;
}
.cid-qIpcXer6tV {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/breakfast-5705180-1920-1440x1920.jpeg");
}
.cid-qIpcXer6tV .mbr-section-title {
  text-align: center;
}
.cid-qIpcXer6tV .mbr-section-subtitle {
  text-align: center;
}
.cid-uabdOfOpzA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uabdOfOpzA .mbr-text,
.cid-uabdOfOpzA .mbr-section-subtitle {
  color: #767676;
}
.cid-uabdOfOpzA .card-title {
  color: #66458e;
}
.cid-uabdOfOpzA .card .card-img span {
  color: #85de00;
  font-size: 60px;
  background: linear-gradient(45deg, #85de00, #85de00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-uabdOfOpzA .mbr-section-subtitle,
  .cid-uabdOfOpzA .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uabdOfOpzA .card .card-img span {
    background: none;
  }
}
.cid-uabdOfOpzA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uabdOfOpzA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uabdOfOpzA .card-title,
.cid-uabdOfOpzA .card-img {
  color: #85de00;
}
.cid-uabn702k9h {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uabn702k9h .row-element,
.cid-uabn702k9h .image-element {
  padding: 0;
}
.cid-uabn702k9h .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uabn702k9h .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uabn702k9h .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uabn702k9h .text-content {
    padding: 2rem 1rem;
  }
  .cid-uabn702k9h .mbr-title,
  .cid-uabn702k9h .mbr-text,
  .cid-uabn702k9h .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uabn702k9h .mbr-text,
.cid-uabn702k9h .mbr-section-btn {
  color: #767676;
}
.cid-uabn702k9h .mbr-title {
  color: #85de00;
}
.cid-uabn702k9h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uabn702k9h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaboDD26fL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5b686b;
}
.cid-uaboDD26fL .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uaboDD26fL .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uaboDD26fL .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uaboDD26fL .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uaboDD26fL .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uaboDD26fL .icon-transition span:hover {
  background-color: #e96188;
}
.cid-uaboDD26fL .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaboDD26fL .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uaboDD26fL .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uaboDD26fL .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uaboDD26fL .copyright {
  font-size: 12px;
}
.cid-uagKMsVoeE .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #85de00;
  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-uagKMsVoeE .nav-item,
.cid-uagKMsVoeE .nav-link,
.cid-uagKMsVoeE .navbar-caption {
  font-weight: normal;
}
.cid-uagKMsVoeE .nav-item:focus,
.cid-uagKMsVoeE .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uagKMsVoeE .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uagKMsVoeE .nav-item .nav-link {
    position: relative;
  }
  .cid-uagKMsVoeE .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #85de00;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uagKMsVoeE .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uagKMsVoeE .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uagKMsVoeE .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-uagKMsVoeE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uagKMsVoeE .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uagKMsVoeE .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uagKMsVoeE .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uagKMsVoeE .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-uagKMsVoeE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uagKMsVoeE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uagKMsVoeE .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uagKMsVoeE .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uagKMsVoeE .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uagKMsVoeE .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uagKMsVoeE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uagKMsVoeE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uagKMsVoeE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-uagKMsVoeE .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uagKMsVoeE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uagKMsVoeE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uagKMsVoeE .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-uagKMsVoeE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uagKMsVoeE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uagKMsVoeE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uagKMsVoeE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uagKMsVoeE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uagKMsVoeE .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uagKMsVoeE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uagKMsVoeE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uagKMsVoeE .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-uagKMsVoeE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uagKMsVoeE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uagKMsVoeE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uagKMsVoeE .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uagKMsVoeE .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uagKMsVoeE .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uagKMsVoeE .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uagKMsVoeE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uagKMsVoeE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uagKMsVoeE .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-uagKMsVoeE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uagKMsVoeE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uagKMsVoeE .dropdown-item.active,
.cid-uagKMsVoeE .dropdown-item:active {
  background-color: transparent;
}
.cid-uagKMsVoeE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uagKMsVoeE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uagKMsVoeE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uagKMsVoeE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uagKMsVoeE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uagKMsVoeE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uagKMsVoeE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uagKMsVoeE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uagKMsVoeE ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uagKMsVoeE .navbar-buttons {
  text-align: center;
}
.cid-uagKMsVoeE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uagKMsVoeE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uagKMsVoeE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uagKMsVoeE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uagKMsVoeE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uagKMsVoeE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uagKMsVoeE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uagKMsVoeE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uagKMsVoeE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uagKMsVoeE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uagKMsVoeE .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uagKMsVoeE a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uagKMsVoeE .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uagKMsVoeE .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uagKMsVoeE .soc-item {
  margin: .5rem .3rem;
}
.cid-uagKMsVoeE .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-uagKMsVoeE a.nav-link,
.cid-uagKMsVoeE a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uagKMsVoeE a.nav-link .mbr-iconfont-btn,
.cid-uagKMsVoeE a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uagKMsVoeE a.nav-link:hover .mbr-iconfont-btn,
.cid-uagKMsVoeE a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uagKMsVoeE a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uagKMsVoeE .navbar {
    height: 77px;
  }
  .cid-uagKMsVoeE .navbar.opened {
    height: auto;
  }
  .cid-uagKMsVoeE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uagLkfjl6Z {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/background5.jpg");
}
@media (max-width: 768px) {
  .cid-uagLkfjl6Z .mbr-text,
  .cid-uagLkfjl6Z .mbr-section-subtitle,
  .cid-uagLkfjl6Z .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uagLkfjl6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uagLkfjl6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uagLdgzYTF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uagKMyZ1Hx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5b686b;
}
.cid-uagKMyZ1Hx .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uagKMyZ1Hx .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uagKMyZ1Hx .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uagKMyZ1Hx .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uagKMyZ1Hx .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uagKMyZ1Hx .icon-transition span:hover {
  background-color: #e96188;
}
.cid-uagKMyZ1Hx .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uagKMyZ1Hx .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uagKMyZ1Hx .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uagKMyZ1Hx .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uagKMyZ1Hx .copyright {
  font-size: 12px;
}
.cid-uagNy57Dql .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #85de00;
  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-uagNy57Dql .nav-item,
.cid-uagNy57Dql .nav-link,
.cid-uagNy57Dql .navbar-caption {
  font-weight: normal;
}
.cid-uagNy57Dql .nav-item:focus,
.cid-uagNy57Dql .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uagNy57Dql .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uagNy57Dql .nav-item .nav-link {
    position: relative;
  }
  .cid-uagNy57Dql .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #85de00;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-uagNy57Dql .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-uagNy57Dql .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-uagNy57Dql .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-uagNy57Dql .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uagNy57Dql .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uagNy57Dql .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uagNy57Dql .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uagNy57Dql .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-uagNy57Dql .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uagNy57Dql .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uagNy57Dql .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uagNy57Dql .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uagNy57Dql .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uagNy57Dql .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uagNy57Dql .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uagNy57Dql .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uagNy57Dql .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 3.8rem);
  }
}
.cid-uagNy57Dql .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uagNy57Dql .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uagNy57Dql .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uagNy57Dql .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-uagNy57Dql .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uagNy57Dql .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uagNy57Dql .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uagNy57Dql .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uagNy57Dql .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uagNy57Dql .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uagNy57Dql .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uagNy57Dql .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uagNy57Dql .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-uagNy57Dql .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uagNy57Dql .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uagNy57Dql .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uagNy57Dql .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uagNy57Dql .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uagNy57Dql .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uagNy57Dql .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uagNy57Dql .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uagNy57Dql .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uagNy57Dql .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-uagNy57Dql .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uagNy57Dql .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uagNy57Dql .dropdown-item.active,
.cid-uagNy57Dql .dropdown-item:active {
  background-color: transparent;
}
.cid-uagNy57Dql .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uagNy57Dql .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uagNy57Dql .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uagNy57Dql .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-uagNy57Dql .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-uagNy57Dql .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uagNy57Dql .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uagNy57Dql .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uagNy57Dql ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uagNy57Dql .navbar-buttons {
  text-align: center;
}
.cid-uagNy57Dql button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uagNy57Dql button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uagNy57Dql button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uagNy57Dql button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uagNy57Dql button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uagNy57Dql button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uagNy57Dql nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uagNy57Dql nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uagNy57Dql nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uagNy57Dql nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uagNy57Dql .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uagNy57Dql a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uagNy57Dql .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-uagNy57Dql .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uagNy57Dql .soc-item {
  margin: .5rem .3rem;
}
.cid-uagNy57Dql .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-uagNy57Dql a.nav-link,
.cid-uagNy57Dql a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uagNy57Dql a.nav-link .mbr-iconfont-btn,
.cid-uagNy57Dql a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uagNy57Dql a.nav-link:hover .mbr-iconfont-btn,
.cid-uagNy57Dql a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uagNy57Dql a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uagNy57Dql .navbar {
    height: 77px;
  }
  .cid-uagNy57Dql .navbar.opened {
    height: auto;
  }
  .cid-uagNy57Dql .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uagNy5ZQTI {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/background5.jpg");
}
@media (max-width: 768px) {
  .cid-uagNy5ZQTI .mbr-text,
  .cid-uagNy5ZQTI .mbr-section-subtitle,
  .cid-uagNy5ZQTI .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uagNy5ZQTI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uagNy5ZQTI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uagOkyNZCU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uagOkyNZCU blockquote {
  border-width: 1px;
  border-color: #879a9f;
  padding: 0 0 0 20px;
}
.cid-uagOkyNZCU .mbr-text,
.cid-uagOkyNZCU .blockquote-quote {
  color: #879a9f;
}
.cid-uagOkyNZCU footer {
  font-style: normal;
}
.cid-uagOkyNZCU .button {
  background: #85de00;
  color: #fff;
  padding: 14px;
}
.cid-uagOkyNZCU .button:hover {
  background: #00489a;
  color: #fff;
  padding: 14px;
}
.cid-uagNy7bx1v {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #5b686b;
}
.cid-uagNy7bx1v .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-uagNy7bx1v .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uagNy7bx1v .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uagNy7bx1v .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-uagNy7bx1v .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #66458e;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-uagNy7bx1v .icon-transition span:hover {
  background-color: #e96188;
}
.cid-uagNy7bx1v .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uagNy7bx1v .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-uagNy7bx1v .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-uagNy7bx1v .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-uagNy7bx1v .copyright {
  font-size: 12px;
}
