body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f23de0 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f23de0 !important;
  border-color: #f23de0 !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: #cb0eb8 !important;
  border-color: #cb0eb8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #cb0eb8 !important;
  border-color: #cb0eb8 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f23de0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #cb0eb8 !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: #f23de0 !important;
  border-color: #f23de0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f23de0 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #bc0dab !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f23de0;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f23de0;
  border-color: #f23de0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f23de0;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fffcff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f23de0 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #f23de0;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f23de0;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f23de0;
}
.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: #f23de0;
  border-bottom-color: #f23de0;
}
.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: #f23de0 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f23de0' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-uXKd34tZ4d img {
  width: auto;
}
.cid-uXKd34tZ4d .news {
  width: 300px;
  background-color: #f900ff;
  height: 35px;
}
.cid-uXKd34tZ4d .news-scroll a {
  text-decoration: none;
}
.cid-uXKd34tZ4d .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}
.cid-uXKd34tZ4d .navbar {
  padding: .5rem 0;
  background: #232323;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-uXKd34tZ4d .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-uXKd34tZ4d a {
  font-style: normal;
}
.cid-uXKd34tZ4d .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uXKd34tZ4d .dropdown-item:after {
  display: none;
}
.cid-uXKd34tZ4d .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-uXKd34tZ4d .content-text {
  margin-bottom: 0;
}
.cid-uXKd34tZ4d .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #f23de0;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uXKd34tZ4d .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uXKd34tZ4d .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uXKd34tZ4d .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uXKd34tZ4d .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uXKd34tZ4d .nav-dropdown .link {
  font-weight: 400;
}
.cid-uXKd34tZ4d .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uXKd34tZ4d .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-uXKd34tZ4d .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #232323;
}
.cid-uXKd34tZ4d .menu-content-top.show {
  display: block;
}
.cid-uXKd34tZ4d .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-uXKd34tZ4d .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-uXKd34tZ4d .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-uXKd34tZ4d .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-uXKd34tZ4d img {
    height: 3.8rem !important;
  }
  .cid-uXKd34tZ4d .btn {
    display: flex;
  }
  .cid-uXKd34tZ4d button.navbar-toggler {
    display: block;
  }
  .cid-uXKd34tZ4d .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-uXKd34tZ4d .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uXKd34tZ4d .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing,
  .cid-uXKd34tZ4d .navbar-collapse.show {
    display: block !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .menu-content-top {
    display: block;
  }
  .cid-uXKd34tZ4d .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uXKd34tZ4d .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uXKd34tZ4d .menu-bottom {
    display: flex;
  }
  .cid-uXKd34tZ4d .navbar {
    display: block;
    padding: 0;
  }
  .cid-uXKd34tZ4d .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uXKd34tZ4d .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uXKd34tZ4d .navbar-toggler {
    display: none;
  }
}
.cid-uXKd34tZ4d .navbar-short .menu-content-top {
  border: none;
}
.cid-uXKd34tZ4d .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uXKd34tZ4d .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uXKd34tZ4d button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-uXKd34tZ4d button.navbar-toggler:focus {
  outline: none;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uXKd34tZ4d .collapsed .btn {
  display: flex;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 3.5rem);
  }
  .cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-uXKd34tZ4d .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-uXKd34tZ4d .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uXKd34tZ4d .collapsed .dropdown-item:before {
  display: none;
}
.cid-uXKd34tZ4d .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uXKd34tZ4d .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uXKd34tZ4d .nav-link:focus {
  outline: none;
}
.cid-uXKd34tZ4d .navbar-toggler {
  position: relative;
}
.cid-uXKd34tZ4d .dropdown-item.active,
.cid-uXKd34tZ4d .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-uXKd34tZ4d .nav-link:hover,
.cid-uXKd34tZ4d .dropdown-item:hover {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-text {
  color: #000000;
}
.cid-uXKbuqMIsl {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-tKtt7IYc8K {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.cid-tKtt7IYc8K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKtt7IYc8K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-tKtt7IYc8K .mbr-section-title {
  color: #e6c63b;
  text-align: center;
}
.cid-tKtt7IYc8K .mbr-text,
.cid-tKtt7IYc8K .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tKtt7IYc8K .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tQbWx8MFbY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQbWx8MFbY .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQbWx8MFbY .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQbWx8MFbY .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQbWx8MFbY .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQbWx8MFbY .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQbWx8MFbY .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQbWx8MFbY .banner h1:last-child {
  margin: 0;
}
.cid-tQbWx8MFbY H1 {
  color: #ffffff;
}
.cid-tQbWx8MFbY .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tIORApwKRx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tIORApwKRx img {
  width: 120px;
  margin: auto;
}
.cid-tIORApwKRx .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tIORApwKRx .card {
    max-width: 12.5%;
  }
}
.cid-tIORApwKRx .mbr-section-title {
  color: #e6c63b;
}
.cid-tQbWLbfjie {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQbWLbfjie .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQbWLbfjie .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQbWLbfjie .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQbWLbfjie .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQbWLbfjie .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQbWLbfjie .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQbWLbfjie .banner h1:last-child {
  margin: 0;
}
.cid-tQbWLbfjie H1 {
  color: #ffffff;
}
.cid-tQbWLbfjie .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tIId7B1lDh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIId7B1lDh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIId7B1lDh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIId7B1lDh .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tIId7B1lDh .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tIId7B1lDh .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tIId7B1lDh .card-wrapper {
    padding: 4rem;
  }
}
.cid-tIId7B1lDh .mbr-text,
.cid-tIId7B1lDh .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tIId7B1lDh .card-title,
.cid-tIId7B1lDh .card-box {
  text-align: center;
  color: #000000;
}
.cid-tQcL2cpSvE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQcL2cpSvE .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQcL2cpSvE .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQcL2cpSvE .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQcL2cpSvE .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQcL2cpSvE .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQcL2cpSvE .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQcL2cpSvE .banner h1:last-child {
  margin: 0;
}
.cid-tQcL2cpSvE H1 {
  color: #ffffff;
}
.cid-tQcL2cpSvE .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQcL7j3Y2Y {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQcL7j3Y2Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQcL7j3Y2Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQcL7j3Y2Y .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tQcL7j3Y2Y .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tQcL7j3Y2Y .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tQcL7j3Y2Y .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tQcL7j3Y2Y .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tQcL7j3Y2Y .bg-youtube:hover {
  background: #cc0000;
}
.cid-tQcL7j3Y2Y .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tQcL7j3Y2Y .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-tQcL7j3Y2Y [class^="socicon-"]:before,
.cid-tQcL7j3Y2Y [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tIyGPXCAbL {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-tQbZvgVB5z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tQbZvgVB5z .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQbZvgVB5z .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQbZvgVB5z .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQbZvgVB5z .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #232323;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQbZvgVB5z .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQbZvgVB5z .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQbZvgVB5z .banner h1:last-child {
  margin: 0;
}
.cid-tQbZvgVB5z H1 {
  color: #ffffff;
}
.cid-tQbZvgVB5z .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uXKeyaD8Te {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uXKeyaD8Te .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tQbV94p0gL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tQbV94p0gL .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQbV94p0gL .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQbV94p0gL .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQbV94p0gL .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #000000;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQbV94p0gL .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQbV94p0gL .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQbV94p0gL .banner h1:last-child {
  margin: 0;
}
.cid-tQbV94p0gL H1 {
  color: #ffffff;
}
.cid-tQbV94p0gL .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQbV94p0gL P {
  text-align: left;
  color: #000000;
}
.cid-uXKjnDKmyM {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-tQs5fI6sYt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQs5fI6sYt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQs5fI6sYt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQs5fI6sYt .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tQs5fI6sYt .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tQs5fI6sYt .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #f23de0;
}
.cid-tQs5fI6sYt .panel-body,
.cid-tQs5fI6sYt .card-header {
  padding: 1rem 0;
}
.cid-tQs5fI6sYt .panel-title-edit {
  color: #000000;
}
.cid-tQs5fI6sYt H4 {
  text-align: left;
  color: #e6c63b;
}
.cid-tQs4lDf9wA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQs4lDf9wA .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQs4lDf9wA .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQs4lDf9wA .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQs4lDf9wA .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQs4lDf9wA .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQs4lDf9wA .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQs4lDf9wA .banner h1:last-child {
  margin: 0;
}
.cid-tQs4lDf9wA H1 {
  color: #ffffff;
}
.cid-tQs4lDf9wA .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQs4lDrK9L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQs4lDrK9L img {
  width: 120px;
  margin: auto;
}
.cid-tQs4lDrK9L .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tQs4lDrK9L .card {
    max-width: 12.5%;
  }
}
.cid-tQs4lDrK9L .mbr-section-title {
  color: #e6c63b;
}
.cid-tQs4lDEo8b {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQs4lDEo8b .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQs4lDEo8b .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQs4lDEo8b .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQs4lDEo8b .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQs4lDEo8b .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQs4lDEo8b .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQs4lDEo8b .banner h1:last-child {
  margin: 0;
}
.cid-tQs4lDEo8b H1 {
  color: #ffffff;
}
.cid-tQs4lDEo8b .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQs4lDNz8Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQs4lDNz8Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQs4lDNz8Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQs4lDNz8Z .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tQs4lDNz8Z .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tQs4lDNz8Z .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQs4lDNz8Z .card-wrapper {
    padding: 4rem;
  }
}
.cid-tQs4lDNz8Z .mbr-text,
.cid-tQs4lDNz8Z .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tQs4lDNz8Z .card-title,
.cid-tQs4lDNz8Z .card-box {
  text-align: center;
  color: #000000;
}
.cid-tQs4lE0Myb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQs4lE0Myb .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQs4lE0Myb .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQs4lE0Myb .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQs4lE0Myb .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQs4lE0Myb .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQs4lE0Myb .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQs4lE0Myb .banner h1:last-child {
  margin: 0;
}
.cid-tQs4lE0Myb H1 {
  color: #ffffff;
}
.cid-tQs4lE0Myb .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQs4lEausi {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQs4lEausi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQs4lEausi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQs4lEausi .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tQs4lEausi .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tQs4lEausi .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tQs4lEausi .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tQs4lEausi .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tQs4lEausi .bg-youtube:hover {
  background: #cc0000;
}
.cid-tQs4lEausi .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tQs4lEausi .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-tQs4lEausi [class^="socicon-"]:before,
.cid-tQs4lEausi [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tQs4lEDSYs {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-tQs4lEXTyh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tQs4lEXTyh .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQs4lEXTyh .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQs4lEXTyh .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQs4lEXTyh .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #232323;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQs4lEXTyh .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQs4lEXTyh .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQs4lEXTyh .banner h1:last-child {
  margin: 0;
}
.cid-tQs4lEXTyh H1 {
  color: #ffffff;
}
.cid-tQs4lEXTyh .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQs4lFdjzk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tQs4lFdjzk .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQs4lFdjzk .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQs4lFdjzk .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQs4lFdjzk .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #000000;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQs4lFdjzk .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQs4lFdjzk .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQs4lFdjzk .banner h1:last-child {
  margin: 0;
}
.cid-tQs4lFdjzk H1 {
  color: #ffffff;
}
.cid-tQs4lFdjzk .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQs4lFdjzk P {
  text-align: left;
  color: #000000;
}
.cid-uXKd34tZ4d img {
  width: auto;
}
.cid-uXKd34tZ4d .news {
  width: 300px;
  background-color: #f900ff;
  height: 35px;
}
.cid-uXKd34tZ4d .news-scroll a {
  text-decoration: none;
}
.cid-uXKd34tZ4d .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}
.cid-uXKd34tZ4d .navbar {
  padding: .5rem 0;
  background: #232323;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-uXKd34tZ4d .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-uXKd34tZ4d a {
  font-style: normal;
}
.cid-uXKd34tZ4d .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uXKd34tZ4d .dropdown-item:after {
  display: none;
}
.cid-uXKd34tZ4d .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-uXKd34tZ4d .content-text {
  margin-bottom: 0;
}
.cid-uXKd34tZ4d .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #f23de0;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uXKd34tZ4d .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uXKd34tZ4d .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uXKd34tZ4d .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uXKd34tZ4d .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uXKd34tZ4d .nav-dropdown .link {
  font-weight: 400;
}
.cid-uXKd34tZ4d .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uXKd34tZ4d .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-uXKd34tZ4d .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #232323;
}
.cid-uXKd34tZ4d .menu-content-top.show {
  display: block;
}
.cid-uXKd34tZ4d .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-uXKd34tZ4d .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-uXKd34tZ4d .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-uXKd34tZ4d .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-uXKd34tZ4d img {
    height: 3.8rem !important;
  }
  .cid-uXKd34tZ4d .btn {
    display: flex;
  }
  .cid-uXKd34tZ4d button.navbar-toggler {
    display: block;
  }
  .cid-uXKd34tZ4d .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-uXKd34tZ4d .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uXKd34tZ4d .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing,
  .cid-uXKd34tZ4d .navbar-collapse.show {
    display: block !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .menu-content-top {
    display: block;
  }
  .cid-uXKd34tZ4d .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uXKd34tZ4d .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uXKd34tZ4d .menu-bottom {
    display: flex;
  }
  .cid-uXKd34tZ4d .navbar {
    display: block;
    padding: 0;
  }
  .cid-uXKd34tZ4d .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uXKd34tZ4d .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uXKd34tZ4d .navbar-toggler {
    display: none;
  }
}
.cid-uXKd34tZ4d .navbar-short .menu-content-top {
  border: none;
}
.cid-uXKd34tZ4d .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uXKd34tZ4d .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uXKd34tZ4d button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-uXKd34tZ4d button.navbar-toggler:focus {
  outline: none;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uXKd34tZ4d .collapsed .btn {
  display: flex;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 3.5rem);
  }
  .cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-uXKd34tZ4d .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-uXKd34tZ4d .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uXKd34tZ4d .collapsed .dropdown-item:before {
  display: none;
}
.cid-uXKd34tZ4d .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uXKd34tZ4d .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uXKd34tZ4d .nav-link:focus {
  outline: none;
}
.cid-uXKd34tZ4d .navbar-toggler {
  position: relative;
}
.cid-uXKd34tZ4d .dropdown-item.active,
.cid-uXKd34tZ4d .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-uXKd34tZ4d .nav-link:hover,
.cid-uXKd34tZ4d .dropdown-item:hover {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-text {
  color: #000000;
}
.cid-uXKeyaD8Te {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uXKeyaD8Te .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uXKjbOZfo3 {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-tQs7G5HePA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQs7G5HePA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQs7G5HePA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQs7G5HePA .item {
  padding-bottom: 2rem;
}
.cid-tQs7G5HePA .item-wrapper {
  position: relative;
}
.cid-tQs7G5HePA .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tQs7G5HePA .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tQs7G5HePA .carousel-control,
.cid-tQs7G5HePA .close {
  background: #1b1b1b;
}
.cid-tQs7G5HePA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tQs7G5HePA .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tQs7G5HePA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tQs7G5HePA .carousel-control-next span {
  margin-left: 5px;
}
.cid-tQs7G5HePA .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tQs7G5HePA .close::before {
  content: '\e91a';
}
.cid-tQs7G5HePA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tQs7G5HePA .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tQs7G5HePA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQs7G5HePA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQs7G5HePA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tQs7G5HePA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tQs7G5HePA .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tQs7G5HePA .carousel-indicators li.active,
.cid-tQs7G5HePA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tQs7G5HePA .carousel-indicators li::after,
.cid-tQs7G5HePA .carousel-indicators li::before {
  content: none;
}
.cid-tQs7G5HePA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tQs7G5HePA .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tQs7G5HePA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tQs7G5HePA .carousel-indicators {
    display: none;
  }
}
.cid-tQs7G5HePA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tQs7G5HePA .carousel-inner > .active {
  display: block;
}
.cid-tQs7G5HePA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQs7G5HePA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tQs7G5HePA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tQs7G5HePA .carousel-control,
  .cid-tQs7G5HePA .carousel-indicators,
  .cid-tQs7G5HePA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tQs7G5HePA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tQs7G5HePA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tQs7G5HePA .carousel-indicators .active,
.cid-tQs7G5HePA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tQs7G5HePA .carousel-indicators .active {
  background: #fff;
}
.cid-tQs7G5HePA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tQs7G5HePA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tQs7G5HePA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tQs7G5HePA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tQs7G5HePA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tQs7G5HePA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tQs7G5HePA .carousel {
  width: 100%;
}
.cid-tQs7G5HePA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tQs7G5HePA .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tQs7G5HePA .modal.fade .modal-dialog,
.cid-tQs7G5HePA .modal.in .modal-dialog {
  transform: none;
}
.cid-tQs7G5HePA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tQs7G5HePA H6 {
  text-align: center;
}
.cid-tQs7G5HePA H3 {
  color: #ffffff;
}
.cid-tQs7HPFz9e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQs7HPFz9e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQs7HPFz9e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQs7HPFz9e .item {
  padding-bottom: 2rem;
}
.cid-tQs7HPFz9e .item-wrapper {
  position: relative;
}
.cid-tQs7HPFz9e .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tQs7HPFz9e .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tQs7HPFz9e .carousel-control,
.cid-tQs7HPFz9e .close {
  background: #1b1b1b;
}
.cid-tQs7HPFz9e .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tQs7HPFz9e .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tQs7HPFz9e .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tQs7HPFz9e .carousel-control-next span {
  margin-left: 5px;
}
.cid-tQs7HPFz9e .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tQs7HPFz9e .close::before {
  content: '\e91a';
}
.cid-tQs7HPFz9e .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tQs7HPFz9e .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tQs7HPFz9e .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQs7HPFz9e .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQs7HPFz9e .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tQs7HPFz9e .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tQs7HPFz9e .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tQs7HPFz9e .carousel-indicators li.active,
.cid-tQs7HPFz9e .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tQs7HPFz9e .carousel-indicators li::after,
.cid-tQs7HPFz9e .carousel-indicators li::before {
  content: none;
}
.cid-tQs7HPFz9e .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tQs7HPFz9e .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tQs7HPFz9e .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tQs7HPFz9e .carousel-indicators {
    display: none;
  }
}
.cid-tQs7HPFz9e .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tQs7HPFz9e .carousel-inner > .active {
  display: block;
}
.cid-tQs7HPFz9e .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQs7HPFz9e .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tQs7HPFz9e .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tQs7HPFz9e .carousel-control,
  .cid-tQs7HPFz9e .carousel-indicators,
  .cid-tQs7HPFz9e .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tQs7HPFz9e .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tQs7HPFz9e .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tQs7HPFz9e .carousel-indicators .active,
.cid-tQs7HPFz9e .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tQs7HPFz9e .carousel-indicators .active {
  background: #fff;
}
.cid-tQs7HPFz9e .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tQs7HPFz9e .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tQs7HPFz9e .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tQs7HPFz9e .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tQs7HPFz9e .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tQs7HPFz9e .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tQs7HPFz9e .carousel {
  width: 100%;
}
.cid-tQs7HPFz9e .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tQs7HPFz9e .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tQs7HPFz9e .modal.fade .modal-dialog,
.cid-tQs7HPFz9e .modal.in .modal-dialog {
  transform: none;
}
.cid-tQs7HPFz9e .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tQs7HPFz9e H6 {
  text-align: center;
}
.cid-tQs7HPFz9e H3 {
  color: #ffffff;
}
.cid-tQs7INYvFy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQs7INYvFy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQs7INYvFy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQs7INYvFy .item {
  padding-bottom: 2rem;
}
.cid-tQs7INYvFy .item-wrapper {
  position: relative;
}
.cid-tQs7INYvFy .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tQs7INYvFy .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tQs7INYvFy .carousel-control,
.cid-tQs7INYvFy .close {
  background: #1b1b1b;
}
.cid-tQs7INYvFy .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tQs7INYvFy .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tQs7INYvFy .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tQs7INYvFy .carousel-control-next span {
  margin-left: 5px;
}
.cid-tQs7INYvFy .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tQs7INYvFy .close::before {
  content: '\e91a';
}
.cid-tQs7INYvFy .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tQs7INYvFy .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tQs7INYvFy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQs7INYvFy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQs7INYvFy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tQs7INYvFy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tQs7INYvFy .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tQs7INYvFy .carousel-indicators li.active,
.cid-tQs7INYvFy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tQs7INYvFy .carousel-indicators li::after,
.cid-tQs7INYvFy .carousel-indicators li::before {
  content: none;
}
.cid-tQs7INYvFy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tQs7INYvFy .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tQs7INYvFy .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tQs7INYvFy .carousel-indicators {
    display: none;
  }
}
.cid-tQs7INYvFy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tQs7INYvFy .carousel-inner > .active {
  display: block;
}
.cid-tQs7INYvFy .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQs7INYvFy .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tQs7INYvFy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tQs7INYvFy .carousel-control,
  .cid-tQs7INYvFy .carousel-indicators,
  .cid-tQs7INYvFy .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tQs7INYvFy .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tQs7INYvFy .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tQs7INYvFy .carousel-indicators .active,
.cid-tQs7INYvFy .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tQs7INYvFy .carousel-indicators .active {
  background: #fff;
}
.cid-tQs7INYvFy .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tQs7INYvFy .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tQs7INYvFy .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tQs7INYvFy .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tQs7INYvFy .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tQs7INYvFy .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tQs7INYvFy .carousel {
  width: 100%;
}
.cid-tQs7INYvFy .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tQs7INYvFy .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tQs7INYvFy .modal.fade .modal-dialog,
.cid-tQs7INYvFy .modal.in .modal-dialog {
  transform: none;
}
.cid-tQs7INYvFy .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tQs7INYvFy H6 {
  text-align: center;
}
.cid-tQs7INYvFy H3 {
  color: #ffffff;
}
.cid-tQs7JolOLQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQs7JolOLQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQs7JolOLQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQs7JolOLQ .item {
  padding-bottom: 2rem;
}
.cid-tQs7JolOLQ .item-wrapper {
  position: relative;
}
.cid-tQs7JolOLQ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tQs7JolOLQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tQs7JolOLQ .carousel-control,
.cid-tQs7JolOLQ .close {
  background: #1b1b1b;
}
.cid-tQs7JolOLQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tQs7JolOLQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tQs7JolOLQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tQs7JolOLQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tQs7JolOLQ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tQs7JolOLQ .close::before {
  content: '\e91a';
}
.cid-tQs7JolOLQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tQs7JolOLQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tQs7JolOLQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQs7JolOLQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQs7JolOLQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tQs7JolOLQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tQs7JolOLQ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tQs7JolOLQ .carousel-indicators li.active,
.cid-tQs7JolOLQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tQs7JolOLQ .carousel-indicators li::after,
.cid-tQs7JolOLQ .carousel-indicators li::before {
  content: none;
}
.cid-tQs7JolOLQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tQs7JolOLQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tQs7JolOLQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tQs7JolOLQ .carousel-indicators {
    display: none;
  }
}
.cid-tQs7JolOLQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tQs7JolOLQ .carousel-inner > .active {
  display: block;
}
.cid-tQs7JolOLQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQs7JolOLQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tQs7JolOLQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tQs7JolOLQ .carousel-control,
  .cid-tQs7JolOLQ .carousel-indicators,
  .cid-tQs7JolOLQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tQs7JolOLQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tQs7JolOLQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tQs7JolOLQ .carousel-indicators .active,
