body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.3rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.08rem;
}
.display-7 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #ff4f7b !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #e8003a !important;
  color: #e8003a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff4f7b !important;
}
.text-secondary {
  color: #2bdc9d !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e8003a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #1dc9cb;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4f7b;
  border-color: #ff4f7b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff4f7b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #ff4f7b;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ff4f7b;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ff4f7b;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4f7b;
  color: #ffffff;
}
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff4f7b;
  border-bottom-color: #ff4f7b;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #2bdc9d !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ff4f7b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-uii1GdpHe5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uii1GdpHe5 .nav-item,
.cid-uii1GdpHe5 .nav-link,
.cid-uii1GdpHe5 .navbar-caption {
  font-weight: normal;
}
.cid-uii1GdpHe5 .nav-item:focus,
.cid-uii1GdpHe5 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uii1GdpHe5 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uii1GdpHe5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uii1GdpHe5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uii1GdpHe5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1dc9cb;
}
.cid-uii1GdpHe5 .navbar.opened {
  transition: all .3s;
  background: #1dc9cb !important;
}
.cid-uii1GdpHe5 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-uii1GdpHe5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uii1GdpHe5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uii1GdpHe5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uii1GdpHe5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-uii1GdpHe5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uii1GdpHe5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uii1GdpHe5 .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-uii1GdpHe5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uii1GdpHe5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uii1GdpHe5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uii1GdpHe5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uii1GdpHe5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uii1GdpHe5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uii1GdpHe5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uii1GdpHe5 .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-uii1GdpHe5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uii1GdpHe5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uii1GdpHe5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uii1GdpHe5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uii1GdpHe5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uii1GdpHe5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uii1GdpHe5 .navbar.navbar-short {
  background: #1dc9cb !important;
  min-height: 60px;
}
.cid-uii1GdpHe5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uii1GdpHe5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uii1GdpHe5 .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-uii1GdpHe5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uii1GdpHe5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uii1GdpHe5 .dropdown-item.active,
.cid-uii1GdpHe5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uii1GdpHe5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uii1GdpHe5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uii1GdpHe5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1dc9cb;
}
.cid-uii1GdpHe5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uii1GdpHe5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uii1GdpHe5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uii1GdpHe5 .navbar-buttons {
  text-align: center;
}
.cid-uii1GdpHe5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uii1GdpHe5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uii1GdpHe5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uii1GdpHe5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uii1GdpHe5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uii1GdpHe5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uii1GdpHe5 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uii1GdpHe5 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uii1GdpHe5 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-uii1GdpHe5 .soc-item {
  margin: .5rem .3rem;
}
.cid-uii1GdpHe5 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uii1GdpHe5 .navbar {
    height: 77px;
  }
  .cid-uii1GdpHe5 .navbar.opened {
    height: auto;
  }
  .cid-uii1GdpHe5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uii2MxrI1P {
  background-image: url("../../../assets/images/photo-booth-2000x1212.jpg");
}
.cid-uii2MxrI1P .mbr-section-title,
.cid-uii2MxrI1P .mbr-section-subtitle {
  color: #000000;
}
.cid-uii2MxrI1P .mbr-section-text {
  color: #232323;
}
.cid-uii2MxrI1P .mbr-text,
.cid-uii2MxrI1P .typed-text,
.cid-uii2MxrI1P .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uii2MxrI1P .btn {
  margin-left: 4px !important;
}
.cid-uii2MxrI1P .animated-element {
  color: #1dc9cb;
}
.cid-uii2MxrI1P .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #1dc9cb;
}
.cid-uii2MxrI1P .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uii2MxrI1P .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uii2MxrI1P .typed-text,
  .cid-uii2MxrI1P .mbr-section-subtitle,
  .cid-uii2MxrI1P .mbr-section-text,
  .cid-uii2MxrI1P .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uii2MxrI1P .mbr-section-subtitle,
.cid-uii2MxrI1P .typed-text {
  color: #ffffff;
}
.cid-uii2MxrI1P .mbr-section-text,
.cid-uii2MxrI1P .mbr-section-btn {
  color: #ffffff;
}
.cid-uiinO02DN9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-uiinO02DN9 .decor-wrap_1 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 314px;
  height: 314px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #1dc9cb 0, #1dc9cb 43%, #ffffff 100%);
}
.cid-uiinO02DN9 .decor-wrap_2 {
  position: absolute;
  top: 25%;
  right: 2%;
  width: 176px;
  height: 176px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #1dc9cb 0, #1dc9cb 43%, #ffffff 100%);
}
.cid-uiinO02DN9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiinO02DN9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiinO02DN9 .container {
    padding: 0 30px;
  }
}
.cid-uiinO02DN9 .row {
  justify-content: center;
}
.cid-uiinO02DN9 .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uiinO02DN9 .content-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  background-color: transparent;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uiinO02DN9 .content-wrapper .nav.nav-tabs {
    display: block;
    margin-bottom: 64px;
  }
}
.cid-uiinO02DN9 .content-wrapper .nav.nav-tabs .nav-item {
  width: calc(33.2%);
  padding: 64px 35px;
  background-color: #1dc9cb;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-uiinO02DN9 .content-wrapper .nav.nav-tabs .nav-item:first-child {
  border-radius: 2rem 0 0 0;
}
.cid-uiinO02DN9 .content-wrapper .nav.nav-tabs .nav-item:last-child {
  border-radius: 0 0 2rem 0;
}
@media (max-width: 992px) {
  .cid-uiinO02DN9 .content-wrapper .nav.nav-tabs .nav-item {
    width: 100%;
    padding: 36px 50px;
    margin-bottom: 2px;
  }
}
.cid-uiinO02DN9 .content-wrapper .nav.nav-tabs .nav-item:nth-child(2) .nav-link::before {
  background-color: #cccccc;
}
.cid-uiinO02DN9 .content-wrapper .nav.nav-tabs .nav-item:nth-child(3) .nav-link::before {
  background-color: #dbf5d1;
}
.cid-uiinO02DN9 .content-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0 0 20px;
  margin-bottom: 0;
  border: none;
  color: #144031;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.cid-uiinO02DN9 .content-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background-color: #f4f8fa;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
