body {
  font-family: Spartan;
}
.display-1 {
  font-family: 'Spartan', sans-serif;
  font-size: 3.75rem;
  line-height: 1.25;
  letter-spacing: -0.07em;
}
.display-1 > .mbr-iconfont {
  font-size: 4.6875rem;
}
.display-2 {
  font-family: 'Spartan', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.09375rem;
}
.display-5 {
  font-family: 'Spartan', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 3rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.625rem;
    font-size: calc( 1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.9625rem + (3.75 - 1.9625) * ((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.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #f855a0 !important;
}
.bg-success {
  background-color: #ffffff !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: #f855a0 !important;
  border-color: #f855a0 !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: #ed0a72 !important;
  border-color: #ed0a72 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ed0a72 !important;
  border-color: #ed0a72 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff4712 !important;
  border-color: #ff4712 !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: #ba2a00 !important;
  border-color: #ba2a00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ba2a00 !important;
  border-color: #ba2a00 !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: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #f855a0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ed0a72 !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: #f855a0 !important;
  border-color: #f855a0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff4712;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ba2a00 !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: #ff4712 !important;
  border-color: #ff4712 !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: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #f855a0 !important;
}
.text-secondary {
  color: #ff4712 !important;
}
.text-success {
  color: #ffffff !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: #de096b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ab2600 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !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: #f855a0;
}
.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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f855a0;
  border-color: #f855a0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f855a0;
}
.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: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.09375rem;
}
.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: #f855a0 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.09375rem;
}
blockquote {
  border-color: #f855a0;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f855a0;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f855a0;
}
.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: #f855a0;
  border-bottom-color: #f855a0;
}
.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: #f855a0 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff4712 !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='%23f855a0' %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-t3PnQc2nNj {
  background-image: url("../../../assets/images/cycle.png");
}
.cid-t3PnQc2nNj .text {
  display: flex;
  align-items: center;
}
.cid-t3PnQc2nNj .mbr-section-subtitle {
  margin: 0 0 22px 0;
  letter-spacing: .13em;
  color: #c5b559;
}
.cid-t3PnQc2nNj .mbr-section-title {
  margin: 0 0 33px 0;
  color: #eaeaea;
}
.cid-t3PnQc2nNj .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
}
.cid-t3PnQc2nNj .btn:hover {
  box-shadow: none;
}
.cid-t3PnQc2nNj .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3PnQc2nNj .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-t3PnQc2nNj .image-wrapper img {
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-t3PnQc2nNj .image-wrapper img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-t3PnQc2nNj .image-wrapper img {
    width: 240px;
    height: 275px;
  }
}
.cid-t3PnQc2nNj .image-wrapper .image-absolute {
  position: absolute;
  top: 20px;
  right: 23%;
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-t3PnQc2nNj .image-wrapper .image-absolute {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-t3PnQc2nNj .image-wrapper .image-absolute {
    width: 240px;
    height: 275px;
  }
}
@media (max-width: 425px) {
  .cid-t3PnQc2nNj .image-wrapper .image-absolute {
    display: none;
  }
}
.cid-t3PnQc2nNj .row:hover img {
  transform: rotate(0deg);
}
.cid-t3PnTNF8YR {
  background-color: #1c1a1b;
}
.cid-t3PnTNF8YR .container {
  max-width: 1400px;
}
.cid-t3PnTNF8YR .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-t3PnTNF8YR .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-t3PnTNF8YR .content p {
  margin: 0;
}
.cid-t3PnTNF8YR .mbr-text {
  color: #ffffff;
}
.cid-tOiGpdvn6K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f855a0;
}
.cid-tOiGpdvn6K .container-fluid {
  padding: 0 !important;
}
.cid-tOiGpdvn6K .col-md-12 {
  padding: 0;
}
.cid-tOiGpdvn6K .row {
  margin: 0;
  flex-wrap: nowrap;
}
.cid-tOiGpdvn6K .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tOiGpdvn6K .mbr-section-title {
  margin-bottom: 3rem;
}
.cid-tOiGpdvn6K .number-wrap {
  color: #eaeaea;
  border: 2px dashed #f855a0;
  position: relative;
  display: inline-block;
  text-align: center;
  border-radius: 30px;
  padding: 1rem;
  width: 210px;
}
@media (min-width: 1199px) {
  .cid-tOiGpdvn6K .number-wrap {
    min-width: 250px;
  }
}
.cid-tOiGpdvn6K .number {
  font-style: normal;
  font-weight: 900;
  font-size: 4.9rem;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1;
  color: #ffffff;
}
.cid-tOiGpdvn6K .period {
  display: block;
  line-height: 1;
}
.cid-tOiGpdvn6K .dot {
  display: none;
}
@media (max-width: 991px) {
  .cid-tOiGpdvn6K .wrapper {
    padding: 0 0.5rem;
  }
  .cid-tOiGpdvn6K .number-wrap {
    width: 150px;
  }
  .cid-tOiGpdvn6K .col-xs-3 {
    padding: 0 0.5rem;
  }
  .cid-tOiGpdvn6K .number {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tOiGpdvn6K {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-tOiGpdvn6K .number-wrap {
    padding: 0.4rem;
    width: 100px;
    border-radius: 20px;
  }
  .cid-tOiGpdvn6K .col-xs-3 {
    padding: 0 0.3rem;
  }
  .cid-tOiGpdvn6K .number {
    font-size: 2rem;
  }
}
@media (max-width: 440px) {
  .cid-tOiGpdvn6K .number-wrap {
    padding: 0.1rem 0;
    width: 75px;
  }
  .cid-tOiGpdvn6K .col-xs-3 {
    padding: 0 0.2rem;
  }
}
@media (max-width: 380px) {
  .cid-tOiGpdvn6K .period {
    font-size: 0.8rem;
  }
}
.cid-tOiGpdvn6K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOiGpdvn6K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t3PnYABbVt {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #1c1a1b;
}
.cid-t3PnYABbVt .content {
  display: flex;
  align-items: center;
}
.cid-t3PnYABbVt .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #c5b559;
}
.cid-t3PnYABbVt .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-t3PnYABbVt .mbr-text {
  margin-bottom: 38px;
  color: #ffffff;
}
.cid-t3PnYABbVt .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PnYABbVt .btn:hover {
  box-shadow: none;
}
.cid-t3PnYABbVt .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3PnYABbVt .image-wrapper {
    margin-top: 25px;
  }
}
.cid-t3PnYABbVt .image-wrapper img {
  width: 480px;
  height: 457px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 1040px) {
  .cid-t3PnYABbVt .image-wrapper img {
    width: 310px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  .cid-t3PnYABbVt .image-wrapper img {
    max-width: 480px;
    min-height: 230px;
  }
}
.cid-t3PnYABbVt .image-wrapper .image-absolute-1 {
  position: absolute;
  top: 56%;
  left: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffa41d;
}
.cid-t3PnYABbVt .image-wrapper .image-absolute-1 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-t3PnYABbVt .image-wrapper .image-absolute-1 .mbr-image-text {
  margin: 0;
}
.cid-t3PnYABbVt .image-wrapper .image-absolute-2 {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffa41d;
}
.cid-t3PnYABbVt .image-wrapper .image-absolute-2 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-t3PnYABbVt .image-wrapper .image-absolute-2 .mbr-image-text {
  margin: 0;
}
.cid-t3PnYABbVt .mbr-iconfont {
  color: #ffffff;
}
.cid-t3PnYABbVt .mbr-image-text {
  color: #ffffff;
}
.cid-t3PnYABbVt .mbr-section-title,
.cid-t3PnYABbVt .mbr-section-btn {
  color: #eaeaea;
}
.cid-tOiRQoSWiP {
  background-color: #131313;
}
.cid-tOiRQoSWiP .content {
  padding-top: 50px;
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-tOiRQoSWiP .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-tOiRQoSWiP .content p {
  margin: 0;
}
.cid-tOiRQoSWiP .mbr-text {
  color: #ffffff;
}
.cid-tOiRCQKnub {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #131313;
}
.cid-tOiRCQKnub .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOiRCQKnub .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOiRCQKnub .row {
    padding: 0 24px;
  }
}
.cid-tOiRCQKnub .items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 20px;
}
@media (max-width: 992px) {
  .cid-tOiRCQKnub .items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cid-tOiRCQKnub .items {
    column-gap: 10px;
  }
}
@media (max-width: 425px) {
  .cid-tOiRCQKnub .items {
    grid-template-columns: 1fr;
  }
}
.cid-tOiRCQKnub .item {
  margin-bottom: 20px;
  height: 420px;
}
@media (max-width: 768px) {
  .cid-tOiRCQKnub .item {
    margin-bottom: 10px;
  }
}
.cid-tOiRCQKnub .item .item-wrapper {
  height: 100%;
  border-radius: 20px;
}
.cid-tOiRCQKnub .item .item-wrapper .item-img {
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.cid-tOiRCQKnub .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tOiRCQKnub .item .item-wrapper .item-content {
  padding: 24px 15px 26px;
  background-color: #ffffff;
  z-index: 1;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tOiRCQKnub .item .item-wrapper .item-content {
    padding: 19px 13px 21px;
  }
}
.cid-tOiRCQKnub .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-tOiRCQKnub .items-card:nth-child(1) {
  display: flex;
  flex-direction: column;
}
.cid-tOiRCQKnub .items-card:nth-child(1) .item {
  height: 420px;
}
@media (max-width: 425px) {
  .cid-tOiRCQKnub .items-card:nth-child(1) .item {
    height: 420px;
  }
}
.cid-tOiRCQKnub .items-card:nth-child(1) .item:last-child {
  height: 330px;
}
.cid-tOiRCQKnub .items-card:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.cid-tOiRCQKnub .items-card:nth-child(2) .item {
  height: 420px;
}
@media (max-width: 425px) {
  .cid-tOiRCQKnub .items-card:nth-child(2) .item {
    height: 420px;
  }
}
.cid-tOiRCQKnub .items-card:nth-child(2) .item:first-child {
  height: 330px;
}
.cid-tOiRCQKnub .items-card:nth-child(3) {
  display: flex;
  flex-direction: column;
}
.cid-tOiRCQKnub .items-card:nth-child(3) .item {
  height: 420px;
}
@media (max-width: 425px) {
  .cid-tOiRCQKnub .items-card:nth-child(3) .item {
    height: 420px;
  }
}
.cid-tOiRCQKnub .items-card:nth-child(3) .item:last-child {
  height: 330px;
}
.cid-tOiRCQKnub .items-card:nth-child(4) {
  display: flex;
  flex-direction: column;
}
.cid-tOiRCQKnub .items-card:nth-child(4) .item {
  height: 420px;
}
@media (max-width: 425px) {
  .cid-tOiRCQKnub .items-card:nth-child(4) .item {
    height: 420px;
  }
}
.cid-tOiRCQKnub .items-card:nth-child(4) .item:first-child {
  height: 330px;
}
.cid-tOiRCQKnub .mbr-text {
  color: #111111;
  text-align: center;
}
.cid-tOiLJQYFXR {
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tOiLJQYFXR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tOiLJQYFXR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tOiLJQYFXR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tOiLJQYFXR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tOiLJQYFXR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f23801;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #f23801, #f7e4d6);
}
.cid-tOiLJQYFXR .icon-focus,
.cid-tOiLJQYFXR .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tOiLJQYFXR .icon-focus:before,
.cid-tOiLJQYFXR .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOiLJQYFXR .icon-video {
  font-size: 1.5rem !important;
}
.cid-tOiLJQYFXR .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tOiLJQYFXR ul {
  font-size: 0;
}
.cid-tOiLJQYFXR .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tOiLJQYFXR .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tOiLJQYFXR .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ec068d !important;
}
.cid-tOiLJQYFXR .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-tOiLJQYFXR .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-tOiLJQYFXR .mbr-gallery-filter ul li.active .btn:after {
  border-color: #ec068d;
}
.cid-tOiLJQYFXR .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-tOiLJQYFXR .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-tOiLJQYFXR .mbr-gallery-filter ul li:first-child,
.cid-tOiLJQYFXR .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tOiLJQYFXR .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tOiLJQYFXR .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-tOiLJQYFXR .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-tOiLJQYFXR .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tOiLJQYFXR .mbr-section-title b:last-child,
.cid-tOiLJQYFXR .mbr-section-title strong:last-child {
  color: #d58001;
}
.cid-tOiLJQYFXR .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-tOiLJQYFXR .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-t3PnW1iP4u {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/2017-14.jpg");
}
.cid-t3PnW1iP4u .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #ffffff;
  text-align: center;
}
.cid-t3PnW1iP4u .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-t3PnW1iP4u .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-t3PnW1iP4u .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PnW1iP4u .btn:hover {
  box-shadow: none;
}
.cid-t3PnW1iP4u .mbr-section-title,
.cid-t3PnW1iP4u .mbr-section-btn {
  text-align: center;
  color: #ffc85b;
}
.cid-tOiPsCtS29 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-tOiPsCtS29 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOiPsCtS29 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOiPsCtS29 .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .cid-tOiPsCtS29 .mbr-section-head {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tOiPsCtS29 .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-tOiPsCtS29 .mbr-section-title {
  color: #e3ebf3;
  text-align: center;
}
.cid-tOiPsCtS29 .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-tOiPsCtS29 .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tOiPsCtS29 .cards-wrap {
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tOiPsCtS29 .cards-wrap {
    gap: 12px;
  }
}
.cid-tOiPsCtS29 .card {
  display: flex;
  width: calc(25% - 60px/4);
  padding: 50px;
  border-radius: 40px;
  background-color: #fafafa;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .cid-tOiPsCtS29 .card {
    padding: 30px;
  }
}
@media (max-width: 1199px) {
  .cid-tOiPsCtS29 .card {
    padding: 20px;
    border-radius: 12px;
    width: calc(100%/3 - 20px);
  }
}
@media (max-width: 767px) {
  .cid-tOiPsCtS29 .card {
    padding: 12px;
    border-radius: 12px;
    width: calc(100%/2 - 10px);
  }
}
@media (max-width: 575px) {
  .cid-tOiPsCtS29 .card {
    width: 100%;
  }
}
.cid-tOiPsCtS29 .card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  height: 100%;
}
.cid-tOiPsCtS29 .img-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-tOiPsCtS29 .img-wrapper img {
  height: 100px;
  width: auto;
}
@media (max-width: 1399px) {
  .cid-tOiPsCtS29 .img-wrapper img {
    height: 80px;
  }
}
.cid-tOiPsCtS29 .card-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
}
.cid-tOiPsCtS29 .card-subtitle {
  color: #FA7E26;
  word-break: normal;
}
.cid-tOiPsCtS29 .card-title {
  color: #1a1e21;
}
.cid-tOdCVIr5Tt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tOdCVIr5Tt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOdCVIr5Tt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOdCVIr5Tt .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tOdCVIr5Tt .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-tOdCVIr5Tt .container {
    padding: 0 25px;
  }
}
.cid-tOdCVIr5Tt .title-wrapper .mbr-section-title {
  margin-bottom: 35px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}