.cid-tQs7JolOLQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tQs7JolOLQ .carousel-indicators .active {
  background: #fff;
}
.cid-tQs7JolOLQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tQs7JolOLQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tQs7JolOLQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tQs7JolOLQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tQs7JolOLQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tQs7JolOLQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tQs7JolOLQ .carousel {
  width: 100%;
}
.cid-tQs7JolOLQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tQs7JolOLQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tQs7JolOLQ .modal.fade .modal-dialog,
.cid-tQs7JolOLQ .modal.in .modal-dialog {
  transform: none;
}
.cid-tQs7JolOLQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tQs7JolOLQ H6 {
  text-align: center;
}
.cid-tQs7JolOLQ H3 {
  color: #ffffff;
}
.cid-tQs7KbTQfG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQs7KbTQfG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQs7KbTQfG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQs7KbTQfG .item {
  padding-bottom: 2rem;
}
.cid-tQs7KbTQfG .item-wrapper {
  position: relative;
}
.cid-tQs7KbTQfG .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tQs7KbTQfG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tQs7KbTQfG .carousel-control,
.cid-tQs7KbTQfG .close {
  background: #1b1b1b;
}
.cid-tQs7KbTQfG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tQs7KbTQfG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tQs7KbTQfG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tQs7KbTQfG .carousel-control-next span {
  margin-left: 5px;
}
.cid-tQs7KbTQfG .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tQs7KbTQfG .close::before {
  content: '\e91a';
}
.cid-tQs7KbTQfG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tQs7KbTQfG .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tQs7KbTQfG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQs7KbTQfG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQs7KbTQfG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tQs7KbTQfG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tQs7KbTQfG .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tQs7KbTQfG .carousel-indicators li.active,
.cid-tQs7KbTQfG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tQs7KbTQfG .carousel-indicators li::after,
.cid-tQs7KbTQfG .carousel-indicators li::before {
  content: none;
}
.cid-tQs7KbTQfG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tQs7KbTQfG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tQs7KbTQfG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tQs7KbTQfG .carousel-indicators {
    display: none;
  }
}
.cid-tQs7KbTQfG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tQs7KbTQfG .carousel-inner > .active {
  display: block;
}
.cid-tQs7KbTQfG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQs7KbTQfG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tQs7KbTQfG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tQs7KbTQfG .carousel-control,
  .cid-tQs7KbTQfG .carousel-indicators,
  .cid-tQs7KbTQfG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tQs7KbTQfG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tQs7KbTQfG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tQs7KbTQfG .carousel-indicators .active,