.cid-uiinO02DN9 .content-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
}
.cid-uiinO02DN9 .content-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  transform: scale(1.25);
}
.cid-uiinO02DN9 .content-wrapper .tab-content .tab-pane .content-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uiinO02DN9 .content-wrapper .tab-content .tab-pane .content-wrap {
    display: block;
  }
}
.cid-uiinO02DN9 .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
  width: 50%;
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-uiinO02DN9 .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
    width: 100%;
    margin-bottom: 64px;
    padding: 0;
  }
}
.cid-uiinO02DN9 .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uiinO02DN9 .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uiinO02DN9 .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  width: 50%;
  margin-bottom: 0;
  padding-left: 40px;
  border-left: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uiinO02DN9 .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
    width: 100%;
    padding-left: 20px;
  }
}
.cid-uiinO02DN9 .mbr-desc {
  color: #c7fcb5;
}
.cid-uiinO02DN9 .mbr-section-title {
  color: #ffffff;
}
.cid-uiinO02DN9 .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-uicHjSTZC8 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #1dc9cb;
}
.cid-uicHjSTZC8 .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-uicHjSTZC8 .mbr-section-title {
  margin: 0;
}
.cid-uicHjSTZC8 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uicHjSTZC8 .card-img {
  text-align: inherit;
}
.cid-uicHjSTZC8 .card-img span {
  background: linear-gradient(90deg, #2bdc9d, #1dc9cb);
}
.cid-uicHjSTZC8 .mbr-text {
  color: #8d97ad;
}
.cid-uicHjSTZC8 .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-uicHjSTZC8 .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uicHjSTZC8 .mbr-card-title DIV {
  text-align: center;
}
.cid-uicHjSTZC8 .mbr-card-title {
  text-align: center;
}
.cid-uicJizSqfp {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uicJizSqfp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uicJizSqfp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uicJizSqfp .row {
  justify-content: space-between;
}
.cid-uicJizSqfp .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uicJizSqfp .content-wrapper {
    padding: 0;
  }
}
.cid-uicJizSqfp .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uicJizSqfp .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uicJizSqfp .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uicJizSqfp .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uicJizSqfp .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uicJizSqfp .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uicJizSqfp .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uicJizSqfp .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uicJizSqfp .mbr-section-title {
  color: #000000;
}
.cid-uicJizSqfp .mbr-desc {
  color: #000000;
}
.cid-uicJizSqfp .mbr-text {
  color: #000000;
}
.cid-qKSGEV70WT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #1dc9cb;
}
.cid-qKSGEV70WT .mbr-section-title {
  margin: 0;
}
.cid-qKSGEV70WT .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-qKSGEV70WT .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-qKSGEV70WT .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-qKSGEV70WT .card1 {
  background: linear-gradient(45deg, #000000, #1dc9cb);
}
.cid-qKSGEV70WT .card2 {
  background: linear-gradient(45deg, #1dc9cb, #000000);
}
.cid-qKSGEV70WT .card3 {
  background: linear-gradient(45deg, #000000, #1dc9cb);
}
.cid-qKSGEV70WT .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-qKSGEV70WT .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-qKSGEV70WT .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-qKSGEV70WT .mbr-section-btn {
  padding-top: 1rem;
}
.cid-qKSGEV70WT .card1 > .mbr-card-title {
  text-align: center;
  color: #ffffff;
}
.cid-qKSGEV70WT .card2 > .mbr-card-title {
  text-align: center;
  color: #ffffff;
}
.cid-qKSGEV70WT .card3 > .mbr-card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uii5I1or23 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/photo-booth3-2000x1124.jpg");
}
.cid-uii5I1or23 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uii5I1or23 .row {
    padding: 0 12px;
  }
}
.cid-uii5I1or23 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uii5I1or23 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uii5I1or23 .title-container {
  display: flex;
  justify-content: center;
}
.cid-uii5I1or23 .title-container .title-wrapper {
  max-width: 750px;
  padding: 40px 35px;
  background-color: #ffffff;
}
.cid-uii5I1or23 .title-container .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uii5I1or23 .title-container .title-wrapper .mbr-section-subtitle {
  margin-bottom: 8px;
}
.cid-uii5I1or23 .mbr-section-title {
  color: #ee2947;
  text-align: center;
}
.cid-uii5I1or23 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uii5I1or23 .mbr-section-title,
.cid-uii5I1or23 .mbr-section-btn {
  color: #000000;
}
.cid-qKSHY8QRbm {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #1dc9cb;
}
.cid-qKSHY8QRbm .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-qKSHY8QRbm .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-qKSHY8QRbm .card-img img {
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-qKSHY8QRbm .section-text,
.cid-qKSHY8QRbm .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-qKSHY8QRbm .section-text,
  .cid-qKSHY8QRbm .card-text,
  .cid-qKSHY8QRbm .card-title,
  .cid-qKSHY8QRbm .mbr-section-title {
    text-align: center;
  }
}
.cid-qKSHY8QRbm H2 {
  text-align: center;
}
.cid-qKSHY8QRbm .section-text {
  color: #000000;
  text-align: center;
}
.cid-uibYMj0KKJ {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uibYMj0KKJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uibYMj0KKJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uibYMj0KKJ .row {
  justify-content: space-between;
}
.cid-uibYMj0KKJ .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uibYMj0KKJ .content-wrapper {
    padding: 0;
  }
}
.cid-uibYMj0KKJ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uibYMj0KKJ .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uibYMj0KKJ .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uibYMj0KKJ .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uibYMj0KKJ .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uibYMj0KKJ .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uibYMj0KKJ .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uibYMj0KKJ .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uibYMj0KKJ .mbr-section-title {
  color: #000000;
}
.cid-uibYMj0KKJ .mbr-desc {
  color: #000000;
}
.cid-uibYMj0KKJ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uibYMj0KKJ .mbr-section-title,
.cid-uibYMj0KKJ .mbr-section-btn {
  text-align: center;
}
.cid-uii5oYXi5u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1dc9cb;
}
.cid-uii5oYXi5u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uii5oYXi5u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uii5oYXi5u .container {
    padding: 0 16px;
  }
}
.cid-uii5oYXi5u .row {
  position: relative;
  z-index: 1;
}
.cid-uii5oYXi5u .card {
  justify-content: flex-end;
}
.cid-uii5oYXi5u .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-uii5oYXi5u .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uii5oYXi5u .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uii5oYXi5u .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-uii5oYXi5u .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-uii5oYXi5u .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-uii5oYXi5u .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uii5oYXi5u .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uii5oYXi5u .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-uii5oYXi5u .card-wrapper .card-wrap {
  background-color: #000000;
  box-shadow: 4px 6px 0 0 #ffffff;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-uii5oYXi5u .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-uii5oYXi5u .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-uii5oYXi5u .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-uii5oYXi5u .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-uii5oYXi5u .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uii5oYXi5u .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uii5oYXi5u .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uii5oYXi5u .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uii5oYXi5u .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-uii5oYXi5u .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uii5oYXi5u .text-wrapper {
    margin-left: 0;
  }
}
.cid-uii5oYXi5u .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uii5oYXi5u .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uii5oYXi5u .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-uii5oYXi5u .mbr-text {
  color: #000000;
}
.cid-uii5oYXi5u .card-desc {
  color: #000000;
}
.cid-uii5oYXi5u .card-text {
  color: #ffffff;
}
.cid-uii5oYXi5u .card-name {
  color: #ffffff;
}
.cid-uii5oYXi5u .card-role {
  color: #ffffff;
}
.cid-uibZ0PHOqV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uibZ0PHOqV .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uibZ0PHOqV .panel-group {
  width: 100%;
}
.cid-uibZ0PHOqV .panel-text,
.cid-uibZ0PHOqV .header-text,
.cid-uibZ0PHOqV .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uibZ0PHOqV .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-uibZ0PHOqV .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uibZ0PHOqV .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #1dc9cb;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-uibZ0PHOqV .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uibZ0PHOqV .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uibZ0PHOqV .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-uibZ0PHOqV .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #1dc9cb;
}
.cid-uibZ0PHOqV .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #000000 !important;
}
.cid-uibZ0PHOqV .card .panel-body {
  background: #1dc9cb;
}
.cid-uibZ0PHOqV .sign {
  color: #232323;
}
.cid-uibZ0PHOqV .header-text {
  color: #000000;
}
.cid-uibZ0PHOqV .panel-text {
  color: #000000;
}
.cid-uicNdoIOzF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1dc9cb;
}
.cid-uicNdoIOzF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uicNdoIOzF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uicNdoIOzF .container {
    padding: 0 16px;
  }
}
.cid-uicNdoIOzF .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uicNdoIOzF .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uicNdoIOzF .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uicNdoIOzF .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uicNdoIOzF .title-wrapper .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-uicNdoIOzF .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uicNdoIOzF .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uicNdoIOzF .card-wrapper {
  background-color: #000000;
  box-shadow: 6px 8px 0 0 #ffffff;
  border-radius: 24px;
  padding: 80px;
}
.cid-uicNdoIOzF .card-wrapper .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-uicNdoIOzF .card-wrapper .image-wrapper {
    margin-bottom: 32px;
    display: block;
  }
}
.cid-uicNdoIOzF .card-wrapper .image-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 4px 6px 0 0 #000000;
  transform: rotate(4deg);
}
.cid-uicNdoIOzF .card-wrapper .card-text {
  margin-bottom: 24px;
}
.cid-uicNdoIOzF .mbr-section-title {
  color: #ffffff;
}
.cid-uicNdoIOzF .mbr-section-subtitle {
  color: #000000;
}
.cid-uicNdoIOzF .mbr-text {
  color: #ffffff;
}
.cid-uicNdoIOzF .card-text {
  text-align: center;
  color: #000000;
}
.cid-uicNdoIOzF .mbr-text,
.cid-uicNdoIOzF .text-wrapper {
  color: #000000;
}
.cid-uicNdoIOzF .mbr-section-subtitle,
.cid-uicNdoIOzF .subtitle-wrapper {
  text-align: center;
}
.cid-uicNdoIOzF .card-text,
.cid-uicNdoIOzF .mbr-section-btn {
  color: #ffffff;
}
.cid-uii9yFg1Dg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uii9yFg1Dg .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uii9yFg1Dg .row {
    padding: 0 12px;
  }
}
.cid-uii9yFg1Dg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uii9yFg1Dg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uii9yFg1Dg .image-wrapper {
  position: relative;
}
.cid-uii9yFg1Dg .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1dc9cb;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-uii9yFg1Dg .image-wrapper::before {
    display: none;
  }
}
.cid-uii9yFg1Dg .image-wrapper::after {
  content: '';
  display: block;
  background-color: #000000;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 0 100% 0 0;
  left: auto;
  right: 25px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-uii9yFg1Dg .image-wrapper::after {
    display: none;
  }
}
.cid-uii9yFg1Dg .image-wrapper img {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 0 0 100%;
  border-radius: 0 0 100% 0;
}
.cid-uii9yFg1Dg .text-wrapper {
  padding: 60px 0 0 100px;
  padding: 60px 100px 0 0;
}
@media (max-width: 992px) {
  .cid-uii9yFg1Dg .text-wrapper {
    padding: 60px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uii9yFg1Dg .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-uii9yFg1Dg .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uii9yFg1Dg .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uii9yFg1Dg .mbr-section-title {
  color: #000000;
}
.cid-uii9yFg1Dg .mbr-text {
  color: #000000;
}
.cid-uii9CfZcNO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1dc9cb;
}
.cid-uii9CfZcNO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uii9CfZcNO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uii9CfZcNO .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uii9CfZcNO .row {
    padding: 0 12px;
  }
}
.cid-uii9CfZcNO .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: -5%;
  background-color: #000000;
  border-radius: 0 0 75% 0;
}
.cid-uii9CfZcNO .title-wrapper {
  max-width: 350px;
  margin-bottom: 66px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uii9CfZcNO .title-wrapper {
    max-width: 100%;
  }
}
.cid-uii9CfZcNO .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uii9CfZcNO .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uii9CfZcNO .phone-wrapper {
  z-index: 1;
  position: relative;
  margin-bottom: 25px;
}
.cid-uii9CfZcNO .phone-wrapper .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uii9CfZcNO .phone-wrapper .mbr-phone {
  margin-bottom: 0;
}
.cid-uii9CfZcNO .links-wrapper {
  z-index: 1;
  position: relative;
}
.cid-uii9CfZcNO .links-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uii9CfZcNO .links-wrapper a {
  width: 100%;
  height: 100%;
}
.cid-uii9CfZcNO .links-wrapper a .mbr-link {
  margin-bottom: 5px;
}
.cid-uii9CfZcNO .mbr-section-title {
  color: #000000;
}
.cid-uii9CfZcNO .mbr-section-subtitle {
  color: #f3722f;
}
.cid-uii9CfZcNO .mbr-text {
  color: #1e4381;
}
.cid-uii9CfZcNO .mbr-phone {
  color: #1e4381;
}
.cid-uii9CfZcNO .mbr-link {
  color: #ffffff;
}
.cid-uic1dntWaC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uic1dntWaC .google-map {
  height: 25rem;
  position: relative;
}
.cid-uic1dntWaC .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uic1dntWaC .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-uic1dntWaC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uic1dntWaC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uiibOI11ho {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #1dc9cb;
}
.cid-uiibOI11ho .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiibOI11ho .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiibOI11ho .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uiibOI11ho .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uiibOI11ho .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uiibOI11ho .container {
    padding: 0 16px;
  }
}
.cid-uiibOI11ho .row {
  justify-content: center;
}
.cid-uiibOI11ho .content-wrapper {
  margin-bottom: 36px;
}
.cid-uiibOI11ho .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uiibOI11ho .content-wrapper .email-wrapper {
  display: block;
}
.cid-uiibOI11ho .content-wrapper .email-wrapper:hover .mbr-email,
.cid-uiibOI11ho .content-wrapper .email-wrapper:focus .mbr-email {
  color: #3898ec;
}
.cid-uiibOI11ho .content-wrapper .email-wrapper .mbr-email {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiibOI11ho .content-wrapper .desc-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uiibOI11ho .content-wrapper .desc-wrapper {
    margin-top: 32px;
  }
}
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline {
  padding: 0;
  border: none !important;
}
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline:focus::after {
  opacity: 0;
}
.cid-uiibOI11ho .contacts-wrapper {
  margin-bottom: 36px;
}
.cid-uiibOI11ho .contacts-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uiibOI11ho .contacts-wrapper .list {
  margin-bottom: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uiibOI11ho .contacts-wrapper .list .item-wrap {
  margin: 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiibOI11ho .contacts-wrapper .list .item-wrap:hover,
.cid-uiibOI11ho .contacts-wrapper .list .item-wrap:focus {
  color: #3898ec;
}
.cid-uiibOI11ho .border-wrap {
  height: 3px;
  background-color: #333333;
  margin-bottom: 36px;
}
.cid-uiibOI11ho .mbr-copy {
  margin-bottom: 0;
  color: #333333;
  text-align: center;
}
.cid-uiibOI11ho .mbr-section-title {
  color: #080808;
}
.cid-uiibOI11ho .mbr-email {
  color: #333333;
}
.cid-uiibOI11ho .mbr-desc {
  color: #333333;
}
.cid-uiibOI11ho .list {
  color: #333333;
}
.cid-uic9KW0nCr {
  background-image: url("../../../assets/images/photo-booth4-1128x930.jpg");
}
.cid-uic9KW0nCr .mbr-overlay {
  background: #ffffff;
}
.cid-uic9KW0nCr .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-uic9KW0nCr .mbr-section-subtitle,
.cid-uic9KW0nCr mbr-section-btn {
  color: #ffffff;
}
.cid-uic9KW0nCr B {
  color: #333333;
}
.cid-uic9KW0nCr H1 {
  color: #ffffff;
  text-align: center;
}
.cid-uic9KXG88A {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uic9KXG88A .mbr-text {
  color: #000000;
}
.cid-uic9L25rG5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uic9L25rG5 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uic9L25rG5 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uic9L25rG5 .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-uic9L25rG5 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uic9L25rG5 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uii1GdpHe5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uii1GdpHe5 .nav-item,
.cid-uii1GdpHe5 .nav-link,
.cid-uii1GdpHe5 .navbar-caption {
  font-weight: normal;
}
.cid-uii1GdpHe5 .nav-item:focus,
.cid-uii1GdpHe5 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uii1GdpHe5 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uii1GdpHe5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uii1GdpHe5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uii1GdpHe5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1dc9cb;
}
.cid-uii1GdpHe5 .navbar.opened {
  transition: all .3s;
  background: #1dc9cb !important;
}
.cid-uii1GdpHe5 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-uii1GdpHe5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uii1GdpHe5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uii1GdpHe5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uii1GdpHe5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-uii1GdpHe5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uii1GdpHe5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uii1GdpHe5 .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-uii1GdpHe5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uii1GdpHe5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uii1GdpHe5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uii1GdpHe5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uii1GdpHe5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uii1GdpHe5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uii1GdpHe5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uii1GdpHe5 .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-uii1GdpHe5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uii1GdpHe5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uii1GdpHe5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uii1GdpHe5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uii1GdpHe5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uii1GdpHe5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uii1GdpHe5 .navbar.navbar-short {
  background: #1dc9cb !important;
  min-height: 60px;
}
.cid-uii1GdpHe5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uii1GdpHe5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uii1GdpHe5 .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-uii1GdpHe5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uii1GdpHe5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uii1GdpHe5 .dropdown-item.active,
.cid-uii1GdpHe5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uii1GdpHe5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uii1GdpHe5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uii1GdpHe5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1dc9cb;
}
.cid-uii1GdpHe5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uii1GdpHe5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uii1GdpHe5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uii1GdpHe5 .navbar-buttons {
  text-align: center;
}
.cid-uii1GdpHe5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uii1GdpHe5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uii1GdpHe5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uii1GdpHe5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uii1GdpHe5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uii1GdpHe5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uii1GdpHe5 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uii1GdpHe5 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uii1GdpHe5 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-uii1GdpHe5 .soc-item {
  margin: .5rem .3rem;
}
.cid-uii1GdpHe5 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uii1GdpHe5 .navbar {
    height: 77px;
  }
  .cid-uii1GdpHe5 .navbar.opened {
    height: auto;
  }
  .cid-uii1GdpHe5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uiibOI11ho {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f0f0f0;
}
.cid-uiibOI11ho .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiibOI11ho .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiibOI11ho .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uiibOI11ho .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uiibOI11ho .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uiibOI11ho .container {
    padding: 0 16px;
  }
}
.cid-uiibOI11ho .row {
  justify-content: center;
}
.cid-uiibOI11ho .content-wrapper {
  margin-bottom: 36px;
}
.cid-uiibOI11ho .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uiibOI11ho .content-wrapper .email-wrapper {
  display: block;
}
.cid-uiibOI11ho .content-wrapper .email-wrapper:hover .mbr-email,
.cid-uiibOI11ho .content-wrapper .email-wrapper:focus .mbr-email {
  color: #3898ec;
}
.cid-uiibOI11ho .content-wrapper .email-wrapper .mbr-email {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiibOI11ho .content-wrapper .desc-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uiibOI11ho .content-wrapper .desc-wrapper {
    margin-top: 32px;
  }
}
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline {
  padding: 0;
  border: none !important;
}
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline:focus::after {
  opacity: 0;
}
.cid-uiibOI11ho .contacts-wrapper {
  margin-bottom: 36px;
}
.cid-uiibOI11ho .contacts-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uiibOI11ho .contacts-wrapper .list {
  margin-bottom: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uiibOI11ho .contacts-wrapper .list .item-wrap {
  margin: 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiibOI11ho .contacts-wrapper .list .item-wrap:hover,
.cid-uiibOI11ho .contacts-wrapper .list .item-wrap:focus {
  color: #3898ec;
}
.cid-uiibOI11ho .border-wrap {
  height: 3px;
  background-color: #333333;
  margin-bottom: 36px;
}
.cid-uiibOI11ho .mbr-copy {
  margin-bottom: 0;
  color: #333333;
  text-align: center;
}
.cid-uiibOI11ho .mbr-section-title {
  color: #080808;
}
.cid-uiibOI11ho .mbr-email {
  color: #333333;
}
.cid-uiibOI11ho .mbr-desc {
  color: #333333;
}
.cid-uiibOI11ho .list {
  color: #333333;
}
.cid-uicbk1ogNs {
  background-image: url("../../../assets/images/photo-booth5-1500x1000.jpg");
}
.cid-uicbk1ogNs .mbr-overlay {
  background: #ffffff;
}
.cid-uicbk1ogNs .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-uicbk1ogNs .mbr-section-subtitle,
.cid-uicbk1ogNs mbr-section-btn {
  color: #ffffff;
}
.cid-uicbk1ogNs B {
  color: #333333;
}
.cid-uicbk1ogNs H1 {
  color: #ffffff;
  text-align: center;
}
.cid-uicbk2fgSv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uicbk2fgSv .mbr-text {
  color: #000000;
}
.cid-uicbk2AuCV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uicbk2AuCV .google-map {
  height: 25rem;
  position: relative;
}
.cid-uicbk2AuCV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uicbk2AuCV .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-uicbk2AuCV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uicbk2AuCV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uii1GdpHe5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uii1GdpHe5 .nav-item,
.cid-uii1GdpHe5 .nav-link,
.cid-uii1GdpHe5 .navbar-caption {
  font-weight: normal;
}
.cid-uii1GdpHe5 .nav-item:focus,
.cid-uii1GdpHe5 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uii1GdpHe5 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uii1GdpHe5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uii1GdpHe5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uii1GdpHe5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uii1GdpHe5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1dc9cb;
}
.cid-uii1GdpHe5 .navbar.opened {
  transition: all .3s;
  background: #1dc9cb !important;
}
.cid-uii1GdpHe5 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-uii1GdpHe5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uii1GdpHe5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uii1GdpHe5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uii1GdpHe5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-uii1GdpHe5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uii1GdpHe5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uii1GdpHe5 .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-uii1GdpHe5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uii1GdpHe5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uii1GdpHe5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uii1GdpHe5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uii1GdpHe5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uii1GdpHe5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uii1GdpHe5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uii1GdpHe5 .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-uii1GdpHe5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uii1GdpHe5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uii1GdpHe5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uii1GdpHe5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uii1GdpHe5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uii1GdpHe5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uii1GdpHe5 .navbar.navbar-short {
  background: #1dc9cb !important;
  min-height: 60px;
}
.cid-uii1GdpHe5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uii1GdpHe5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uii1GdpHe5 .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-uii1GdpHe5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uii1GdpHe5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uii1GdpHe5 .dropdown-item.active,
.cid-uii1GdpHe5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uii1GdpHe5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uii1GdpHe5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uii1GdpHe5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1dc9cb;
}
.cid-uii1GdpHe5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uii1GdpHe5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uii1GdpHe5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uii1GdpHe5 .navbar-buttons {
  text-align: center;
}
.cid-uii1GdpHe5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uii1GdpHe5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uii1GdpHe5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uii1GdpHe5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uii1GdpHe5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uii1GdpHe5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uii1GdpHe5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uii1GdpHe5 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uii1GdpHe5 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uii1GdpHe5 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-uii1GdpHe5 .soc-item {
  margin: .5rem .3rem;
}
.cid-uii1GdpHe5 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uii1GdpHe5 .navbar {
    height: 77px;
  }
  .cid-uii1GdpHe5 .navbar.opened {
    height: auto;
  }
  .cid-uii1GdpHe5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uiibOI11ho {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f0f0f0;
}
.cid-uiibOI11ho .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiibOI11ho .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiibOI11ho .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uiibOI11ho .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uiibOI11ho .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uiibOI11ho .container {
    padding: 0 16px;
  }
}
.cid-uiibOI11ho .row {
  justify-content: center;
}
.cid-uiibOI11ho .content-wrapper {
  margin-bottom: 36px;
}
.cid-uiibOI11ho .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uiibOI11ho .content-wrapper .email-wrapper {
  display: block;
}
.cid-uiibOI11ho .content-wrapper .email-wrapper:hover .mbr-email,
.cid-uiibOI11ho .content-wrapper .email-wrapper:focus .mbr-email {
  color: #3898ec;
}
.cid-uiibOI11ho .content-wrapper .email-wrapper .mbr-email {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiibOI11ho .content-wrapper .desc-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uiibOI11ho .content-wrapper .desc-wrapper {
    margin-top: 32px;
  }
}
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline {
  padding: 0;
  border: none !important;
}
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline:hover::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline:focus::after,
.cid-uiibOI11ho .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline:focus::after {
  opacity: 0;
}
.cid-uiibOI11ho .contacts-wrapper {
  margin-bottom: 36px;
}
.cid-uiibOI11ho .contacts-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uiibOI11ho .contacts-wrapper .list {
  margin-bottom: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uiibOI11ho .contacts-wrapper .list .item-wrap {
  margin: 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiibOI11ho .contacts-wrapper .list .item-wrap:hover,
.cid-uiibOI11ho .contacts-wrapper .list .item-wrap:focus {
  color: #3898ec;
}
.cid-uiibOI11ho .border-wrap {
  height: 3px;
  background-color: #333333;
  margin-bottom: 36px;
}
.cid-uiibOI11ho .mbr-copy {
  margin-bottom: 0;
  color: #333333;
  text-align: center;
}
.cid-uiibOI11ho .mbr-section-title {
  color: #080808;
}
.cid-uiibOI11ho .mbr-email {
  color: #333333;
}
.cid-uiibOI11ho .mbr-desc {
  color: #333333;
}
.cid-uiibOI11ho .list {
  color: #333333;
}
.cid-uiipwELHgE .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uiipwELHgE .nav-item,
.cid-uiipwELHgE .nav-link,
.cid-uiipwELHgE .navbar-caption {
  font-weight: normal;
}
.cid-uiipwELHgE .nav-item:focus,
.cid-uiipwELHgE .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uiipwELHgE .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-uiipwELHgE .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uiipwELHgE .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uiipwELHgE .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uiipwELHgE .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uiipwELHgE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uiipwELHgE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uiipwELHgE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uiipwELHgE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uiipwELHgE .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1dc9cb;
}
.cid-uiipwELHgE .navbar.opened {
  transition: all .3s;
  background: #1dc9cb !important;
}
.cid-uiipwELHgE .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-uiipwELHgE .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uiipwELHgE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uiipwELHgE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uiipwELHgE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-uiipwELHgE .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uiipwELHgE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uiipwELHgE .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-uiipwELHgE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uiipwELHgE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uiipwELHgE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uiipwELHgE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uiipwELHgE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uiipwELHgE .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uiipwELHgE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uiipwELHgE .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-uiipwELHgE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uiipwELHgE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uiipwELHgE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uiipwELHgE .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uiipwELHgE .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uiipwELHgE .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uiipwELHgE .navbar.navbar-short {
  background: #1dc9cb !important;
  min-height: 60px;
}
.cid-uiipwELHgE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uiipwELHgE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uiipwELHgE .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-uiipwELHgE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uiipwELHgE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uiipwELHgE .dropdown-item.active,
.cid-uiipwELHgE .dropdown-item:active {
  background-color: transparent;
}
.cid-uiipwELHgE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uiipwELHgE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uiipwELHgE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1dc9cb;
}
.cid-uiipwELHgE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uiipwELHgE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uiipwELHgE ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uiipwELHgE .navbar-buttons {
  text-align: center;
}
.cid-uiipwELHgE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uiipwELHgE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uiipwELHgE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uiipwELHgE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uiipwELHgE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uiipwELHgE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uiipwELHgE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uiipwELHgE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uiipwELHgE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uiipwELHgE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uiipwELHgE .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uiipwELHgE a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uiipwELHgE .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uiipwELHgE .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-uiipwELHgE .soc-item {
  margin: .5rem .3rem;
}
.cid-uiipwELHgE .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uiipwELHgE .navbar {
    height: 77px;
  }
  .cid-uiipwELHgE .navbar.opened {
    height: auto;
  }
  .cid-uiipwELHgE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uiipwGgCoL {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/photo-booth6-1028x1028.jpg");
}
.cid-uiipwGgCoL .mbr-section-title,
.cid-uiipwGgCoL .mbr-section-subtitle {
  color: #000000;
}
.cid-uiipwGgCoL .mbr-section-text {
  color: #232323;
}
.cid-uiipwGgCoL .mbr-text,
.cid-uiipwGgCoL .typed-text,
.cid-uiipwGgCoL .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uiipwGgCoL .btn {
  margin-left: 4px !important;
}
.cid-uiipwGgCoL .animated-element {
  color: #1dc9cb;
}
.cid-uiipwGgCoL .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #1dc9cb;
}
.cid-uiipwGgCoL .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uiipwGgCoL .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uiipwGgCoL .typed-text,
  .cid-uiipwGgCoL .mbr-section-subtitle,
  .cid-uiipwGgCoL .mbr-section-text,
  .cid-uiipwGgCoL .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uiipwGgCoL .mbr-section-subtitle,