.cid-tOdCVIr5Tt .list {
  padding: 0;
  margin: 80px 0 0 0;
  list-style-type: none;
  color: #adaeb1;
}
.cid-tOdCVIr5Tt .list .item-wrapper {
  margin-bottom: 16px;
}
.cid-tOdCVIr5Tt .list .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-tOdCVIr5Tt .copyright {
  margin: 16px 0;
  opacity: .5;
  color: #ffffff;
}
.cid-tOdCVIr5Tt .mbr-section-title {
  color: #ffffff;
}
.cid-tOcRbyGoWq .container-fluid {
  padding: 0 1rem;
}
.cid-tOcRbyGoWq .navbar-dropdown {
  background-color: #f9f9fc !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .menu_box .navbar.opened,
  .cid-tOcRbyGoWq .menu_box .navbar-collapse {
    background-color: #f9f9fc !important;
    transition: all 0s ease 0s;
  }
}
.cid-tOcRbyGoWq .navbar-dropdown {
  position: relative !important;
}
.cid-tOcRbyGoWq nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tOcRbyGoWq .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tOcRbyGoWq .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tOcRbyGoWq .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tOcRbyGoWq .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tOcRbyGoWq .offcanvas {
    padding: 55px 35px 40px;
    width: 480px;
    background-color: #f9f9fc;
  }
  .cid-tOcRbyGoWq .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tOcRbyGoWq .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tOcRbyGoWq .offcanvas-header .btn-close {
    position: absolute;
    top: 44px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tOcRbyGoWq .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .cid-tOcRbyGoWq .offcanvas-body .mbr-text,
  .cid-tOcRbyGoWq .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tOcRbyGoWq .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #20232a;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tOcRbyGoWq ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tOcRbyGoWq .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tOcRbyGoWq .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-tOcRbyGoWq .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tOcRbyGoWq 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;
  }
  .cid-tOcRbyGoWq li.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #20232a;
    margin-top: 3px;
    transition: all .4s ease;
  }
  .cid-tOcRbyGoWq .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tOcRbyGoWq .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tOcRbyGoWq .nav-item {
    margin: 4px 15px;
  }
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .nav-item {
    margin: 0 !important;
  }
}
.cid-tOcRbyGoWq .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tOcRbyGoWq .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-tOcRbyGoWq .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tOcRbyGoWq .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-tOcRbyGoWq .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tOcRbyGoWq .offcanvas_box {
    display: none;
  }
}
.cid-tOcRbyGoWq .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tOcRbyGoWq .dropdown-item:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tOcRbyGoWq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOcRbyGoWq .nav-link {
  position: relative;
  color: #20232a;
}
.cid-tOcRbyGoWq .container {
  display: flex;
  margin: auto;
}
.cid-tOcRbyGoWq .iconfont-wrapper {
  width: 42px;
  margin: 5px;
  color: #20232a;
  font-size: 21px;
  transition: all 0.2s ease-in-out;
  width: auto;
}
.cid-tOcRbyGoWq .iconfont-wrapper:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .navbar-caption {
  color: #20232a;
}
.cid-tOcRbyGoWq .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-tOcRbyGoWq .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-tOcRbyGoWq .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-tOcRbyGoWq .dropdown-menu,
.cid-tOcRbyGoWq .navbar.opened {
  background: #f9f9fc !important;
}
.cid-tOcRbyGoWq .nav-item:focus,
.cid-tOcRbyGoWq .nav-link:focus {
  outline: none;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOcRbyGoWq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOcRbyGoWq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOcRbyGoWq .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-tOcRbyGoWq .navbar.opened {
  transition: all 0.3s;
}
.cid-tOcRbyGoWq .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tOcRbyGoWq .navbar .navbar-logo img {
  width: auto;
  object-fit: cover;
}
.cid-tOcRbyGoWq .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tOcRbyGoWq .navbar.collapsed {
  justify-content: center;
}
.cid-tOcRbyGoWq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOcRbyGoWq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tOcRbyGoWq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOcRbyGoWq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOcRbyGoWq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOcRbyGoWq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tOcRbyGoWq .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tOcRbyGoWq .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tOcRbyGoWq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOcRbyGoWq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOcRbyGoWq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOcRbyGoWq .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tOcRbyGoWq .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tOcRbyGoWq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOcRbyGoWq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOcRbyGoWq .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tOcRbyGoWq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOcRbyGoWq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOcRbyGoWq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOcRbyGoWq .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-tOcRbyGoWq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOcRbyGoWq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOcRbyGoWq .dropdown-item.active,
.cid-tOcRbyGoWq .dropdown-item:active {
  background-color: transparent;
}
.cid-tOcRbyGoWq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOcRbyGoWq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOcRbyGoWq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOcRbyGoWq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9fc;
}
.cid-tOcRbyGoWq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOcRbyGoWq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOcRbyGoWq ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tOcRbyGoWq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOcRbyGoWq button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f9fc;
  background: #f9f9fc;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #20232a;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq a.nav-link {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}