.cid-tQs7KbTQfG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tQs7KbTQfG .carousel-indicators .active {
  background: #fff;
}
.cid-tQs7KbTQfG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tQs7KbTQfG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tQs7KbTQfG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tQs7KbTQfG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tQs7KbTQfG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tQs7KbTQfG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tQs7KbTQfG .carousel {
  width: 100%;
}
.cid-tQs7KbTQfG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tQs7KbTQfG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tQs7KbTQfG .modal.fade .modal-dialog,
.cid-tQs7KbTQfG .modal.in .modal-dialog {
  transform: none;
}
.cid-tQs7KbTQfG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tQs7KbTQfG H6 {
  text-align: center;
}
.cid-tQs7KbTQfG H3 {
  color: #ffffff;
}
.cid-tQs7Lmz68Q {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQs7Lmz68Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQs7Lmz68Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQs7Lmz68Q .item {
  padding-bottom: 2rem;
}
.cid-tQs7Lmz68Q .item-wrapper {
  position: relative;
}
.cid-tQs7Lmz68Q .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tQs7Lmz68Q .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tQs7Lmz68Q .carousel-control,
.cid-tQs7Lmz68Q .close {
  background: #1b1b1b;
}
.cid-tQs7Lmz68Q .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tQs7Lmz68Q .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tQs7Lmz68Q .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tQs7Lmz68Q .carousel-control-next span {
  margin-left: 5px;
}
.cid-tQs7Lmz68Q .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tQs7Lmz68Q .close::before {
  content: '\e91a';
}
.cid-tQs7Lmz68Q .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tQs7Lmz68Q .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tQs7Lmz68Q .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQs7Lmz68Q .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQs7Lmz68Q .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tQs7Lmz68Q .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tQs7Lmz68Q .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tQs7Lmz68Q .carousel-indicators li.active,
.cid-tQs7Lmz68Q .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tQs7Lmz68Q .carousel-indicators li::after,
.cid-tQs7Lmz68Q .carousel-indicators li::before {
  content: none;
}
.cid-tQs7Lmz68Q .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tQs7Lmz68Q .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tQs7Lmz68Q .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tQs7Lmz68Q .carousel-indicators {
    display: none;
  }
}
.cid-tQs7Lmz68Q .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tQs7Lmz68Q .carousel-inner > .active {
  display: block;
}
.cid-tQs7Lmz68Q .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQs7Lmz68Q .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tQs7Lmz68Q .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tQs7Lmz68Q .carousel-control,
  .cid-tQs7Lmz68Q .carousel-indicators,
  .cid-tQs7Lmz68Q .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tQs7Lmz68Q .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tQs7Lmz68Q .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tQs7Lmz68Q .carousel-indicators .active,