.cid-uiipwGgCoL .typed-text {
  color: #ffffff;
}
.cid-uiipwGgCoL .mbr-section-text,
.cid-uiipwGgCoL .mbr-section-btn {
  color: #ffffff;
}
.cid-uiipwH38ok {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-uiipwH38ok .decor-wrap_1 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 314px;
  height: 314px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #1dc9cb 0, #1dc9cb 43%, #ffffff 100%);
}
.cid-uiipwH38ok .decor-wrap_2 {
  position: absolute;
  top: 25%;
  right: 2%;
  width: 176px;
  height: 176px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #1dc9cb 0, #1dc9cb 43%, #ffffff 100%);
}
.cid-uiipwH38ok .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiipwH38ok .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiipwH38ok .container {
    padding: 0 30px;
  }
}
.cid-uiipwH38ok .row {
  justify-content: center;
}
.cid-uiipwH38ok .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uiipwH38ok .content-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  background-color: transparent;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uiipwH38ok .content-wrapper .nav.nav-tabs {
    display: block;
    margin-bottom: 64px;
  }
}
.cid-uiipwH38ok .content-wrapper .nav.nav-tabs .nav-item {
  width: calc(33.2%);
  padding: 64px 35px;
  background-color: #1dc9cb;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-uiipwH38ok .content-wrapper .nav.nav-tabs .nav-item:first-child {
  border-radius: 2rem 0 0 0;
}
.cid-uiipwH38ok .content-wrapper .nav.nav-tabs .nav-item:last-child {
  border-radius: 0 0 2rem 0;
}
@media (max-width: 992px) {
  .cid-uiipwH38ok .content-wrapper .nav.nav-tabs .nav-item {
    width: 100%;
    padding: 36px 50px;
    margin-bottom: 2px;
  }
}
.cid-uiipwH38ok .content-wrapper .nav.nav-tabs .nav-item:nth-child(2) .nav-link::before {
  background-color: #cccccc;
}
.cid-uiipwH38ok .content-wrapper .nav.nav-tabs .nav-item:nth-child(3) .nav-link::before {
  background-color: #dbf5d1;
}
.cid-uiipwH38ok .content-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0 0 20px;
  margin-bottom: 0;
  border: none;
  color: #144031;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.cid-uiipwH38ok .content-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background-color: #f4f8fa;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