.cid-tOcRbyGoWq .nav-item:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .nav-item:hover {
    width: 0;
  }
}
.cid-tOcRbyGoWq .icons-menu {
  margin-bottom: 35px;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper {
  margin-bottom: 25px;
  display: block;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper span {
  margin-right: 14px;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper .mbr-text {
  margin: 0;
  display: inline-block;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper:last-child {
  margin-bottom: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOcRbyGoWq .navbar {
    height: 70px;
  }
  .cid-tOcRbyGoWq .navbar.opened {
    height: auto;
  }
  .cid-tOcRbyGoWq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOcRbyGoWq .navbar-caption:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .nav-link:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .mbr-iconfont {
  font-size: 21px;
}
.cid-tOcRbyGoWq .mbr-section-subtitle {
  color: #20232a;
  text-align: left;
}
.cid-tOcRbyGoWq .mbr-text,
.cid-tOcRbyGoWq .iconfont-wrapper {
  color: #20232a;
  text-align: left;
}
.cid-tOcRbyGoWq .text_widget a:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tOcRbyGoWq .container-fluid {
  padding: 0 1rem;
}
.cid-tOcRbyGoWq .navbar-dropdown {
  background-color: #f9f9fc !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .menu_box .navbar.opened,
  .cid-tOcRbyGoWq .menu_box .navbar-collapse {
    background-color: #f9f9fc !important;
    transition: all 0s ease 0s;
  }
}
.cid-tOcRbyGoWq .navbar-dropdown {
  position: relative !important;
}
.cid-tOcRbyGoWq nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tOcRbyGoWq .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tOcRbyGoWq .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tOcRbyGoWq .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tOcRbyGoWq .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tOcRbyGoWq .offcanvas {
    padding: 55px 35px 40px;
    width: 480px;
    background-color: #f9f9fc;
  }
  .cid-tOcRbyGoWq .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tOcRbyGoWq .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tOcRbyGoWq .offcanvas-header .btn-close {
    position: absolute;
    top: 44px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tOcRbyGoWq .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .cid-tOcRbyGoWq .offcanvas-body .mbr-text,
  .cid-tOcRbyGoWq .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tOcRbyGoWq .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #20232a;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tOcRbyGoWq ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tOcRbyGoWq .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tOcRbyGoWq .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-tOcRbyGoWq .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tOcRbyGoWq 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;
  }
  .cid-tOcRbyGoWq li.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #20232a;
    margin-top: 3px;
    transition: all .4s ease;
  }
  .cid-tOcRbyGoWq .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tOcRbyGoWq .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tOcRbyGoWq .nav-item {
    margin: 4px 15px;
  }
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .nav-item {
    margin: 0 !important;
  }
}
.cid-tOcRbyGoWq .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tOcRbyGoWq .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-tOcRbyGoWq .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tOcRbyGoWq .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-tOcRbyGoWq .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tOcRbyGoWq .offcanvas_box {
    display: none;
  }
}
.cid-tOcRbyGoWq .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tOcRbyGoWq .dropdown-item:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tOcRbyGoWq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOcRbyGoWq .nav-link {
  position: relative;
  color: #20232a;
}
.cid-tOcRbyGoWq .container {
  display: flex;
  margin: auto;
}
.cid-tOcRbyGoWq .iconfont-wrapper {
  width: 42px;
  margin: 5px;
  color: #20232a;
  font-size: 21px;
  transition: all 0.2s ease-in-out;
  width: auto;
}
.cid-tOcRbyGoWq .iconfont-wrapper:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .navbar-caption {
  color: #20232a;
}
.cid-tOcRbyGoWq .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-tOcRbyGoWq .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-tOcRbyGoWq .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-tOcRbyGoWq .dropdown-menu,
.cid-tOcRbyGoWq .navbar.opened {
  background: #f9f9fc !important;
}
.cid-tOcRbyGoWq .nav-item:focus,
.cid-tOcRbyGoWq .nav-link:focus {
  outline: none;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOcRbyGoWq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOcRbyGoWq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOcRbyGoWq .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-tOcRbyGoWq .navbar.opened {
  transition: all 0.3s;
}
.cid-tOcRbyGoWq .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tOcRbyGoWq .navbar .navbar-logo img {
  width: auto;
  object-fit: cover;
}
.cid-tOcRbyGoWq .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tOcRbyGoWq .navbar.collapsed {
  justify-content: center;
}
.cid-tOcRbyGoWq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOcRbyGoWq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tOcRbyGoWq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOcRbyGoWq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOcRbyGoWq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOcRbyGoWq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tOcRbyGoWq .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tOcRbyGoWq .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tOcRbyGoWq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOcRbyGoWq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOcRbyGoWq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOcRbyGoWq .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tOcRbyGoWq .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tOcRbyGoWq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOcRbyGoWq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOcRbyGoWq .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tOcRbyGoWq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOcRbyGoWq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOcRbyGoWq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOcRbyGoWq .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-tOcRbyGoWq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOcRbyGoWq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOcRbyGoWq .dropdown-item.active,
.cid-tOcRbyGoWq .dropdown-item:active {
  background-color: transparent;
}
.cid-tOcRbyGoWq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOcRbyGoWq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOcRbyGoWq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOcRbyGoWq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9fc;
}
.cid-tOcRbyGoWq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOcRbyGoWq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOcRbyGoWq ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tOcRbyGoWq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOcRbyGoWq button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f9fc;
  background: #f9f9fc;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #20232a;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq a.nav-link {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}
.cid-tOcRbyGoWq .nav-item:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .nav-item:hover {
    width: 0;
  }
}
.cid-tOcRbyGoWq .icons-menu {
  margin-bottom: 35px;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper {
  margin-bottom: 25px;
  display: block;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper span {
  margin-right: 14px;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper .mbr-text {
  margin: 0;
  display: inline-block;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper:last-child {
  margin-bottom: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOcRbyGoWq .navbar {
    height: 70px;
  }
  .cid-tOcRbyGoWq .navbar.opened {
    height: auto;
  }
  .cid-tOcRbyGoWq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOcRbyGoWq .navbar-caption:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .nav-link:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .mbr-iconfont {
  font-size: 21px;
}
.cid-tOcRbyGoWq .mbr-section-subtitle {
  color: #20232a;
  text-align: left;
}
.cid-tOcRbyGoWq .mbr-text,
.cid-tOcRbyGoWq .iconfont-wrapper {
  color: #20232a;
  text-align: left;
}
.cid-tOcRbyGoWq .text_widget a:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tOj2tK1oZT {
  padding-top: 20rem !important;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/website.JPG");
}
.cid-tOj2tK1oZT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOj2tK1oZT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOj2tK1oZT .mbr-section-subtitle {
  background: #f855a0;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-tOj2tK1oZT .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #ff4712;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tOj2tK1oZT .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #f855a0;
  font-size: 1.5rem;
}
.cid-tOj2tK1oZT .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tOj2tK1oZT .mbr-text,
.cid-tOj2tK1oZT .mbr-section-btn {
  color: #fafaf9;
}
.cid-tOcSL8iLYJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-tOcSL8iLYJ .content {
  display: flex;
  align-items: center;
}
.cid-tOcSL8iLYJ .content-main {
  margin-left: 84px;
}
@media (max-width: 992px) {
  .cid-tOcSL8iLYJ .content-main {
    margin-left: 0;
  }
}
.cid-tOcSL8iLYJ .content-main {
  margin-left: 0;
}
.cid-tOcSL8iLYJ .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #131313;
}
@media (max-width: 992px) {
  .cid-tOcSL8iLYJ .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
.cid-tOcSL8iLYJ .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-tOcSL8iLYJ .mbr-text {
  margin-bottom: 38px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tOcSL8iLYJ .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-tOcSL8iLYJ .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tOcSL8iLYJ .btn:hover {
  box-shadow: none;
}
.cid-tOcSL8iLYJ .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tOcSL8iLYJ .image-wrapper {
    margin-bottom: 61px;
  }
}
.cid-tOcSL8iLYJ .image-wrapper .image-tablet {
  width: 490px;
  height: 370px;
  padding: 1rem;
  border: 6px solid #ffffff;
  border-radius: 5%;
  background: #ffffff;
  margin-left: 30px;
  box-shadow: 0px 0px 20px -5px #65676c;
}
@media (max-width: 1200px) {
  .cid-tOcSL8iLYJ .image-wrapper .image-tablet {
    margin-left: 0;
  }
}
.cid-tOcSL8iLYJ .image-wrapper .image-tablet img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.cid-tOcSL8iLYJ .image-wrapper .image-phone {
  position: absolute;
  bottom: -6%;
  right: 4%;
  width: 170px;
  height: 343px;
  padding: 1rem;
  border: 4px solid #ffffff;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 20px -5px #65676c;
}
@media (max-width: 1400px) {
  .cid-tOcSL8iLYJ .image-wrapper .image-phone {
    right: -12%;
  }
}
@media (max-width: 1200px) {
  .cid-tOcSL8iLYJ .image-wrapper .image-phone {
    right: -18%;
  }
}
@media (max-width: 992px) {
  .cid-tOcSL8iLYJ .image-wrapper .image-phone {
    right: 6rem;
  }
}
.cid-tOcSL8iLYJ .image-wrapper .image-phone img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.cid-tOcSL8iLYJ .mbr-section-title,
.cid-tOcSL8iLYJ .mbr-section-btn {
  color: #ec068d;
}
.cid-tOcSTEAnsx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOcSTEAnsx .content {
  display: flex;
  align-items: center;
}
.cid-tOcSTEAnsx .content-main {
  margin-left: 84px;
}
@media (max-width: 992px) {
  .cid-tOcSTEAnsx .content-main {
    margin-left: 0;
  }
}
.cid-tOcSTEAnsx .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #ec068d;
}
@media (max-width: 992px) {
  .cid-tOcSTEAnsx .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
.cid-tOcSTEAnsx .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-tOcSTEAnsx .mbr-text {
  margin-bottom: 38px;
  color: #d2d2e3;
}
@media (max-width: 992px) {
  .cid-tOcSTEAnsx .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-tOcSTEAnsx .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tOcSTEAnsx .btn:hover {
  box-shadow: none;
}
.cid-tOcSTEAnsx .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tOcSTEAnsx .image-wrapper {
    margin-bottom: 61px;
  }
}
.cid-tOcSTEAnsx .image-wrapper .image-tablet {
  width: 490px;
  height: 370px;
  padding: 1rem;
  border: 6px solid #1f242e;
  border-radius: 5%;
  background: #ffffff;
  margin-left: 30px;
  box-shadow: 0px 0px 20px -5px #65676c;
}
@media (max-width: 1200px) {
  .cid-tOcSTEAnsx .image-wrapper .image-tablet {
    margin-left: 0;
  }
}
.cid-tOcSTEAnsx .image-wrapper .image-tablet img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.cid-tOcSTEAnsx .image-wrapper .image-phone {
  position: absolute;
  bottom: -6%;
  right: 4%;
  width: 170px;
  height: 343px;
  padding: 1rem;
  border: 4px solid #1f242e;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 20px -5px #65676c;
}
@media (max-width: 1400px) {
  .cid-tOcSTEAnsx .image-wrapper .image-phone {
    right: -12%;
  }
}
@media (max-width: 1200px) {
  .cid-tOcSTEAnsx .image-wrapper .image-phone {
    right: -18%;
  }
}
@media (max-width: 992px) {
  .cid-tOcSTEAnsx .image-wrapper .image-phone {
    right: 6rem;
  }
}
.cid-tOcSTEAnsx .image-wrapper .image-phone img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.cid-tOcSTEAnsx .mbr-section-title,
.cid-tOcSTEAnsx .mbr-section-btn {
  color: #f9f9fc;
}
.cid-tOcSUA7MqJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-tOcSUA7MqJ .content {
  display: flex;
  align-items: center;
}
.cid-tOcSUA7MqJ .content-main {
  margin-left: 84px;
}
@media (max-width: 992px) {
  .cid-tOcSUA7MqJ .content-main {
    margin-left: 0;
  }
}
.cid-tOcSUA7MqJ .content-main {
  margin-left: 0;
}
.cid-tOcSUA7MqJ .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #131313;
}
@media (max-width: 992px) {
  .cid-tOcSUA7MqJ .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
.cid-tOcSUA7MqJ .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-tOcSUA7MqJ .mbr-text {
  margin-bottom: 38px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tOcSUA7MqJ .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-tOcSUA7MqJ .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tOcSUA7MqJ .btn:hover {
  box-shadow: none;
}
.cid-tOcSUA7MqJ .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tOcSUA7MqJ .image-wrapper {
    margin-bottom: 61px;
  }
}
.cid-tOcSUA7MqJ .image-wrapper .image-tablet {
  width: 490px;
  height: 370px;
  padding: 1rem;
  border: 6px solid #1f242e;
  border-radius: 5%;
  background: #ffffff;
  margin-left: 30px;
  box-shadow: 0px 0px 20px -5px #65676c;
}
@media (max-width: 1200px) {
  .cid-tOcSUA7MqJ .image-wrapper .image-tablet {
    margin-left: 0;
  }
}
.cid-tOcSUA7MqJ .image-wrapper .image-tablet img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.cid-tOcSUA7MqJ .image-wrapper .image-phone {
  position: absolute;
  bottom: -6%;
  right: 4%;
  width: 170px;
  height: 343px;
  padding: 1rem;
  border: 4px solid #1f242e;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 20px -5px #65676c;
}
@media (max-width: 1400px) {
  .cid-tOcSUA7MqJ .image-wrapper .image-phone {
    right: -12%;
  }
}
@media (max-width: 1200px) {
  .cid-tOcSUA7MqJ .image-wrapper .image-phone {
    right: -18%;
  }
}
@media (max-width: 992px) {
  .cid-tOcSUA7MqJ .image-wrapper .image-phone {
    right: 6rem;
  }
}
.cid-tOcSUA7MqJ .image-wrapper .image-phone img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.cid-tOcSUA7MqJ .mbr-section-title,
.cid-tOcSUA7MqJ .mbr-section-btn {
  color: #ec068d;
}
.cid-tOd4eFYQwT {
  background-color: #f855a0;
}
.cid-tOd4eFYQwT .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-tOd4eFYQwT .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-tOd4eFYQwT .content p {
  margin: 0;
}
.cid-tOd4eFYQwT .mbr-text {
  color: #ffffff;
}
.cid-tOdCVIr5Tt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tOdCVIr5Tt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOdCVIr5Tt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOdCVIr5Tt .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tOdCVIr5Tt .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-tOdCVIr5Tt .container {
    padding: 0 25px;
  }
}
.cid-tOdCVIr5Tt .title-wrapper .mbr-section-title {
  margin-bottom: 35px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}
.cid-tOdCVIr5Tt .list {
  padding: 0;
  margin: 80px 0 0 0;
  list-style-type: none;
  color: #adaeb1;
}
.cid-tOdCVIr5Tt .list .item-wrapper {
  margin-bottom: 16px;
}
.cid-tOdCVIr5Tt .list .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-tOdCVIr5Tt .copyright {
  margin: 16px 0;
  opacity: .5;
  color: #ffffff;
}
.cid-tOdCVIr5Tt .mbr-section-title {
  color: #ffffff;
}
.cid-tOcRbyGoWq .container-fluid {
  padding: 0 1rem;
}
.cid-tOcRbyGoWq .navbar-dropdown {
  background-color: #f9f9fc !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .menu_box .navbar.opened,
  .cid-tOcRbyGoWq .menu_box .navbar-collapse {
    background-color: #f9f9fc !important;
    transition: all 0s ease 0s;
  }
}
.cid-tOcRbyGoWq .navbar-dropdown {
  position: relative !important;
}
.cid-tOcRbyGoWq nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tOcRbyGoWq .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tOcRbyGoWq .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tOcRbyGoWq .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tOcRbyGoWq .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tOcRbyGoWq .offcanvas {
    padding: 55px 35px 40px;
    width: 480px;
    background-color: #f9f9fc;
  }
  .cid-tOcRbyGoWq .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tOcRbyGoWq .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tOcRbyGoWq .offcanvas-header .btn-close {
    position: absolute;
    top: 44px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tOcRbyGoWq .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .cid-tOcRbyGoWq .offcanvas-body .mbr-text,
  .cid-tOcRbyGoWq .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tOcRbyGoWq .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #20232a;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tOcRbyGoWq ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tOcRbyGoWq .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tOcRbyGoWq .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-tOcRbyGoWq .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tOcRbyGoWq 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;
  }
  .cid-tOcRbyGoWq li.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #20232a;
    margin-top: 3px;
    transition: all .4s ease;
  }
  .cid-tOcRbyGoWq .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tOcRbyGoWq .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tOcRbyGoWq .nav-item {
    margin: 4px 15px;
  }
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .nav-item {
    margin: 0 !important;
  }
}
.cid-tOcRbyGoWq .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tOcRbyGoWq .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-tOcRbyGoWq .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tOcRbyGoWq .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-tOcRbyGoWq .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tOcRbyGoWq .offcanvas_box {
    display: none;
  }
}
.cid-tOcRbyGoWq .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tOcRbyGoWq .dropdown-item:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tOcRbyGoWq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOcRbyGoWq .nav-link {
  position: relative;
  color: #20232a;
}
.cid-tOcRbyGoWq .container {
  display: flex;
  margin: auto;
}
.cid-tOcRbyGoWq .iconfont-wrapper {
  width: 42px;
  margin: 5px;
  color: #20232a;
  font-size: 21px;
  transition: all 0.2s ease-in-out;
  width: auto;
}
.cid-tOcRbyGoWq .iconfont-wrapper:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .navbar-caption {
  color: #20232a;
}
.cid-tOcRbyGoWq .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-tOcRbyGoWq .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-tOcRbyGoWq .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-tOcRbyGoWq .dropdown-menu,
.cid-tOcRbyGoWq .navbar.opened {
  background: #f9f9fc !important;
}
.cid-tOcRbyGoWq .nav-item:focus,
.cid-tOcRbyGoWq .nav-link:focus {
  outline: none;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOcRbyGoWq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOcRbyGoWq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOcRbyGoWq .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-tOcRbyGoWq .navbar.opened {
  transition: all 0.3s;
}
.cid-tOcRbyGoWq .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tOcRbyGoWq .navbar .navbar-logo img {
  width: auto;
  object-fit: cover;
}
.cid-tOcRbyGoWq .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tOcRbyGoWq .navbar.collapsed {
  justify-content: center;
}
.cid-tOcRbyGoWq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOcRbyGoWq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tOcRbyGoWq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOcRbyGoWq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOcRbyGoWq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOcRbyGoWq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tOcRbyGoWq .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tOcRbyGoWq .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tOcRbyGoWq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOcRbyGoWq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOcRbyGoWq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOcRbyGoWq .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tOcRbyGoWq .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tOcRbyGoWq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOcRbyGoWq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOcRbyGoWq .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tOcRbyGoWq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOcRbyGoWq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOcRbyGoWq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOcRbyGoWq .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-tOcRbyGoWq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOcRbyGoWq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOcRbyGoWq .dropdown-item.active,
.cid-tOcRbyGoWq .dropdown-item:active {
  background-color: transparent;
}
.cid-tOcRbyGoWq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOcRbyGoWq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOcRbyGoWq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOcRbyGoWq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9fc;
}
.cid-tOcRbyGoWq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOcRbyGoWq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOcRbyGoWq ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tOcRbyGoWq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOcRbyGoWq button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f9fc;
  background: #f9f9fc;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #20232a;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq a.nav-link {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}
.cid-tOcRbyGoWq .nav-item:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .nav-item:hover {
    width: 0;
  }
}
.cid-tOcRbyGoWq .icons-menu {
  margin-bottom: 35px;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper {
  margin-bottom: 25px;
  display: block;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper span {
  margin-right: 14px;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper .mbr-text {
  margin: 0;
  display: inline-block;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper:last-child {
  margin-bottom: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOcRbyGoWq .navbar {
    height: 70px;
  }
  .cid-tOcRbyGoWq .navbar.opened {
    height: auto;
  }
  .cid-tOcRbyGoWq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOcRbyGoWq .navbar-caption:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .nav-link:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .mbr-iconfont {
  font-size: 21px;
}
.cid-tOcRbyGoWq .mbr-section-subtitle {
  color: #20232a;
  text-align: left;
}
.cid-tOcRbyGoWq .mbr-text,
.cid-tOcRbyGoWq .iconfont-wrapper {
  color: #20232a;
  text-align: left;
}
.cid-tOcRbyGoWq .text_widget a:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tOizqtib15 {
  padding-top: 16rem !important;
  padding-bottom: 6rem;
  background-color: #181818;
}
.cid-tOizqtib15 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOizqtib15 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOizqtib15 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tOizqtib15 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tOizqtib15 .container {
    padding: 0 30px;
  }
}
.cid-tOizqtib15 .title-wrapper {
  border-radius: 2em;
  width: 40%;
  margin: 0 auto;
  position: relative;
}
.cid-tOizqtib15 .title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
}
@media (max-width: 1440px) {
  .cid-tOizqtib15 .title-wrapper {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .cid-tOizqtib15 .title-wrapper {
    width: 100%;
  }
}
.cid-tOizqtib15 .title-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tOizqtib15 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tOizqtib15 .title-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-tOizqtib15 .mbr-section-title {
  color: #ffffff;
}
.cid-tOizqtib15 .mbr-text {
  color: #F0F0F0;
  text-align: center;
}
.cid-tOizqtib15 .mbr-section-title,
.cid-tOizqtib15 .mbr-section-btn {
  text-align: center;
}
.cid-tOd6Ngfdoe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-tOd6Ngfdoe .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-tOd6Ngfdoe .card-box {
  z-index: 2;
  position: relative;
}
.cid-tOd6Ngfdoe .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #f855a0;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-tOd6Ngfdoe .mbr-iconfont-big {
  font-size: 14rem;
  color: #f855a0;
  position: absolute;
  bottom: -3rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-tOd6Ngfdoe .card-title,
.cid-tOd6Ngfdoe .card-text {
  transition: all 0.3s;
}
.cid-tOd6Ngfdoe .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #212428;
  transition: all 0.3s;
}
.cid-tOd6Ngfdoe .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-tOd6Ngfdoe .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tOd6Ngfdoe .card-title,
.cid-tOd6Ngfdoe .iconfont-wrapper {
  color: #ffffff;
}
.cid-tOd6Ngfdoe .card-text {
  color: #bbbbbb;
  text-align: left;
}
.cid-tOd6Ngfdoe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tOd6Ngfdoe .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tOd6Ngfdoe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOd6Ngfdoe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOd9tgQL9l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tOd9tgQL9l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOd9tgQL9l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1025px) {
  .cid-tOd9tgQL9l .map-wrapper {
    padding-right: 80px !important;
  }
}
@media (max-width: 991px) {
  .cid-tOd9tgQL9l .map-wrapper {
    height: 650px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tOd9tgQL9l .map-wrapper {
    height: 400px;
  }
}
.cid-tOd9tgQL9l .google-map {
  height: 100%;
  position: relative;
}
.cid-tOd9tgQL9l .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tOd9tgQL9l .google-map [data-state-details] {
  color: #6b6763;
  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-tOd9tgQL9l .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tOd9tgQL9l .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tOd9tgQL9l .text-box {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .cid-tOd9tgQL9l .text-box {
    margin-bottom: 24px;
  }
}
.cid-tOd9tgQL9l .mbr-section-title {
  color: #131313;
}
.cid-tOd9tgQL9l .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-tOd9tgQL9l form {
  width: 100%;
}
.cid-tOd9tgQL9l form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
  z-index: 2;
}
.cid-tOd9tgQL9l form p {
  color: #131313;
}
.cid-tOd9tgQL9l form .mbr-section-btn {
  margin-top: 0;
}
@media (max-width: 991px) {
  .cid-tOd9tgQL9l form .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-tOd9tgQL9l form .mbr-section-btn .btn {
  border-radius: 3px !important;
}
.cid-tOd9tgQL9l form .form-group {
  margin-top: 0 !important;
  margin-bottom: 50px !important;
}
@media (max-width: 991px) {
  .cid-tOd9tgQL9l form .form-group {
    margin-bottom: 30px !important;
  }
}
.cid-tOd9tgQL9l form .form-control {
  height: 66px;
  border: none !important;
  border-bottom: 2px solid #131313 !important;
  box-shadow: none;
  outline: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 12px 20px 0;
  font-size: 18px;
  line-height: 24px;
  color: #131313;
  background: transparent;
  font-weight: 400;
  transition: .3s;
}
.cid-tOd9tgQL9l form .form-control::-webkit-input-placeholder {
  color: #131313;
}
.cid-tOd9tgQL9l form .form-control::-moz-placeholder {
  color: #131313;
}
.cid-tOd9tgQL9l form .form-control:-moz-placeholder {
  color: #131313;
}
.cid-tOd9tgQL9l form .form-control:-ms-input-placeholder {
  color: #131313;
}
.cid-tOd9tgQL9l form select {
  color: #131313 !important;
}
.cid-tOd9tgQL9l form textarea {
  height: 120px !important;
  min-height: 120px !important;
  padding: 20px 12px 20px 0;
  resize: none;
}
.cid-tOd9tgQL9l form textarea::-webkit-input-placeholder {
  color: #131313 !important;
}
.cid-tOd9tgQL9l form textarea::-moz-placeholder {
  color: #131313 !important;
}
.cid-tOd9tgQL9l form textarea:-moz-placeholder {
  color: #131313 !important;
}
.cid-tOd9tgQL9l form textarea:-ms-input-placeholder {
  color: #131313 !important;
}
.cid-tOd9tgQL9l form input,
.cid-tOd9tgQL9l form textarea {
  transition: .3s all;
}
.cid-tOd9tgQL9l form input:active,
.cid-tOd9tgQL9l form textarea:active,
.cid-tOd9tgQL9l form input:focus,
.cid-tOd9tgQL9l form textarea:focus {
  background-color: transparent !important;
  border: none !important;
  border-bottom: 2px solid #f855a0 !important;
  box-shadow: none !important;
  outline: none !important;
}
.cid-tOd9tgQL9l form input:active::-webkit-input-placeholder,
.cid-tOd9tgQL9l form textarea:active::-webkit-input-placeholder,
.cid-tOd9tgQL9l form input:focus::-webkit-input-placeholder,
.cid-tOd9tgQL9l form textarea:focus::-webkit-input-placeholder {
  color: #131313 !important;
}
.cid-tOd9tgQL9l form input:active::-moz-placeholder,
.cid-tOd9tgQL9l form textarea:active::-moz-placeholder,
.cid-tOd9tgQL9l form input:focus::-moz-placeholder,
.cid-tOd9tgQL9l form textarea:focus::-moz-placeholder {
  color: #131313 !important;
}
.cid-tOd9tgQL9l form input:active:-moz-placeholder,
.cid-tOd9tgQL9l form textarea:active:-moz-placeholder,
.cid-tOd9tgQL9l form input:focus:-moz-placeholder,
.cid-tOd9tgQL9l form textarea:focus:-moz-placeholder {
  color: #131313 !important;
}
.cid-tOd9tgQL9l form input:active:-ms-input-placeholder,
.cid-tOd9tgQL9l form textarea:active:-ms-input-placeholder,
.cid-tOd9tgQL9l form input:focus:-ms-input-placeholder,
.cid-tOd9tgQL9l form textarea:focus:-ms-input-placeholder {
  color: #131313 !important;
}
.cid-tOd9tgQL9l form .row {
  flex-wrap: wrap;
  margin-left: -12px !important;
  margin-right: -12px !important;
}
.cid-tOd9tgQL9l form .row [class*=col] {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.cid-tOd9tgQL9l form label {
  width: 100%;
  color: #131313;
  margin-bottom: 12px;
}
.cid-tOd9tgQL9l form .form-check label {
  color: #131313;
}
.cid-tOd9tgQL9l form .form-check-input {
  border-color: #131313 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tOd9tgQL9l form .form-check-input:focus,
.cid-tOd9tgQL9l form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #FC7942 !important;
}
.cid-tOd9tgQL9l form .form-check-input:checked {
  border-color: #FC7942 !important;
  background-color: #FC7942 !important;
}
.cid-tOdCVIr5Tt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tOdCVIr5Tt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOdCVIr5Tt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOdCVIr5Tt .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tOdCVIr5Tt .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-tOdCVIr5Tt .container {
    padding: 0 25px;
  }
}
.cid-tOdCVIr5Tt .title-wrapper .mbr-section-title {
  margin-bottom: 35px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}
.cid-tOdCVIr5Tt .list {
  padding: 0;
  margin: 80px 0 0 0;
  list-style-type: none;
  color: #adaeb1;
}
.cid-tOdCVIr5Tt .list .item-wrapper {
  margin-bottom: 16px;
}
.cid-tOdCVIr5Tt .list .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-tOdCVIr5Tt .copyright {
  margin: 16px 0;
  opacity: .5;
  color: #ffffff;
}
.cid-tOdCVIr5Tt .mbr-section-title {
  color: #ffffff;
}
.cid-tOivXnjSL3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #1f1d1a;
}
.cid-tOivXnjSL3 .row {
  justify-content: center;
}
.cid-tOivXnjSL3 .col-title {
  margin-bottom: 2.5rem;
}
.cid-tOivXnjSL3 .mbr-section-title {
  color: #F6B7D2;
}
.cid-tOivXnjSL3 .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1.5rem;
}
.cid-tOivXnjSL3 .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOivXnjSL3 .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .cid-tOivXnjSL3 .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tOivXnjSL3 .card {
  display: flex;
  width: 100%;
  border-radius: 0.75rem;
  min-height: 400px;
}
@media (max-width: 639px) {
  .cid-tOivXnjSL3 .card {
    min-height: 276px;
  }
}
.cid-tOivXnjSL3 .card-1 {
  background-color: #44af69;
}
.cid-tOivXnjSL3 .card-2 {
  background-color: #75083a;
}
.cid-tOivXnjSL3 .card-3 {
  background-color: #ff4545;
}
.cid-tOivXnjSL3 .card-4 {
  background-color: #fed243;
}
.cid-tOivXnjSL3 .card-5 {
  background-color: #44af69;
}
.cid-tOivXnjSL3 .card-6 {
  background-color: #ff7f11;
}
.cid-tOivXnjSL3 .card:hover .card-img-bg img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tOivXnjSL3 .card:hover .card-title {
  text-decoration: underline;
}
.cid-tOivXnjSL3 .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  position: relative;
}
.cid-tOivXnjSL3 .card-img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.75rem;
  border-top-right-radius: 100px;
  overflow: hidden;
}
.cid-tOivXnjSL3 .card-img-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: .3s;
}
.cid-tOivXnjSL3 .card-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  padding: 96px 16px 24px;
  position: relative;
  z-index: 5;
}
.cid-tOivXnjSL3 .card-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(to bottom, transparent, #000000);
  mix-blend-mode: multiply;
  transform: matrix(1, 0, 0, 1, 0, 1);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.cid-tOivXnjSL3 .card-title {
  width: 100%;
  margin-bottom: 0;
  color: #FCF0D5;
  position: relative;
  z-index: 11;
}
.cid-tOivXnjSL3 .card-text {
  width: 100%;
  color: #FCF0D5;
  margin-top: 0.25rem;
  margin-bottom: 0;
  position: relative;
  z-index: 11;
}
.cid-tOdCVIr5Tt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tOdCVIr5Tt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOdCVIr5Tt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOdCVIr5Tt .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tOdCVIr5Tt .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-tOdCVIr5Tt .container {
    padding: 0 25px;
  }
}
.cid-tOdCVIr5Tt .title-wrapper .mbr-section-title {
  margin-bottom: 35px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}
