@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
body {
  font-family: Finlandica;
}
.display-1 {
  font-family: 'Finlandica', sans-serif;
  font-size: 7.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.375rem;
}
.display-2 {
  font-family: 'Finlandica', sans-serif;
  font-size: 4.375rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 5.46875rem;
}
.display-4 {
  font-family: 'Finlandica', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-5 {
  font-family: 'Finlandica', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Finlandica', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.25rem;
    font-size: calc( 3.2749999999999995rem + (7.5 - 3.2749999999999995) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.2749999999999995rem + (7.5 - 3.2749999999999995) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.5rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ff1182 !important;
}
.bg-success {
  background-color: #8fff32 !important;
}
.bg-info {
  background-color: #312ca8 !important;
}
.bg-warning {
  background-color: #ff1182 !important;
}
.bg-danger {
  background-color: #13171f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff1182 !important;
  border-color: #ff1182 !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: #b90058 !important;
  border-color: #b90058 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b90058 !important;
  border-color: #b90058 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6b67ce !important;
  border-color: #6b67ce !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: #3b36a8 !important;
  border-color: #3b36a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3b36a8 !important;
  border-color: #3b36a8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #312ca8 !important;
  border-color: #312ca8 !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: #1d1a63 !important;
  border-color: #1d1a63 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1d1a63 !important;
  border-color: #1d1a63 !important;
}
.btn-success,
.btn-success:active {
  background-color: #8fff32 !important;
  border-color: #8fff32 !important;
  color: #173200 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #63da00 !important;
  border-color: #63da00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #173200 !important;
  background-color: #63da00 !important;
  border-color: #63da00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff1182 !important;
  border-color: #ff1182 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #b90058 !important;
  border-color: #b90058 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b90058 !important;
  border-color: #b90058 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #13171f !important;
  border-color: #13171f !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
  color: #3a4e69 !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: #ffffff !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #3a4e69 !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
}
.btn-black,
.btn-black:active {
  background-color: #212428 !important;
  border-color: #212428 !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: #ff1182;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b90058 !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: #ff1182 !important;
  border-color: #ff1182 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6b67ce;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #3b36a8 !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: #6b67ce !important;
  border-color: #6b67ce !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #312ca8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #1d1a63 !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: #312ca8 !important;
  border-color: #312ca8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8fff32;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #63da00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #173200 !important;
  background-color: #8fff32 !important;
  border-color: #8fff32 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff1182;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b90058 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff1182 !important;
  border-color: #ff1182 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #13171f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !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: #13171f !important;
  border-color: #13171f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #212428;
}
.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: #212428 !important;
  border-color: #212428 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c4cfde;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #8ca2bf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #3a4e69 !important;
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
}
.text-primary {
  color: #ff1182 !important;
}
.text-secondary {
  color: #6b67ce !important;
}
.text-success {
  color: #8fff32 !important;
}
.text-info {
  color: #312ca8 !important;
}
.text-warning {
  color: #ff1182 !important;
}
.text-danger {
  color: #13171f !important;
}
.text-white {
  color: #C4CFDE !important;
}
.text-black {
  color: #212428 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #aa0051 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #37329d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5ccb00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #191757 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #aa0051 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #839ab9 !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: #ff1182;
}
.nav-tabs .nav-link:not(.active) {
  color: #212428;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #312ca8;
}
.alert-warning {
  background-color: #ff1182;
}
.alert-danger {
  background-color: #13171f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff1182;
  border-color: #ff1182;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff1182;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffdded;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fefffe;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #7c78dc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffdded;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #bfc7d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Finlandica', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2.125rem;
}
.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: #ff1182 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Finlandica', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.125rem;
}
blockquote {
  border-color: #ff1182;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff1182;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff1182;
}
.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: #ff1182;
  border-bottom-color: #ff1182;
}
.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: #ff1182 !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: #6b67ce !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='%23ff1182' %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-duration: .3s;
  transition: 0.3s;
}
a:hover {
  background-image: none !important;
}
.container-fluid {
  padding-left: 120px;
  padding-right: 120px;
}
@media (max-width: 1199px) {
  .container-fluid {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #1c1e22, -10px -10px 19px #262a2e !important;
  transform-style: preserve-3d;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.custom-section-btn .btn {
  position: relative;
  transition: 0.4s all !important;
  border: none !important;
  align-items: baseline;
}
.custom-section-btn .btn-black {
  color: #ff1182 !important;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
}
.custom-section-btn .btn-black:hover {
  color: #ff1182 !important;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  transform: translateY(-5px);
}
.custom-section-btn .btn-white {
  color: #ff1182 !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
}
.custom-section-btn .btn-white:hover {
  color: #ff1182 !important;
  background: #FFFFFF !important;
  transform: translateY(-5px);
}
.cid-thXKMbTk5w {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 0;
}
.cid-thXKMbTk5w nav.navbar {
  position: fixed;
}
.cid-thXKMbTk5w .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thXKMbTk5w .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-thXKMbTk5w .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-thXKMbTk5w .dropdown-item:hover,
.cid-thXKMbTk5w .dropdown-item:focus {
  background: #ff1182 !important;
  color: white !important;
}
.cid-thXKMbTk5w .dropdown-item:hover span {
  color: white;
}
.cid-thXKMbTk5w .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-thXKMbTk5w .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-thXKMbTk5w .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-thXKMbTk5w .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-thXKMbTk5w .nav-link {
  position: relative;
}
.cid-thXKMbTk5w .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-thXKMbTk5w .container {
    flex-wrap: nowrap;
  }
}
.cid-thXKMbTk5w .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-thXKMbTk5w .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-thXKMbTk5w .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-thXKMbTk5w .navbar-nav .nav-item .nav-link:hover,
.cid-thXKMbTk5w .navbar-nav .nav-item .nav-link:focus,
.cid-thXKMbTk5w .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-thXKMbTk5w .dropdown-menu,
.cid-thXKMbTk5w .navbar.opened {
  background: #000000 !important;
}
.cid-thXKMbTk5w .nav-item:focus,
.cid-thXKMbTk5w .nav-link:focus {
  outline: none;
}
.cid-thXKMbTk5w .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-thXKMbTk5w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-thXKMbTk5w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-thXKMbTk5w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thXKMbTk5w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-thXKMbTk5w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-thXKMbTk5w .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-thXKMbTk5w .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-thXKMbTk5w .navbar.opened {
  transition: all 0.3s;
}
.cid-thXKMbTk5w .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-thXKMbTk5w .navbar .navbar-logo img {
  width: auto;
}
.cid-thXKMbTk5w .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-thXKMbTk5w .navbar.collapsed {
  justify-content: center;
}
.cid-thXKMbTk5w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-thXKMbTk5w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-thXKMbTk5w .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-thXKMbTk5w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-thXKMbTk5w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-thXKMbTk5w .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-thXKMbTk5w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-thXKMbTk5w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-thXKMbTk5w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-thXKMbTk5w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-thXKMbTk5w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-thXKMbTk5w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-thXKMbTk5w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-thXKMbTk5w .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-thXKMbTk5w .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-thXKMbTk5w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-thXKMbTk5w .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-thXKMbTk5w .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-thXKMbTk5w .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-thXKMbTk5w .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-thXKMbTk5w .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-thXKMbTk5w .navbar.navbar-short {
  min-height: 90px;
}
.cid-thXKMbTk5w .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-thXKMbTk5w .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-thXKMbTk5w .navbar {
    min-height: 80px;
  }
}
.cid-thXKMbTk5w .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-thXKMbTk5w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-thXKMbTk5w .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-thXKMbTk5w .navbar-brand {
    min-height: 69px;
  }
}
.cid-thXKMbTk5w .dropdown-item.active,
.cid-thXKMbTk5w .dropdown-item:active {
  background-color: transparent;
}
.cid-thXKMbTk5w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-thXKMbTk5w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-thXKMbTk5w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-thXKMbTk5w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-thXKMbTk5w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-thXKMbTk5w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thXKMbTk5w ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-thXKMbTk5w .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-thXKMbTk5w button.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #000000;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-thXKMbTk5w button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ff1182;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-thXKMbTk5w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-thXKMbTk5w nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thXKMbTk5w nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-thXKMbTk5w nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-thXKMbTk5w nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thXKMbTk5w .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-thXKMbTk5w a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thXKMbTk5w .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-thXKMbTk5w .navbar {
    height: 70px;
  }
  .cid-thXKMbTk5w .navbar.opened {
    height: auto;
  }
  .cid-thXKMbTk5w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thXKMbTk5w .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #000000;
}
@media (max-width: 575px) {
  .cid-thXKMbTk5w .navbar-short {
    min-height: 70px;
  }
}
.cid-thXKMbTk5w .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-thXKMbTk5w .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-thXKMbTk5w .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-thXKMbTk5w .container-fluid {
    padding: 0 3px;
  }
}
.cid-thXKMbTk5w .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-thXKMbTk5w .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-thXKMbTk5w .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-thXKMbTk5w .container-fluid {
    flex-wrap: wrap;
  }
  .cid-thXKMbTk5w button.navbar-toggler {
    display: flex;
  }
  .cid-thXKMbTk5w .navbar-brand {
    width: auto !important;
  }
  .cid-thXKMbTk5w .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-thXKMbTk5w .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-thXKMbTk5w .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-thXKMbTk5w .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-thXKMbTk5w .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-thXKMbTk5w .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-thXKN5Vkvt {
  padding-top: 6rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #16181c;
}
.cid-thXKN5Vkvt .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXKN5Vkvt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXKN5Vkvt .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-thXKN5Vkvt .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-thXKN5Vkvt .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-thXKN5Vkvt .col-text {
  display: flex;
  text-align: justify;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-thXKN5Vkvt .col-text {
    order: 2;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-thXKN5Vkvt .col-text {
    margin-top: 20px;
  }
}
.cid-thXKN5Vkvt .text-wrapper {
  width: 100%;
}
.cid-thXKN5Vkvt .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-thXKN5Vkvt .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 22px;
}
.cid-thXKN5Vkvt .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-thXKN5Vkvt .mbr-text {
  color: #C4CFDE;
  padding-right: 16%;
  opacity: 0.9;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cid-thXKN5Vkvt .mbr-text {
    padding-right: 0;
  }
}
.cid-thXKN5Vkvt .mbr-section-btn {
  margin-top: 20px;
}
.cid-thXKN5Vkvt .social-container {
  width: 100%;
  padding-top: 125px;
}
@media (max-width: 991px) {
  .cid-thXKN5Vkvt .social-container {
    padding-top: 40px;
  }
}
.cid-thXKN5Vkvt .social-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-thXKN5Vkvt .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px -12px;
}
.cid-thXKN5Vkvt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-thXKN5Vkvt .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-thXKN5Vkvt .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-thXKN5Vkvt .soc-item:hover {
  transform: translateY(-3px);
}
.cid-thXKN5Vkvt .soc-item:hover:before {
  opacity: 1;
}
.cid-thXKN5Vkvt .col-img {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-thXKN5Vkvt .col-img {
    order: 1;
  }
}
.cid-thXKN5Vkvt .image-wrapper {
  position: relative;
  width: 100%;
}
.cid-thXKN5Vkvt .image-wrapper img {
  position: relative;
  z-index: 5;
  object-fit: cover;
  width: 100%;
}
.cid-thXKN5Vkvt .img-bg {
  content: "";
  position: absolute;
  z-index: 4;
  width: 100%;
  height: calc(100% - 130px);
  left: 0;
  bottom: 0;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border-radius: 6px;
}
.cid-thXKN5Vkvt .mbr-text,
.cid-thXKN5Vkvt .mbr-section-btn {
  color: #ffffff;
}
.cid-uFUuyiAsRL {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFUuyiAsRL .mbr-section-head {
  width: 100%;
}
.cid-uFUuyiAsRL .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-thXOFoR04R {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXOFoR04R .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-thXOFoR04R .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-thXOFoR04R .row {
  margin-left: -20px;
  margin-right: -20px;
  justify-content: flex-start;
}
.cid-thXOFoR04R .row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 991px) {
  .cid-thXOFoR04R .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thXOFoR04R .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thXOFoR04R .mbr-section-head {
  width: 100%;
  padding-bottom: 40px;
}
.cid-thXOFoR04R .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-thXOFoR04R .mbr-section-title {
    text-align: center;
  }
}
.cid-thXOFoR04R .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thXOFoR04R .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-thXOFoR04R .card-row {
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-thXOFoR04R .cards-container-2 {
    margin-top: 50px;
  }
}
.cid-thXOFoR04R .cards-head {
  width: 100%;
}
.cid-thXOFoR04R .cards-title {
  color: #FF014E;
}
.cid-thXOFoR04R .cards-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thXOFoR04R .cards-subtitle {
    margin-top: 10px;
  }
}
.cid-thXOFoR04R .cards-list {
  width: 100%;
  margin-top: 30px;
  padding-left: 20px;
  border-left: 5px solid #16181c;
}
.cid-thXOFoR04R .card {
  overflow: visible;
}
.cid-thXOFoR04R .card:not(:first-child) {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-thXOFoR04R .card:not(:first-child) {
    margin-top: 30px;
  }
}
.cid-thXOFoR04R .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: visible;
  padding: 45px 40px;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-thXOFoR04R .card-wrapper {
    padding: 30px 25px;
  }
}
@media (max-width: 991px) {
  .cid-thXOFoR04R .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-thXOFoR04R .card-wrapper {
    padding: 20px;
  }
}
.cid-thXOFoR04R .card-wrapper:before {
  position: absolute;
  content: "";
  width: 28px;
  height: 5px;
  right: 100%;
  top: 63px;
  transform: translateY(-7px);
  background: #16181c;
  z-index: 0;
}
.cid-thXOFoR04R .card-wrapper:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 5px solid #16181c;
  border-radius: 100%;
  left: -43.5px;
  top: 55px;
  transform: translateY(-7px);
  background: #212428;
  transition: .4s all;
}
.cid-thXOFoR04R .card-wrapper:hover:after {
  background: #ff1182;
}
.cid-thXOFoR04R .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-thXOFoR04R .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-thXOFoR04R .card-wrapper:hover .card-subtitle {
  color: #ffffff !important;
}
.cid-thXOFoR04R .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-thXOFoR04R .card-box {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-thXOFoR04R .card-text-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #ff1182;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .cid-thXOFoR04R .card-text-container {
    flex-wrap: wrap;
  }
}
.cid-thXOFoR04R .card-text-wrap {
  margin-bottom: 15px;
  margin-right: auto;
  padding-right: 10px;
}
@media (max-width: 1199px) {
  .cid-thXOFoR04R .card-text-wrap {
    width: 100%;
    padding-right: 0;
  }
}
.cid-thXOFoR04R .card-title {
  color: #C4CFDE;
  margin-bottom: 7px;
  transition: .5s all;
}
.cid-thXOFoR04R .card-subtitle {
  color: #878e99;
  transition: .5s all;
  margin-bottom: 0;
}
.cid-thXOFoR04R .card-text-label {
  padding: 7px 15px;
  border-radius: 6px;
  margin-left: auto;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-thXOFoR04R .card-text-label {
    margin-left: 0;
  }
}
.cid-thXOFoR04R .card-label {
  color: #FF014E;
  margin-bottom: 0;
}
.cid-thXOFoR04R .card-text {
  color: #ffffff;
  margin-bottom: 0;
  transition: .5s all;
  text-align: justify;
}
.cid-uFUHYJFimY {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFUHYJFimY .mbr-section-head {
  width: 100%;
}
.cid-uFUHYJFimY .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-uFUHEKaFKA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFUHEKaFKA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUHEKaFKA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUHEKaFKA .container {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1599px) {
  .cid-uFUHEKaFKA .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.cid-uFUHEKaFKA .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: flex-start;
}
.cid-uFUHEKaFKA .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-uFUHEKaFKA .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .cid-uFUHEKaFKA .row > [class*="col"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-uFUHEKaFKA .mbr-section-head {
  width: 100%;
}
.cid-uFUHEKaFKA .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-uFUHEKaFKA .mbr-section-title {
    text-align: center;
  }
}
.cid-uFUHEKaFKA .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uFUHEKaFKA .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-uFUHEKaFKA .card-row {
  align-items: stretch;
}
.cid-uFUHEKaFKA .item {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-uFUHEKaFKA .item {
    margin-top: 00px;
  }
}
.cid-uFUHEKaFKA .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-uFUHEKaFKA .item-wrapper {
    padding: 10px;
  }
}
.cid-uFUHEKaFKA .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-uFUHEKaFKA .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-uFUHEKaFKA .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .4s all;
}
.cid-uFUHEKaFKA .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-uFUHEKaFKA .item-img img {
  width: 100%;
  aspect-ratio: 0.6;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-uFUHEKaFKA .card-box {
  position: relative;
  z-index: 5;
  padding-top: 10px;
}
.cid-uFUHEKaFKA .card-title {
  position: relative;
  z-index: 5;
  color: #ff1182;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-uFUHEKaFKA .card-title {
    margin-bottom: 10px;
  }
}
.cid-uFUHEKaFKA .card-text {
  position: relative;
  z-index: 5;
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-uFUHEKaFKA .card-text a {
  transition: .4s all;
}
.cid-uFUHEKaFKA .card-text a:hover {
  color: #ff1182 !important;
}
.cid-uFUHoLjTPA {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFUHoLjTPA .mbr-section-head {
  width: 100%;
}
.cid-uFUHoLjTPA .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-thXQ3qOT1c {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXQ3qOT1c .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXQ3qOT1c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXQ3qOT1c .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-thXQ3qOT1c .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-thXQ3qOT1c .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-thXQ3qOT1c .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
.cid-thXQ3qOT1c .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 15px;
}
.cid-thXQ3qOT1c .border-item {
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  background-color: #ff1182;
}
.cid-thXQ3qOT1c .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
  text-align: justify;
}
.cid-thXQ3qOT1c H5 {
  text-align: center;
}
.cid-uFUHVxMUZD {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFUHVxMUZD .mbr-section-head {
  width: 100%;
}
.cid-uFUHVxMUZD .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-thXNOs2iZq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-thXNOs2iZq .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXNOs2iZq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  position: absolute;
  top: 0;
}
.cid-thXNOs2iZq .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-thXNOs2iZq .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-thXNOs2iZq .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-thXNOs2iZq .col-img {
  padding: 10px;
}
@media (min-width: 992px) {
  .cid-thXNOs2iZq .col-img {
    padding-right: 60px !important;
  }
}
.cid-thXNOs2iZq .col-text {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-thXNOs2iZq .col-text {
    order: 2;
  }
}
.cid-thXNOs2iZq .text-wrapper {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-thXNOs2iZq .text-wrapper {
    margin-top: 20px;
  }
}
.cid-thXNOs2iZq .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-thXNOs2iZq .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 22px;
}
.cid-thXNOs2iZq .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-thXNOs2iZq .mbr-text {
  color: #C4CFDE;
  text-align: justify;
  margin-bottom: 20px;
  padding-right: 16%;
}
@media (max-width: 991px) {
  .cid-thXNOs2iZq .mbr-text {
    padding-right: 0;
  }
}
.cid-thXNOs2iZq .mbr-section-btn {
  margin-top: 20px;
}
.cid-thXNOs2iZq .social-container {
  width: 100%;
  padding-top: 90px;
}
@media (max-width: 991px) {
  .cid-thXNOs2iZq .social-container {
    padding-top: 40px;
  }
}
.cid-thXNOs2iZq .social-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-thXNOs2iZq .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px -12px;
}
.cid-thXNOs2iZq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-thXNOs2iZq .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-thXNOs2iZq .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-thXNOs2iZq .soc-item:hover {
  transform: translateY(-3px);
}
.cid-thXNOs2iZq .soc-item:hover:before {
  opacity: 1;
}
.cid-thXNOs2iZq .img-wrapper {
  padding: 15px;
  border-radius: 6px;
  position: relative;
  width: 100%;
  height: 830px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-thXNOs2iZq .img-box {
  width: 100%;
  height: 800px;
  border-radius: 6px;
  overflow: hidden;
}
.cid-thXNOs2iZq .img-box img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  aspect-ratio: 0.87102178;
}
.cid-thXNOs2iZq .mbr-text,
.cid-thXNOs2iZq .mbr-section-btn {
  color: #ffffff;
}
.cid-thXOPqy2QT {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXOPqy2QT .mbr-section-head {
  width: 100%;
}
.cid-thXOPqy2QT .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-thXQXNE6z1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-thXQXNE6z1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXQXNE6z1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXQXNE6z1 .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-thXQXNE6z1 .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-thXQXNE6z1 .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-thXQXNE6z1 .head-container {
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-thXQXNE6z1 {
    overflow: hidden;
  }
}
.cid-thXQXNE6z1 .section-head {
  position: sticky;
  top: 160px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-thXQXNE6z1 .section-head {
    position: static;
    margin-bottom: 60px;
  }
}
.cid-thXQXNE6z1 .mbr-section-title {
  color: #FF014E;
}
.cid-thXQXNE6z1 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thXQXNE6z1 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thXQXNE6z1 .tabs-main-container {
  width: calc(100% - 10px);
  margin-left: 10px;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 991px) {
  .cid-thXQXNE6z1 .tabs-main-container {
    margin-left: 0;
    width: 100%;
  }
}
.cid-thXQXNE6z1 .tabs-main-wrap {
  width: 100%;
}
.cid-thXQXNE6z1 .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 10px;
  border: none !important;
  background: transparent;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-thXQXNE6z1 .nav-tabs .nav-item.open .nav-link:focus,
.cid-thXQXNE6z1 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-thXQXNE6z1 .nav-item {
  display: flex;
  align-items: center;
  flex-basis: 33.33%;
  margin: 0;
  flex-grow: 1;
  transition: all .4s;
}
@media (max-width: 575px) {
  .cid-thXQXNE6z1 .nav-item {
    flex-basis: 100%;
  }
}
.cid-thXQXNE6z1 .nav-tabs .nav-link {
  width: 100%;
  text-align: center;
  display: block;
  padding: 26px 10px;
  border-radius: 6px;
  transition: all .4s;
  background: transparent;
  border: none;
}
.cid-thXQXNE6z1 .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
.cid-thXQXNE6z1 .nav-tabs .nav-link:hover,
.cid-thXQXNE6z1 .nav-tabs .nav-link:focus {
  background: transparent;
  color: #ff1182;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-thXQXNE6z1 .nav-tabs .nav-link.active {
  background: transparent;
  color: #ff1182;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-thXQXNE6z1 .tab-content {
  padding: 55px 50px 60px;
}
@media (max-width: 991px) {
  .cid-thXQXNE6z1 .tab-content {
    padding: 55px 30px 30px;
  }
}
@media (max-width: 575px) {
  .cid-thXQXNE6z1 .tab-content {
    padding: 55px 25px 25px;
  }
}
.cid-thXQXNE6z1 .pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-thXQXNE6z1 .pricing-header {
    padding-bottom: 40px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-thXQXNE6z1 .pricing-header {
    padding-bottom: 25px;
  }
}
.cid-thXQXNE6z1 .card-text-wrap {
  margin-right: auto;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .cid-thXQXNE6z1 .card-text-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.cid-thXQXNE6z1 .card-title {
  color: #ffffff;
  margin-bottom: 9px;
}
.cid-thXQXNE6z1 .card-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-thXQXNE6z1 .card-text-label {
  padding: 9px 25px;
  border-radius: 6px;
  margin-left: auto;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 991px) {
  .cid-thXQXNE6z1 .card-text-label {
    margin-left: 0;
  }
}
.cid-thXQXNE6z1 .card-label {
  color: #FF014E;
  margin-bottom: 0;
}
.cid-thXQXNE6z1 .pricing-body {
  width: 100%;
}
.cid-thXQXNE6z1 .mbr-text {
  color: #ffffff;
  max-width: 84%;
  text-align: left;
}
.cid-thXQXNE6z1 .list-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .cid-thXQXNE6z1 .list-container {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.cid-thXQXNE6z1 .list-container-left,
.cid-thXQXNE6z1 .list-container-right {
  max-width: 48%;
  min-width: 35%;
  width: fit-content;
}
@media (max-width: 575px) {
  .cid-thXQXNE6z1 .list-container-left,
  .cid-thXQXNE6z1 .list-container-right {
    max-width: 100%;
    width: 100%;
    margin-top: 30px;
  }
}
.cid-thXQXNE6z1 .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .cid-thXQXNE6z1 .list-item:last-child {
    margin-bottom: 0;
  }
}
.cid-thXQXNE6z1 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 5px;
}
.cid-thXQXNE6z1 .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #c4cfde;
}
.cid-thXQXNE6z1 .list-item-text {
  color: #C4CFDE;
  width: fit-content;
}
.cid-thXQXNE6z1 .pricing-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .cid-thXQXNE6z1 .pricing-footer {
    padding-top: 10px;
  }
}
.cid-thXQXNE6z1 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
}
.cid-thXQXNE6z1 .mbr-section-btn .btn {
  flex-grow: 1;
}
@media (max-width: 575px) {
  .cid-thXQXNE6z1 .mbr-section-btn {
    width: auto;
  }
  .cid-thXQXNE6z1 .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-thXQXNE6z1 .comment-text {
  color: #9ca5b1;
  margin-top: 15px;
}
.cid-uFUH4lIcQj {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFUH4lIcQj .mbr-section-head {
  width: 100%;
}
.cid-uFUH4lIcQj .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-thXQPe83Ff {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXQPe83Ff .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-thXQPe83Ff .mbr-section-title {
  color: #ff1182;
}
.cid-thXQPe83Ff .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thXQPe83Ff .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thXQPe83Ff .carousel-wrapper {
  margin: 0 75px;
}
@media (max-width: 1199px) {
  .cid-thXQPe83Ff .carousel-wrapper {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .cid-thXQPe83Ff .carousel-wrapper {
    margin: 0 -10px;
  }
}
.cid-thXQPe83Ff .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto 36px;
}
@media (max-width: 1199px) {
  .cid-thXQPe83Ff .carousel {
    max-width: 100%;
  }
}
.cid-thXQPe83Ff .carousel-inner {
  display: flex;
  align-items: center;
  padding: 50px 0 25px;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .carousel-inner {
    padding: 40px 0 25px;
  }
}
@media (max-width: 575px) {
  .cid-thXQPe83Ff .carousel-inner {
    padding: 35px 0 25px;
  }
}
.cid-thXQPe83Ff .item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0 25px;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-thXQPe83Ff .item-wrapper {
    padding: 0 10px;
  }
}
.cid-thXQPe83Ff .card-info {
  position: relative;
  z-index: 10;
  width: 395px;
  padding: 30px 30px 40px 30px;
  margin-right: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-thXQPe83Ff .card-info {
    width: 270px;
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .card-info {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 30px;
    margin-bottom: 30px;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-thXQPe83Ff .card-info {
    flex-wrap: wrap;
    padding: 20px;
  }
}
.cid-thXQPe83Ff .info-img-wrap {
  display: flex;
  width: 100%;
  margin-bottom: 27px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .info-img-wrap {
    max-width: 150px;
    margin-right: 25px;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-thXQPe83Ff .info-img-wrap {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.cid-thXQPe83Ff .info-img-wrap img {
  width: 100%;
  aspect-ratio: 1.32936508;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-thXQPe83Ff .info-img-wrap img:hover {
  transform: scale(1.1);
}
.cid-thXQPe83Ff .info-text-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .info-text-wrap {
    flex-grow: 1;
  }
}
.cid-thXQPe83Ff .info-card-title {
  color: #FF014E;
  margin-bottom: 10px;
}
.cid-thXQPe83Ff .info-card-subtitle {
  color: #C4CFDE;
}
.cid-thXQPe83Ff .info-card-text {
  color: #878e99;
  margin-top: 4px;
}
.cid-thXQPe83Ff .card-description {
  position: relative;
  margin-top: 115px;
  width: 1px;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .card-description {
    width: 100%;
    margin-top: 0;
  }
}
.cid-thXQPe83Ff .card-description::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 5px;
  background: #16181c;
  left: -43px;
  z-index: 9;
  top: 66px;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .card-description::before {
    display: none;
  }
}
.cid-thXQPe83Ff .card-description-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 50px 40px 50px 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .card-description-wrapper {
    padding: 35px 30px;
  }
}
@media (max-width: 575px) {
  .cid-thXQPe83Ff .card-description-wrapper {
    padding: 20px;
  }
}
.cid-thXQPe83Ff .card-description-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #ff1182;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .cid-thXQPe83Ff .card-description-container {
    flex-wrap: wrap;
  }
}
.cid-thXQPe83Ff .card-description-text-wrap {
  margin-bottom: 15px;
  margin-right: auto;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .cid-thXQPe83Ff .card-description-text-wrap {
    width: 100%;
    padding-right: 0;
  }
}
.cid-thXQPe83Ff .card-description-title {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-thXQPe83Ff .card-description-subtitle {
  color: #c4cfde;
  margin-bottom: 0;
}
.cid-thXQPe83Ff .card-description-label-wrap {
  padding: 15px 17px;
  border-radius: 6px;
  margin-left: auto;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-thXQPe83Ff .card-description-label-wrap {
    margin-left: 0;
  }
}
.cid-thXQPe83Ff .score-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-thXQPe83Ff .score-container .score-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
}
.cid-thXQPe83Ff .score-container .score-wrapper .mbr-iconfont {
  font-size: 11px;
  color: #ff1182;
}
.cid-thXQPe83Ff .card-description-text {
  color: #c4cfde;
  margin-bottom: 0;
}
.cid-thXQPe83Ff .absolute-icon-wrapper {
  position: absolute;
  z-index: 9;
  left: 0;
  top: -107px;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .absolute-icon-wrapper {
    display: none;
  }
}
.cid-thXQPe83Ff .absolute-icon-wrapper .mbr-iconfont {
  color: #16181c;
  font-size: 99px;
}
.cid-thXQPe83Ff .carousel-control {
  top: 50px;
  width: 60px;
  height: 60px;
  font-size: 25px;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  border-radius: 6px;
  transition: all 0.4s;
  opacity: 1;
}
.cid-thXQPe83Ff .carousel-control.carousel-control-prev {
  right: 105px;
  left: auto;
  margin-left: 0;
}
.cid-thXQPe83Ff .carousel-control.carousel-control-next {
  right: 25px;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-thXQPe83Ff .carousel-control {
    display: none;
  }
}
.cid-thXQPe83Ff .carousel-control:hover {
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  color: #ff1182 !important;
  opacity: 1;
}
.cid-thXQPe83Ff .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-thXQPe83Ff .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-thXQPe83Ff .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-thXQPe83Ff .carousel-indicators {
  position: absolute;
  bottom: -35px;
  margin-bottom: 0 !important;
}
.cid-thXQPe83Ff .carousel-indicators li {
  max-width: 11px;
  height: 11px;
  width: 11px;
  max-height: 11px;
  margin: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
  border: 0;
  border-radius: 50%;
  box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset;
  opacity: 1;
  transition: all 0.4s;
}
.cid-thXQPe83Ff .carousel-indicators li.active,
.cid-thXQPe83Ff .carousel-indicators li:hover {
  opacity: 1;
  background: #ff1182 !important;
}
.cid-thXQPe83Ff .carousel-indicators li::after,
.cid-thXQPe83Ff .carousel-indicators li::before {
  content: none;
}
.cid-thXQPe83Ff .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-thXQPe83Ff .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uFUHd5gXwJ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFUHd5gXwJ .mbr-section-head {
  width: 100%;
}
.cid-uFUHd5gXwJ .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-uFUnUqKpLE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-uFUnUqKpLE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUnUqKpLE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUnUqKpLE .mbr-section-head {
  padding-bottom: 30px;
  width: 100%;
}
.cid-uFUnUqKpLE .mbr-section-title {
  color: #ff1182;
}
.cid-uFUnUqKpLE .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uFUnUqKpLE .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uFUnUqKpLE .card {
  margin-top: 35px;
}
.cid-uFUnUqKpLE .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border-bottom: none !important;
  padding: 0;
}
.cid-uFUnUqKpLE .panel-title {
  position: relative;
  padding: 10px 0 20px;
  transition: .4s all;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uFUnUqKpLE .panel-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(145deg, #16181c 0%, #16181c 100%);
}
.cid-uFUnUqKpLE .panel-title[aria-expanded="true"]:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(145deg, #6b67ce 0%, #ff1182 100%);
}
.cid-uFUnUqKpLE .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
}
.cid-uFUnUqKpLE .mbr-iconfont {
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
}
.cid-uFUnUqKpLE .panel-group {
  border: none;
}
.cid-uFUnUqKpLE .panel-body {
  padding: 20px 0 0;
}
.cid-uFUnUqKpLE .panel-text {
  color: #878e99;
  text-align: justify;
}
.cid-uFUnUqKpLE .panel-title-edit {
  color: #ffffff;
}
.cid-uFUnUqKpLE .sign {
  width: 24px;
  height: 24px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cid-uFUnUqKpLE .panel-text,
.cid-uFUnUqKpLE .mbr-section-btn {
  color: #c4cfde;
}
.cid-thXN2QU3aY {
  padding-top: 1rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-thXN2QU3aY .mbr-overlay {
  background-color: #212428;
  opacity: 0.2;
}
.cid-thXN2QU3aY .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-thXN2QU3aY .row {
  margin-left: -10px;
  margin-right: -10px;
  flex-wrap: wrap;
  align-items: stretch;
}
.cid-thXN2QU3aY .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .cid-thXN2QU3aY .col-info-card {
    margin-bottom: 50px;
  }
}
.cid-thXN2QU3aY .mbr-section-head {
  width: 100%;
  padding-bottom: 40px;
}
.cid-thXN2QU3aY .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-thXN2QU3aY .mbr-section-title {
    text-align: center;
  }
}
.cid-thXN2QU3aY .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thXN2QU3aY .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-thXN2QU3aY .item-card {
  height: 100%;
}
.cid-thXN2QU3aY .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-thXN2QU3aY .item-wrap {
    padding: 50px 20px;
  }
}
.cid-thXN2QU3aY .item-wrap:hover .item-img img {
  transform: scale(1.1);
}
.cid-thXN2QU3aY .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-thXN2QU3aY .item-img img {
  width: 100%;
  aspect-ratio: 1.59722222;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-thXN2QU3aY .card-box {
  padding-top: 28px;
}
.cid-thXN2QU3aY .card-title {
  color: #C4CFDE;
  margin-bottom: 9px;
}
.cid-thXN2QU3aY .card-subtitle {
  color: #878e99;
  margin-bottom: 15px;
}
.cid-thXN2QU3aY .card-text {
  color: #878e99;
  margin-bottom: 20px;
}
.cid-thXN2QU3aY .card-contacts {
  color: #878e99;
}
.cid-thXN2QU3aY .card-contacts a {
  position: relative;
  transition: 0.4s all;
}
.cid-thXN2QU3aY .card-contacts a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ff1182;
  transition: 0.4s all;
}
.cid-thXN2QU3aY .card-contacts a:hover {
  color: #ff1182 !important;
}
.cid-thXN2QU3aY .card-contacts a:hover:before {
  width: 100%;
}
.cid-thXN2QU3aY .social-container {
  width: 100%;
  padding-top: 30px;
}
.cid-thXN2QU3aY .social-title {
  color: #C4CFDE;
  margin-bottom: 8px;
}
.cid-thXN2QU3aY .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -15px;
  margin-top: 24px;
}
.cid-thXN2QU3aY .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 15px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-thXN2QU3aY .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-thXN2QU3aY .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-thXN2QU3aY .soc-item:hover {
  transform: translateY(-3px);
}
.cid-thXN2QU3aY .soc-item:hover .mbr-iconfont {
  color: #ff1182;
}
.cid-thXN2QU3aY .soc-item:hover:before {
  opacity: 1;
}
.cid-thXN2QU3aY .form-main-container {
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  .cid-thXN2QU3aY .form-main-container {
    padding-left: 20px;
  }
}
.cid-thXN2QU3aY .form-wrap {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-thXN2QU3aY .form-wrap {
    padding: 20px;
  }
}
.cid-thXN2QU3aY form {
  width: 100%;
}
.cid-thXN2QU3aY form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-thXN2QU3aY form p {
  color: #878e99;
}
.cid-thXN2QU3aY form .mbr-section-btn {
  text-align: center;
  justify-content: center;
}
.cid-thXN2QU3aY form .mbr-section-btn .btn {
  width: 100%;
}
.cid-thXN2QU3aY form .form-group {
  margin-bottom: 20px !important;
}
.cid-thXN2QU3aY form .form-control {
  background-color: #191b1e;
  border-radius: 6px !important;
  height: 55px;
  box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset !important;
  border: 2px solid #191b1e !important;
  padding: 10px 15px;
  font-size: 18px;
  margin-bottom: 0;
  color: #C4CFDE;
  font-weight: 400;
  transition: 0.4s all !important;
  line-height: 29px !important;
}
.cid-thXN2QU3aY form .form-control::-webkit-input-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form .form-control::-moz-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form .form-control:-moz-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form .form-control:-ms-input-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form select {
  color: #878e99 !important;
}
.cid-thXN2QU3aY form textarea {
  height: 216px !important;
  resize: none;
}
.cid-thXN2QU3aY form input:active,
.cid-thXN2QU3aY form textarea:active,
.cid-thXN2QU3aY form input:focus,
.cid-thXN2QU3aY form textarea:focus {
  border-color: #ff1182 !important;
  box-shadow: none !important;
  color: #878e99 !important;
  outline: none !important;
}
.cid-thXN2QU3aY form input:active::-webkit-input-placeholder,
.cid-thXN2QU3aY form textarea:active::-webkit-input-placeholder,
.cid-thXN2QU3aY form input:focus::-webkit-input-placeholder,
.cid-thXN2QU3aY form textarea:focus::-webkit-input-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form input:active::-moz-placeholder,
.cid-thXN2QU3aY form textarea:active::-moz-placeholder,
.cid-thXN2QU3aY form input:focus::-moz-placeholder,
.cid-thXN2QU3aY form textarea:focus::-moz-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form input:active:-moz-placeholder,
.cid-thXN2QU3aY form textarea:active:-moz-placeholder,
.cid-thXN2QU3aY form input:focus:-moz-placeholder,
.cid-thXN2QU3aY form textarea:focus:-moz-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form input:active:-ms-input-placeholder,
.cid-thXN2QU3aY form textarea:active:-ms-input-placeholder,
.cid-thXN2QU3aY form input:focus:-ms-input-placeholder,
.cid-thXN2QU3aY form textarea:focus:-ms-input-placeholder {
  color: #878e99;
}
.cid-thXN2QU3aY form .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.cid-thXN2QU3aY form .row [class*=col] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-thXN2QU3aY form label {
  width: 100%;
  color: #878e99;
  margin-bottom: 14px;
}
.cid-thXN2QU3aY form .form-control-label {
  width: 100%;
}
.cid-thXN2QU3aY form .form-check-label {
  margin-bottom: 14px;
}
.cid-thXN2QU3aY form .form-check-input {
  border-color: #191b1e !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-thXN2QU3aY form .form-check-input:focus,
.cid-thXN2QU3aY form .form-check-input:hover {
  border-color: #ff1182 !important;
}
.cid-thXN2QU3aY form .form-check-input:checked {
  border-color: #ff1182 !important;
  background-color: #191b1e !important;
}
.cid-thXN2QU3aY LABEL {
  color: #ffffff;
  text-align: left;
}
.cid-uFUI8dbX0A {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFUI8dbX0A .mbr-section-head {
  width: 100%;
}
.cid-uFUI8dbX0A .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-thXRClqJeG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-thXRClqJeG .mbr-fallback-image.disabled {
  display: none;
}
.cid-thXRClqJeG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thXRClqJeG .card-row {
  align-items: stretch;
}
.cid-thXRClqJeG .item-wrap {
  position: relative;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-thXRClqJeG .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #ff1182;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-thXRClqJeG .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #ff1182;
  }
}
.cid-thXRClqJeG .image-wrapper {
  margin-right: 30px;
}
.cid-thXRClqJeG .image-wrapper img {
  border-radius: 15px;
  max-width: 200px;
  aspect-ratio: 1;
  width: 200px;
  border: 5px solid #1e2024;
  position: relative;
  top: -80px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .image-wrapper {
    margin-right: 0;
  }
}
.cid-thXRClqJeG .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .mbr-section-title {
    text-align: center !important;
  }
}
.cid-thXRClqJeG .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-thXRClqJeG .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .social-container {
    padding-top: 25px;
  }
}
.cid-thXRClqJeG .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .social-title {
    text-align: center !important;
  }
}
.cid-thXRClqJeG .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-thXRClqJeG .social-list {
    justify-content: center !important;
  }
}
.cid-thXRClqJeG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-thXRClqJeG .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-thXRClqJeG .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-thXRClqJeG .soc-item:hover {
  transform: translateY(-3px);
}
.cid-thXRClqJeG .soc-item:hover:before {
  opacity: 1;
}
.cid-thXRClqJeG .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-thXRClqJeG .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-thXRClqJeG .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-thXRClqJeG .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-thXRClqJeG .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-thXRClqJeG .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-thXRClqJeG .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-thXRClqJeG .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-thXRClqJeG .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-thXRClqJeG .contact-item {
  padding: 10px 0 20px;
}
.cid-thXRClqJeG .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-thXRClqJeG .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
#custom-html-9 {
  /* FontAwesome CDN (add this in <head>) */
  
  /* ===== Fixed Footer Button Container ===== */
  /* ===== Base Button Style ===== */
  /* ===== Phone Button: Pink Solid Glow ===== */
  /* ===== WhatsApp Button: Transparent + Green Glow ===== */
  /* ===== Icons ===== */
  /* ===== Responsive: Mobile View (keep buttons side-by-side) ===== */
}
#custom-html-9 .footer-fixed-btns {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  flex-wrap: nowrap;
  z-index: 9999;
  background-color: transparent;
  /* Fully transparent background */
}
#custom-html-9 .btn-glow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 900;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  box-shadow: none;
  cursor: pointer;
  white-space: nowrap;
}
#custom-html-9 .solid-glow {
  background-color: #ff1182;
  color: #ffffff;
  border: 1px solid #ff1182;
}
#custom-html-9 .solid-glow:hover {
  box-shadow: 0 0 30px 10px rgba(255, 17, 130, 0.4);
}
#custom-html-9 .whatsapp-btn {
  background-color: #25d366;
  color: #ffffff;
  border: 1px solid #25d366;
}
#custom-html-9 .whatsapp-btn:hover {
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 0 35px 10px rgba(37, 211, 102, 0.4);
}
#custom-html-9 .btn-glow i {
  font-size: 20px;
  line-height: 1;
}
#custom-html-9 .btn-glow i.fa-phone-alt {
  transform: rotate(90deg);
}
@media (max-width: 480px) {
  #custom-html-9 .footer-fixed-btns {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
    padding: 10px 15px;
    justify-content: center;
  }
  #custom-html-9 .btn-glow {
    width: 140px;
    /* Fixed button width */
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 15px;
    white-space: nowrap;
  }
}
.cid-uFXSlvQdBv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFXSlvQdBv .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-uFXSlvQdBv .copyright-container {
  padding: 40px 0;
}
.cid-uFXSlvQdBv .mbr-text {
  color: #c4cfde;
}
.cid-thY9GeqdPa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 0;
}
.cid-thY9GeqdPa nav.navbar {
  position: fixed;
}
.cid-thY9GeqdPa .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thY9GeqdPa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-thY9GeqdPa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-thY9GeqdPa .dropdown-item:hover,
.cid-thY9GeqdPa .dropdown-item:focus {
  background: #ff1182 !important;
  color: white !important;
}
.cid-thY9GeqdPa .dropdown-item:hover span {
  color: white;
}
.cid-thY9GeqdPa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-thY9GeqdPa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-thY9GeqdPa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-thY9GeqdPa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-thY9GeqdPa .nav-link {
  position: relative;
}
.cid-thY9GeqdPa .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-thY9GeqdPa .container {
    flex-wrap: nowrap;
  }
}
.cid-thY9GeqdPa .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-thY9GeqdPa .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-thY9GeqdPa .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-thY9GeqdPa .navbar-nav .nav-item .nav-link:hover,
.cid-thY9GeqdPa .navbar-nav .nav-item .nav-link:focus,
.cid-thY9GeqdPa .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-thY9GeqdPa .dropdown-menu,
.cid-thY9GeqdPa .navbar.opened {
  background: #000000 !important;
}
.cid-thY9GeqdPa .nav-item:focus,
.cid-thY9GeqdPa .nav-link:focus {
  outline: none;
}
.cid-thY9GeqdPa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-thY9GeqdPa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-thY9GeqdPa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-thY9GeqdPa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thY9GeqdPa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-thY9GeqdPa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-thY9GeqdPa .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-thY9GeqdPa .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-thY9GeqdPa .navbar.opened {
  transition: all 0.3s;
}
.cid-thY9GeqdPa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-thY9GeqdPa .navbar .navbar-logo img {
  width: auto;
}
.cid-thY9GeqdPa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-thY9GeqdPa .navbar.collapsed {
  justify-content: center;
}
.cid-thY9GeqdPa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-thY9GeqdPa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-thY9GeqdPa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-thY9GeqdPa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-thY9GeqdPa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-thY9GeqdPa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-thY9GeqdPa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-thY9GeqdPa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-thY9GeqdPa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-thY9GeqdPa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-thY9GeqdPa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-thY9GeqdPa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-thY9GeqdPa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-thY9GeqdPa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-thY9GeqdPa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-thY9GeqdPa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-thY9GeqdPa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-thY9GeqdPa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-thY9GeqdPa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-thY9GeqdPa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-thY9GeqdPa .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-thY9GeqdPa .navbar.navbar-short {
  min-height: 90px;
}
.cid-thY9GeqdPa .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-thY9GeqdPa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-thY9GeqdPa .navbar {
    min-height: 80px;
  }
}
.cid-thY9GeqdPa .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-thY9GeqdPa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-thY9GeqdPa .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-thY9GeqdPa .navbar-brand {
    min-height: 69px;
  }
}
.cid-thY9GeqdPa .dropdown-item.active,
.cid-thY9GeqdPa .dropdown-item:active {
  background-color: transparent;
}
.cid-thY9GeqdPa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-thY9GeqdPa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-thY9GeqdPa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-thY9GeqdPa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-thY9GeqdPa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-thY9GeqdPa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thY9GeqdPa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-thY9GeqdPa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-thY9GeqdPa button.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #000000;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-thY9GeqdPa button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-thY9GeqdPa button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-thY9GeqdPa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ff1182;
}
.cid-thY9GeqdPa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-thY9GeqdPa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-thY9GeqdPa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-thY9GeqdPa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-thY9GeqdPa nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thY9GeqdPa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-thY9GeqdPa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-thY9GeqdPa nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thY9GeqdPa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-thY9GeqdPa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-thY9GeqdPa .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-thY9GeqdPa .navbar {
    height: 70px;
  }
  .cid-thY9GeqdPa .navbar.opened {
    height: auto;
  }
  .cid-thY9GeqdPa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thY9GeqdPa .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #000000;
}
@media (max-width: 575px) {
  .cid-thY9GeqdPa .navbar-short {
    min-height: 70px;
  }
}
.cid-thY9GeqdPa .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-thY9GeqdPa .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-thY9GeqdPa .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-thY9GeqdPa .container-fluid {
    padding: 0 3px;
  }
}
.cid-thY9GeqdPa .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-thY9GeqdPa .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-thY9GeqdPa .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-thY9GeqdPa .container-fluid {
    flex-wrap: wrap;
  }
  .cid-thY9GeqdPa button.navbar-toggler {
    display: flex;
  }
  .cid-thY9GeqdPa .navbar-brand {
    width: auto !important;
  }
  .cid-thY9GeqdPa .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-thY9GeqdPa .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-thY9GeqdPa .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-thY9GeqdPa .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-thY9GeqdPa .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-thY9GeqdPa .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-thY9GShril {
  background-image: url("https://r.mobirisesite.com/1313106/assets/images/pexels-august-de-richelieu-44-h_m8h4l781.jpg");
}
.cid-thY9GShril .mbr-fallback-image.disabled {
  display: none;
}
.cid-thY9GShril .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thY9GShril .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-thY9GShril .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-thY9GShril .mbr-section-btn {
  margin-top: 30px;
}
.cid-thY9GShril .mbr-text,
.cid-thY9GShril .mbr-section-btn {
  color: #c4cfde;
}
.cid-thYaWFjPel {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #191b1f;
}
.cid-thYaWFjPel .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYaWFjPel .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thYaWFjPel .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-thYaWFjPel .mbr-section-title {
  color: #ffffff;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-thYaWFjPel .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-thYaWFjPel .mbr-section-subtitle {
  color: #c4cfde;
}
.cid-thYaWFjPel .card-row {
  align-items: stretch;
}
.cid-thYaWFjPel .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-thYaWFjPel .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid #ff1182;
}
.cid-thYaWFjPel .card-box {
  height: 100%;
}
.cid-thYaWFjPel .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-thYaWFjPel .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #312ca8;
}
.cid-thYaWFjPel .card-title {
  color: #ffffff;
  margin-bottom: 20px;
}
.cid-thYaWFjPel .card-text {
  color: #c4cfde;
  margin-bottom: 0;
}
.cid-uFXzY5lTsg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFXzY5lTsg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFXzY5lTsg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFXzY5lTsg .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-uFXzY5lTsg .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uFXzY5lTsg .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uFXzY5lTsg .card-title {
  color: #ff1182;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uFXzY5lTsg .card-title {
    margin-bottom: 20px;
  }
}
.cid-uFXzY5lTsg .card-subtitle {
  color: #c4cfde;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-uFXzY5lTsg .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uFXzY5lTsg .card-subtitle b {
  color: #ff1182;
}
.cid-uFXzY5lTsg .card-text {
  color: #c4cfde;
  margin-bottom: 0;
  text-align: justify;
}
.cid-uFXzY5lTsg .card-text b {
  color: #ff1182;
}
.cid-thYAh1rn4D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #191b1f;
}
.cid-thYAh1rn4D .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYAh1rn4D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-thYAh1rn4D .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-thYAh1rn4D .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: flex-start;
}
.cid-thYAh1rn4D .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1599px) {
  .cid-thYAh1rn4D .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thYAh1rn4D .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thYAh1rn4D .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-thYAh1rn4D .mbr-section-title {
  color: #c4cfde;
}
.cid-thYAh1rn4D .mbr-section-subtitle {
  color: #c4cfde;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thYAh1rn4D .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thYAh1rn4D .card-row {
  align-items: stretch;
}
.cid-thYAh1rn4D .item {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-thYAh1rn4D .item {
    margin-top: 50px;
  }
}
.cid-thYAh1rn4D .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: visible;
}
.cid-thYAh1rn4D .item-wrapper:hover .card-bg {
  opacity: 0.5;
}
.cid-thYAh1rn4D .item-wrapper:hover .mbr-section-btn {
  margin-top: 0;
  opacity: 1;
}
.cid-thYAh1rn4D .item-wrapper:hover .card-title {
  color: #312ca8 !important;
}
.cid-thYAh1rn4D .item-wrapper:hover .card-text {
  color: #312ca8 !important;
}
.cid-thYAh1rn4D .item-img-shadow {
  width: 100%;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border-radius: 7px;
}
.cid-thYAh1rn4D .item-img {
  position: relative;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 0.66666667;
}
.cid-thYAh1rn4D .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-thYAh1rn4D .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: #c4cfde;
  border-radius: 6px;
  opacity: 0;
  transition: .5s all;
  pointer-events: none;
}
.cid-thYAh1rn4D .mbr-section-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: translate(-50%, -50%);
  max-width: 100%;
  margin-top: 10px;
  transition: 0.4s all;
  opacity: 0;
}
.cid-thYAh1rn4D .mbr-section-btn .btn {
  padding: 10px 18px;
  min-height: 44px;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-thYAh1rn4D .mbr-section-btn {
    width: auto;
  }
  .cid-thYAh1rn4D .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-thYAh1rn4D .card-box {
  position: relative;
  z-index: 5;
  padding: 39px 30px 0;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-thYAh1rn4D .card-box {
    padding: 20px 10px 0;
  }
}
.cid-thYAh1rn4D .card-title {
  color: #fcfcfe;
  margin-bottom: 20px;
  transition: .4s all;
}
.cid-thYAh1rn4D .card-text {
  color: #c4cfde;
  margin-bottom: 22px;
  transition: .4s all;
}
.cid-thYiiRmFxx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #191b1f;
}
.cid-thYiiRmFxx .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYiiRmFxx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-thYiiRmFxx .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.cid-thYiiRmFxx .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-thYiiRmFxx .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-thYiiRmFxx .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thYiiRmFxx .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thYiiRmFxx .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-thYiiRmFxx .mbr-section-title {
  color: #c4cfde;
}
.cid-thYiiRmFxx .mbr-section-subtitle {
  color: #c4cfde;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thYiiRmFxx .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thYiiRmFxx .card-row {
  align-items: stretch;
}
.cid-thYiiRmFxx .item {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-thYiiRmFxx .item {
    margin-top: 30px;
  }
}
.cid-thYiiRmFxx .item:nth-child(1n) .item-img {
  aspect-ratio: 0.6647619;
}
.cid-thYiiRmFxx .item:nth-child(3n) .item-img {
  aspect-ratio: 0.6647619;
}
.cid-thYiiRmFxx .item:nth-child(2n) .item-img {
  aspect-ratio: 0.6647619;
}
.cid-thYiiRmFxx .item-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
}
.cid-thYiiRmFxx .item-img-shadow {
  width: 100%;
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
  border-radius: 7px;
}
.cid-thYiiRmFxx .item-img {
  position: relative;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #16181c;
}
.cid-thYiiRmFxx .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uFXHRDAgUT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #16181c;
}
.cid-uFXHRDAgUT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFXHRDAgUT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFXHRDAgUT .mbr-section-head {
  padding-bottom: 30px;
  width: 100%;
}
.cid-uFXHRDAgUT .mbr-section-title {
  color: #ff1182;
}
.cid-uFXHRDAgUT .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uFXHRDAgUT .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uFXHRDAgUT .card {
  margin-top: 35px;
}
.cid-uFXHRDAgUT .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border-bottom: none !important;
  padding: 0;
}
.cid-uFXHRDAgUT .panel-title {
  position: relative;
  padding: 10px 0 20px;
  transition: .4s all;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uFXHRDAgUT .panel-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(145deg, #ff1182 0%, #ff1182 100%);
}
.cid-uFXHRDAgUT .panel-title[aria-expanded="true"]:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(145deg, #6b67ce 0%, #fc636b 100%);
}
.cid-uFXHRDAgUT .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
}
.cid-uFXHRDAgUT .mbr-iconfont {
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  color: #c4cfde;
  margin-left: 1rem;
}
.cid-uFXHRDAgUT .panel-group {
  border: none;
}
.cid-uFXHRDAgUT .panel-body {
  padding: 20px 0 0;
}
.cid-uFXHRDAgUT .panel-text {
  color: #878e99;
}
.cid-uFXHRDAgUT .panel-title-edit {
  color: #ffffff;
}
.cid-uFXHRDAgUT .sign {
  width: 24px;
  height: 24px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cid-uFXHRDAgUT .panel-text,
.cid-uFXHRDAgUT .mbr-section-btn {
  color: #c4cfde;
}
.cid-uFXSilxBux {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFXSilxBux .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFXSilxBux .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFXSilxBux .card-row {
  align-items: stretch;
}
.cid-uFXSilxBux .item-wrap {
  position: relative;
  width: 100%;
  padding: 20px;
  margin-top: 60px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-uFXSilxBux .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #16181c;
}
@media (max-width: 1199px) {
  .cid-uFXSilxBux .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-uFXSilxBux .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #16181c;
  }
}
.cid-uFXSilxBux .image-wrapper {
  margin-right: 30px;
}
.cid-uFXSilxBux .image-wrapper img {
  border-radius: 15px;
  max-width: 200px;
  aspect-ratio: 1;
  width: 200px;
  border: 5px solid #1e2024;
  position: relative;
  top: -80px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-uFXSilxBux .image-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .cid-uFXSilxBux .text-left-wrap {
    margin-top: -46px;
  }
}
.cid-uFXSilxBux .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-uFXSilxBux .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uFXSilxBux .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-uFXSilxBux .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uFXSilxBux .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-uFXSilxBux .social-container {
    padding-top: 25px;
  }
}
.cid-uFXSilxBux .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-uFXSilxBux .social-title {
    text-align: center !important;
  }
}
.cid-uFXSilxBux .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-uFXSilxBux .social-list {
    justify-content: center !important;
  }
}
.cid-uFXSilxBux .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uFXSilxBux .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uFXSilxBux .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-uFXSilxBux .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uFXSilxBux .soc-item:hover:before {
  opacity: 1;
}
.cid-uFXSilxBux .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uFXSilxBux .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-uFXSilxBux .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-uFXSilxBux .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-uFXSilxBux .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uFXSilxBux .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-uFXSilxBux .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-uFXSilxBux .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uFXSilxBux .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-uFXSilxBux .contact-item {
  padding: 10px 0 20px;
}
.cid-uFXSilxBux .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-uFXSilxBux .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-uFXSlvQdBv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-uFXSlvQdBv .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-uFXSlvQdBv .copyright-container {
  padding: 40px 0;
}
.cid-uFXSlvQdBv .mbr-text {
  color: #c4cfde;
}
#custom-html-d {
  /* Sticky Button Container */
  /* Shared Styles for Both Buttons */
  /* WhatsApp Button */
  /* Call Button */
  /* Hover Effects (Simple Fade + Glow) */
}
#custom-html-d .sticky-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#custom-html-d .sticky-buttons a {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(145deg, #1a1a1a, #000000);
  border-radius: 15px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.6), -4px -4px 10px rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-decoration: none;
}
#custom-html-d .sticky-buttons .whatsapp-button {
  background: linear-gradient(145deg, #25d366, #128c7e);
}
#custom-html-d .sticky-buttons .whatsapp-button i {
  color: #fff;
}
#custom-html-d .sticky-buttons .call-button {
  background: linear-gradient(145deg, #ff1182, #c70066);
}
#custom-html-d .sticky-buttons .call-button i {
  color: #fff;
}
#custom-html-d .sticky-buttons .whatsapp-button:hover {
  background: #1db954;
}
#custom-html-d .sticky-buttons .call-button:hover {
  background: #d80a6d;
}
.cid-uG2NIbzb1W {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 0;
}
.cid-uG2NIbzb1W nav.navbar {
  position: fixed;
}
.cid-uG2NIbzb1W .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uG2NIbzb1W .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uG2NIbzb1W .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uG2NIbzb1W .dropdown-item:hover,
.cid-uG2NIbzb1W .dropdown-item:focus {
  background: #ff1182 !important;
  color: white !important;
}
.cid-uG2NIbzb1W .dropdown-item:hover span {
  color: white;
}
.cid-uG2NIbzb1W .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uG2NIbzb1W .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uG2NIbzb1W .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uG2NIbzb1W .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uG2NIbzb1W .nav-link {
  position: relative;
}
.cid-uG2NIbzb1W .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uG2NIbzb1W .container {
    flex-wrap: nowrap;
  }
}
.cid-uG2NIbzb1W .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uG2NIbzb1W .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-uG2NIbzb1W .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-uG2NIbzb1W .navbar-nav .nav-item .nav-link:hover,
.cid-uG2NIbzb1W .navbar-nav .nav-item .nav-link:focus,
.cid-uG2NIbzb1W .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-uG2NIbzb1W .dropdown-menu,
.cid-uG2NIbzb1W .navbar.opened {
  background: #000000 !important;
}
.cid-uG2NIbzb1W .nav-item:focus,
.cid-uG2NIbzb1W .nav-link:focus {
  outline: none;
}
.cid-uG2NIbzb1W .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uG2NIbzb1W .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uG2NIbzb1W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uG2NIbzb1W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uG2NIbzb1W .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uG2NIbzb1W .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uG2NIbzb1W .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-uG2NIbzb1W .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-uG2NIbzb1W .navbar.opened {
  transition: all 0.3s;
}
.cid-uG2NIbzb1W .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uG2NIbzb1W .navbar .navbar-logo img {
  width: auto;
}
.cid-uG2NIbzb1W .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uG2NIbzb1W .navbar.collapsed {
  justify-content: center;
}
.cid-uG2NIbzb1W .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uG2NIbzb1W .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uG2NIbzb1W .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uG2NIbzb1W .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uG2NIbzb1W .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uG2NIbzb1W .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uG2NIbzb1W .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uG2NIbzb1W .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uG2NIbzb1W .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uG2NIbzb1W .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uG2NIbzb1W .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uG2NIbzb1W .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uG2NIbzb1W .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uG2NIbzb1W .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uG2NIbzb1W .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uG2NIbzb1W .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uG2NIbzb1W .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uG2NIbzb1W .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uG2NIbzb1W .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uG2NIbzb1W .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uG2NIbzb1W .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uG2NIbzb1W .navbar.navbar-short {
  min-height: 90px;
}
.cid-uG2NIbzb1W .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-uG2NIbzb1W .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-uG2NIbzb1W .navbar {
    min-height: 80px;
  }
}
.cid-uG2NIbzb1W .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-uG2NIbzb1W .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uG2NIbzb1W .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-uG2NIbzb1W .navbar-brand {
    min-height: 69px;
  }
}
.cid-uG2NIbzb1W .dropdown-item.active,
.cid-uG2NIbzb1W .dropdown-item:active {
  background-color: transparent;
}
.cid-uG2NIbzb1W .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uG2NIbzb1W .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uG2NIbzb1W .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uG2NIbzb1W .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uG2NIbzb1W .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uG2NIbzb1W .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uG2NIbzb1W ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uG2NIbzb1W .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uG2NIbzb1W button.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #000000;
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-uG2NIbzb1W button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-uG2NIbzb1W button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-uG2NIbzb1W button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ff1182;
}
.cid-uG2NIbzb1W button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-uG2NIbzb1W button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uG2NIbzb1W button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-uG2NIbzb1W button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uG2NIbzb1W nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uG2NIbzb1W nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uG2NIbzb1W nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uG2NIbzb1W nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uG2NIbzb1W .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uG2NIbzb1W a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uG2NIbzb1W .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uG2NIbzb1W .navbar {
    height: 70px;
  }
  .cid-uG2NIbzb1W .navbar.opened {
    height: auto;
  }
  .cid-uG2NIbzb1W .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uG2NIbzb1W .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #000000;
}
@media (max-width: 575px) {
  .cid-uG2NIbzb1W .navbar-short {
    min-height: 70px;
  }
}
.cid-uG2NIbzb1W .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-uG2NIbzb1W .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-uG2NIbzb1W .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIbzb1W .container-fluid {
    padding: 0 3px;
  }
}
.cid-uG2NIbzb1W .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uG2NIbzb1W .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-uG2NIbzb1W .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-uG2NIbzb1W .container-fluid {
    flex-wrap: wrap;
  }
  .cid-uG2NIbzb1W button.navbar-toggler {
    display: flex;
  }
  .cid-uG2NIbzb1W .navbar-brand {
    width: auto !important;
  }
  .cid-uG2NIbzb1W .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-uG2NIbzb1W .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-uG2NIbzb1W .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-uG2NIbzb1W .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-uG2NIbzb1W .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-uG2NIbzb1W .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-uG2NIbVrr0 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-uG2NIbVrr0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG2NIbVrr0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG2NIbVrr0 .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uG2NIbVrr0 .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uG2NIbVrr0 .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uG2NIbVrr0 .col-text {
  display: flex;
  text-align: justify;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uG2NIbVrr0 .col-text {
    order: 2;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uG2NIbVrr0 .col-text {
    margin-top: 20px;
  }
}
.cid-uG2NIbVrr0 .text-wrapper {
  width: 100%;
}
.cid-uG2NIbVrr0 .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uG2NIbVrr0 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 22px;
}
.cid-uG2NIbVrr0 .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uG2NIbVrr0 .mbr-text {
  color: #C4CFDE;
  padding-right: 16%;
  opacity: 0.9;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cid-uG2NIbVrr0 .mbr-text {
    padding-right: 0;
  }
}
.cid-uG2NIbVrr0 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uG2NIbVrr0 .social-container {
  width: 100%;
  padding-top: 125px;
}
@media (max-width: 991px) {
  .cid-uG2NIbVrr0 .social-container {
    padding-top: 40px;
  }
}
.cid-uG2NIbVrr0 .social-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uG2NIbVrr0 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px -12px;
}
.cid-uG2NIbVrr0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uG2NIbVrr0 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uG2NIbVrr0 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uG2NIbVrr0 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uG2NIbVrr0 .soc-item:hover:before {
  opacity: 1;
}
.cid-uG2NIbVrr0 .col-img {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uG2NIbVrr0 .col-img {
    order: 1;
  }
}
.cid-uG2NIbVrr0 .image-wrapper {
  position: relative;
  width: 100%;
}
.cid-uG2NIbVrr0 .image-wrapper img {
  position: relative;
  z-index: 5;
  object-fit: cover;
  width: 100%;
}
.cid-uG2NIbVrr0 .img-bg {
  content: "";
  position: absolute;
  z-index: 4;
  width: 100%;
  height: calc(100% - 130px);
  left: 0;
  bottom: 0;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border-radius: 6px;
}
.cid-uG2NIbVrr0 .mbr-text,
.cid-uG2NIbVrr0 .mbr-section-btn {
  color: #ffffff;
}
.cid-uG2NIcUkpg {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uG2NIcUkpg .mbr-section-head {
  width: 100%;
}
.cid-uG2NIcUkpg .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-uG2NId6Niy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uG2NId6Niy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG2NId6Niy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  position: absolute;
  top: 0;
}
.cid-uG2NId6Niy .container {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1599px) {
  .cid-uG2NId6Niy .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.cid-uG2NId6Niy .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: flex-start;
}
.cid-uG2NId6Niy .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-uG2NId6Niy .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .cid-uG2NId6Niy .row > [class*="col"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-uG2NId6Niy .mbr-section-head {
  width: 100%;
}
.cid-uG2NId6Niy .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-uG2NId6Niy .mbr-section-title {
    text-align: center;
  }
}
.cid-uG2NId6Niy .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uG2NId6Niy .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-uG2NId6Niy .card-row {
  align-items: stretch;
}
.cid-uG2NId6Niy .item {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-uG2NId6Niy .item {
    margin-top: 00px;
  }
}
.cid-uG2NId6Niy .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-uG2NId6Niy .item-wrapper {
    padding: 10px;
  }
}
.cid-uG2NId6Niy .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-uG2NId6Niy .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-uG2NId6Niy .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .4s all;
}
.cid-uG2NId6Niy .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-uG2NId6Niy .item-img img {
  width: 100%;
  aspect-ratio: 0.6;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-uG2NId6Niy .card-box {
  position: relative;
  z-index: 5;
  padding-top: 10px;
}
.cid-uG2NId6Niy .card-title {
  position: relative;
  z-index: 5;
  color: #ff1182;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-uG2NId6Niy .card-title {
    margin-bottom: 10px;
  }
}
.cid-uG2NId6Niy .card-text {
  position: relative;
  z-index: 5;
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-uG2NId6Niy .card-text a {
  transition: .4s all;
}
.cid-uG2NId6Niy .card-text a:hover {
  color: #ff1182 !important;
}
.cid-uG2NIdupH5 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uG2NIdupH5 .mbr-section-head {
  width: 100%;
}
.cid-uG2NIdupH5 .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-uG2NIdIrEv {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uG2NIdIrEv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG2NIdIrEv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG2NIdIrEv .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-uG2NIdIrEv .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIdIrEv .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uG2NIdIrEv .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
.cid-uG2NIdIrEv .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 15px;
}
.cid-uG2NIdIrEv .border-item {
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  background-color: #ff1182;
}
.cid-uG2NIdIrEv .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
  text-align: justify;
}
.cid-uG2NIdIrEv H5 {
  text-align: center;
}
.cid-uG2NIe0wz0 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uG2NIe0wz0 .mbr-section-head {
  width: 100%;
}
.cid-uG2NIe0wz0 .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-uG2NIee4RU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-uG2NIee4RU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG2NIee4RU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  position: absolute;
  top: 0;
}
.cid-uG2NIee4RU .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uG2NIee4RU .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uG2NIee4RU .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uG2NIee4RU .col-img {
  padding: 10px;
}
@media (min-width: 992px) {
  .cid-uG2NIee4RU .col-img {
    padding-right: 60px !important;
  }
}
.cid-uG2NIee4RU .col-text {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-uG2NIee4RU .col-text {
    order: 2;
  }
}
.cid-uG2NIee4RU .text-wrapper {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uG2NIee4RU .text-wrapper {
    margin-top: 20px;
  }
}
.cid-uG2NIee4RU .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uG2NIee4RU .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 22px;
}
.cid-uG2NIee4RU .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uG2NIee4RU .mbr-text {
  color: #C4CFDE;
  text-align: justify;
  margin-bottom: 20px;
  padding-right: 16%;
}
@media (max-width: 991px) {
  .cid-uG2NIee4RU .mbr-text {
    padding-right: 0;
  }
}
.cid-uG2NIee4RU .mbr-section-btn {
  margin-top: 20px;
}
.cid-uG2NIee4RU .social-container {
  width: 100%;
  padding-top: 90px;
}
@media (max-width: 991px) {
  .cid-uG2NIee4RU .social-container {
    padding-top: 40px;
  }
}
.cid-uG2NIee4RU .social-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uG2NIee4RU .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px -12px;
}
.cid-uG2NIee4RU .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uG2NIee4RU .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uG2NIee4RU .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uG2NIee4RU .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uG2NIee4RU .soc-item:hover:before {
  opacity: 1;
}
.cid-uG2NIee4RU .img-wrapper {
  padding: 15px;
  border-radius: 6px;
  position: relative;
  width: 100%;
  height: 830px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-uG2NIee4RU .img-box {
  width: 100%;
  height: 800px;
  border-radius: 6px;
  overflow: hidden;
}
.cid-uG2NIee4RU .img-box img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  aspect-ratio: 0.87102178;
}
.cid-uG2NIee4RU .mbr-text,
.cid-uG2NIee4RU .mbr-section-btn {
  color: #ffffff;
}
.cid-uG2NIeDHV4 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uG2NIeDHV4 .mbr-section-head {
  width: 100%;
}
.cid-uG2NIeDHV4 .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-uG2NIeTd6t {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
}
.cid-uG2NIeTd6t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG2NIeTd6t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG2NIeTd6t .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uG2NIeTd6t .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uG2NIeTd6t .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uG2NIeTd6t .head-container {
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uG2NIeTd6t {
    overflow: hidden;
  }
}
.cid-uG2NIeTd6t .section-head {
  position: sticky;
  top: 160px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uG2NIeTd6t .section-head {
    position: static;
    margin-bottom: 60px;
  }
}
.cid-uG2NIeTd6t .mbr-section-title {
  color: #FF014E;
}
.cid-uG2NIeTd6t .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uG2NIeTd6t .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uG2NIeTd6t .tabs-main-container {
  width: calc(100% - 10px);
  margin-left: 10px;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 991px) {
  .cid-uG2NIeTd6t .tabs-main-container {
    margin-left: 0;
    width: 100%;
  }
}
.cid-uG2NIeTd6t .tabs-main-wrap {
  width: 100%;
}
.cid-uG2NIeTd6t .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 10px;
  border: none !important;
  background: transparent;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-uG2NIeTd6t .nav-tabs .nav-item.open .nav-link:focus,