.cid-uiipwH38ok .content-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
}
.cid-uiipwH38ok .content-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  transform: scale(1.25);
}
.cid-uiipwH38ok .content-wrapper .tab-content .tab-pane .content-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uiipwH38ok .content-wrapper .tab-content .tab-pane .content-wrap {
    display: block;
  }
}
.cid-uiipwH38ok .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
  width: 50%;
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-uiipwH38ok .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
    width: 100%;
    margin-bottom: 64px;
    padding: 0;
  }
}
.cid-uiipwH38ok .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uiipwH38ok .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uiipwH38ok .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  width: 50%;
  margin-bottom: 0;
  padding-left: 40px;
  border-left: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uiipwH38ok .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
    width: 100%;
    padding-left: 20px;
  }
}
.cid-uiipwH38ok .mbr-desc {
  color: #c7fcb5;
}
.cid-uiipwH38ok .mbr-section-title {
  color: #ffffff;
}
.cid-uiipwH38ok .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-uiipwHHWLq {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #1dc9cb;
}
.cid-uiipwHHWLq .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-uiipwHHWLq .mbr-section-title {
  margin: 0;
}
.cid-uiipwHHWLq .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uiipwHHWLq .card-img {
  text-align: inherit;
}
.cid-uiipwHHWLq .card-img span {
  background: linear-gradient(90deg, #2bdc9d, #1dc9cb);
}
.cid-uiipwHHWLq .mbr-text {
  color: #8d97ad;
}
.cid-uiipwHHWLq .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-uiipwHHWLq .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uiipwHHWLq .mbr-card-title DIV {
  text-align: center;
}
.cid-uiipwHHWLq .mbr-card-title {
  text-align: center;
}
.cid-uiipwIG6q3 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiipwIG6q3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiipwIG6q3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiipwIG6q3 .row {
  justify-content: space-between;
}
.cid-uiipwIG6q3 .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uiipwIG6q3 .content-wrapper {
    padding: 0;
  }
}
.cid-uiipwIG6q3 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uiipwIG6q3 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uiipwIG6q3 .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uiipwIG6q3 .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uiipwIG6q3 .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uiipwIG6q3 .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uiipwIG6q3 .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uiipwIG6q3 .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uiipwIG6q3 .mbr-section-title {
  color: #000000;
}
.cid-uiipwIG6q3 .mbr-desc {
  color: #000000;
}
.cid-uiipwIG6q3 .mbr-text {
  color: #000000;
}
.cid-uiipwJdKhs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #1dc9cb;
}
.cid-uiipwJdKhs .mbr-section-title {
  margin: 0;
}
.cid-uiipwJdKhs .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-uiipwJdKhs .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-uiipwJdKhs .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-uiipwJdKhs .card1 {
  background: linear-gradient(45deg, #000000, #1dc9cb);
}
.cid-uiipwJdKhs .card2 {
  background: linear-gradient(45deg, #1dc9cb, #000000);
}
.cid-uiipwJdKhs .card3 {
  background: linear-gradient(45deg, #000000, #1dc9cb);
}
.cid-uiipwJdKhs .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-uiipwJdKhs .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uiipwJdKhs .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-uiipwJdKhs .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uiipwJdKhs .card1 > .mbr-card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uiipwJdKhs .card2 > .mbr-card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uiipwJdKhs .card3 > .mbr-card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uiipwK2zMy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/photo-booth8-1024x1024.jpg");
}
.cid-uiipwK2zMy .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uiipwK2zMy .row {
    padding: 0 12px;
  }
}
.cid-uiipwK2zMy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiipwK2zMy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiipwK2zMy .title-container {
  display: flex;
  justify-content: center;
}
.cid-uiipwK2zMy .title-container .title-wrapper {
  max-width: 750px;
  padding: 40px 35px;
  background-color: #ffffff;
}
.cid-uiipwK2zMy .title-container .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uiipwK2zMy .title-container .title-wrapper .mbr-section-subtitle {
  margin-bottom: 8px;
}
.cid-uiipwK2zMy .mbr-section-title {
  color: #ee2947;
  text-align: center;
}
.cid-uiipwK2zMy .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uiipwK2zMy .mbr-section-title,
.cid-uiipwK2zMy .mbr-section-btn {
  color: #000000;
}
.cid-uiipwKAGay {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #1dc9cb;
}
.cid-uiipwKAGay .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-uiipwKAGay .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-uiipwKAGay .card-img img {
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uiipwKAGay .section-text,
.cid-uiipwKAGay .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-uiipwKAGay .section-text,
  .cid-uiipwKAGay .card-text,
  .cid-uiipwKAGay .card-title,
  .cid-uiipwKAGay .mbr-section-title {
    text-align: center;
  }
}
.cid-uiipwKAGay H2 {
  text-align: center;
}
.cid-uiipwKAGay .section-text {
  color: #000000;
  text-align: center;
}
.cid-uiipwLeHS6 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uiipwLeHS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiipwLeHS6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiipwLeHS6 .row {
  justify-content: space-between;
}
.cid-uiipwLeHS6 .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uiipwLeHS6 .content-wrapper {
    padding: 0;
  }
}
.cid-uiipwLeHS6 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uiipwLeHS6 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uiipwLeHS6 .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uiipwLeHS6 .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uiipwLeHS6 .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uiipwLeHS6 .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uiipwLeHS6 .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uiipwLeHS6 .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uiipwLeHS6 .mbr-section-title {
  color: #000000;
}
.cid-uiipwLeHS6 .mbr-desc {
  color: #000000;
}
.cid-uiipwLeHS6 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uiipwLeHS6 .mbr-section-title,
.cid-uiipwLeHS6 .mbr-section-btn {
  text-align: center;
}
.cid-uiipwLKVeH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1dc9cb;
}
.cid-uiipwLKVeH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiipwLKVeH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiipwLKVeH .container {
    padding: 0 16px;
  }
}
.cid-uiipwLKVeH .row {
  position: relative;
  z-index: 1;
}
.cid-uiipwLKVeH .card {
  justify-content: flex-end;
}
.cid-uiipwLKVeH .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-uiipwLKVeH .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uiipwLKVeH .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uiipwLKVeH .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-uiipwLKVeH .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-uiipwLKVeH .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-uiipwLKVeH .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uiipwLKVeH .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uiipwLKVeH .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-uiipwLKVeH .card-wrapper .card-wrap {
  background-color: #000000;
  box-shadow: 4px 6px 0 0 #ffffff;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-uiipwLKVeH .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-uiipwLKVeH .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-uiipwLKVeH .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-uiipwLKVeH .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-uiipwLKVeH .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uiipwLKVeH .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uiipwLKVeH .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uiipwLKVeH .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uiipwLKVeH .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-uiipwLKVeH .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uiipwLKVeH .text-wrapper {
    margin-left: 0;
  }
}
.cid-uiipwLKVeH .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uiipwLKVeH .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uiipwLKVeH .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-uiipwLKVeH .mbr-text {
  color: #000000;
}
.cid-uiipwLKVeH .card-desc {
  color: #000000;
}
.cid-uiipwLKVeH .card-text {
  color: #ffffff;
}
.cid-uiipwLKVeH .card-name {
  color: #ffffff;
}
.cid-uiipwLKVeH .card-role {
  color: #ffffff;
}
.cid-uiipwMl0iU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uiipwMl0iU .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uiipwMl0iU .panel-group {
  width: 100%;
}
.cid-uiipwMl0iU .panel-text,
.cid-uiipwMl0iU .header-text,
.cid-uiipwMl0iU .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uiipwMl0iU .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-uiipwMl0iU .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uiipwMl0iU .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #1dc9cb;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-uiipwMl0iU .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uiipwMl0iU .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uiipwMl0iU .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-uiipwMl0iU .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #1dc9cb;
}
.cid-uiipwMl0iU .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #000000 !important;
}
.cid-uiipwMl0iU .card .panel-body {
  background: #1dc9cb;
}
.cid-uiipwMl0iU .sign {
  color: #232323;
}
.cid-uiipwMl0iU .header-text {
  color: #000000;
}
.cid-uiipwMl0iU .panel-text {
  color: #000000;
}
.cid-uiipwN6tNh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1dc9cb;
}
.cid-uiipwN6tNh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiipwN6tNh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiipwN6tNh .container {
    padding: 0 16px;
  }
}
.cid-uiipwN6tNh .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uiipwN6tNh .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uiipwN6tNh .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uiipwN6tNh .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uiipwN6tNh .title-wrapper .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-uiipwN6tNh .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uiipwN6tNh .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uiipwN6tNh .card-wrapper {
  background-color: #000000;
  box-shadow: 6px 8px 0 0 #ffffff;
  border-radius: 24px;
  padding: 80px;
}
.cid-uiipwN6tNh .card-wrapper .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-uiipwN6tNh .card-wrapper .image-wrapper {
    margin-bottom: 32px;
    display: block;
  }
}
.cid-uiipwN6tNh .card-wrapper .image-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 4px 6px 0 0 #000000;
  transform: rotate(4deg);
}
.cid-uiipwN6tNh .card-wrapper .card-text {
  margin-bottom: 24px;
}
.cid-uiipwN6tNh .mbr-section-title {
  color: #ffffff;
}
.cid-uiipwN6tNh .mbr-section-subtitle {
  color: #000000;
}
.cid-uiipwN6tNh .mbr-text {
  color: #ffffff;
}
.cid-uiipwN6tNh .card-text {
  text-align: center;
  color: #000000;
}
.cid-uiipwN6tNh .mbr-text,
.cid-uiipwN6tNh .text-wrapper {
  color: #000000;
}
.cid-uiipwN6tNh .mbr-section-subtitle,
.cid-uiipwN6tNh .subtitle-wrapper {
  text-align: center;
}
.cid-uiipwN6tNh .card-text,
.cid-uiipwN6tNh .mbr-section-btn {
  color: #ffffff;
}
.cid-uiipwNERlR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uiipwNERlR .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uiipwNERlR .row {
    padding: 0 12px;
  }
}
.cid-uiipwNERlR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiipwNERlR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiipwNERlR .image-wrapper {
  position: relative;
}
.cid-uiipwNERlR .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1dc9cb;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-uiipwNERlR .image-wrapper::before {
    display: none;
  }
}
.cid-uiipwNERlR .image-wrapper::after {
  content: '';
  display: block;
  background-color: #000000;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 0 100% 0 0;
  left: auto;
  right: 25px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-uiipwNERlR .image-wrapper::after {
    display: none;
  }
}
.cid-uiipwNERlR .image-wrapper img {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 0 0 100%;
  border-radius: 0 0 100% 0;
}
.cid-uiipwNERlR .text-wrapper {
  padding: 60px 0 0 100px;
  padding: 60px 100px 0 0;
}
@media (max-width: 992px) {
  .cid-uiipwNERlR .text-wrapper {
    padding: 60px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uiipwNERlR .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-uiipwNERlR .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uiipwNERlR .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uiipwNERlR .mbr-section-title {
  color: #000000;
}
.cid-uiipwNERlR .mbr-text {
  color: #000000;
}
.cid-uiipwO6g5C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1dc9cb;
}
.cid-uiipwO6g5C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiipwO6g5C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiipwO6g5C .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uiipwO6g5C .row {
    padding: 0 12px;
  }
}
.cid-uiipwO6g5C .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: -5%;
  background-color: #000000;
  border-radius: 0 0 75% 0;
}
.cid-uiipwO6g5C .title-wrapper {
  max-width: 350px;
  margin-bottom: 66px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uiipwO6g5C .title-wrapper {
    max-width: 100%;
  }
}
.cid-uiipwO6g5C .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uiipwO6g5C .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uiipwO6g5C .phone-wrapper {
  z-index: 1;
  position: relative;
  margin-bottom: 25px;
}
.cid-uiipwO6g5C .phone-wrapper .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uiipwO6g5C .phone-wrapper .mbr-phone {
  margin-bottom: 0;
}
.cid-uiipwO6g5C .links-wrapper {
  z-index: 1;
  position: relative;
}
.cid-uiipwO6g5C .links-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uiipwO6g5C .links-wrapper a {
  width: 100%;
  height: 100%;
}
.cid-uiipwO6g5C .links-wrapper a .mbr-link {
  margin-bottom: 5px;
}
.cid-uiipwO6g5C .mbr-section-title {
  color: #000000;
}
.cid-uiipwO6g5C .mbr-section-subtitle {
  color: #f3722f;
}
.cid-uiipwO6g5C .mbr-text {
  color: #1e4381;
}
.cid-uiipwO6g5C .mbr-phone {
  color: #1e4381;
}
.cid-uiipwO6g5C .mbr-link {
  color: #ffffff;
}
.cid-uiiv5uzByI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uiiv5uzByI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiv5uzByI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiiv5uzByI .container {
    padding: 0 30px;
  }
}
.cid-uiiv5uzByI .row {
  justify-content: center;
}
.cid-uiiv5uzByI .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uiiv5uzByI .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uiiv5uzByI .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #22654e;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uiiv5uzByI .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uiiv5uzByI .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uiiv5uzByI .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uiiv5uzByI .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uiiv5uzByI .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #c7fcb5;
  background-color: #22654e;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uiiv5uzByI .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uiiv5uzByI .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uiiv5uzByI .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uiiv5uzByI .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uiiv5uzByI .panel-title-edit {
  color: #000000;
}
.cid-uiiv5uzByI .panel-text {
  color: #000000;
}
.cid-uiipwOPYvR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uiipwOPYvR .google-map {
  height: 25rem;
  position: relative;
}
.cid-uiipwOPYvR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uiipwOPYvR .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-uiipwOPYvR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uiipwOPYvR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uiipwPoFK9 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #1dc9cb;
}
.cid-uiipwPoFK9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiipwPoFK9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiipwPoFK9 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uiipwPoFK9 .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uiipwPoFK9 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uiipwPoFK9 .container {
    padding: 0 16px;
  }
}
.cid-uiipwPoFK9 .row {
  justify-content: center;
}
.cid-uiipwPoFK9 .content-wrapper {
  margin-bottom: 36px;
}
.cid-uiipwPoFK9 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uiipwPoFK9 .content-wrapper .email-wrapper {
  display: block;
}
.cid-uiipwPoFK9 .content-wrapper .email-wrapper:hover .mbr-email,
.cid-uiipwPoFK9 .content-wrapper .email-wrapper:focus .mbr-email {
  color: #3898ec;
}
.cid-uiipwPoFK9 .content-wrapper .email-wrapper .mbr-email {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uiipwPoFK9 .content-wrapper .desc-wrapper {
    margin-top: 32px;
  }
}
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline {
  padding: 0;
  border: none !important;
}
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline:hover::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline:hover::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline:hover::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline:hover::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline:hover::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline:hover::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline:hover::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline:hover::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline:focus::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline:focus::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline:focus::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline:focus::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline:focus::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline:focus::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline:focus::after,
.cid-uiipwPoFK9 .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline:focus::after {
  opacity: 0;
}
.cid-uiipwPoFK9 .contacts-wrapper {
  margin-bottom: 36px;
}
.cid-uiipwPoFK9 .contacts-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uiipwPoFK9 .contacts-wrapper .list {
  margin-bottom: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uiipwPoFK9 .contacts-wrapper .list .item-wrap {
  margin: 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiipwPoFK9 .contacts-wrapper .list .item-wrap:hover,
.cid-uiipwPoFK9 .contacts-wrapper .list .item-wrap:focus {
  color: #3898ec;
}
.cid-uiipwPoFK9 .border-wrap {
  height: 3px;
  background-color: #333333;
  margin-bottom: 36px;
}
.cid-uiipwPoFK9 .mbr-copy {
  margin-bottom: 0;
  color: #333333;
  text-align: center;
}
.cid-uiipwPoFK9 .mbr-section-title {
  color: #080808;
}
.cid-uiipwPoFK9 .mbr-email {
  color: #333333;
}
.cid-uiipwPoFK9 .mbr-desc {
  color: #333333;
}
.cid-uiipwPoFK9 .list {
  color: #333333;
}
.cid-uiiufHz8uF .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uiiufHz8uF .nav-item,
.cid-uiiufHz8uF .nav-link,
.cid-uiiufHz8uF .navbar-caption {
  font-weight: normal;
}
.cid-uiiufHz8uF .nav-item:focus,
.cid-uiiufHz8uF .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uiiufHz8uF .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-uiiufHz8uF .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uiiufHz8uF .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uiiufHz8uF .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uiiufHz8uF .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uiiufHz8uF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uiiufHz8uF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uiiufHz8uF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uiiufHz8uF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uiiufHz8uF .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1dc9cb;
}
.cid-uiiufHz8uF .navbar.opened {
  transition: all .3s;
  background: #1dc9cb !important;
}
.cid-uiiufHz8uF .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-uiiufHz8uF .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uiiufHz8uF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uiiufHz8uF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uiiufHz8uF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-uiiufHz8uF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uiiufHz8uF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uiiufHz8uF .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-uiiufHz8uF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uiiufHz8uF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uiiufHz8uF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uiiufHz8uF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uiiufHz8uF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uiiufHz8uF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uiiufHz8uF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uiiufHz8uF .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-uiiufHz8uF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uiiufHz8uF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uiiufHz8uF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uiiufHz8uF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uiiufHz8uF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uiiufHz8uF .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uiiufHz8uF .navbar.navbar-short {
  background: #1dc9cb !important;
  min-height: 60px;
}
.cid-uiiufHz8uF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uiiufHz8uF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uiiufHz8uF .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-uiiufHz8uF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uiiufHz8uF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uiiufHz8uF .dropdown-item.active,
.cid-uiiufHz8uF .dropdown-item:active {
  background-color: transparent;
}
.cid-uiiufHz8uF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uiiufHz8uF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uiiufHz8uF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1dc9cb;
}
.cid-uiiufHz8uF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uiiufHz8uF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uiiufHz8uF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uiiufHz8uF .navbar-buttons {
  text-align: center;
}
.cid-uiiufHz8uF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uiiufHz8uF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uiiufHz8uF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uiiufHz8uF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uiiufHz8uF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uiiufHz8uF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uiiufHz8uF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uiiufHz8uF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uiiufHz8uF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uiiufHz8uF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uiiufHz8uF .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uiiufHz8uF a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uiiufHz8uF .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uiiufHz8uF .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-uiiufHz8uF .soc-item {
  margin: .5rem .3rem;
}
.cid-uiiufHz8uF .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uiiufHz8uF .navbar {
    height: 77px;
  }
  .cid-uiiufHz8uF .navbar.opened {
    height: auto;
  }
  .cid-uiiufHz8uF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uiiufJnGTA {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/photo-booth10-817x800.jpg");
}
.cid-uiiufJnGTA .mbr-section-title,
.cid-uiiufJnGTA .mbr-section-subtitle {
  color: #000000;
}
.cid-uiiufJnGTA .mbr-section-text {
  color: #232323;
}
.cid-uiiufJnGTA .mbr-text,
.cid-uiiufJnGTA .typed-text,
.cid-uiiufJnGTA .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uiiufJnGTA .btn {
  margin-left: 4px !important;
}
.cid-uiiufJnGTA .animated-element {
  color: #1dc9cb;
}
.cid-uiiufJnGTA .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #1dc9cb;
}
.cid-uiiufJnGTA .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uiiufJnGTA .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uiiufJnGTA .typed-text,
  .cid-uiiufJnGTA .mbr-section-subtitle,
  .cid-uiiufJnGTA .mbr-section-text,
  .cid-uiiufJnGTA .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uiiufJnGTA .mbr-section-subtitle,