.cid-tOdCVIr5Tt .list {
  padding: 0;
  margin: 80px 0 0 0;
  list-style-type: none;
  color: #adaeb1;
}
.cid-tOdCVIr5Tt .list .item-wrapper {
  margin-bottom: 16px;
}
.cid-tOdCVIr5Tt .list .item-wrapper:last-child {
  margin-bottom: 0;
}
.cid-tOdCVIr5Tt .copyright {
  margin: 16px 0;
  opacity: .5;
  color: #ffffff;
}
.cid-tOdCVIr5Tt .mbr-section-title {
  color: #ffffff;
}
.cid-tOcRbyGoWq .container-fluid {
  padding: 0 1rem;
}
.cid-tOcRbyGoWq .navbar-dropdown {
  background-color: #f9f9fc !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .menu_box .navbar.opened,
  .cid-tOcRbyGoWq .menu_box .navbar-collapse {
    background-color: #f9f9fc !important;
    transition: all 0s ease 0s;
  }
}
.cid-tOcRbyGoWq .navbar-dropdown {
  position: relative !important;
}
.cid-tOcRbyGoWq nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tOcRbyGoWq .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-tOcRbyGoWq .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-tOcRbyGoWq .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tOcRbyGoWq .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tOcRbyGoWq .offcanvas {
    padding: 55px 35px 40px;
    width: 300px;
    background-color: #f9f9fc;
  }
  .cid-tOcRbyGoWq .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tOcRbyGoWq .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tOcRbyGoWq .offcanvas-header .btn-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tOcRbyGoWq .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .cid-tOcRbyGoWq .offcanvas-body .mbr-text,
  .cid-tOcRbyGoWq .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tOcRbyGoWq .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #20232a;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tOcRbyGoWq .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tOcRbyGoWq ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tOcRbyGoWq .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tOcRbyGoWq .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-tOcRbyGoWq .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tOcRbyGoWq 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;
  }
  .cid-tOcRbyGoWq li.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #20232a;
    margin-top: 3px;
    transition: all .4s ease;
  }
  .cid-tOcRbyGoWq .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tOcRbyGoWq .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tOcRbyGoWq .nav-item {
    margin: 4px 15px;
  }
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .nav-item {
    margin: 0 !important;
  }
}
.cid-tOcRbyGoWq .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tOcRbyGoWq .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-tOcRbyGoWq .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tOcRbyGoWq .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-tOcRbyGoWq .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tOcRbyGoWq .offcanvas_box {
    display: none;
  }
}
.cid-tOcRbyGoWq .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tOcRbyGoWq .dropdown-item:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tOcRbyGoWq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOcRbyGoWq .nav-link {
  position: relative;
  color: #20232a;
}
.cid-tOcRbyGoWq .container {
  display: flex;
  margin: auto;
}
.cid-tOcRbyGoWq .iconfont-wrapper {
  width: 42px;
  margin: 5px;
  color: #20232a;
  font-size: 21px;
  transition: all 0.2s ease-in-out;
  width: auto;
}
.cid-tOcRbyGoWq .iconfont-wrapper:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .navbar-caption {
  color: #20232a;
}
.cid-tOcRbyGoWq .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-tOcRbyGoWq .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-tOcRbyGoWq .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-tOcRbyGoWq .dropdown-menu,
.cid-tOcRbyGoWq .navbar.opened {
  background: #f9f9fc !important;
}
.cid-tOcRbyGoWq .nav-item:focus,
.cid-tOcRbyGoWq .nav-link:focus {
  outline: none;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOcRbyGoWq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOcRbyGoWq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOcRbyGoWq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOcRbyGoWq .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-tOcRbyGoWq .navbar.opened {
  transition: all 0.3s;
}
.cid-tOcRbyGoWq .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tOcRbyGoWq .navbar .navbar-logo img {
  width: auto;
  object-fit: cover;
}
.cid-tOcRbyGoWq .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tOcRbyGoWq .navbar.collapsed {
  justify-content: center;
}
.cid-tOcRbyGoWq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOcRbyGoWq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tOcRbyGoWq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOcRbyGoWq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOcRbyGoWq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOcRbyGoWq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tOcRbyGoWq .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tOcRbyGoWq .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tOcRbyGoWq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOcRbyGoWq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOcRbyGoWq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOcRbyGoWq .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tOcRbyGoWq .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tOcRbyGoWq .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tOcRbyGoWq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOcRbyGoWq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOcRbyGoWq .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tOcRbyGoWq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOcRbyGoWq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOcRbyGoWq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOcRbyGoWq .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-tOcRbyGoWq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOcRbyGoWq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOcRbyGoWq .dropdown-item.active,
.cid-tOcRbyGoWq .dropdown-item:active {
  background-color: transparent;
}
.cid-tOcRbyGoWq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOcRbyGoWq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOcRbyGoWq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOcRbyGoWq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9fc;
}
.cid-tOcRbyGoWq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOcRbyGoWq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOcRbyGoWq ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tOcRbyGoWq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOcRbyGoWq button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f9fc;
  background: #f9f9fc;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #20232a;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOcRbyGoWq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOcRbyGoWq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOcRbyGoWq a.nav-link {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}
.cid-tOcRbyGoWq .nav-item:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tOcRbyGoWq .nav-item:hover {
    width: 0;
  }
}
.cid-tOcRbyGoWq .icons-menu {
  margin-bottom: 35px;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper {
  margin-bottom: 25px;
  display: block;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper span {
  margin-right: 14px;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper .mbr-text {
  margin: 0;
  display: inline-block;
}
.cid-tOcRbyGoWq .icons-menu .iconfont-wrapper:last-child {
  margin-bottom: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOcRbyGoWq .navbar {
    height: 70px;
  }
  .cid-tOcRbyGoWq .navbar.opened {
    height: auto;
  }
  .cid-tOcRbyGoWq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOcRbyGoWq .navbar-caption:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .nav-link:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq .mbr-iconfont {
  font-size: 21px;
}
.cid-tOcRbyGoWq .mbr-section-subtitle {
  color: #20232a;
  text-align: left;
}
.cid-tOcRbyGoWq .mbr-text,
.cid-tOcRbyGoWq .iconfont-wrapper {
  color: #20232a;
  text-align: left;
}
.cid-tOcRbyGoWq .text_widget a:hover {
  color: #f855a0;
}
.cid-tOcRbyGoWq a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