.cid-uG2NIeTd6t .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uG2NIeTd6t .nav-item {
  display: flex;
  align-items: center;
  flex-basis: 33.33%;
  margin: 0;
  flex-grow: 1;
  transition: all .4s;
}
@media (max-width: 575px) {
  .cid-uG2NIeTd6t .nav-item {
    flex-basis: 100%;
  }
}
.cid-uG2NIeTd6t .nav-tabs .nav-link {
  width: 100%;
  text-align: center;
  display: block;
  padding: 26px 10px;
  border-radius: 6px;
  transition: all .4s;
  background: transparent;
  border: none;
}
.cid-uG2NIeTd6t .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
.cid-uG2NIeTd6t .nav-tabs .nav-link:hover,
.cid-uG2NIeTd6t .nav-tabs .nav-link:focus {
  background: transparent;
  color: #ff1182;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-uG2NIeTd6t .nav-tabs .nav-link.active {
  background: transparent;
  color: #ff1182;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-uG2NIeTd6t .tab-content {
  padding: 55px 50px 60px;
}
@media (max-width: 991px) {
  .cid-uG2NIeTd6t .tab-content {
    padding: 55px 30px 30px;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIeTd6t .tab-content {
    padding: 55px 25px 25px;
  }
}
.cid-uG2NIeTd6t .pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uG2NIeTd6t .pricing-header {
    padding-bottom: 40px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIeTd6t .pricing-header {
    padding-bottom: 25px;
  }
}
.cid-uG2NIeTd6t .card-text-wrap {
  margin-right: auto;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .cid-uG2NIeTd6t .card-text-wrap {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.cid-uG2NIeTd6t .card-title {
  color: #ffffff;
  margin-bottom: 9px;
}
.cid-uG2NIeTd6t .card-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
.cid-uG2NIeTd6t .card-text-label {
  padding: 9px 25px;
  border-radius: 6px;
  margin-left: auto;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 991px) {
  .cid-uG2NIeTd6t .card-text-label {
    margin-left: 0;
  }
}
.cid-uG2NIeTd6t .card-label {
  color: #FF014E;
  margin-bottom: 0;
}
.cid-uG2NIeTd6t .pricing-body {
  width: 100%;
}
.cid-uG2NIeTd6t .mbr-text {
  color: #ffffff;
  max-width: 84%;
  text-align: left;
}
.cid-uG2NIeTd6t .list-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .cid-uG2NIeTd6t .list-container {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.cid-uG2NIeTd6t .list-container-left,
.cid-uG2NIeTd6t .list-container-right {
  max-width: 48%;
  min-width: 35%;
  width: fit-content;
}
@media (max-width: 575px) {
  .cid-uG2NIeTd6t .list-container-left,
  .cid-uG2NIeTd6t .list-container-right {
    max-width: 100%;
    width: 100%;
    margin-top: 30px;
  }
}
.cid-uG2NIeTd6t .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .cid-uG2NIeTd6t .list-item:last-child {
    margin-bottom: 0;
  }
}
.cid-uG2NIeTd6t .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 5px;
}
.cid-uG2NIeTd6t .iconfont-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #c4cfde;
}
.cid-uG2NIeTd6t .list-item-text {
  color: #C4CFDE;
  width: fit-content;
}
.cid-uG2NIeTd6t .pricing-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .cid-uG2NIeTd6t .pricing-footer {
    padding-top: 10px;
  }
}
.cid-uG2NIeTd6t .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
}
.cid-uG2NIeTd6t .mbr-section-btn .btn {
  flex-grow: 1;
}
@media (max-width: 575px) {
  .cid-uG2NIeTd6t .mbr-section-btn {
    width: auto;
  }
  .cid-uG2NIeTd6t .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-uG2NIeTd6t .comment-text {
  color: #9ca5b1;
  margin-top: 15px;
}
.cid-uG2NIfWs4Z {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uG2NIfWs4Z .mbr-section-head {
  width: 100%;
}
.cid-uG2NIfWs4Z .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-uG2NIgfli2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uG2NIgfli2 .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-uG2NIgfli2 .mbr-section-title {
  color: #ff1182;
}
.cid-uG2NIgfli2 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uG2NIgfli2 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uG2NIgfli2 .carousel-wrapper {
  margin: 0 75px;
}
@media (max-width: 1199px) {
  .cid-uG2NIgfli2 .carousel-wrapper {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIgfli2 .carousel-wrapper {
    margin: 0 -10px;
  }
}
.cid-uG2NIgfli2 .carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto 36px;
}
@media (max-width: 1199px) {
  .cid-uG2NIgfli2 .carousel {
    max-width: 100%;
  }
}
.cid-uG2NIgfli2 .carousel-inner {
  display: flex;
  align-items: center;
  padding: 50px 0 25px;
}
@media (max-width: 991px) {
  .cid-uG2NIgfli2 .carousel-inner {
    padding: 40px 0 25px;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIgfli2 .carousel-inner {
    padding: 35px 0 25px;
  }
}
.cid-uG2NIgfli2 .item-wrapper {
  display: flex;
  width: 100%;
  overflow: visible;
  padding: 0 25px;
}
@media (max-width: 991px) {
  .cid-uG2NIgfli2 .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIgfli2 .item-wrapper {
    padding: 0 10px;
  }
}
.cid-uG2NIgfli2 .card-info {
  position: relative;
  z-index: 10;
  width: 395px;
  padding: 30px 30px 40px 30px;
  margin-right: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-uG2NIgfli2 .card-info {
    width: 270px;
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uG2NIgfli2 .card-info {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 30px;
    margin-bottom: 30px;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIgfli2 .card-info {
    flex-wrap: wrap;
    padding: 20px;
  }
}
.cid-uG2NIgfli2 .info-img-wrap {
  display: flex;
  width: 100%;
  margin-bottom: 27px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-uG2NIgfli2 .info-img-wrap {
    max-width: 150px;
    margin-right: 25px;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIgfli2 .info-img-wrap {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.cid-uG2NIgfli2 .info-img-wrap img {
  width: 100%;
  aspect-ratio: 1.32936508;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-uG2NIgfli2 .info-img-wrap img:hover {
  transform: scale(1.1);
}
.cid-uG2NIgfli2 .info-text-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uG2NIgfli2 .info-text-wrap {
    flex-grow: 1;
  }
}
.cid-uG2NIgfli2 .info-card-title {
  color: #FF014E;
  margin-bottom: 10px;
}
.cid-uG2NIgfli2 .info-card-subtitle {
  color: #C4CFDE;
}
.cid-uG2NIgfli2 .info-card-text {
  color: #878e99;
  margin-top: 4px;
}
.cid-uG2NIgfli2 .card-description {
  position: relative;
  margin-top: 115px;
  width: 1px;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uG2NIgfli2 .card-description {
    width: 100%;
    margin-top: 0;
  }
}
.cid-uG2NIgfli2 .card-description::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 5px;
  background: #16181c;
  left: -43px;
  z-index: 9;
  top: 66px;
}
@media (max-width: 991px) {
  .cid-uG2NIgfli2 .card-description::before {
    display: none;
  }
}
.cid-uG2NIgfli2 .card-description-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 50px 40px 50px 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 991px) {
  .cid-uG2NIgfli2 .card-description-wrapper {
    padding: 35px 30px;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIgfli2 .card-description-wrapper {
    padding: 20px;
  }
}
.cid-uG2NIgfli2 .card-description-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #ff1182;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .cid-uG2NIgfli2 .card-description-container {
    flex-wrap: wrap;
  }
}
.cid-uG2NIgfli2 .card-description-text-wrap {
  margin-bottom: 15px;
  margin-right: auto;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .cid-uG2NIgfli2 .card-description-text-wrap {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uG2NIgfli2 .card-description-title {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-uG2NIgfli2 .card-description-subtitle {
  color: #c4cfde;
  margin-bottom: 0;
}
.cid-uG2NIgfli2 .card-description-label-wrap {
  padding: 15px 17px;
  border-radius: 6px;
  margin-left: auto;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-uG2NIgfli2 .card-description-label-wrap {
    margin-left: 0;
  }
}
.cid-uG2NIgfli2 .score-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uG2NIgfli2 .score-container .score-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
}
.cid-uG2NIgfli2 .score-container .score-wrapper .mbr-iconfont {
  font-size: 11px;
  color: #ff1182;
}
.cid-uG2NIgfli2 .card-description-text {
  color: #c4cfde;
  margin-bottom: 0;
}
.cid-uG2NIgfli2 .absolute-icon-wrapper {
  position: absolute;
  z-index: 9;
  left: 0;
  top: -107px;
}
@media (max-width: 991px) {
  .cid-uG2NIgfli2 .absolute-icon-wrapper {
    display: none;
  }
}
.cid-uG2NIgfli2 .absolute-icon-wrapper .mbr-iconfont {
  color: #16181c;
  font-size: 99px;
}
.cid-uG2NIgfli2 .carousel-control {
  top: 50px;
  width: 60px;
  height: 60px;
  font-size: 25px;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  border: none;
  border-radius: 6px;
  transition: all 0.4s;
  opacity: 1;
}
.cid-uG2NIgfli2 .carousel-control.carousel-control-prev {
  right: 105px;
  left: auto;
  margin-left: 0;
}
.cid-uG2NIgfli2 .carousel-control.carousel-control-next {
  right: 25px;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-uG2NIgfli2 .carousel-control {
    display: none;
  }
}
.cid-uG2NIgfli2 .carousel-control:hover {
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  color: #ff1182 !important;
  opacity: 1;
}
.cid-uG2NIgfli2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uG2NIgfli2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uG2NIgfli2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uG2NIgfli2 .carousel-indicators {
  position: absolute;
  bottom: -35px;
  margin-bottom: 0 !important;
}
.cid-uG2NIgfli2 .carousel-indicators li {
  max-width: 11px;
  height: 11px;
  width: 11px;
  max-height: 11px;
  margin: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
  border: 0;
  border-radius: 50%;
  box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset;
  opacity: 1;
  transition: all 0.4s;
}
.cid-uG2NIgfli2 .carousel-indicators li.active,
.cid-uG2NIgfli2 .carousel-indicators li:hover {
  opacity: 1;
  background: #ff1182 !important;
}
.cid-uG2NIgfli2 .carousel-indicators li::after,
.cid-uG2NIgfli2 .carousel-indicators li::before {
  content: none;
}
.cid-uG2NIgfli2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-uG2NIgfli2 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uG2NIh10f9 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uG2NIh10f9 .mbr-section-head {
  width: 100%;
}
.cid-uG2NIh10f9 .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-uG2NIibaKa {
  padding-top: 1rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-uG2NIibaKa .mbr-overlay {
  background-color: #212428;
  opacity: 0.2;
}
.cid-uG2NIibaKa .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uG2NIibaKa .row {
  margin-left: -10px;
  margin-right: -10px;
  flex-wrap: wrap;
  align-items: stretch;
}
.cid-uG2NIibaKa .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .cid-uG2NIibaKa .col-info-card {
    margin-bottom: 50px;
  }
}
.cid-uG2NIibaKa .mbr-section-head {
  width: 100%;
  padding-bottom: 40px;
}
.cid-uG2NIibaKa .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-uG2NIibaKa .mbr-section-title {
    text-align: center;
  }
}
.cid-uG2NIibaKa .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uG2NIibaKa .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-uG2NIibaKa .item-card {
  height: 100%;
}
.cid-uG2NIibaKa .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-uG2NIibaKa .item-wrap {
    padding: 50px 20px;
  }
}
.cid-uG2NIibaKa .item-wrap:hover .item-img img {
  transform: scale(1.1);
}
.cid-uG2NIibaKa .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-uG2NIibaKa .item-img img {
  width: 100%;
  aspect-ratio: 1.59722222;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-uG2NIibaKa .card-box {
  padding-top: 28px;
}
.cid-uG2NIibaKa .card-title {
  color: #C4CFDE;
  margin-bottom: 9px;
}
.cid-uG2NIibaKa .card-subtitle {
  color: #878e99;
  margin-bottom: 15px;
}
.cid-uG2NIibaKa .card-text {
  color: #878e99;
  margin-bottom: 20px;
}
.cid-uG2NIibaKa .card-contacts {
  color: #878e99;
}
.cid-uG2NIibaKa .card-contacts a {
  position: relative;
  transition: 0.4s all;
}
.cid-uG2NIibaKa .card-contacts a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ff1182;
  transition: 0.4s all;
}
.cid-uG2NIibaKa .card-contacts a:hover {
  color: #ff1182 !important;
}
.cid-uG2NIibaKa .card-contacts a:hover:before {
  width: 100%;
}
.cid-uG2NIibaKa .social-container {
  width: 100%;
  padding-top: 30px;
}
.cid-uG2NIibaKa .social-title {
  color: #C4CFDE;
  margin-bottom: 8px;
}
.cid-uG2NIibaKa .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -15px;
  margin-top: 24px;
}
.cid-uG2NIibaKa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 15px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uG2NIibaKa .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uG2NIibaKa .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uG2NIibaKa .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uG2NIibaKa .soc-item:hover .mbr-iconfont {
  color: #ff1182;
}
.cid-uG2NIibaKa .soc-item:hover:before {
  opacity: 1;
}
.cid-uG2NIibaKa .form-main-container {
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  .cid-uG2NIibaKa .form-main-container {
    padding-left: 20px;
  }
}
.cid-uG2NIibaKa .form-wrap {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-uG2NIibaKa .form-wrap {
    padding: 20px;
  }
}
.cid-uG2NIibaKa form {
  width: 100%;
}
.cid-uG2NIibaKa form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-uG2NIibaKa form p {
  color: #878e99;
}
.cid-uG2NIibaKa form .mbr-section-btn {
  text-align: center;
  justify-content: center;
}
.cid-uG2NIibaKa form .mbr-section-btn .btn {
  width: 100%;
}
.cid-uG2NIibaKa form .form-group {
  margin-bottom: 20px !important;
}
.cid-uG2NIibaKa form .form-control {
  background-color: #191b1e;
  border-radius: 6px !important;
  height: 55px;
  box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset !important;
  border: 2px solid #191b1e !important;
  padding: 10px 15px;
  font-size: 18px;
  margin-bottom: 0;
  color: #C4CFDE;
  font-weight: 400;
  transition: 0.4s all !important;
  line-height: 29px !important;
}
.cid-uG2NIibaKa form .form-control::-webkit-input-placeholder {
  color: #878e99;
}
.cid-uG2NIibaKa form .form-control::-moz-placeholder {
  color: #878e99;
}
.cid-uG2NIibaKa form .form-control:-moz-placeholder {
  color: #878e99;
}
.cid-uG2NIibaKa form .form-control:-ms-input-placeholder {
  color: #878e99;
}
.cid-uG2NIibaKa form select {
  color: #878e99 !important;
}
.cid-uG2NIibaKa form textarea {
  height: 216px !important;
  resize: none;
}
.cid-uG2NIibaKa form input:active,
.cid-uG2NIibaKa form textarea:active,
.cid-uG2NIibaKa form input:focus,
.cid-uG2NIibaKa form textarea:focus {
  border-color: #ff1182 !important;
  box-shadow: none !important;
  color: #878e99 !important;
  outline: none !important;
}
.cid-uG2NIibaKa form input:active::-webkit-input-placeholder,
.cid-uG2NIibaKa form textarea:active::-webkit-input-placeholder,
.cid-uG2NIibaKa form input:focus::-webkit-input-placeholder,
.cid-uG2NIibaKa form textarea:focus::-webkit-input-placeholder {
  color: #878e99;
}
.cid-uG2NIibaKa form input:active::-moz-placeholder,
.cid-uG2NIibaKa form textarea:active::-moz-placeholder,
.cid-uG2NIibaKa form input:focus::-moz-placeholder,
.cid-uG2NIibaKa form textarea:focus::-moz-placeholder {
  color: #878e99;
}
.cid-uG2NIibaKa form input:active:-moz-placeholder,
.cid-uG2NIibaKa form textarea:active:-moz-placeholder,
.cid-uG2NIibaKa form input:focus:-moz-placeholder,
.cid-uG2NIibaKa form textarea:focus:-moz-placeholder {
  color: #878e99;
}
.cid-uG2NIibaKa form input:active:-ms-input-placeholder,
.cid-uG2NIibaKa form textarea:active:-ms-input-placeholder,
.cid-uG2NIibaKa form input:focus:-ms-input-placeholder,
.cid-uG2NIibaKa form textarea:focus:-ms-input-placeholder {
  color: #878e99;
}
.cid-uG2NIibaKa form .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.cid-uG2NIibaKa form .row [class*=col] {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-uG2NIibaKa form label {
  width: 100%;
  color: #878e99;
  margin-bottom: 14px;
}
.cid-uG2NIibaKa form .form-control-label {
  width: 100%;
}
.cid-uG2NIibaKa form .form-check-label {
  margin-bottom: 14px;
}
.cid-uG2NIibaKa form .form-check-input {
  border-color: #191b1e !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uG2NIibaKa form .form-check-input:focus,
.cid-uG2NIibaKa form .form-check-input:hover {
  border-color: #ff1182 !important;
}
.cid-uG2NIibaKa form .form-check-input:checked {
  border-color: #ff1182 !important;
  background-color: #191b1e !important;
}
.cid-uG2NIibaKa LABEL {
  color: #ffffff;
  text-align: left;
}
.cid-uG2NIiJ5gD {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uG2NIiJ5gD .mbr-section-head {
  width: 100%;
}
.cid-uG2NIiJ5gD .border-item {
  width: 100%;
  height: 3px;
  background-color: #ff1182;
  opacity: 1;
}
.cid-uG2NIj4InM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-uG2NIj4InM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG2NIj4InM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG2NIj4InM .card-row {
  align-items: stretch;
}
.cid-uG2NIj4InM .item-wrap {
  position: relative;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-uG2NIj4InM .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #ff1182;
}
@media (max-width: 1199px) {
  .cid-uG2NIj4InM .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-uG2NIj4InM .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #ff1182;
  }
}
.cid-uG2NIj4InM .image-wrapper {
  margin-right: 30px;
}
.cid-uG2NIj4InM .image-wrapper img {
  border-radius: 15px;
  max-width: 200px;
  aspect-ratio: 1;
  width: 200px;
  border: 5px solid #1e2024;
  position: relative;
  top: -80px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-uG2NIj4InM .image-wrapper {
    margin-right: 0;
  }
}
.cid-uG2NIj4InM .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-uG2NIj4InM .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uG2NIj4InM .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-uG2NIj4InM .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uG2NIj4InM .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-uG2NIj4InM .social-container {
    padding-top: 25px;
  }
}
.cid-uG2NIj4InM .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-uG2NIj4InM .social-title {
    text-align: center !important;
  }
}
.cid-uG2NIj4InM .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-uG2NIj4InM .social-list {
    justify-content: center !important;
  }
}
.cid-uG2NIj4InM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uG2NIj4InM .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uG2NIj4InM .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-uG2NIj4InM .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uG2NIj4InM .soc-item:hover:before {
  opacity: 1;
}
.cid-uG2NIj4InM .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uG2NIj4InM .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIj4InM .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-uG2NIj4InM .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-uG2NIj4InM .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uG2NIj4InM .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-uG2NIj4InM .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIj4InM .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uG2NIj4InM .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-uG2NIj4InM .contact-item {
  padding: 10px 0 20px;
}
.cid-uG2NIj4InM .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-uG2NIj4InM .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
#custom-html-10 {
  /* Sticky Button Container */
  /* Shared Styles for Both Buttons */
  /* WhatsApp Button */
  /* Call Button */
  /* Hover Effects (Simple Fade + Glow) */
}
#custom-html-10 .sticky-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#custom-html-10 .sticky-buttons a {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(145deg, #1a1a1a, #000000);
  border-radius: 15px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.6), -4px -4px 10px rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-decoration: none;
}
#custom-html-10 .sticky-buttons .whatsapp-button {
  background: linear-gradient(145deg, #25d366, #128c7e);
}
#custom-html-10 .sticky-buttons .whatsapp-button i {
  color: #fff;
}
#custom-html-10 .sticky-buttons .call-button {
  background: linear-gradient(145deg, #ff1182, #c70066);
}
#custom-html-10 .sticky-buttons .call-button i {
  color: #fff;
}
#custom-html-10 .sticky-buttons .whatsapp-button:hover {
  background: #1db954;
}
#custom-html-10 .sticky-buttons .call-button:hover {
  background: #d80a6d;
}
.cid-uG2NIk3Zgx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #212428;
  overflow: hidden;
}
.cid-uG2NIk3Zgx .border-item {
  width: 100%;
  height: 1px;
  background: #16181c;
}
.cid-uG2NIk3Zgx .copyright-container {
  padding: 40px 0;
}
.cid-uG2NIk3Zgx .mbr-text {
  color: #c4cfde;
}