.cid-uiiufJnGTA .typed-text {
  color: #ffffff;
}
.cid-uiiufJnGTA .mbr-section-text,
.cid-uiiufJnGTA .mbr-section-btn {
  color: #ffffff;
}
.cid-uiiufKBnDc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-uiiufKBnDc .decor-wrap_1 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 314px;
  height: 314px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #1dc9cb 0, #1dc9cb 43%, #ffffff 100%);
}
.cid-uiiufKBnDc .decor-wrap_2 {
  position: absolute;
  top: 25%;
  right: 2%;
  width: 176px;
  height: 176px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #1dc9cb 0, #1dc9cb 43%, #ffffff 100%);
}
.cid-uiiufKBnDc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiufKBnDc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiiufKBnDc .container {
    padding: 0 30px;
  }
}
.cid-uiiufKBnDc .row {
  justify-content: center;
}
.cid-uiiufKBnDc .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uiiufKBnDc .content-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  background-color: transparent;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uiiufKBnDc .content-wrapper .nav.nav-tabs {
    display: block;
    margin-bottom: 64px;
  }
}
.cid-uiiufKBnDc .content-wrapper .nav.nav-tabs .nav-item {
  width: calc(33.2%);
  padding: 64px 35px;
  background-color: #1dc9cb;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-uiiufKBnDc .content-wrapper .nav.nav-tabs .nav-item:first-child {
  border-radius: 2rem 0 0 0;
}
.cid-uiiufKBnDc .content-wrapper .nav.nav-tabs .nav-item:last-child {
  border-radius: 0 0 2rem 0;
}
@media (max-width: 992px) {
  .cid-uiiufKBnDc .content-wrapper .nav.nav-tabs .nav-item {
    width: 100%;
    padding: 36px 50px;
    margin-bottom: 2px;
  }
}
.cid-uiiufKBnDc .content-wrapper .nav.nav-tabs .nav-item:nth-child(2) .nav-link::before {
  background-color: #cccccc;
}
.cid-uiiufKBnDc .content-wrapper .nav.nav-tabs .nav-item:nth-child(3) .nav-link::before {
  background-color: #dbf5d1;
}
.cid-uiiufKBnDc .content-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0 0 20px;
  margin-bottom: 0;
  border: none;
  color: #144031;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.cid-uiiufKBnDc .content-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background-color: #f4f8fa;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
