body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.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: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #ff6666 !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%;
  width: 100%;
  height: auto;
}
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='%236592e6' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tPfFJK50Bg .navbar-dropdown {
  background-color: #212132 !important;
  padding: 0;
}
.cid-tPfFJK50Bg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #212132 !important;
  background: #212132;
}
.cid-tPfFJK50Bg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tPfFJK50Bg .menu_box .navbar.opened,
  .cid-tPfFJK50Bg .menu_box .navbar-collapse {
    background-color: #212132 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tPfFJK50Bg .navbar-dropdown {
  position: relative !important;
}
.cid-tPfFJK50Bg .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tPfFJK50Bg .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tPfFJK50Bg .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tPfFJK50Bg .btn {
  min-height: 55px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tPfFJK50Bg .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tPfFJK50Bg .offcanvas {
    padding: 12rem 80px 0;
    width: 50%;
    background-color: #2c0066;
  }
  .cid-tPfFJK50Bg .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tPfFJK50Bg .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tPfFJK50Bg .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tPfFJK50Bg .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tPfFJK50Bg .offcanvas-body .mbr-text,
  .cid-tPfFJK50Bg .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tPfFJK50Bg .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tPfFJK50Bg .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tPfFJK50Bg .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f8f7ff;
  }
  .cid-tPfFJK50Bg .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tPfFJK50Bg .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tPfFJK50Bg .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tPfFJK50Bg .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tPfFJK50Bg ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tPfFJK50Bg .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPfFJK50Bg .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tPfFJK50Bg .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tPfFJK50Bg li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tPfFJK50Bg .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tPfFJK50Bg .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tPfFJK50Bg .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tPfFJK50Bg .nav-item {
    margin: 0 !important;
  }
}
.cid-tPfFJK50Bg .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tPfFJK50Bg .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tPfFJK50Bg .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tPfFJK50Bg .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPfFJK50Bg .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tPfFJK50Bg .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tPfFJK50Bg .offcanvas_box {
    display: none;
  }
}
.cid-tPfFJK50Bg .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tPfFJK50Bg .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tPfFJK50Bg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tPfFJK50Bg .container {
  display: flex;
  margin: auto;
}
.cid-tPfFJK50Bg .iconfont-wrapper {
  color: #f8f7ff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tPfFJK50Bg .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tPfFJK50Bg .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tPfFJK50Bg .navbar-caption {
  color: #f8f7ff;
}
.cid-tPfFJK50Bg .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tPfFJK50Bg .navbar-nav {
    margin: 0;
  }
}
.cid-tPfFJK50Bg .dropdown-menu,
.cid-tPfFJK50Bg .navbar.opened {
  background-color: false !important;
}
.cid-tPfFJK50Bg .nav-item:focus,
.cid-tPfFJK50Bg .nav-link:focus {
  outline: none;
}
.cid-tPfFJK50Bg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPfFJK50Bg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPfFJK50Bg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPfFJK50Bg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPfFJK50Bg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPfFJK50Bg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPfFJK50Bg .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-tPfFJK50Bg .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-tPfFJK50Bg .navbar.opened {
  transition: all 0.3s;
}
.cid-tPfFJK50Bg .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tPfFJK50Bg .navbar .navbar-logo img {
  max-width: 24px;
  max-height: 24px;
  object-fit: cover;
  border-radius: 100%;
}
.cid-tPfFJK50Bg .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tPfFJK50Bg .navbar.collapsed {
  justify-content: center;
}
.cid-tPfFJK50Bg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPfFJK50Bg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPfFJK50Bg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPfFJK50Bg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPfFJK50Bg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPfFJK50Bg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tPfFJK50Bg .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPfFJK50Bg .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tPfFJK50Bg .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tPfFJK50Bg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPfFJK50Bg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPfFJK50Bg .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tPfFJK50Bg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPfFJK50Bg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tPfFJK50Bg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPfFJK50Bg .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tPfFJK50Bg .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tPfFJK50Bg .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tPfFJK50Bg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPfFJK50Bg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPfFJK50Bg .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tPfFJK50Bg .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPfFJK50Bg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPfFJK50Bg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPfFJK50Bg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPfFJK50Bg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPfFJK50Bg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPfFJK50Bg .dropdown-item.active,
.cid-tPfFJK50Bg .dropdown-item:active {
  background-color: transparent;
}
.cid-tPfFJK50Bg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPfFJK50Bg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPfFJK50Bg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPfFJK50Bg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPfFJK50Bg ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tPfFJK50Bg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPfFJK50Bg button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #212132;
  background: #ffffff;
}
.cid-tPfFJK50Bg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f8f7ff;
}
.cid-tPfFJK50Bg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPfFJK50Bg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPfFJK50Bg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPfFJK50Bg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPfFJK50Bg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPfFJK50Bg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPfFJK50Bg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPfFJK50Bg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPfFJK50Bg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tPfFJK50Bg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPfFJK50Bg .navbar {
    height: 70px;
  }
  .cid-tPfFJK50Bg .navbar.opened {
    height: auto;
  }
  .cid-tPfFJK50Bg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPfFJK50Bg .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tPfFJK50Bg .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-tPfFJK50Bg .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tPfFJK50Bg .mbr-section-btn-main .btn {
  min-height: 36px;
  max-height: 36px;
  margin: 0 4px 4px 4px;
}
.cid-tPfFJK50Bg .navbar-caption:hover {
  color: #6592e6;
}
@media (min-width: 992px) {
  .cid-tPfFJK50Bg .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tPfFJK50Bg .nav-link {
  position: relative;
}
.cid-tPfFJK50Bg .nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #f8f7ff;
  transition: all .1s ease;
}
.cid-tPfFJK50Bg .nav-link:hover:before {
  width: 100%;
}
.cid-tPfFJK50Bg .mbr-text,
.cid-tPfFJK50Bg .mbr-section-subtitle,
.cid-tPfFJK50Bg .text_widget {
  opacity: .5;
}
.cid-tPfFJK50Bg .mbr-section-subtitle {
  color: #f8f7ff;
}
.cid-tPfFJK50Bg .mbr-text {
  color: #f8f7ff;
  text-align: center;
}
.cid-tPfFJK50Bg .text_widget {
  color: #f8f7ff;
}
.cid-tPfFJK50Bg .mbr-section-subtitle,
.cid-tPfFJK50Bg .text_widget,
.cid-tPfFJK50Bg .mbr-section-btn {
  text-align: center;
}
.cid-tPfFJK50Bg a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tizMzMBEuH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212132;
}
.cid-tizMzMBEuH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tizMzMBEuH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tizMzMBEuH .container {
  max-width: 1600px;
}
.cid-tizMzMBEuH .row {
  justify-content: center;
}
.cid-tizMzMBEuH .content-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.cid-tizMzMBEuH .title-container {
  width: 100%;
}
.cid-tizMzMBEuH .mbr-section-title {
  color: #ffffff;
  width: 100%;
}
.cid-tizMzMBEuH .colored-text {
  line-height: inherit;
  color: inherit;
  color: #ae5eff;
}
.cid-tizMzMBEuH .mbr-section-subtitle {
  color: #FFDD65;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tizMzMBEuH .mbr-section-subtitle {
    margin-top: 1rem;
  }
}
.cid-tizMzMBEuH .btn-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  gap: 40px;
}
@media (max-width: 991px) {
  .cid-tizMzMBEuH .btn-container {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 0;
  }
}
.cid-tizMzMBEuH .text-container {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tizMzMBEuH .text-container {
    margin: 24px auto 0;
  }
}
.cid-tizMzMBEuH .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-tizMzMBEuH .mbr-text {
    text-align: center !important;
  }
}
.cid-tizMzMBEuH .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-tizMzMBEuH .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-tizMzMBEuH .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-tizMzMBEuH .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-tizMzMBEuH .icon-text {
  color: #ffffff;
}
.cid-tizMzMBEuH .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-tizMzMBEuH .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ffffff;
}
.cid-tizMzMBEuH .form-container {
  max-width: 535px;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tizMzMBEuH .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tizMzMBEuH form {
  width: 100%;
}
.cid-tizMzMBEuH form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tizMzMBEuH form p {
  color: #ffffff;
}
.cid-tizMzMBEuH form .mbr-section-btn {
  width: max-content;
  max-width: 35%;
}
@media (max-width: 991px) {
  .cid-tizMzMBEuH form .mbr-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.cid-tizMzMBEuH form .mbr-section-btn .btn {
  padding: 10px 35px;
  height: 100%;
  border-radius: 0.75rem !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-tizMzMBEuH form .mbr-section-btn .btn {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.cid-tizMzMBEuH form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.cid-tizMzMBEuH form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.42rem;
}
.cid-tizMzMBEuH form .group-bg {
  position: absolute;
  border-radius: 0.75rem;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
}
.cid-tizMzMBEuH form .group-border {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 6;
  padding: 3px;
  border-radius: 0.75rem;
  transition: all 300ms ease;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-tizMzMBEuH form .group-border:hover {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
@media (max-width: 991px) {
  .cid-tizMzMBEuH form .group-border {
    flex-wrap: wrap;
  }
}
.cid-tizMzMBEuH form .form-control {
  min-height: 100px;
  height: 100%;
  border: none !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 0.75rem;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 40px;
  font-size: 24px;
  line-height: 32px;
  color: #212132;
  font-weight: 400;
}
@media (max-width: 991px) {
  .cid-tizMzMBEuH form .form-control {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    text-align: center !important;
  }
}
.cid-tizMzMBEuH form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-tizMzMBEuH form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-tizMzMBEuH form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-tizMzMBEuH form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-tizMzMBEuH form .form-control:hover {
  outline: none !important;
}
.cid-tizMzMBEuH form select {
  color: #939292 !important;
}
.cid-tizMzMBEuH form textarea {
  height: 200px;
}
.cid-tizMzMBEuH form input:active,
.cid-tizMzMBEuH form textarea:active,
.cid-tizMzMBEuH form input:focus,
.cid-tizMzMBEuH form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-tizMzMBEuH form input:active::-webkit-input-placeholder,
.cid-tizMzMBEuH form textarea:active::-webkit-input-placeholder,
.cid-tizMzMBEuH form input:focus::-webkit-input-placeholder,
.cid-tizMzMBEuH form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-tizMzMBEuH form input:active::-moz-placeholder,
.cid-tizMzMBEuH form textarea:active::-moz-placeholder,
.cid-tizMzMBEuH form input:focus::-moz-placeholder,
.cid-tizMzMBEuH form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-tizMzMBEuH form input:active:-moz-placeholder,
.cid-tizMzMBEuH form textarea:active:-moz-placeholder,
.cid-tizMzMBEuH form input:focus:-moz-placeholder,
.cid-tizMzMBEuH form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-tizMzMBEuH form input:active:-ms-input-placeholder,
.cid-tizMzMBEuH form textarea:active:-ms-input-placeholder,
.cid-tizMzMBEuH form input:focus:-ms-input-placeholder,
.cid-tizMzMBEuH form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-tizMzMBEuH form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tizMzMBEuH form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tizMzMBEuH form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-tizMzMBEuH form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tizMzMBEuH form .form-check-input:focus,
.cid-tizMzMBEuH form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-tizMzMBEuH form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-tizMngqpYx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212132;
}
.cid-tizMngqpYx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tizMngqpYx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tizMngqpYx .mbr-section-title {
  color: #f3f4ef;
  margin-bottom: 16px;
}
.cid-tizMngqpYx .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-tizMngqpYx .mbr-section-subtitle {
  color: #f3f4ef;
  margin-bottom: 16px;
}
.cid-tizMngqpYx .mbr-text {
  color: #f3f4ef;
  margin-bottom: 0;
}
.cid-tizMngqpYx .mbr-section-btn {
  margin-top: 144px;
}
.cid-tKmqbgRtO9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKmqbgRtO9 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tKmqbgRtO9 .mbr-text {
  text-align: center;
  color: #e43f3f;
}
.cid-tiFctZvg7r {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tiFctZvg7r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiFctZvg7r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiF0u20iZ8 {
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tiF0u20iZ8 .wrap {
    padding: 0 28px;
  }
}
.cid-tiF0u20iZ8 .card-wrapper {
  min-height: 150px;
  transition: all 0.3s;
  border-radius: none;
  padding: 1rem;
  background: #f0f0f0;
}
@media (min-width: 992px) {
  .cid-tiF0u20iZ8 .card-wrapper {
    min-height: 200px;
  }
}
@media (min-width: 1400px) {
  .cid-tiF0u20iZ8 .card-wrapper {
    min-height: 420px;
  }
}
.cid-tiF0u20iZ8 .card-wrapper:hover {
  background: #ffff27;
}
@media (max-width: 991px) {
  .cid-tiF0u20iZ8 .item-content {
    margin-bottom: 65px;
  }
}
.cid-tiA1Gkc34a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/1-oyt3izutqxdl16bkenufag.gif");
}
.cid-tiA1Gkc34a .mbr-overlay {
  background: #000000;
  background: linear-gradient(to right, #000000, #4479d9);
}
.cid-tiA1Gkc34a .container {
  pointer-events: none;
}
.cid-tiA1Gkc34a .mbr-section-title {
  pointer-events: all;
  font-size: 75px;
  line-height: 95px;
}
.cid-tiA1Gkc34a .animated-element {
  color: #e43f3f;
  font-size: 75px;
  line-height: 95px;
}
.cid-tiA1Gkc34a .typed-cursor {
  color: #e43f3f;
  font-size: 75px;
}
@media (max-width: 991px) {
  .cid-tiA1Gkc34a .mbr-section-title,
  .cid-tiA1Gkc34a .animated-element,
  .cid-tiA1Gkc34a .typed-cursor {
    font-size: 100px;
    line-height: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tiA1Gkc34a .mbr-section-title,
  .cid-tiA1Gkc34a .animated-element,
  .cid-tiA1Gkc34a .typed-cursor {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 575px) {
  .cid-tiA1Gkc34a .mbr-section-title,
  .cid-tiA1Gkc34a .animated-element,
  .cid-tiA1Gkc34a .typed-cursor {
    font-size: 60px;
    line-height: 60px;
  }
}
.cid-tiA1Gkc34a .mbr-section-title,
.cid-tiA1Gkc34a .typed-text {
  color: #ffffff;
  text-align: center;
}
.cid-tiA1Gkc34a .animation__background .triangle2 {
  position: absolute;
  top: 15%;
  left: 10%;
  animation: scale__one 15s infinite linear;
  width: 80px;
  height: 80px;
}
.cid-tiA1Gkc34a .animation__background .triangle {
  position: absolute;
  bottom: 7%;
  right: 21%;
  animation: rotatedHalf 40s infinite linear;
}
.cid-tiA1Gkc34a .animation__background .circle1 {
  display: inline-block;
  width: 12px;
  height: 12px;
  top: 10%;
  left: 15%;
  background: #47b5ed;
  border-radius: 50%;
  position: absolute;
  animation: animationOne 25s infinite linear;
}
.cid-tiA1Gkc34a .animation__background .circle2 {
  display: inline-block;
  width: 15px;
  height: 15px;
  top: 35%;
  right: 10%;
  background: #40b0bf;
  border-radius: 50%;
  position: absolute;
  animation: animationOne 30s alternate infinite linear;
}
.cid-tiA1Gkc34a .animation__background .circle3 {
  display: inline-block;
  width: 15px;
  height: 15px;
  bottom: 15%;
  left: 20%;
  background: #ffe161;
  position: absolute;
  border-radius: 50%;
  animation: animationTwo 35s infinite linear;
}
.cid-tiA1Gkc34a .animation__background .circle4 {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: #6592e6;
  bottom: 40%;
  left: 43%;
  animation: animationOne 30s infinite linear;
}
.cid-tiA1Gkc34a .animation__background .circle5 {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: #ff9966;
  bottom: 30%;
  right: 20%;
  animation: animationOne 30s infinite linear;
}
@keyframes scale__one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes animationOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg) scale(0.9);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg) scale(1);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
.cid-tiA1Gkc34a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiA1Gkc34a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiFddSbH3s {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tiFddSbH3s .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #000000;
  text-align: center;
  letter-spacing: 5.4px;
}
.cid-tiFddSbH3s .mbr-section-title {
  color: #000000;
  text-align: right;
}
.cid-tiFddSbH3s .row {
  max-width: 900px;
  margin: auto;
}
.cid-tiF6QgHDPx {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-tiF6QgHDPx .row {
  position: relative;
  min-height: 768px;
}
.cid-tiF6QgHDPx .index {
  z-index: 3;
}
.cid-tiF6QgHDPx ul {
  list-style: none;
  margin: 0;
  padding-left: 61px;
}
.cid-tiF6QgHDPx li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tiF6QgHDPx ul li::before {
  position: absolute;
  content: "\2192";
  left: -61px;
  top: -15px;
  color: #000000;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
@media (max-width: 768px) {
  .cid-tiF6QgHDPx ul li::before {
    top: -5px;
  }
}
.cid-tiF6QgHDPx span {
  background: #ffff33;
}
@media (min-width: 992px) {
  .cid-tiF6QgHDPx img {
    object-fit: cover;
    position: absolute;
  }
  .cid-tiF6QgHDPx .one {
    top: 0;
    right: 10%;
    width: 400px;
    height: 600px;
  }
  .cid-tiF6QgHDPx .two {
    width: 200px;
    height: 140px;
    right: -2%;
    top: 5%;
  }
  .cid-tiF6QgHDPx .three {
    width: 360px;
    height: 360px;
    top: 55%;
    right: 0;
  }
}
@media (min-width: 1400px) {
  .cid-tiF6QgHDPx .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-tiF6QgHDPx img {
    object-fit: cover;
    position: relative;
    width: 30%;
  }
  .cid-tiF6QgHDPx .image-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-tiF6QgHDPx .mbr-text {
  color: #000000;
}
.cid-tiF6QgHDPx .list {
  color: #000000;
}
.cid-tiK9KOPcu1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fef7f2;
}
.cid-tiK9KOPcu1 .wrap {
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-tiK9KOPcu1 .container {
    max-width: 1130px;
  }
}
.cid-tiK9KOPcu1 .item-content {
  padding: 0 1rem;
}
.cid-tiK9KOPcu1 img,
.cid-tiK9KOPcu1 .item-img {
  object-fit: cover;
}
@media (min-width: 1400px) {
  .cid-tiK9KOPcu1 img,
  .cid-tiK9KOPcu1 .item-img {
    height: 260px;
  }
}
.cid-tiK9KOPcu1 .item:focus,
.cid-tiK9KOPcu1 span:focus {
  outline: none;
}
.cid-tiK9KOPcu1 .item-wrapper {
  position: relative;
}
.cid-tiK9KOPcu1 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fef7f2;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tiK9KOPcu1 .mbr-text {
  text-align: center;
}
.cid-tiK9KOPcu1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 255px;
  max-width: 255px;
}
@media (max-width: 768px) {
  .cid-tiK9KOPcu1 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tiK9KOPcu1 .embla__button--next,
.cid-tiK9KOPcu1 .embla__button--prev {
  display: flex;
}
.cid-tiK9KOPcu1 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  color: #000000;
  background-color: #fef7f2;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tiK9KOPcu1 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tiK9KOPcu1 .embla__button:hover {
  background-color: #f4aee6;
  color: #ffffff;
}
.cid-tiK9KOPcu1 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tiK9KOPcu1 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tiK9KOPcu1 .embla__button {
    top: auto;
  }
}
.cid-tiK9KOPcu1 .embla {
  position: relative;
  width: 100%;
}
.cid-tiK9KOPcu1 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tiK9KOPcu1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tiK9KOPcu1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tiK9KOPcu1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tiK9KOPcu1 .mbr-section-title {
  text-align: center;
}
.cid-tiA0Xqluoe {
  overflow: hidden !important;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(to right, #00ac6d 0%, #00ac6d 30%, #4e84c2 30%, #4e84c2 100%);
}
.cid-tiA0Xqluoe .animated-element {
  color: #efefef;
}
.cid-tiA0Xqluoe .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tiA0Xqluoe .mbr-section-subtitle {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-tiA0Xqluoe .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tiA0Xqluoe .mbr-figure {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tiA0Xqluoe {
    background: #4e84c2;
  }
  .cid-tiA0Xqluoe .img-block {
    padding-bottom: 2rem;
  }
}
.cid-tiF0LK9YiT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tiF0LK9YiT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiF0LK9YiT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiF0LK9YiT .row {
  justify-content: center;
}
.cid-tiF0LK9YiT .col-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tiF0LK9YiT .col-title {
    margin-bottom: 20px;
  }
}
.cid-tiF0LK9YiT .mbr-section-title {
  color: #000000;
  opacity: 0.85;
}
.cid-tiF0LK9YiT .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tiF0LK9YiT .mbr-section-subtitle {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tiF0LK9YiT .card-row {
  align-items: stretch;
}
.cid-tiF0LK9YiT .card {
  padding: 10px;
}
.cid-tiF0LK9YiT .card-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  padding: 33px 38px 33px 38px;
  background-color: #ffffff;
  transition: .3s all;
  border: 2px solid #1d191f;
}
.cid-tiF0LK9YiT .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #000000;
}
.cid-tiF0LK9YiT .card-head {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tiF0LK9YiT .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 80px;
  padding: 10px;
  margin-right: 25px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff86d;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-tiF0LK9YiT .iconfont-wrapper {
    min-width: 60px;
    min-height: 60px;
    padding: 5px;
  }
}
.cid-tiF0LK9YiT .card-wrapper {
  display: flex;
  -webkit-transition: box-shadow 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, transform 200ms ease;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .cid-tiF0LK9YiT .card-wrapper:hover {
    transform: translate(10px, -10px);
    box-shadow: -16px 16px 0 #c3ead8;
  }
}
.cid-tiF0LK9YiT .card-wrapper:hover .card-box {
  background-color: #fff86d;
}
.cid-tiF0LK9YiT .card-wrapper:hover .iconfont-wrapper {
  background-color: #ffffff;
}
.cid-tiF0LK9YiT .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0;
}
.cid-tiF0LK9YiT .card-text {
  margin-top: 20px;
  color: #1d191f;
  margin-bottom: 0;
}
.cid-tiLQwSTzj7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tiLQwSTzj7 .card-wrapper {
  background-image: url("../../../assets/images/sustainable-warehouse.1.0-1920x1152.webp");
  background-size: cover;
  background-position: center;
  padding: 3rem;
  padding-top: 25rem;
  padding-bottom: 2rem;
  border-radius: 14px;
}
@media (max-width: 767px) {
  .cid-tiLQwSTzj7 .card-wrapper {
    padding: 1rem;
    padding-top: 15rem;
  }
}
.cid-tiLQwSTzj7 .mbr-text,
.cid-tiLQwSTzj7 .mbr-section-btn {
  text-align: center;
}
.cid-tiLQwSTzj7 H1 {
  text-align: center;
}
.cid-tiAoenIHXs {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tiAoenIHXs .google-map {
  height: 24rem;
  position: relative;
}
.cid-tiAoenIHXs .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tiAoenIHXs .google-map [data-state-details] {
  color: #6b6763;
  font-family: 'PT Sans';
  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-tiAoenIHXs .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tiAoenIHXs .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (min-width: 768px) {
  .cid-tiAoenIHXs .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-tiAoenIHXs .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-tiAoenIHXs .google-map {
    padding-bottom: 2rem;
  }
}
.cid-tiAoenIHXs .card-wrap {
  background-color: #ffffff;
  padding: 3rem 2.5rem;
}
@media (min-width: 992px) {
  .cid-tiAoenIHXs .card-wrap {
    width: calc(100% + 10rem);
    margin-left: -10rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tiAoenIHXs .card-wrap {
    margin: auto;
    padding: 1rem;
  }
}
.cid-tiAoenIHXs H2 {
  text-align: center;
}
.cid-tiAoenIHXs .mbr-section-text,
.cid-tiAoenIHXs .mbr-section-btn {
  text-align: left;
}
.cid-tiAoenIHXs .mbr-section-btn {
  margin-top: 2rem;
}
.cid-tiAoenIHXs .mbr-card-title {
  text-align: left;
}
.cid-tiA0xH0vnU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tiA0xH0vnU .mbr-text {
  text-align: left;
}
.cid-tiF2qYjMtV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/roseday.gif");
}
.cid-tiF2qYjMtV .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #fafafa;
  margin-bottom: 1rem;
}
.cid-tiF2qYjMtV .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tiF2qYjMtV .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tiF2qYjMtV .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #000000;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tiF2qYjMtV .card-wrapper:hover {
  background: transparent;
}
.cid-tiF2qYjMtV .card-title,
.cid-tiF2qYjMtV .card-box {
  color: #ffffff;
}
.cid-tiF2qYjMtV .main-title,
.cid-tiF2qYjMtV .title-col {
  text-align: center;
  color: #fafafa;
}
.cid-tiF2qYjMtV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiF2qYjMtV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiAdkSU6ky {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tiAdkSU6ky .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-tiAdkSU6ky .mbr-section-head {
  background-color: #ffffff;
  padding: 1rem 1rem 2rem;
}
.cid-tiAdkSU6ky .row {
  flex-direction: row-reverse;
}
.cid-tiAdkSU6ky img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tiAdkSU6ky .display-1 {
    font-size: 70px;
  }
  .cid-tiAdkSU6ky .display-5 {
    font-size: 29px;
  }
  .cid-tiAdkSU6ky .display-7 {
    font-size: 22px;
  }
}
.cid-tiAdkSU6ky .mbr-section-title {
  text-align: center;
}
.cid-tiAdkSU6ky .mbr-section-subtitle {
  text-align: center;
}
.cid-tiJoj6OLbU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
.cid-tiJoj6OLbU .card-wrap {
  width: 29.6rem;
  height: 29.6rem;
  position: relative;
}
.cid-tiJoj6OLbU .card {
  border: 2px solid #17171A;
  border-radius: 0;
  width: 14.8rem;
  height: 14.8rem;
}
.cid-tiJoj6OLbU .right {
  position: absolute;
  top: 1px;
  right: 2px;
}
.cid-tiJoj6OLbU .left {
  position: absolute;
  bottom: 1px;
  left: 0;
}
.cid-tiJoj6OLbU .item-btn {
  width: 10.6rem;
  height: 10.6rem;
}
.cid-tiJoj6OLbU .align-bottom {
  margin-left: 3px;
  margin-bottom: 13px;
  padding-bottom: 10px;
}
@media (min-width: 1000px) {
  .cid-tiJoj6OLbU .content-wrap {
    flex-wrap: nowrap;
  }
  .cid-tiJoj6OLbU .main-content {
    width: 75%;
    padding-left: 3rem;
  }
}
@media (max-width: 999px) {
  .cid-tiJoj6OLbU .content-wrap {
    flex-wrap: wrap;
  }
  .cid-tiJoj6OLbU .main-content {
    width: 75%;
    padding-left: 1rem;
  }
  .cid-tiJoj6OLbU .main-content p {
    width: 70%;
  }
  .cid-tiJoj6OLbU .card-wrap {
    width: 20.8rem;
    height: 20.8rem;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
  }
  .cid-tiJoj6OLbU .card {
    width: 10.4rem;
    height: 10.4rem;
  }
  .cid-tiJoj6OLbU .item-btn {
    width: 8rem;
    height: 8rem;
    margin-left: 5rem;
    margin-top: -1.2rem;
  }
}
@media (max-width: 769px) {
  .cid-tiJoj6OLbU .main-content {
    width: 100%;
    text-align: center;
  }
  .cid-tiJoj6OLbU .main-content p {
    width: 100%;
  }
  .cid-tiJoj6OLbU .add-content {
    display: none;
  }
  .cid-tiJoj6OLbU .item-btn {
    width: 6.9rem;
    height: 6.9rem;
    margin: auto;
  }
}
@media (max-width: 600px) {
  .cid-tiJoj6OLbU .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tiJoj6OLbU .mbr-section-title a {
  color: #9b9ba5;
}
.cid-tiJoj6OLbU .mbr-text {
  color: #000000;
}
.cid-tiKksnOl6N {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tiKksnOl6N .google-map {
  height: 25rem;
  position: relative;
}
.cid-tiKksnOl6N .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tiKksnOl6N .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-tiKksnOl6N .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tiKksnOl6N .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tiKksnOl6N .wrapper {
  margin-top: -10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-tiKksnOl6N .wrapper .row {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
}
.cid-tiKksnOl6N .wrapper .row .btn {
  border-radius: 30px;
  padding: 0.8rem 3rem !important;
}
.cid-tiKksnOl6N .wrapper .row .title {
  color: #6592e6;
}
.cid-tiKksnOl6N .wrapper .form-container {
  padding: 3rem;
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-tiKksnOl6N .content-panel {
  padding: 3rem;
  background: linear-gradient(45deg, #fc643f, #133996);
  height: 100%;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  overflow: hidden;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cid-tiKksnOl6N .mbr-text {
  color: #efefef;
}
.cid-tiKksnOl6N .form-control {
  border-radius: 10px !important;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-tiKksnOl6N textarea.form-control {
  min-height: 170px;
}
.cid-tiKksnOl6N .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.cid-tiKksnOl6N .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-tiKksnOl6N .social-list .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
  border-style: dotted;
}
.cid-tiKksnOl6N .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-tiKksnOl6N .social-list a {
  margin: 0;
  opacity: 0.7;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tiKksnOl6N .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tiKksnOl6N .container {
    max-width: 80% !important;
  }
  .cid-tiKksnOl6N .wrapper {
    margin-top: 0;
    border-radius: 40px;
  }
  .cid-tiKksnOl6N .wrapper .main-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tiKksnOl6N .wrapper .main-row .text-block .content-panel {
    border-radius: 0 0 30px 30px !important;
  }
  .cid-tiKksnOl6N .wrapper .main-row .text-block .content-panel .social-list {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-tiKksnOl6N .form-container {
    border-radius: 30px 30px 0 0 !important;
  }
}
.cid-tiPAXsH6iS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f3f4ef;
  overflow: hidden;
}
.cid-tiPAXsH6iS .mbr-text {
  color: #1B1F0A;
}
.cid-tPzJayvkXz.popup-builder {
  background-color: #ffffff;
}
.cid-tPzJayvkXz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tPzJayvkXz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tPzJayvkXz .modal-content,
.cid-tPzJayvkXz .modal-dialog {
  height: auto;
}
.cid-tPzJayvkXz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tPzJayvkXz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tPzJayvkXz .form-wrapper .mbr-form .form-group,
  .cid-tPzJayvkXz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tPzJayvkXz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tPzJayvkXz .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tPzJayvkXz .mbr-text {
  text-align: center;
}
.cid-tPzJayvkXz .pt-0 {
  padding-top: 0 !important;
}
.cid-tPzJayvkXz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tPzJayvkXz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tPzJayvkXz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tPzJayvkXz .modal-open {
  overflow: hidden;
}
.cid-tPzJayvkXz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tPzJayvkXz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tPzJayvkXz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tPzJayvkXz .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tPzJayvkXz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tPzJayvkXz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tPzJayvkXz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tPzJayvkXz .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tPzJayvkXz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tPzJayvkXz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tPzJayvkXz .modal-backdrop.fade {
  opacity: 0;
}
.cid-tPzJayvkXz .modal-backdrop.show {
  opacity: .5;
}
.cid-tPzJayvkXz .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tPzJayvkXz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tPzJayvkXz .modal-header {
    padding: 1rem;
  }
}
.cid-tPzJayvkXz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tPzJayvkXz .modal-header .close svg {
  fill: #353535;
}
.cid-tPzJayvkXz .modal-header .close:hover {
  opacity: 1;
}
.cid-tPzJayvkXz .modal-header .close:focus {
  outline: none;
}
.cid-tPzJayvkXz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tPzJayvkXz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tPzJayvkXz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tPzJayvkXz .modal-body {
    padding: 1rem;
  }
}
.cid-tPzJayvkXz .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tPzJayvkXz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tPzJayvkXz .modal-footer {
    padding: 1rem;
  }
}
.cid-tPzJayvkXz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tPzJayvkXz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tPzJayvkXz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tPzJayvkXz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tPzJayvkXz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tPzJayvkXz .modal-lg,
  .cid-tPzJayvkXz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tPzJayvkXz .modal-xl {
    max-width: 1140px;
  }
}
.cid-tPzJayvkXz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tPzJayvkXz .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tPzJayvkXz .form-group {
  margin-bottom: 1rem;
}
.cid-tPzJayvkXz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tPzJayvkXz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tPzJayvkXz .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tPzJayvkXz .mbr-section-btn {
  margin: 0;
}
.cid-tPzJayvkXz .mbr-section-btn .btn {
  margin: 0;
}