.cid-tQs7Lmz68Q .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tQs7Lmz68Q .carousel-indicators .active {
  background: #fff;
}
.cid-tQs7Lmz68Q .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tQs7Lmz68Q .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tQs7Lmz68Q .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tQs7Lmz68Q .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tQs7Lmz68Q .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tQs7Lmz68Q .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tQs7Lmz68Q .carousel {
  width: 100%;
}
.cid-tQs7Lmz68Q .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tQs7Lmz68Q .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tQs7Lmz68Q .modal.fade .modal-dialog,
.cid-tQs7Lmz68Q .modal.in .modal-dialog {
  transform: none;
}
.cid-tQs7Lmz68Q .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tQs7Lmz68Q H6 {
  text-align: center;
}
.cid-tQs7Lmz68Q H3 {
  color: #ffffff;
}
.cid-tQs723egps {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQs723egps .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQs723egps .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQs723egps .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQs723egps .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQs723egps .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQs723egps .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQs723egps .banner h1:last-child {
  margin: 0;
}
.cid-tQs723egps H1 {
  color: #ffffff;
}
.cid-tQs723egps .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQs723qiKh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQs723qiKh img {
  width: 120px;
  margin: auto;
}
.cid-tQs723qiKh .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tQs723qiKh .card {
    max-width: 12.5%;
  }
}
.cid-tQs723qiKh .mbr-section-title {
  color: #e6c63b;
}
.cid-tQs723KX0y {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQs723KX0y .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQs723KX0y .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQs723KX0y .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQs723KX0y .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQs723KX0y .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQs723KX0y .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQs723KX0y .banner h1:last-child {
  margin: 0;
}
.cid-tQs723KX0y H1 {
  color: #ffffff;
}
.cid-tQs723KX0y .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQs723VdOC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQs723VdOC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQs723VdOC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQs723VdOC .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tQs723VdOC .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tQs723VdOC .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQs723VdOC .card-wrapper {
    padding: 4rem;
  }
}
.cid-tQs723VdOC .mbr-text,
.cid-tQs723VdOC .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tQs723VdOC .card-title,
.cid-tQs723VdOC .card-box {
  text-align: center;
  color: #000000;
}
.cid-tQs724ahmt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQs724ahmt .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQs724ahmt .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQs724ahmt .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQs724ahmt .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQs724ahmt .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQs724ahmt .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQs724ahmt .banner h1:last-child {
  margin: 0;
}
.cid-tQs724ahmt H1 {
  color: #ffffff;
}
.cid-tQs724ahmt .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQs724n1gp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQs724n1gp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQs724n1gp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQs724n1gp .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tQs724n1gp .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tQs724n1gp .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tQs724n1gp .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tQs724n1gp .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tQs724n1gp .bg-youtube:hover {
  background: #cc0000;
}
.cid-tQs724n1gp .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tQs724n1gp .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-tQs724n1gp [class^="socicon-"]:before,
.cid-tQs724n1gp [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tQs7265Nlv {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-tQs726ms5E {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tQs726ms5E .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQs726ms5E .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQs726ms5E .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQs726ms5E .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #232323;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQs726ms5E .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQs726ms5E .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQs726ms5E .banner h1:last-child {
  margin: 0;
}
.cid-tQs726ms5E H1 {
  color: #ffffff;
}
.cid-tQs726ms5E .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQs726vvTU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tQs726vvTU .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQs726vvTU .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQs726vvTU .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQs726vvTU .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #000000;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQs726vvTU .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQs726vvTU .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQs726vvTU .banner h1:last-child {
  margin: 0;
}
.cid-tQs726vvTU H1 {
  color: #ffffff;
}
.cid-tQs726vvTU .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQs726vvTU P {
  text-align: left;
  color: #000000;
}
.cid-uXKd34tZ4d img {
  width: auto;
}
.cid-uXKd34tZ4d .news {
  width: 300px;
  background-color: #f900ff;
  height: 35px;
}
.cid-uXKd34tZ4d .news-scroll a {
  text-decoration: none;
}
.cid-uXKd34tZ4d .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}
.cid-uXKd34tZ4d .navbar {
  padding: .5rem 0;
  background: #232323;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-uXKd34tZ4d .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-uXKd34tZ4d a {
  font-style: normal;
}
.cid-uXKd34tZ4d .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uXKd34tZ4d .dropdown-item:after {
  display: none;
}
.cid-uXKd34tZ4d .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-uXKd34tZ4d .content-text {
  margin-bottom: 0;
}
.cid-uXKd34tZ4d .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #f23de0;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uXKd34tZ4d .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uXKd34tZ4d .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uXKd34tZ4d .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uXKd34tZ4d .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uXKd34tZ4d .nav-dropdown .link {
  font-weight: 400;
}
.cid-uXKd34tZ4d .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uXKd34tZ4d .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-uXKd34tZ4d .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #232323;
}
.cid-uXKd34tZ4d .menu-content-top.show {
  display: block;
}
.cid-uXKd34tZ4d .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-uXKd34tZ4d .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-uXKd34tZ4d .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-uXKd34tZ4d .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-uXKd34tZ4d img {
    height: 3.8rem !important;
  }
  .cid-uXKd34tZ4d .btn {
    display: flex;
  }
  .cid-uXKd34tZ4d button.navbar-toggler {
    display: block;
  }
  .cid-uXKd34tZ4d .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-uXKd34tZ4d .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uXKd34tZ4d .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing,
  .cid-uXKd34tZ4d .navbar-collapse.show {
    display: block !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .menu-content-top {
    display: block;
  }
  .cid-uXKd34tZ4d .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uXKd34tZ4d .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uXKd34tZ4d .menu-bottom {
    display: flex;
  }
  .cid-uXKd34tZ4d .navbar {
    display: block;
    padding: 0;
  }
  .cid-uXKd34tZ4d .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uXKd34tZ4d .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uXKd34tZ4d .navbar-toggler {
    display: none;
  }
}
.cid-uXKd34tZ4d .navbar-short .menu-content-top {
  border: none;
}
.cid-uXKd34tZ4d .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uXKd34tZ4d .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uXKd34tZ4d button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-uXKd34tZ4d button.navbar-toggler:focus {
  outline: none;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uXKd34tZ4d .collapsed .btn {
  display: flex;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 3.5rem);
  }
  .cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-uXKd34tZ4d .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-uXKd34tZ4d .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uXKd34tZ4d .collapsed .dropdown-item:before {
  display: none;
}
.cid-uXKd34tZ4d .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uXKd34tZ4d .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uXKd34tZ4d .nav-link:focus {
  outline: none;
}
.cid-uXKd34tZ4d .navbar-toggler {
  position: relative;
}
.cid-uXKd34tZ4d .dropdown-item.active,
.cid-uXKd34tZ4d .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-uXKd34tZ4d .nav-link:hover,
.cid-uXKd34tZ4d .dropdown-item:hover {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-text {
  color: #000000;
}
.cid-uXKeyaD8Te {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uXKeyaD8Te .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uXKiXVUoup {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-tQsNadJkbm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQsNadJkbm .mbr-section-subtitle {
  text-align: center;
}
.cid-tQsNadJkbm .mbr-text {
  text-align: center;
}
.cid-tQsNadJkbm .mbr-section-title {
  text-align: center;
}
.cid-tQsMtXcudb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQsMtXcudb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQsMtXcudb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tQsMtXcudb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tQsMtXcudb .row {
  flex-direction: row-reverse;
}
.cid-tQsMtXcudb img {
  width: 100%;
}
.cid-tQseIkbe4R {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQseIkbe4R .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQseIkbe4R .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQseIkbe4R .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQseIkbe4R .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQseIkbe4R .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQseIkbe4R .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQseIkbe4R .banner h1:last-child {
  margin: 0;
}
.cid-tQseIkbe4R H1 {
  color: #ffffff;
}
.cid-tQseIkbe4R .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQseIkBwSu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQseIkBwSu img {
  width: 120px;
  margin: auto;
}
.cid-tQseIkBwSu .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tQseIkBwSu .card {
    max-width: 12.5%;
  }
}
.cid-tQseIkBwSu .mbr-section-title {
  color: #e6c63b;
}
.cid-tQseIlfisE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQseIlfisE .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQseIlfisE .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQseIlfisE .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQseIlfisE .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQseIlfisE .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQseIlfisE .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQseIlfisE .banner h1:last-child {
  margin: 0;
}
.cid-tQseIlfisE H1 {
  color: #ffffff;
}
.cid-tQseIlfisE .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQseIls704 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQseIls704 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQseIls704 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQseIls704 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tQseIls704 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tQseIls704 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQseIls704 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tQseIls704 .mbr-text,
.cid-tQseIls704 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tQseIls704 .card-title,
.cid-tQseIls704 .card-box {
  text-align: center;
  color: #000000;
}
.cid-tQseIlJWAv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQseIlJWAv .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQseIlJWAv .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQseIlJWAv .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQseIlJWAv .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQseIlJWAv .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQseIlJWAv .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQseIlJWAv .banner h1:last-child {
  margin: 0;
}
.cid-tQseIlJWAv H1 {
  color: #ffffff;
}
.cid-tQseIlJWAv .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQseIlWycC {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQseIlWycC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQseIlWycC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQseIlWycC .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tQseIlWycC .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tQseIlWycC .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tQseIlWycC .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tQseIlWycC .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tQseIlWycC .bg-youtube:hover {
  background: #cc0000;
}
.cid-tQseIlWycC .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tQseIlWycC .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-tQseIlWycC [class^="socicon-"]:before,
.cid-tQseIlWycC [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tQseImJh4d {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-tQseIosBwU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tQseIosBwU .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQseIosBwU .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQseIosBwU .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQseIosBwU .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #232323;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQseIosBwU .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQseIosBwU .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQseIosBwU .banner h1:last-child {
  margin: 0;
}
.cid-tQseIosBwU H1 {
  color: #ffffff;
}
.cid-tQseIosBwU .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQseIoI6Wi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tQseIoI6Wi .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQseIoI6Wi .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQseIoI6Wi .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQseIoI6Wi .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #000000;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQseIoI6Wi .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQseIoI6Wi .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQseIoI6Wi .banner h1:last-child {
  margin: 0;
}
.cid-tQseIoI6Wi H1 {
  color: #ffffff;
}
.cid-tQseIoI6Wi .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQseIoI6Wi P {
  text-align: left;
  color: #000000;
}
.cid-uXKd34tZ4d img {
  width: auto;
}
.cid-uXKd34tZ4d .news {
  width: 300px;
  background-color: #f900ff;
  height: 35px;
}
.cid-uXKd34tZ4d .news-scroll a {
  text-decoration: none;
}
.cid-uXKd34tZ4d .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}
.cid-uXKd34tZ4d .navbar {
  padding: .5rem 0;
  background: #232323;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-uXKd34tZ4d .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-uXKd34tZ4d a {
  font-style: normal;
}
.cid-uXKd34tZ4d .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uXKd34tZ4d .dropdown-item:after {
  display: none;
}
.cid-uXKd34tZ4d .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-uXKd34tZ4d .content-text {
  margin-bottom: 0;
}
.cid-uXKd34tZ4d .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #f23de0;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uXKd34tZ4d .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uXKd34tZ4d .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uXKd34tZ4d .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uXKd34tZ4d .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uXKd34tZ4d .nav-dropdown .link {
  font-weight: 400;
}
.cid-uXKd34tZ4d .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uXKd34tZ4d .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-uXKd34tZ4d .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #232323;
}
.cid-uXKd34tZ4d .menu-content-top.show {
  display: block;
}
.cid-uXKd34tZ4d .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-uXKd34tZ4d .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-uXKd34tZ4d .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-uXKd34tZ4d .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-uXKd34tZ4d img {
    height: 3.8rem !important;
  }
  .cid-uXKd34tZ4d .btn {
    display: flex;
  }
  .cid-uXKd34tZ4d button.navbar-toggler {
    display: block;
  }
  .cid-uXKd34tZ4d .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-uXKd34tZ4d .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uXKd34tZ4d .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing,
  .cid-uXKd34tZ4d .navbar-collapse.show {
    display: block !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .menu-content-top {
    display: block;
  }
  .cid-uXKd34tZ4d .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uXKd34tZ4d .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uXKd34tZ4d .menu-bottom {
    display: flex;
  }
  .cid-uXKd34tZ4d .navbar {
    display: block;
    padding: 0;
  }
  .cid-uXKd34tZ4d .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uXKd34tZ4d .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uXKd34tZ4d .navbar-toggler {
    display: none;
  }
}
.cid-uXKd34tZ4d .navbar-short .menu-content-top {
  border: none;
}
.cid-uXKd34tZ4d .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uXKd34tZ4d .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uXKd34tZ4d button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-uXKd34tZ4d button.navbar-toggler:focus {
  outline: none;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uXKd34tZ4d .collapsed .btn {
  display: flex;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 3.5rem);
  }
  .cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-uXKd34tZ4d .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-uXKd34tZ4d .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uXKd34tZ4d .collapsed .dropdown-item:before {
  display: none;
}
.cid-uXKd34tZ4d .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uXKd34tZ4d .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uXKd34tZ4d .nav-link:focus {
  outline: none;
}
.cid-uXKd34tZ4d .navbar-toggler {
  position: relative;
}
.cid-uXKd34tZ4d .dropdown-item.active,
.cid-uXKd34tZ4d .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-uXKd34tZ4d .nav-link:hover,
.cid-uXKd34tZ4d .dropdown-item:hover {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-text {
  color: #000000;
}
.cid-uXKeyaD8Te {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uXKeyaD8Te .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uXKfy2hSgU {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-tQsjiwhCYR {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-tQsjiwhCYR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQsjiwhCYR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tQsjiwhCYR .row {
    flex-direction: column-reverse;
  }
  .cid-tQsjiwhCYR .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tQsjiwhCYR .google-map {
  height: 100%;
  position: relative;
}
.cid-tQsjiwhCYR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tQsjiwhCYR .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tQsjiwhCYR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tQsjiwhCYR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tQsjiwhCYR .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tQsjiwhCYR .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-tQsjiwhCYR .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-tQsjiwhCYR .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQsjiwhCYR .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tQsjiwhCYR .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #f23de0;
}
.cid-tQsjiwhCYR .mbr-section-title {
  color: #e6c63b;
  text-align: center;
}
.cid-tQsjiwhCYR .mbr-section-subtitle {
  color: #000000;
}
.cid-tQsjiwhCYR P {
  text-align: left;
  color: #000000;
}
.cid-tQsjiwhCYR .card-title {
  color: #000000;
}
.cid-tQsiDBdiFq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQsiDBdiFq .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsiDBdiFq .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsiDBdiFq .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsiDBdiFq .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsiDBdiFq .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsiDBdiFq .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsiDBdiFq .banner h1:last-child {
  margin: 0;
}
.cid-tQsiDBdiFq H1 {
  color: #ffffff;
}
.cid-tQsiDBdiFq .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsiDBmg88 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQsiDBmg88 img {
  width: 120px;
  margin: auto;
}
.cid-tQsiDBmg88 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tQsiDBmg88 .card {
    max-width: 12.5%;
  }
}
.cid-tQsiDBmg88 .mbr-section-title {
  color: #e6c63b;
}
.cid-tQsiDBA4DF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQsiDBA4DF .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsiDBA4DF .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsiDBA4DF .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsiDBA4DF .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsiDBA4DF .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsiDBA4DF .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsiDBA4DF .banner h1:last-child {
  margin: 0;
}
.cid-tQsiDBA4DF H1 {
  color: #ffffff;
}
.cid-tQsiDBA4DF .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsiDBIHm0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQsiDBIHm0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQsiDBIHm0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQsiDBIHm0 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tQsiDBIHm0 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tQsiDBIHm0 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQsiDBIHm0 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tQsiDBIHm0 .mbr-text,
.cid-tQsiDBIHm0 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tQsiDBIHm0 .card-title,
.cid-tQsiDBIHm0 .card-box {
  text-align: center;
  color: #000000;
}
.cid-tQsiDBTIcx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQsiDBTIcx .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsiDBTIcx .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsiDBTIcx .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsiDBTIcx .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsiDBTIcx .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsiDBTIcx .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsiDBTIcx .banner h1:last-child {
  margin: 0;
}
.cid-tQsiDBTIcx H1 {
  color: #ffffff;
}
.cid-tQsiDBTIcx .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsiDC4nHF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQsiDC4nHF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQsiDC4nHF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQsiDC4nHF .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tQsiDC4nHF .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tQsiDC4nHF .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tQsiDC4nHF .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tQsiDC4nHF .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tQsiDC4nHF .bg-youtube:hover {
  background: #cc0000;
}
.cid-tQsiDC4nHF .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tQsiDC4nHF .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-tQsiDC4nHF [class^="socicon-"]:before,
.cid-tQsiDC4nHF [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tQsiDCuIBf {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-tQsiDCO8Xo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tQsiDCO8Xo .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsiDCO8Xo .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsiDCO8Xo .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsiDCO8Xo .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #232323;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsiDCO8Xo .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsiDCO8Xo .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsiDCO8Xo .banner h1:last-child {
  margin: 0;
}
.cid-tQsiDCO8Xo H1 {
  color: #ffffff;
}
.cid-tQsiDCO8Xo .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsiDCZcT8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tQsiDCZcT8 .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsiDCZcT8 .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsiDCZcT8 .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsiDCZcT8 .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #000000;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsiDCZcT8 .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsiDCZcT8 .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsiDCZcT8 .banner h1:last-child {
  margin: 0;
}
.cid-tQsiDCZcT8 H1 {
  color: #ffffff;
}
.cid-tQsiDCZcT8 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsiDCZcT8 P {
  text-align: left;
  color: #000000;
}
.cid-uXKd34tZ4d img {
  width: auto;
}
.cid-uXKd34tZ4d .news {
  width: 300px;
  background-color: #f900ff;
  height: 35px;
}
.cid-uXKd34tZ4d .news-scroll a {
  text-decoration: none;
}
.cid-uXKd34tZ4d .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}
.cid-uXKd34tZ4d .navbar {
  padding: .5rem 0;
  background: #232323;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-uXKd34tZ4d .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-uXKd34tZ4d a {
  font-style: normal;
}
.cid-uXKd34tZ4d .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uXKd34tZ4d .dropdown-item:after {
  display: none;
}
.cid-uXKd34tZ4d .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-uXKd34tZ4d .content-text {
  margin-bottom: 0;
}
.cid-uXKd34tZ4d .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #f23de0;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uXKd34tZ4d .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uXKd34tZ4d .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uXKd34tZ4d .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uXKd34tZ4d .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uXKd34tZ4d .nav-dropdown .link {
  font-weight: 400;
}
.cid-uXKd34tZ4d .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uXKd34tZ4d .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-uXKd34tZ4d .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #232323;
}
.cid-uXKd34tZ4d .menu-content-top.show {
  display: block;
}
.cid-uXKd34tZ4d .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-uXKd34tZ4d .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-uXKd34tZ4d .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-uXKd34tZ4d .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-uXKd34tZ4d img {
    height: 3.8rem !important;
  }
  .cid-uXKd34tZ4d .btn {
    display: flex;
  }
  .cid-uXKd34tZ4d button.navbar-toggler {
    display: block;
  }
  .cid-uXKd34tZ4d .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-uXKd34tZ4d .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uXKd34tZ4d .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing,
  .cid-uXKd34tZ4d .navbar-collapse.show {
    display: block !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .menu-content-top {
    display: block;
  }
  .cid-uXKd34tZ4d .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uXKd34tZ4d .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uXKd34tZ4d .menu-bottom {
    display: flex;
  }
  .cid-uXKd34tZ4d .navbar {
    display: block;
    padding: 0;
  }
  .cid-uXKd34tZ4d .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uXKd34tZ4d .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uXKd34tZ4d .navbar-toggler {
    display: none;
  }
}
.cid-uXKd34tZ4d .navbar-short .menu-content-top {
  border: none;
}
.cid-uXKd34tZ4d .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uXKd34tZ4d .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uXKd34tZ4d button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-uXKd34tZ4d button.navbar-toggler:focus {
  outline: none;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uXKd34tZ4d .collapsed .btn {
  display: flex;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 3.5rem);
  }
  .cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-uXKd34tZ4d .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-uXKd34tZ4d .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uXKd34tZ4d .collapsed .dropdown-item:before {
  display: none;
}
.cid-uXKd34tZ4d .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uXKd34tZ4d .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uXKd34tZ4d .nav-link:focus {
  outline: none;
}
.cid-uXKd34tZ4d .navbar-toggler {
  position: relative;
}
.cid-uXKd34tZ4d .dropdown-item.active,
.cid-uXKd34tZ4d .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-uXKd34tZ4d .nav-link:hover,
.cid-uXKd34tZ4d .dropdown-item:hover {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-text {
  color: #000000;
}
.cid-uXKeyaD8Te {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uXKeyaD8Te .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uXKf8AlGMQ {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-tQsHSE4i8V {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-tQsHSE4i8V .carousel {
    min-height: 400px;
  }
  .cid-tQsHSE4i8V .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tQsHSE4i8V .carousel {
    min-height: 260px;
  }
  .cid-tQsHSE4i8V .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tQsHSE4i8V .carousel {
    min-height: 220px;
  }
  .cid-tQsHSE4i8V .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-tQsHSE4i8V .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tQsHSE4i8V .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tQsHSE4i8V .carousel,
.cid-tQsHSE4i8V .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tQsHSE4i8V .item-wrapper {
  width: 100%;
}
.cid-tQsHSE4i8V .carousel-caption {
  bottom: 40px;
}
.cid-tQsHSE4i8V .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tQsHSE4i8V .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tQsHSE4i8V .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tQsHSE4i8V .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tQsHSE4i8V .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tQsHSE4i8V .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQsHSE4i8V .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQsHSE4i8V .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tQsHSE4i8V .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tQsHSE4i8V .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tQsHSE4i8V .carousel-indicators li.active,
.cid-tQsHSE4i8V .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tQsHSE4i8V .carousel-indicators li::after,
.cid-tQsHSE4i8V .carousel-indicators li::before {
  content: none;
}
.cid-tQsHSE4i8V .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tQsHSE4i8V .carousel-indicators {
    display: none !important;
  }
}
.cid-tQsEzaKqFZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQsEzaKqFZ .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsEzaKqFZ .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsEzaKqFZ .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsEzaKqFZ .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsEzaKqFZ .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsEzaKqFZ .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsEzaKqFZ .banner h1:last-child {
  margin: 0;
}
.cid-tQsEzaKqFZ H1 {
  color: #ffffff;
}
.cid-tQsEzaKqFZ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsHqgFY0x {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tQsHqgFY0x img,
.cid-tQsHqgFY0x .item-img {
  width: 100%;
}
.cid-tQsHqgFY0x .item:focus,
.cid-tQsHqgFY0x span:focus {
  outline: none;
}
.cid-tQsHqgFY0x .item-wrapper {
  position: relative;
}
.cid-tQsHqgFY0x .slide-content {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tQsHqgFY0x .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tQsHqgFY0x .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tQsHqgFY0x .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tQsHqgFY0x .mbr-section-title {
  color: #e6c63b;
  text-align: center;
}
.cid-tQsHqgFY0x .mbr-text,
.cid-tQsHqgFY0x .mbr-section-btn {
  text-align: left;
}
.cid-tQsHqgFY0x .item-title {
  text-align: left;
}
.cid-tQsHqgFY0x .item-subtitle {
  text-align: left;
}
.cid-tQsHqgFY0x .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tQsHqgFY0x .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tQsHqgFY0x .embla__button--next,
.cid-tQsHqgFY0x .embla__button--prev {
  display: flex;
}
.cid-tQsHqgFY0x .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tQsHqgFY0x .embla__button {
    display: none;
  }
}
.cid-tQsHqgFY0x .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tQsHqgFY0x .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tQsHqgFY0x .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQsHqgFY0x .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQsHqgFY0x .embla__button {
    top: auto;
  }
}
.cid-tQsHqgFY0x .embla {
  position: relative;
  width: 100%;
}
.cid-tQsHqgFY0x .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tQsHqgFY0x .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tQsHqgFY0x .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tQsHqgFY0x .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tQsEzb2lTm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQsEzb2lTm .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsEzb2lTm .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsEzb2lTm .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsEzb2lTm .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsEzb2lTm .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsEzb2lTm .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsEzb2lTm .banner h1:last-child {
  margin: 0;
}
.cid-tQsEzb2lTm H1 {
  color: #ffffff;
}
.cid-tQsEzb2lTm .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsEzb9LWX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQsEzb9LWX img {
  width: 120px;
  margin: auto;
}
.cid-tQsEzb9LWX .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tQsEzb9LWX .card {
    max-width: 12.5%;
  }
}
.cid-tQsEzb9LWX .mbr-section-title {
  color: #e6c63b;
}
.cid-tQsEzbmn5i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQsEzbmn5i .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsEzbmn5i .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsEzbmn5i .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsEzbmn5i .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsEzbmn5i .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsEzbmn5i .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsEzbmn5i .banner h1:last-child {
  margin: 0;
}
.cid-tQsEzbmn5i H1 {
  color: #ffffff;
}
.cid-tQsEzbmn5i .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsEzbuatb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQsEzbuatb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQsEzbuatb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQsEzbuatb .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tQsEzbuatb .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tQsEzbuatb .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQsEzbuatb .card-wrapper {
    padding: 4rem;
  }
}
.cid-tQsEzbuatb .mbr-text,
.cid-tQsEzbuatb .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tQsEzbuatb .card-title,
.cid-tQsEzbuatb .card-box {
  text-align: center;
  color: #000000;
}
.cid-tQsEzbDh4r {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQsEzbDh4r .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsEzbDh4r .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsEzbDh4r .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsEzbDh4r .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsEzbDh4r .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsEzbDh4r .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsEzbDh4r .banner h1:last-child {
  margin: 0;
}
.cid-tQsEzbDh4r H1 {
  color: #ffffff;
}
.cid-tQsEzbDh4r .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsEzbK3Bi {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQsEzbK3Bi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQsEzbK3Bi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQsEzbK3Bi .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tQsEzbK3Bi .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tQsEzbK3Bi .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tQsEzbK3Bi .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tQsEzbK3Bi .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tQsEzbK3Bi .bg-youtube:hover {
  background: #cc0000;
}
.cid-tQsEzbK3Bi .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tQsEzbK3Bi .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-tQsEzbK3Bi [class^="socicon-"]:before,
.cid-tQsEzbK3Bi [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tQsEzc8sVm {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-tQsEzcpO6l {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tQsEzcpO6l .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsEzcpO6l .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsEzcpO6l .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsEzcpO6l .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #232323;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsEzcpO6l .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsEzcpO6l .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsEzcpO6l .banner h1:last-child {
  margin: 0;
}
.cid-tQsEzcpO6l H1 {
  color: #ffffff;
}
.cid-tQsEzcpO6l .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsEzcxpND {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tQsEzcxpND .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsEzcxpND .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsEzcxpND .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsEzcxpND .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #000000;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsEzcxpND .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsEzcxpND .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsEzcxpND .banner h1:last-child {
  margin: 0;
}
.cid-tQsEzcxpND H1 {
  color: #ffffff;
}
.cid-tQsEzcxpND .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsEzcxpND P {
  text-align: left;
  color: #000000;
}
.cid-uXKd34tZ4d img {
  width: auto;
}
.cid-uXKd34tZ4d .news {
  width: 300px;
  background-color: #f900ff;
  height: 35px;
}
.cid-uXKd34tZ4d .news-scroll a {
  text-decoration: none;
}
.cid-uXKd34tZ4d .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}
.cid-uXKd34tZ4d .navbar {
  padding: .5rem 0;
  background: #232323;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-uXKd34tZ4d .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-uXKd34tZ4d a {
  font-style: normal;
}
.cid-uXKd34tZ4d .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uXKd34tZ4d .dropdown-item:after {
  display: none;
}
.cid-uXKd34tZ4d .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-uXKd34tZ4d .content-text {
  margin-bottom: 0;
}
.cid-uXKd34tZ4d .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #f23de0;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uXKd34tZ4d .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uXKd34tZ4d .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uXKd34tZ4d .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uXKd34tZ4d .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uXKd34tZ4d .nav-dropdown .link {
  font-weight: 400;
}
.cid-uXKd34tZ4d .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uXKd34tZ4d .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-uXKd34tZ4d .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #232323;
}
.cid-uXKd34tZ4d .menu-content-top.show {
  display: block;
}
.cid-uXKd34tZ4d .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-uXKd34tZ4d .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-uXKd34tZ4d .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-uXKd34tZ4d .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-uXKd34tZ4d img {
    height: 3.8rem !important;
  }
  .cid-uXKd34tZ4d .btn {
    display: flex;
  }
  .cid-uXKd34tZ4d button.navbar-toggler {
    display: block;
  }
  .cid-uXKd34tZ4d .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-uXKd34tZ4d .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uXKd34tZ4d .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing,
  .cid-uXKd34tZ4d .navbar-collapse.show {
    display: block !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .menu-content-top {
    display: block;
  }
  .cid-uXKd34tZ4d .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uXKd34tZ4d .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uXKd34tZ4d .menu-bottom {
    display: flex;
  }
  .cid-uXKd34tZ4d .navbar {
    display: block;
    padding: 0;
  }
  .cid-uXKd34tZ4d .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uXKd34tZ4d .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uXKd34tZ4d .navbar-toggler {
    display: none;
  }
}
.cid-uXKd34tZ4d .navbar-short .menu-content-top {
  border: none;
}
.cid-uXKd34tZ4d .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uXKd34tZ4d .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uXKd34tZ4d button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-uXKd34tZ4d button.navbar-toggler:focus {
  outline: none;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uXKd34tZ4d .collapsed .btn {
  display: flex;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 3.5rem);
  }
  .cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-uXKd34tZ4d .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-uXKd34tZ4d .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uXKd34tZ4d .collapsed .dropdown-item:before {
  display: none;
}
.cid-uXKd34tZ4d .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uXKd34tZ4d .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uXKd34tZ4d .nav-link:focus {
  outline: none;
}
.cid-uXKd34tZ4d .navbar-toggler {
  position: relative;
}
.cid-uXKd34tZ4d .dropdown-item.active,
.cid-uXKd34tZ4d .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-uXKd34tZ4d .nav-link:hover,
.cid-uXKd34tZ4d .dropdown-item:hover {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-text {
  color: #000000;
}
.cid-uXKeyaD8Te {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uXKeyaD8Te .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uXKeS5dJPq {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-uXKkKw0Jpd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-uXKkKw0Jpd .carousel {
    min-height: 500px;
  }
  .cid-uXKkKw0Jpd .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXKkKw0Jpd .carousel {
    min-height: 325px;
  }
  .cid-uXKkKw0Jpd .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uXKkKw0Jpd .carousel {
    min-height: 275px;
  }
  .cid-uXKkKw0Jpd .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-uXKkKw0Jpd .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uXKkKw0Jpd .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uXKkKw0Jpd .carousel,
.cid-uXKkKw0Jpd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uXKkKw0Jpd .item-wrapper {
  width: 100%;
}
.cid-uXKkKw0Jpd .carousel-caption {
  bottom: 40px;
}
.cid-uXKkKw0Jpd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uXKkKw0Jpd .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uXKkKw0Jpd .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uXKkKw0Jpd .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uXKkKw0Jpd .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uXKkKw0Jpd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uXKkKw0Jpd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uXKkKw0Jpd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uXKkKw0Jpd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uXKkKw0Jpd .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uXKkKw0Jpd .carousel-indicators li.active,
.cid-uXKkKw0Jpd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uXKkKw0Jpd .carousel-indicators li::after,
.cid-uXKkKw0Jpd .carousel-indicators li::before {
  content: none;
}
.cid-uXKkKw0Jpd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uXKkKw0Jpd .carousel-indicators {
    display: none !important;
  }
}
.cid-tQsJN1JdHk {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQsJN1JdHk img,
.cid-tQsJN1JdHk .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tQsJN1JdHk .item:focus,
.cid-tQsJN1JdHk span:focus {
  outline: none;
}
.cid-tQsJN1JdHk .item-wrapper {
  position: relative;
}
.cid-tQsJN1JdHk .slide-content {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tQsJN1JdHk .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tQsJN1JdHk .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tQsJN1JdHk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tQsJN1JdHk .mbr-section-title {
  color: #e6c63b;
}
.cid-tQsJN1JdHk .mbr-text,
.cid-tQsJN1JdHk .mbr-section-btn {
  text-align: left;
}
.cid-tQsJN1JdHk .item-title {
  text-align: left;
}
.cid-tQsJN1JdHk .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tQsJN1JdHk .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-tQsJN1JdHk .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tQsJN1JdHk .embla__button--next,
.cid-tQsJN1JdHk .embla__button--prev {
  display: flex;
}
.cid-tQsJN1JdHk .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tQsJN1JdHk .embla__button {
    display: none;
  }
}
.cid-tQsJN1JdHk .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tQsJN1JdHk .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tQsJN1JdHk .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQsJN1JdHk .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQsJN1JdHk .embla__button {
    top: auto;
  }
}
.cid-tQsJN1JdHk .embla {
  position: relative;
  width: 100%;
}
.cid-tQsJN1JdHk .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tQsJN1JdHk .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tQsJN1JdHk .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tQsJN1JdHk .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-tQsJN1JdHk .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-tQsJN1JdHk .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-tQsJN1JdHk .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-tQsJO885yx {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQsJO885yx img,
.cid-tQsJO885yx .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tQsJO885yx .item:focus,
.cid-tQsJO885yx span:focus {
  outline: none;
}
.cid-tQsJO885yx .item-wrapper {
  position: relative;
}
.cid-tQsJO885yx .slide-content {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tQsJO885yx .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tQsJO885yx .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tQsJO885yx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tQsJO885yx .mbr-section-title {
  color: #e6c63b;
}
.cid-tQsJO885yx .mbr-text,
.cid-tQsJO885yx .mbr-section-btn {
  text-align: left;
}
.cid-tQsJO885yx .item-title {
  text-align: left;
}
.cid-tQsJO885yx .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tQsJO885yx .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-tQsJO885yx .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tQsJO885yx .embla__button--next,
.cid-tQsJO885yx .embla__button--prev {
  display: flex;
}
.cid-tQsJO885yx .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tQsJO885yx .embla__button {
    display: none;
  }
}
.cid-tQsJO885yx .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tQsJO885yx .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tQsJO885yx .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQsJO885yx .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQsJO885yx .embla__button {
    top: auto;
  }
}
.cid-tQsJO885yx .embla {
  position: relative;
  width: 100%;
}
.cid-tQsJO885yx .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tQsJO885yx .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tQsJO885yx .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tQsJO885yx .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-tQsJO885yx .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-tQsJO885yx .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-tQsJO885yx .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-tQsIQkUkIK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQsIQkUkIK .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsIQkUkIK .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsIQkUkIK .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsIQkUkIK .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsIQkUkIK .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsIQkUkIK .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsIQkUkIK .banner h1:last-child {
  margin: 0;
}
.cid-tQsIQkUkIK H1 {
  color: #ffffff;
}
.cid-tQsIQkUkIK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsIQl1FM6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQsIQl1FM6 img {
  width: 120px;
  margin: auto;
}
.cid-tQsIQl1FM6 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tQsIQl1FM6 .card {
    max-width: 12.5%;
  }
}
.cid-tQsIQl1FM6 .mbr-section-title {
  color: #e6c63b;
}
.cid-tQsIQlf7nf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQsIQlf7nf .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsIQlf7nf .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsIQlf7nf .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsIQlf7nf .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsIQlf7nf .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsIQlf7nf .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsIQlf7nf .banner h1:last-child {
  margin: 0;
}
.cid-tQsIQlf7nf H1 {
  color: #ffffff;
}
.cid-tQsIQlf7nf .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsIQlmk7g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQsIQlmk7g .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQsIQlmk7g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQsIQlmk7g .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tQsIQlmk7g .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tQsIQlmk7g .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQsIQlmk7g .card-wrapper {
    padding: 4rem;
  }
}
.cid-tQsIQlmk7g .mbr-text,
.cid-tQsIQlmk7g .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tQsIQlmk7g .card-title,
.cid-tQsIQlmk7g .card-box {
  text-align: center;
  color: #000000;
}
.cid-tQsIQlvSLn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQsIQlvSLn .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsIQlvSLn .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsIQlvSLn .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsIQlvSLn .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsIQlvSLn .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsIQlvSLn .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsIQlvSLn .banner h1:last-child {
  margin: 0;
}
.cid-tQsIQlvSLn H1 {
  color: #ffffff;
}
.cid-tQsIQlvSLn .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsIQlC7ws {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQsIQlC7ws .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQsIQlC7ws .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQsIQlC7ws .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tQsIQlC7ws .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tQsIQlC7ws .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tQsIQlC7ws .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tQsIQlC7ws .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tQsIQlC7ws .bg-youtube:hover {
  background: #cc0000;
}
.cid-tQsIQlC7ws .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tQsIQlC7ws .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-tQsIQlC7ws [class^="socicon-"]:before,
.cid-tQsIQlC7ws [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tQsIQm298M {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-tQsIQmkUO0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tQsIQmkUO0 .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsIQmkUO0 .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsIQmkUO0 .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsIQmkUO0 .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #232323;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsIQmkUO0 .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsIQmkUO0 .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsIQmkUO0 .banner h1:last-child {
  margin: 0;
}
.cid-tQsIQmkUO0 H1 {
  color: #ffffff;
}
.cid-tQsIQmkUO0 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsIQmsNgu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tQsIQmsNgu .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsIQmsNgu .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsIQmsNgu .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsIQmsNgu .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #000000;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsIQmsNgu .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsIQmsNgu .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsIQmsNgu .banner h1:last-child {
  margin: 0;
}
.cid-tQsIQmsNgu H1 {
  color: #ffffff;
}
.cid-tQsIQmsNgu .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQsIQmsNgu P {
  text-align: left;
  color: #000000;
}
.cid-uXKd34tZ4d img {
  width: auto;
}
.cid-uXKd34tZ4d .news {
  width: 300px;
  background-color: #f900ff;
  height: 35px;
}
.cid-uXKd34tZ4d .news-scroll a {
  text-decoration: none;
}
.cid-uXKd34tZ4d .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}
.cid-uXKd34tZ4d .navbar {
  padding: .5rem 0;
  background: #232323;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-uXKd34tZ4d .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-uXKd34tZ4d a {
  font-style: normal;
}
.cid-uXKd34tZ4d .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uXKd34tZ4d .dropdown-item:after {
  display: none;
}
.cid-uXKd34tZ4d .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-uXKd34tZ4d .content-text {
  margin-bottom: 0;
}
.cid-uXKd34tZ4d .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #f23de0;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uXKd34tZ4d .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uXKd34tZ4d .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uXKd34tZ4d .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uXKd34tZ4d .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uXKd34tZ4d .nav-dropdown .link {
  font-weight: 400;
}
.cid-uXKd34tZ4d .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uXKd34tZ4d .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-uXKd34tZ4d .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #232323;
}
.cid-uXKd34tZ4d .menu-content-top.show {
  display: block;
}
.cid-uXKd34tZ4d .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-uXKd34tZ4d .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-uXKd34tZ4d .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-uXKd34tZ4d .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-uXKd34tZ4d img {
    height: 3.8rem !important;
  }
  .cid-uXKd34tZ4d .btn {
    display: flex;
  }
  .cid-uXKd34tZ4d button.navbar-toggler {
    display: block;
  }
  .cid-uXKd34tZ4d .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-uXKd34tZ4d .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uXKd34tZ4d .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing,
  .cid-uXKd34tZ4d .navbar-collapse.show {
    display: block !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .menu-content-top {
    display: block;
  }
  .cid-uXKd34tZ4d .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uXKd34tZ4d .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uXKd34tZ4d .menu-bottom {
    display: flex;
  }
  .cid-uXKd34tZ4d .navbar {
    display: block;
    padding: 0;
  }
  .cid-uXKd34tZ4d .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uXKd34tZ4d .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uXKd34tZ4d .navbar-toggler {
    display: none;
  }
}
.cid-uXKd34tZ4d .navbar-short .menu-content-top {
  border: none;
}
.cid-uXKd34tZ4d .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uXKd34tZ4d .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uXKd34tZ4d button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-uXKd34tZ4d button.navbar-toggler:focus {
  outline: none;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uXKd34tZ4d .collapsed .btn {
  display: flex;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 3.5rem);
  }
  .cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-uXKd34tZ4d .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-uXKd34tZ4d .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uXKd34tZ4d .collapsed .dropdown-item:before {
  display: none;
}
.cid-uXKd34tZ4d .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uXKd34tZ4d .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uXKd34tZ4d .nav-link:focus {
  outline: none;
}
.cid-uXKd34tZ4d .navbar-toggler {
  position: relative;
}
.cid-uXKd34tZ4d .dropdown-item.active,
.cid-uXKd34tZ4d .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-uXKd34tZ4d .nav-link:hover,
.cid-uXKd34tZ4d .dropdown-item:hover {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-text {
  color: #000000;
}
.cid-uXKeyaD8Te {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uXKeyaD8Te .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uXKfnYKScy {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #f900ff;
}
.cid-tQsleWHnxP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tQsleWHnxP .mbr-section-subtitle {
  color: #e6c63b;
  text-align: center;
}
.cid-tQsleWHnxP .mbr-text {
  text-align: justify;
  color: #000000;
}
.cid-tQsm79J6vv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQsm79J6vv .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQsm79J6vv .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQsm79J6vv .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQsm79J6vv .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQsm79J6vv .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQsm79J6vv .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQsm79J6vv .banner h1:last-child {
  margin: 0;
}
.cid-tQsm79J6vv H1 {
  color: #ffffff;
}
.cid-tQsm79J6vv .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQslftbrBX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tQslftbrBX .mbr-section-subtitle {
  color: #e6c63b;
  text-align: center;
}
.cid-tQslftbrBX .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-tQskJUB84U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQskJUB84U .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQskJUB84U .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQskJUB84U .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQskJUB84U .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQskJUB84U .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQskJUB84U .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQskJUB84U .banner h1:last-child {
  margin: 0;
}
.cid-tQskJUB84U H1 {
  color: #ffffff;
}
.cid-tQskJUB84U .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQskJUJZuO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQskJUJZuO img {
  width: 120px;
  margin: auto;
}
.cid-tQskJUJZuO .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tQskJUJZuO .card {
    max-width: 12.5%;
  }
}
.cid-tQskJUJZuO .mbr-section-title {
  color: #e6c63b;
}
.cid-tQskJUYeGL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQskJUYeGL .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQskJUYeGL .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQskJUYeGL .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQskJUYeGL .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQskJUYeGL .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQskJUYeGL .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQskJUYeGL .banner h1:last-child {
  margin: 0;
}
.cid-tQskJUYeGL H1 {
  color: #ffffff;
}
.cid-tQskJUYeGL .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQskJV6doP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tQskJV6doP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQskJV6doP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQskJV6doP .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tQskJV6doP .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tQskJV6doP .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQskJV6doP .card-wrapper {
    padding: 4rem;
  }
}
.cid-tQskJV6doP .mbr-text,
.cid-tQskJV6doP .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tQskJV6doP .card-title,
.cid-tQskJV6doP .card-box {
  text-align: center;
  color: #000000;
}
.cid-tQskJVjDYU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff00e6;
}
.cid-tQskJVjDYU .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQskJVjDYU .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQskJVjDYU .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQskJVjDYU .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #ff00e6;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQskJVjDYU .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQskJVjDYU .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQskJVjDYU .banner h1:last-child {
  margin: 0;
}
.cid-tQskJVjDYU H1 {
  color: #ffffff;
}
.cid-tQskJVjDYU .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQskJVscGQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQskJVscGQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQskJVscGQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQskJVscGQ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tQskJVscGQ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tQskJVscGQ .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tQskJVscGQ .bg-twitter:hover {
  background: #0c85d0;
}
.cid-tQskJVscGQ .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tQskJVscGQ .bg-youtube:hover {
  background: #cc0000;
}
.cid-tQskJVscGQ .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tQskJVscGQ .iconfont-wrapper {
  border-radius: 0 !important;
}
.cid-tQskJVscGQ [class^="socicon-"]:before,
.cid-tQskJVscGQ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tQskJVRD4i {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/cool-music-wallpaper-hd-wallpapers-630446878.jpg");
}
.cid-tQskJWdFse {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tQskJWdFse .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQskJWdFse .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQskJWdFse .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQskJWdFse .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #232323;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQskJWdFse .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQskJWdFse .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQskJWdFse .banner h1:last-child {
  margin: 0;
}
.cid-tQskJWdFse H1 {
  color: #ffffff;
}
.cid-tQskJWdFse .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQskJWlV2n {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-tQskJWlV2n .banner {
  z-index: 10;
  height: 499px;
}
.cid-tQskJWlV2n .banner-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.cid-tQskJWlV2n .bg-banner {
  padding: 15px;
  height: auto!important;
  position: relative;
}
.cid-tQskJWlV2n .bg-banner:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #000000;
  border-width: 20px 30px;
  margin-left: -30px;
}
.cid-tQskJWlV2n .bg-banner h1 {
  margin: 0 !important;
}
.cid-tQskJWlV2n .banner h1 {
  font-weight: 700!important;
  font-size: 40px;
}
.cid-tQskJWlV2n .banner h1:last-child {
  margin: 0;
}
.cid-tQskJWlV2n H1 {
  color: #ffffff;
}
.cid-tQskJWlV2n .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tQskJWlV2n P {
  text-align: left;
  color: #000000;
}
.cid-uXKd34tZ4d img {
  width: auto;
}
.cid-uXKd34tZ4d .news {
  width: 300px;
  background-color: #f900ff;
  height: 35px;
}
.cid-uXKd34tZ4d .news-scroll a {
  text-decoration: none;
}
.cid-uXKd34tZ4d .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}
.cid-uXKd34tZ4d .navbar {
  padding: .5rem 0;
  background: #232323;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-uXKd34tZ4d .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uXKd34tZ4d .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-uXKd34tZ4d a {
  font-style: normal;
}
.cid-uXKd34tZ4d .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-uXKd34tZ4d .dropdown-item:after {
  display: none;
}
.cid-uXKd34tZ4d .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.7rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 20px;
}
.cid-uXKd34tZ4d .content-text {
  margin-bottom: 0;
}
.cid-uXKd34tZ4d .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #f23de0;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uXKd34tZ4d .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uXKd34tZ4d .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-uXKd34tZ4d .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uXKd34tZ4d .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uXKd34tZ4d .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uXKd34tZ4d .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uXKd34tZ4d .nav-dropdown .link {
  font-weight: 400;
}
.cid-uXKd34tZ4d .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uXKd34tZ4d .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-uXKd34tZ4d .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
  background: #232323;
}
.cid-uXKd34tZ4d .menu-content-top.show {
  display: block;
}
.cid-uXKd34tZ4d .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-uXKd34tZ4d .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    display: inline-block;
    width: auto;
  }
  .cid-uXKd34tZ4d .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-uXKd34tZ4d .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-uXKd34tZ4d img {
    height: 3.8rem !important;
  }
  .cid-uXKd34tZ4d .btn {
    display: flex;
  }
  .cid-uXKd34tZ4d button.navbar-toggler {
    display: block;
  }
  .cid-uXKd34tZ4d .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-uXKd34tZ4d .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uXKd34tZ4d .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing,
  .cid-uXKd34tZ4d .navbar-collapse.show {
    display: block !important;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uXKd34tZ4d .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uXKd34tZ4d .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 1;
    height: auto;
    padding: 0 !important;
    visibility: visible;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uXKd34tZ4d .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0 !important;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .navbar .menu-content-top {
    display: block;
  }
  .cid-uXKd34tZ4d .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-uXKd34tZ4d .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-uXKd34tZ4d .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-uXKd34tZ4d .menu-bottom {
    display: flex;
  }
  .cid-uXKd34tZ4d .navbar {
    display: block;
    padding: 0;
  }
  .cid-uXKd34tZ4d .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uXKd34tZ4d .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-uXKd34tZ4d .navbar-toggler {
    display: none;
  }
}
.cid-uXKd34tZ4d .navbar-short .menu-content-top {
  border: none;
}
.cid-uXKd34tZ4d .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uXKd34tZ4d .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uXKd34tZ4d .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uXKd34tZ4d .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXKd34tZ4d .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uXKd34tZ4d .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uXKd34tZ4d .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uXKd34tZ4d button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
}
.cid-uXKd34tZ4d button.navbar-toggler:focus {
  outline: none;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uXKd34tZ4d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uXKd34tZ4d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uXKd34tZ4d .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uXKd34tZ4d .collapsed .menu-logo {
  margin-right: 0;
}
.cid-uXKd34tZ4d .collapsed .btn {
  display: flex;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uXKd34tZ4d .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uXKd34tZ4d .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 3.5rem);
  }
  .cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uXKd34tZ4d .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uXKd34tZ4d .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-uXKd34tZ4d .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-uXKd34tZ4d .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uXKd34tZ4d .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uXKd34tZ4d .collapsed .dropdown-item:before {
  display: none;
}
.cid-uXKd34tZ4d .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uXKd34tZ4d .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uXKd34tZ4d .nav-link:focus {
  outline: none;
}
.cid-uXKd34tZ4d .navbar-toggler {
  position: relative;
}
.cid-uXKd34tZ4d .dropdown-item.active,
.cid-uXKd34tZ4d .dropdown-item:active {
  background-color: transparent !important;
  color: inherit;
}
.cid-uXKd34tZ4d .nav-link:hover,
.cid-uXKd34tZ4d .dropdown-item:hover {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uXKd34tZ4d .mbr-text {
  color: #000000;
}
.cid-uXKeyaD8Te {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uXKeyaD8Te .media-container-row .mbr-text {
  color: #ffffff;
}