.cid-uiiufKBnDc .content-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
}
.cid-uiiufKBnDc .content-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  transform: scale(1.25);
}
.cid-uiiufKBnDc .content-wrapper .tab-content .tab-pane .content-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uiiufKBnDc .content-wrapper .tab-content .tab-pane .content-wrap {
    display: block;
  }
}
.cid-uiiufKBnDc .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
  width: 50%;
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-uiiufKBnDc .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
    width: 100%;
    margin-bottom: 64px;
    padding: 0;
  }
}
.cid-uiiufKBnDc .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uiiufKBnDc .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uiiufKBnDc .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  width: 50%;
  margin-bottom: 0;
  padding-left: 40px;
  border-left: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uiiufKBnDc .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
    width: 100%;
    padding-left: 20px;
  }
}
.cid-uiiufKBnDc .mbr-desc {
  color: #c7fcb5;
}
.cid-uiiufKBnDc .mbr-section-title {
  color: #ffffff;
}
.cid-uiiufKBnDc .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-uiiufLDXoa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #1dc9cb;
}
.cid-uiiufLDXoa .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-uiiufLDXoa .mbr-section-title {
  margin: 0;
}
.cid-uiiufLDXoa .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uiiufLDXoa .card-img {
  text-align: inherit;
}
.cid-uiiufLDXoa .card-img span {
  background: linear-gradient(90deg, #2bdc9d, #1dc9cb);
}
.cid-uiiufLDXoa .mbr-text {
  color: #8d97ad;
}
.cid-uiiufLDXoa .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-uiiufLDXoa .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uiiufLDXoa .mbr-card-title DIV {
  text-align: center;
}
.cid-uiiufLDXoa .mbr-card-title {
  text-align: center;
}
.cid-uiiufMz2q3 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiiufMz2q3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiufMz2q3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiufMz2q3 .row {
  justify-content: space-between;
}
.cid-uiiufMz2q3 .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uiiufMz2q3 .content-wrapper {
    padding: 0;
  }
}
.cid-uiiufMz2q3 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uiiufMz2q3 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uiiufMz2q3 .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uiiufMz2q3 .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uiiufMz2q3 .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uiiufMz2q3 .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uiiufMz2q3 .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uiiufMz2q3 .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uiiufMz2q3 .mbr-section-title {
  color: #000000;
}
.cid-uiiufMz2q3 .mbr-desc {
  color: #000000;
}
.cid-uiiufMz2q3 .mbr-text {
  color: #000000;
}
.cid-uiiufNkIby {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #1dc9cb;
}
.cid-uiiufNkIby .mbr-section-title {
  margin: 0;
}
.cid-uiiufNkIby .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-uiiufNkIby .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-uiiufNkIby .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-uiiufNkIby .card1 {
  background: linear-gradient(45deg, #000000, #1dc9cb);
}
.cid-uiiufNkIby .card2 {
  background: linear-gradient(45deg, #1dc9cb, #000000);
}
.cid-uiiufNkIby .card3 {
  background: linear-gradient(45deg, #000000, #1dc9cb);
}
.cid-uiiufNkIby .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-uiiufNkIby .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uiiufNkIby .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-uiiufNkIby .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uiiufNkIby .card1 > .mbr-card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uiiufNkIby .card2 > .mbr-card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uiiufNkIby .card3 > .mbr-card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uiiufOp3vx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/photo-booth11-1200x664.jpg");
}
.cid-uiiufOp3vx .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uiiufOp3vx .row {
    padding: 0 12px;
  }
}
.cid-uiiufOp3vx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiufOp3vx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiufOp3vx .title-container {
  display: flex;
  justify-content: center;
}
.cid-uiiufOp3vx .title-container .title-wrapper {
  max-width: 750px;
  padding: 40px 35px;
  background-color: #ffffff;
}
.cid-uiiufOp3vx .title-container .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uiiufOp3vx .title-container .title-wrapper .mbr-section-subtitle {
  margin-bottom: 8px;
}
.cid-uiiufOp3vx .mbr-section-title {
  color: #ee2947;
  text-align: center;
}
.cid-uiiufOp3vx .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uiiufOp3vx .mbr-section-title,
.cid-uiiufOp3vx .mbr-section-btn {
  color: #000000;
}
.cid-uiiufP7lnp {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #1dc9cb;
}
.cid-uiiufP7lnp .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-uiiufP7lnp .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-uiiufP7lnp .card-img img {
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uiiufP7lnp .section-text,
.cid-uiiufP7lnp .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-uiiufP7lnp .section-text,
  .cid-uiiufP7lnp .card-text,
  .cid-uiiufP7lnp .card-title,
  .cid-uiiufP7lnp .mbr-section-title {
    text-align: center;
  }
}
.cid-uiiufP7lnp H2 {
  text-align: center;
}
.cid-uiiufP7lnp .section-text {
  color: #000000;
  text-align: center;
}
.cid-uiiufQ3Wh2 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uiiufQ3Wh2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiufQ3Wh2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiufQ3Wh2 .row {
  justify-content: space-between;
}
.cid-uiiufQ3Wh2 .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uiiufQ3Wh2 .content-wrapper {
    padding: 0;
  }
}
.cid-uiiufQ3Wh2 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uiiufQ3Wh2 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uiiufQ3Wh2 .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uiiufQ3Wh2 .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uiiufQ3Wh2 .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uiiufQ3Wh2 .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uiiufQ3Wh2 .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uiiufQ3Wh2 .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uiiufQ3Wh2 .mbr-section-title {
  color: #000000;
}
.cid-uiiufQ3Wh2 .mbr-desc {
  color: #000000;
}
.cid-uiiufQ3Wh2 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uiiufQ3Wh2 .mbr-section-title,
.cid-uiiufQ3Wh2 .mbr-section-btn {
  text-align: center;
}
.cid-uiiufQzZsf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1dc9cb;
}
.cid-uiiufQzZsf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiufQzZsf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiiufQzZsf .container {
    padding: 0 16px;
  }
}
.cid-uiiufQzZsf .row {
  position: relative;
  z-index: 1;
}
.cid-uiiufQzZsf .card {
  justify-content: flex-end;
}
.cid-uiiufQzZsf .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-uiiufQzZsf .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uiiufQzZsf .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uiiufQzZsf .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-uiiufQzZsf .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-uiiufQzZsf .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-uiiufQzZsf .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uiiufQzZsf .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uiiufQzZsf .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-uiiufQzZsf .card-wrapper .card-wrap {
  background-color: #000000;
  box-shadow: 4px 6px 0 0 #ffffff;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-uiiufQzZsf .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-uiiufQzZsf .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-uiiufQzZsf .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-uiiufQzZsf .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-uiiufQzZsf .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uiiufQzZsf .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uiiufQzZsf .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uiiufQzZsf .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uiiufQzZsf .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-uiiufQzZsf .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uiiufQzZsf .text-wrapper {
    margin-left: 0;
  }
}
.cid-uiiufQzZsf .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uiiufQzZsf .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uiiufQzZsf .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-uiiufQzZsf .mbr-text {
  color: #000000;
}
.cid-uiiufQzZsf .card-desc {
  color: #000000;
}
.cid-uiiufQzZsf .card-text {
  color: #ffffff;
}
.cid-uiiufQzZsf .card-name {
  color: #ffffff;
}
.cid-uiiufQzZsf .card-role {
  color: #ffffff;
}
.cid-uiiufRp4mN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uiiufRp4mN .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uiiufRp4mN .panel-group {
  width: 100%;
}
.cid-uiiufRp4mN .panel-text,
.cid-uiiufRp4mN .header-text,
.cid-uiiufRp4mN .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uiiufRp4mN .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-uiiufRp4mN .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uiiufRp4mN .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #1dc9cb;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-uiiufRp4mN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uiiufRp4mN .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uiiufRp4mN .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-uiiufRp4mN .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #1dc9cb;
}
.cid-uiiufRp4mN .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #000000 !important;
}
.cid-uiiufRp4mN .card .panel-body {
  background: #1dc9cb;
}
.cid-uiiufRp4mN .sign {
  color: #232323;
}
.cid-uiiufRp4mN .header-text {
  color: #000000;
}
.cid-uiiufRp4mN .panel-text {
  color: #000000;
}
.cid-uiiLlanmMA {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #000000;
}
.cid-uiiLlanmMA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiLlanmMA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiLlanmMA .row {
  flex-direction: row-reverse;
}
.cid-uiiufSdoxw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1dc9cb;
}
.cid-uiiufSdoxw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiufSdoxw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiiufSdoxw .container {
    padding: 0 16px;
  }
}
.cid-uiiufSdoxw .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uiiufSdoxw .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uiiufSdoxw .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uiiufSdoxw .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uiiufSdoxw .title-wrapper .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-uiiufSdoxw .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uiiufSdoxw .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uiiufSdoxw .card-wrapper {
  background-color: #000000;
  box-shadow: 6px 8px 0 0 #ffffff;
  border-radius: 24px;
  padding: 80px;
}
.cid-uiiufSdoxw .card-wrapper .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-uiiufSdoxw .card-wrapper .image-wrapper {
    margin-bottom: 32px;
    display: block;
  }
}
.cid-uiiufSdoxw .card-wrapper .image-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 4px 6px 0 0 #000000;
  transform: rotate(4deg);
}
.cid-uiiufSdoxw .card-wrapper .card-text {
  margin-bottom: 24px;
}
.cid-uiiufSdoxw .mbr-section-title {
  color: #ffffff;
}
.cid-uiiufSdoxw .mbr-section-subtitle {
  color: #000000;
}
.cid-uiiufSdoxw .mbr-text {
  color: #ffffff;
}
.cid-uiiufSdoxw .card-text {
  text-align: center;
  color: #000000;
}
.cid-uiiufSdoxw .mbr-text,
.cid-uiiufSdoxw .text-wrapper {
  color: #000000;
}
.cid-uiiufSdoxw .mbr-section-subtitle,
.cid-uiiufSdoxw .subtitle-wrapper {
  text-align: center;
}
.cid-uiiufSdoxw .card-text,
.cid-uiiufSdoxw .mbr-section-btn {
  color: #ffffff;
}
.cid-uiiufSULfn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uiiufSULfn .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uiiufSULfn .row {
    padding: 0 12px;
  }
}
.cid-uiiufSULfn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiufSULfn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiufSULfn .image-wrapper {
  position: relative;
}
.cid-uiiufSULfn .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1dc9cb;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-uiiufSULfn .image-wrapper::before {
    display: none;
  }
}
.cid-uiiufSULfn .image-wrapper::after {
  content: '';
  display: block;
  background-color: #000000;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 0 100% 0 0;
  left: auto;
  right: 25px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-uiiufSULfn .image-wrapper::after {
    display: none;
  }
}
.cid-uiiufSULfn .image-wrapper img {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 0 0 100%;
  border-radius: 0 0 100% 0;
}
.cid-uiiufSULfn .text-wrapper {
  padding: 60px 0 0 100px;
  padding: 60px 100px 0 0;
}
@media (max-width: 992px) {
  .cid-uiiufSULfn .text-wrapper {
    padding: 60px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uiiufSULfn .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-uiiufSULfn .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uiiufSULfn .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uiiufSULfn .mbr-section-title {
  color: #000000;
}
.cid-uiiufSULfn .mbr-text {
  color: #000000;
}
.cid-uiiufTqyXQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1dc9cb;
}
.cid-uiiufTqyXQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiufTqyXQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiufTqyXQ .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uiiufTqyXQ .row {
    padding: 0 12px;
  }
}
.cid-uiiufTqyXQ .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: -5%;
  background-color: #000000;
  border-radius: 0 0 75% 0;
}
.cid-uiiufTqyXQ .title-wrapper {
  max-width: 350px;
  margin-bottom: 66px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uiiufTqyXQ .title-wrapper {
    max-width: 100%;
  }
}
.cid-uiiufTqyXQ .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uiiufTqyXQ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uiiufTqyXQ .phone-wrapper {
  z-index: 1;
  position: relative;
  margin-bottom: 25px;
}
.cid-uiiufTqyXQ .phone-wrapper .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uiiufTqyXQ .phone-wrapper .mbr-phone {
  margin-bottom: 0;
}
.cid-uiiufTqyXQ .links-wrapper {
  z-index: 1;
  position: relative;
}
.cid-uiiufTqyXQ .links-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uiiufTqyXQ .links-wrapper a {
  width: 100%;
  height: 100%;
}
.cid-uiiufTqyXQ .links-wrapper a .mbr-link {
  margin-bottom: 5px;
}
.cid-uiiufTqyXQ .mbr-section-title {
  color: #000000;
}
.cid-uiiufTqyXQ .mbr-section-subtitle {
  color: #f3722f;
}
.cid-uiiufTqyXQ .mbr-text {
  color: #1e4381;
}
.cid-uiiufTqyXQ .mbr-phone {
  color: #1e4381;
}
.cid-uiiufTqyXQ .mbr-link {
  color: #ffffff;
}
.cid-uiiMx3GGKL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uiiMx3GGKL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiMx3GGKL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiiMx3GGKL .container {
    padding: 0 30px;
  }
}
.cid-uiiMx3GGKL .row {
  justify-content: center;
}
.cid-uiiMx3GGKL .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uiiMx3GGKL .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uiiMx3GGKL .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #1dc9cb;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uiiMx3GGKL .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uiiMx3GGKL .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uiiMx3GGKL .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uiiMx3GGKL .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uiiMx3GGKL .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #000000;
  background-color: #1dc9cb;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uiiMx3GGKL .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uiiMx3GGKL .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uiiMx3GGKL .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uiiMx3GGKL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uiiMx3GGKL .panel-title-edit {
  color: #000000;
}
.cid-uiiMx3GGKL .panel-text {
  color: #000000;
}
.cid-uiiufU6eDB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uiiufU6eDB .google-map {
  height: 25rem;
  position: relative;
}
.cid-uiiufU6eDB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uiiufU6eDB .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-uiiufU6eDB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uiiufU6eDB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uiiufUBkwF {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #1dc9cb;
}
.cid-uiiufUBkwF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiufUBkwF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiufUBkwF .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uiiufUBkwF .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uiiufUBkwF .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uiiufUBkwF .container {
    padding: 0 16px;
  }
}
.cid-uiiufUBkwF .row {
  justify-content: center;
}
.cid-uiiufUBkwF .content-wrapper {
  margin-bottom: 36px;
}
.cid-uiiufUBkwF .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uiiufUBkwF .content-wrapper .email-wrapper {
  display: block;
}
.cid-uiiufUBkwF .content-wrapper .email-wrapper:hover .mbr-email,
.cid-uiiufUBkwF .content-wrapper .email-wrapper:focus .mbr-email {
  color: #3898ec;
}
.cid-uiiufUBkwF .content-wrapper .email-wrapper .mbr-email {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiiufUBkwF .content-wrapper .desc-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uiiufUBkwF .content-wrapper .desc-wrapper {
    margin-top: 32px;
  }
}
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline {
  padding: 0;
  border: none !important;
}
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline:hover::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline:hover::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline:hover::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline:hover::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline:hover::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline:hover::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline:hover::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline:hover::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline:focus::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline:focus::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline:focus::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline:focus::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline:focus::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline:focus::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline:focus::after,
.cid-uiiufUBkwF .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline:focus::after {
  opacity: 0;
}
.cid-uiiufUBkwF .contacts-wrapper {
  margin-bottom: 36px;
}
.cid-uiiufUBkwF .contacts-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uiiufUBkwF .contacts-wrapper .list {
  margin-bottom: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uiiufUBkwF .contacts-wrapper .list .item-wrap {
  margin: 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiiufUBkwF .contacts-wrapper .list .item-wrap:hover,
.cid-uiiufUBkwF .contacts-wrapper .list .item-wrap:focus {
  color: #3898ec;
}
.cid-uiiufUBkwF .border-wrap {
  height: 3px;
  background-color: #333333;
  margin-bottom: 36px;
}
.cid-uiiufUBkwF .mbr-copy {
  margin-bottom: 0;
  color: #333333;
  text-align: center;
}
.cid-uiiufUBkwF .mbr-section-title {
  color: #080808;
}
.cid-uiiufUBkwF .mbr-email {
  color: #333333;
}
.cid-uiiufUBkwF .mbr-desc {
  color: #333333;
}
.cid-uiiufUBkwF .list {
  color: #333333;
}
.cid-uiiNyCLwcI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uiiNyCLwcI .nav-item,
.cid-uiiNyCLwcI .nav-link,
.cid-uiiNyCLwcI .navbar-caption {
  font-weight: normal;
}
.cid-uiiNyCLwcI .nav-item:focus,
.cid-uiiNyCLwcI .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uiiNyCLwcI .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-uiiNyCLwcI .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uiiNyCLwcI .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uiiNyCLwcI .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uiiNyCLwcI .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uiiNyCLwcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uiiNyCLwcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uiiNyCLwcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uiiNyCLwcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uiiNyCLwcI .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #1dc9cb;
}
.cid-uiiNyCLwcI .navbar.opened {
  transition: all .3s;
  background: #1dc9cb !important;
}
.cid-uiiNyCLwcI .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-uiiNyCLwcI .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uiiNyCLwcI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uiiNyCLwcI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uiiNyCLwcI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-uiiNyCLwcI .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uiiNyCLwcI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uiiNyCLwcI .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-uiiNyCLwcI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uiiNyCLwcI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uiiNyCLwcI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uiiNyCLwcI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uiiNyCLwcI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uiiNyCLwcI .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uiiNyCLwcI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uiiNyCLwcI .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-uiiNyCLwcI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uiiNyCLwcI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uiiNyCLwcI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uiiNyCLwcI .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uiiNyCLwcI .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uiiNyCLwcI .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uiiNyCLwcI .navbar.navbar-short {
  background: #1dc9cb !important;
  min-height: 60px;
}
.cid-uiiNyCLwcI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uiiNyCLwcI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uiiNyCLwcI .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-uiiNyCLwcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uiiNyCLwcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uiiNyCLwcI .dropdown-item.active,
.cid-uiiNyCLwcI .dropdown-item:active {
  background-color: transparent;
}
.cid-uiiNyCLwcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uiiNyCLwcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uiiNyCLwcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1dc9cb;
}
.cid-uiiNyCLwcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uiiNyCLwcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uiiNyCLwcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uiiNyCLwcI .navbar-buttons {
  text-align: center;
}
.cid-uiiNyCLwcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uiiNyCLwcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uiiNyCLwcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uiiNyCLwcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uiiNyCLwcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uiiNyCLwcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uiiNyCLwcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uiiNyCLwcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uiiNyCLwcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uiiNyCLwcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uiiNyCLwcI .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uiiNyCLwcI a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uiiNyCLwcI .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uiiNyCLwcI .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-uiiNyCLwcI .soc-item {
  margin: .5rem .3rem;
}
.cid-uiiNyCLwcI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uiiNyCLwcI .navbar {
    height: 77px;
  }
  .cid-uiiNyCLwcI .navbar.opened {
    height: auto;
  }
  .cid-uiiNyCLwcI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uiiNyFf1A2 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/photo-booth14-1616x1080.jpg");
}
.cid-uiiNyFf1A2 .mbr-section-title,
.cid-uiiNyFf1A2 .mbr-section-subtitle {
  color: #000000;
}
.cid-uiiNyFf1A2 .mbr-section-text {
  color: #232323;
}
.cid-uiiNyFf1A2 .mbr-text,
.cid-uiiNyFf1A2 .typed-text,
.cid-uiiNyFf1A2 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uiiNyFf1A2 .btn {
  margin-left: 4px !important;
}
.cid-uiiNyFf1A2 .animated-element {
  color: #1dc9cb;
}
.cid-uiiNyFf1A2 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #1dc9cb;
}
.cid-uiiNyFf1A2 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uiiNyFf1A2 .mbr-figure {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uiiNyFf1A2 .typed-text,
  .cid-uiiNyFf1A2 .mbr-section-subtitle,
  .cid-uiiNyFf1A2 .mbr-section-text,
  .cid-uiiNyFf1A2 .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uiiNyFf1A2 .mbr-section-subtitle,
.cid-uiiNyFf1A2 .typed-text {
  color: #ffffff;
}
.cid-uiiNyFf1A2 .mbr-section-text,
.cid-uiiNyFf1A2 .mbr-section-btn {
  color: #ffffff;
}
.cid-uiiNyGTX9A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-uiiNyGTX9A .decor-wrap_1 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 314px;
  height: 314px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #1dc9cb 0, #1dc9cb 43%, #ffffff 100%);
}
.cid-uiiNyGTX9A .decor-wrap_2 {
  position: absolute;
  top: 25%;
  right: 2%;
  width: 176px;
  height: 176px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #1dc9cb 0, #1dc9cb 43%, #ffffff 100%);
}
.cid-uiiNyGTX9A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiNyGTX9A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiiNyGTX9A .container {
    padding: 0 30px;
  }
}
.cid-uiiNyGTX9A .row {
  justify-content: center;
}
.cid-uiiNyGTX9A .content-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uiiNyGTX9A .content-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  background-color: transparent;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uiiNyGTX9A .content-wrapper .nav.nav-tabs {
    display: block;
    margin-bottom: 64px;
  }
}
.cid-uiiNyGTX9A .content-wrapper .nav.nav-tabs .nav-item {
  width: calc(33.2%);
  padding: 64px 35px;
  background-color: #1dc9cb;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.cid-uiiNyGTX9A .content-wrapper .nav.nav-tabs .nav-item:first-child {
  border-radius: 2rem 0 0 0;
}
.cid-uiiNyGTX9A .content-wrapper .nav.nav-tabs .nav-item:last-child {
  border-radius: 0 0 2rem 0;
}
@media (max-width: 992px) {
  .cid-uiiNyGTX9A .content-wrapper .nav.nav-tabs .nav-item {
    width: 100%;
    padding: 36px 50px;
    margin-bottom: 2px;
  }
}
.cid-uiiNyGTX9A .content-wrapper .nav.nav-tabs .nav-item:nth-child(2) .nav-link::before {
  background-color: #cccccc;
}
.cid-uiiNyGTX9A .content-wrapper .nav.nav-tabs .nav-item:nth-child(3) .nav-link::before {
  background-color: #dbf5d1;
}
.cid-uiiNyGTX9A .content-wrapper .nav.nav-tabs .nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0 0 20px;
  margin-bottom: 0;
  border: none;
  color: #144031;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}
.cid-uiiNyGTX9A .content-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background-color: #f4f8fa;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
.cid-uiiNyGTX9A .content-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
}
.cid-uiiNyGTX9A .content-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  transform: scale(1.25);
}
.cid-uiiNyGTX9A .content-wrapper .tab-content .tab-pane .content-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uiiNyGTX9A .content-wrapper .tab-content .tab-pane .content-wrap {
    display: block;
  }
}
.cid-uiiNyGTX9A .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
  width: 50%;
  padding-right: 56px;
}
@media (max-width: 992px) {
  .cid-uiiNyGTX9A .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper {
    width: 100%;
    margin-bottom: 64px;
    padding: 0;
  }
}
.cid-uiiNyGTX9A .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uiiNyGTX9A .content-wrapper .tab-content .tab-pane .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uiiNyGTX9A .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
  width: 50%;
  margin-bottom: 0;
  padding-left: 40px;
  border-left: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-uiiNyGTX9A .content-wrapper .tab-content .tab-pane .content-wrap .mbr-text {
    width: 100%;
    padding-left: 20px;
  }
}
.cid-uiiNyGTX9A .mbr-desc {
  color: #c7fcb5;
}
.cid-uiiNyGTX9A .mbr-section-title {
  color: #ffffff;
}
.cid-uiiNyGTX9A .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-uiiNyIe6Ok {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #1dc9cb;
}
.cid-uiiNyIe6Ok .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-uiiNyIe6Ok .mbr-section-title {
  margin: 0;
}
.cid-uiiNyIe6Ok .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uiiNyIe6Ok .card-img {
  text-align: inherit;
}
.cid-uiiNyIe6Ok .card-img span {
  background: linear-gradient(90deg, #2bdc9d, #1dc9cb);
}
.cid-uiiNyIe6Ok .mbr-text {
  color: #8d97ad;
}
.cid-uiiNyIe6Ok .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-uiiNyIe6Ok .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uiiNyIe6Ok .mbr-card-title DIV {
  text-align: center;
}
.cid-uiiNyIe6Ok .mbr-card-title {
  text-align: center;
}
.cid-uiiNyJzpwu {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiiNyJzpwu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiNyJzpwu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiNyJzpwu .row {
  justify-content: space-between;
}
.cid-uiiNyJzpwu .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uiiNyJzpwu .content-wrapper {
    padding: 0;
  }
}
.cid-uiiNyJzpwu .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uiiNyJzpwu .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uiiNyJzpwu .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uiiNyJzpwu .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uiiNyJzpwu .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uiiNyJzpwu .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uiiNyJzpwu .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uiiNyJzpwu .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uiiNyJzpwu .mbr-section-title {
  color: #000000;
}
.cid-uiiNyJzpwu .mbr-desc {
  color: #000000;
}
.cid-uiiNyJzpwu .mbr-text {
  color: #000000;
}
.cid-uiiNyKuv1I {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #1dc9cb;
}
.cid-uiiNyKuv1I .mbr-section-title {
  margin: 0;
}
.cid-uiiNyKuv1I .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-uiiNyKuv1I .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-uiiNyKuv1I .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-uiiNyKuv1I .card1 {
  background: linear-gradient(45deg, #000000, #1dc9cb);
}
.cid-uiiNyKuv1I .card2 {
  background: linear-gradient(45deg, #1dc9cb, #000000);
}
.cid-uiiNyKuv1I .card3 {
  background: linear-gradient(45deg, #000000, #1dc9cb);
}
.cid-uiiNyKuv1I .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-uiiNyKuv1I .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uiiNyKuv1I .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-uiiNyKuv1I .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uiiNyKuv1I .card1 > .mbr-card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uiiNyKuv1I .card2 > .mbr-card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uiiNyKuv1I .card3 > .mbr-card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uiiNyLWgYj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/photo-booth15-2000x1334.jpg");
}
.cid-uiiNyLWgYj .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uiiNyLWgYj .row {
    padding: 0 12px;
  }
}
.cid-uiiNyLWgYj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiNyLWgYj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiNyLWgYj .title-container {
  display: flex;
  justify-content: center;
}
.cid-uiiNyLWgYj .title-container .title-wrapper {
  max-width: 750px;
  padding: 40px 35px;
  background-color: #ffffff;
}
.cid-uiiNyLWgYj .title-container .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uiiNyLWgYj .title-container .title-wrapper .mbr-section-subtitle {
  margin-bottom: 8px;
}
.cid-uiiNyLWgYj .mbr-section-title {
  color: #ee2947;
  text-align: center;
}
.cid-uiiNyLWgYj .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uiiNyLWgYj .mbr-section-title,
.cid-uiiNyLWgYj .mbr-section-btn {
  color: #000000;
}
.cid-uiiNyMOY0b {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #1dc9cb;
}
.cid-uiiNyMOY0b .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-uiiNyMOY0b .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
  overflow: hidden;
}
.cid-uiiNyMOY0b .card-img img {
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-uiiNyMOY0b .section-text,
.cid-uiiNyMOY0b .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-uiiNyMOY0b .section-text,
  .cid-uiiNyMOY0b .card-text,
  .cid-uiiNyMOY0b .card-title,
  .cid-uiiNyMOY0b .mbr-section-title {
    text-align: center;
  }
}
.cid-uiiNyMOY0b H2 {
  text-align: center;
}
.cid-uiiNyMOY0b .section-text {
  color: #000000;
  text-align: center;
}
.cid-uiiNyOiqJA {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uiiNyOiqJA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiNyOiqJA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiNyOiqJA .row {
  justify-content: space-between;
}
.cid-uiiNyOiqJA .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uiiNyOiqJA .content-wrapper {
    padding: 0;
  }
}
.cid-uiiNyOiqJA .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uiiNyOiqJA .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uiiNyOiqJA .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uiiNyOiqJA .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uiiNyOiqJA .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uiiNyOiqJA .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uiiNyOiqJA .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uiiNyOiqJA .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uiiNyOiqJA .mbr-section-title {
  color: #000000;
}
.cid-uiiNyOiqJA .mbr-desc {
  color: #000000;
}
.cid-uiiNyOiqJA .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uiiNyOiqJA .mbr-section-title,
.cid-uiiNyOiqJA .mbr-section-btn {
  text-align: center;
}
.cid-uiiNyPhQwT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1dc9cb;
}
.cid-uiiNyPhQwT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiNyPhQwT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiiNyPhQwT .container {
    padding: 0 16px;
  }
}
.cid-uiiNyPhQwT .row {
  position: relative;
  z-index: 1;
}
.cid-uiiNyPhQwT .card {
  justify-content: flex-end;
}
.cid-uiiNyPhQwT .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-uiiNyPhQwT .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uiiNyPhQwT .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uiiNyPhQwT .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-uiiNyPhQwT .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-uiiNyPhQwT .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-uiiNyPhQwT .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uiiNyPhQwT .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uiiNyPhQwT .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-uiiNyPhQwT .card-wrapper .card-wrap {
  background-color: #000000;
  box-shadow: 4px 6px 0 0 #ffffff;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-uiiNyPhQwT .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-uiiNyPhQwT .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-uiiNyPhQwT .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-uiiNyPhQwT .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-uiiNyPhQwT .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uiiNyPhQwT .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uiiNyPhQwT .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uiiNyPhQwT .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uiiNyPhQwT .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-uiiNyPhQwT .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uiiNyPhQwT .text-wrapper {
    margin-left: 0;
  }
}
.cid-uiiNyPhQwT .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uiiNyPhQwT .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uiiNyPhQwT .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-uiiNyPhQwT .mbr-text {
  color: #000000;
}
.cid-uiiNyPhQwT .card-desc {
  color: #000000;
}
.cid-uiiNyPhQwT .card-text {
  color: #ffffff;
}
.cid-uiiNyPhQwT .card-name {
  color: #ffffff;
}
.cid-uiiNyPhQwT .card-role {
  color: #ffffff;
}
.cid-uiiNyQoTvx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uiiNyQoTvx .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uiiNyQoTvx .panel-group {
  width: 100%;
}
.cid-uiiNyQoTvx .panel-text,
.cid-uiiNyQoTvx .header-text,
.cid-uiiNyQoTvx .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uiiNyQoTvx .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-uiiNyQoTvx .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uiiNyQoTvx .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #1dc9cb;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-uiiNyQoTvx .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uiiNyQoTvx .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uiiNyQoTvx .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-uiiNyQoTvx .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #1dc9cb;
}
.cid-uiiNyQoTvx .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #000000 !important;
}
.cid-uiiNyQoTvx .card .panel-body {
  background: #1dc9cb;
}
.cid-uiiNyQoTvx .sign {
  color: #232323;
}
.cid-uiiNyQoTvx .header-text {
  color: #000000;
}
.cid-uiiNyQoTvx .panel-text {
  color: #000000;
}
.cid-uiiNyVr0RD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1dc9cb;
}
.cid-uiiNyVr0RD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiNyVr0RD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiiNyVr0RD .container {
    padding: 0 16px;
  }
}
.cid-uiiNyVr0RD .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uiiNyVr0RD .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uiiNyVr0RD .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 14px 24px;
  border-radius: 8px !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #ffffff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uiiNyVr0RD .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uiiNyVr0RD .title-wrapper .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-uiiNyVr0RD .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uiiNyVr0RD .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uiiNyVr0RD .card-wrapper {
  background-color: #000000;
  box-shadow: 6px 8px 0 0 #ffffff;
  border-radius: 24px;
  padding: 80px;
}
.cid-uiiNyVr0RD .card-wrapper .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-uiiNyVr0RD .card-wrapper .image-wrapper {
    margin-bottom: 32px;
    display: block;
  }
}
.cid-uiiNyVr0RD .card-wrapper .image-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 4px 6px 0 0 #000000;
  transform: rotate(4deg);
}
.cid-uiiNyVr0RD .card-wrapper .card-text {
  margin-bottom: 24px;
}
.cid-uiiNyVr0RD .mbr-section-title {
  color: #ffffff;
}
.cid-uiiNyVr0RD .mbr-section-subtitle {
  color: #000000;
}
.cid-uiiNyVr0RD .mbr-text {
  color: #ffffff;
}
.cid-uiiNyVr0RD .card-text {
  text-align: center;
  color: #000000;
}
.cid-uiiNyVr0RD .mbr-text,
.cid-uiiNyVr0RD .text-wrapper {
  color: #000000;
}
.cid-uiiNyVr0RD .mbr-section-subtitle,
.cid-uiiNyVr0RD .subtitle-wrapper {
  text-align: center;
}
.cid-uiiNyVr0RD .card-text,
.cid-uiiNyVr0RD .mbr-section-btn {
  color: #ffffff;
}
.cid-uiiNyYDLIR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uiiNyYDLIR .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uiiNyYDLIR .row {
    padding: 0 12px;
  }
}
.cid-uiiNyYDLIR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiNyYDLIR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiNyYDLIR .image-wrapper {
  position: relative;
}
.cid-uiiNyYDLIR .image-wrapper::before {
  content: '';
  display: block;
  background-color: #1dc9cb;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-uiiNyYDLIR .image-wrapper::before {
    display: none;
  }
}
.cid-uiiNyYDLIR .image-wrapper::after {
  content: '';
  display: block;
  background-color: #000000;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100px;
  height: 100px;
  border-radius: 0 100% 0 0;
  left: auto;
  right: 25px;
  border-radius: 100% 0 0 0;
}
@media (max-width: 992px) {
  .cid-uiiNyYDLIR .image-wrapper::after {
    display: none;
  }
}
.cid-uiiNyYDLIR .image-wrapper img {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 0 0 100%;
  border-radius: 0 0 100% 0;
}
.cid-uiiNyYDLIR .text-wrapper {
  padding: 60px 0 0 100px;
  padding: 60px 100px 0 0;
}
@media (max-width: 992px) {
  .cid-uiiNyYDLIR .text-wrapper {
    padding: 60px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uiiNyYDLIR .text-wrapper {
    padding: 60px 0 0;
  }
}
.cid-uiiNyYDLIR .text-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uiiNyYDLIR .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uiiNyYDLIR .mbr-section-title {
  color: #000000;
}
.cid-uiiNyYDLIR .mbr-text {
  color: #000000;
}
.cid-uiiNz28pZC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1dc9cb;
}
.cid-uiiNz28pZC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiNz28pZC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiNz28pZC .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-uiiNz28pZC .row {
    padding: 0 12px;
  }
}
.cid-uiiNz28pZC .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: -5%;
  background-color: #000000;
  border-radius: 0 0 75% 0;
}
.cid-uiiNz28pZC .title-wrapper {
  max-width: 350px;
  margin-bottom: 66px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uiiNz28pZC .title-wrapper {
    max-width: 100%;
  }
}
.cid-uiiNz28pZC .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uiiNz28pZC .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uiiNz28pZC .phone-wrapper {
  z-index: 1;
  position: relative;
  margin-bottom: 25px;
}
.cid-uiiNz28pZC .phone-wrapper .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uiiNz28pZC .phone-wrapper .mbr-phone {
  margin-bottom: 0;
}
.cid-uiiNz28pZC .links-wrapper {
  z-index: 1;
  position: relative;
}
.cid-uiiNz28pZC .links-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uiiNz28pZC .links-wrapper a {
  width: 100%;
  height: 100%;
}
.cid-uiiNz28pZC .links-wrapper a .mbr-link {
  margin-bottom: 5px;
}
.cid-uiiNz28pZC .mbr-section-title {
  color: #000000;
}
.cid-uiiNz28pZC .mbr-section-subtitle {
  color: #f3722f;
}
.cid-uiiNz28pZC .mbr-text {
  color: #1e4381;
}
.cid-uiiNz28pZC .mbr-phone {
  color: #1e4381;
}
.cid-uiiNz28pZC .mbr-link {
  color: #ffffff;
}
.cid-uiiNz5FgXW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uiiNz5FgXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiNz5FgXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uiiNz5FgXW .container {
    padding: 0 30px;
  }
}
.cid-uiiNz5FgXW .row {
  justify-content: center;
}
.cid-uiiNz5FgXW .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uiiNz5FgXW .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uiiNz5FgXW .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #1dc9cb;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uiiNz5FgXW .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uiiNz5FgXW .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uiiNz5FgXW .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uiiNz5FgXW .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uiiNz5FgXW .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #000000;
  background-color: #1dc9cb;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uiiNz5FgXW .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uiiNz5FgXW .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uiiNz5FgXW .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uiiNz5FgXW .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uiiNz5FgXW .panel-title-edit {
  color: #000000;
}
.cid-uiiNz5FgXW .panel-text {
  color: #000000;
}
.cid-uiiNz7sla8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uiiNz7sla8 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uiiNz7sla8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uiiNz7sla8 .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-uiiNz7sla8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uiiNz7sla8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uiiNz90dOU {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #1dc9cb;
}
.cid-uiiNz90dOU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiNz90dOU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiNz90dOU .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uiiNz90dOU .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uiiNz90dOU .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uiiNz90dOU .container {
    padding: 0 16px;
  }
}
.cid-uiiNz90dOU .row {
  justify-content: center;
}
.cid-uiiNz90dOU .content-wrapper {
  margin-bottom: 36px;
}
.cid-uiiNz90dOU .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uiiNz90dOU .content-wrapper .email-wrapper {
  display: block;
}
.cid-uiiNz90dOU .content-wrapper .email-wrapper:hover .mbr-email,
.cid-uiiNz90dOU .content-wrapper .email-wrapper:focus .mbr-email {
  color: #3898ec;
}
.cid-uiiNz90dOU .content-wrapper .email-wrapper .mbr-email {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiiNz90dOU .content-wrapper .desc-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uiiNz90dOU .content-wrapper .desc-wrapper {
    margin-top: 32px;
  }
}
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline {
  padding: 0;
  border: none !important;
}
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline:hover::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline:hover::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline:hover::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline:hover::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline:hover::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline:hover::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline:hover::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline:hover::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-primary-outline:focus::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-secondary-outline:focus::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-success-outline:focus::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-info-outline:focus::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-warning-outline:focus::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-danger-outline:focus::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-black-outline:focus::after,
.cid-uiiNz90dOU .content-wrapper .desc-wrapper .mbr-section-btn .btn-white-outline:focus::after {
  opacity: 0;
}
.cid-uiiNz90dOU .contacts-wrapper {
  margin-bottom: 36px;
}
.cid-uiiNz90dOU .contacts-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uiiNz90dOU .contacts-wrapper .list {
  margin-bottom: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uiiNz90dOU .contacts-wrapper .list .item-wrap {
  margin: 10px 0;
  transition: all 0.3s ease-in-out;
}
.cid-uiiNz90dOU .contacts-wrapper .list .item-wrap:hover,
.cid-uiiNz90dOU .contacts-wrapper .list .item-wrap:focus {
  color: #3898ec;
}
.cid-uiiNz90dOU .border-wrap {
  height: 3px;
  background-color: #333333;
  margin-bottom: 36px;
}
.cid-uiiNz90dOU .mbr-copy {
  margin-bottom: 0;
  color: #333333;
  text-align: center;
}
.cid-uiiNz90dOU .mbr-section-title {
  color: #080808;
}
.cid-uiiNz90dOU .mbr-email {
  color: #333333;
}
.cid-uiiNz90dOU .mbr-desc {
  color: #333333;
}
.cid-uiiNz90dOU .list {
  color: #333333;
}
